@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=DM+Sans:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');

* {
  outline: none !important;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
  list-style: none;
}

body {
  margin: 0;
  padding: 0;
  /* font-family: 'DM Sans', sans-serif; */
  font-family: "Muli";
  font-size: 16px;
  line-height: 1.4;
}

/* LOCOMOTIVE */
.no-transform {
  transform: none !important;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

/* HTML ELEMENTS */
img {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

/* LINKS */
a {
  text-decoration: none;
  color: #080808;
}

a:hover {
  text-decoration: none;
  color: #080808;
}

/* FORM ELEMENTS */
input[type="text"] {
  width: 420px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="email"] {
  width: 420px;
  max-width: 100%;
  height: 45px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="search"] {
  width: 420px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="password"] {
  width: 420px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="number"] {
  width: 420px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="date"] {
  width: 420px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
  border-radius: 50%;
}

input[type="radio"]:checked {
  border: 6px solid #080808;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
}

input[type="checkbox"]:checked {
  border: 4px solid #ededed;
  background: #080808;
}

textarea {
  width: 520px;
  max-width: 100%;
  height: 140px;
  padding: 30px;
  border: 1px solid #cecece;
}

select {
  width: 420px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 30px) 34px, calc(100% - 25px) 34px, calc(100% - 3.5em) 20px;
  background-size: 5px 5px, 5px 5px, 1px 40px;
  background-repeat: no-repeat;
}

select:focus {
  background-image: linear-gradient(45deg, gray 50%, transparent 50%), linear-gradient(135deg, transparent 50%, gray 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 25px) 34px, calc(100% - 30px) 34px, calc(100% - 3.5em) 20px;
  background-size: 5px 5px, 5px 5px, 1px 40px;
  background-repeat: no-repeat;
  border-color: gray;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input[type="submit"] {
  height: 45px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #c6a348;
  border: none;
  padding: 0 50px;
}

button[type="submit"] {
  height: 70px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #080808;
  background: #94ffc4;
  border: none;
  padding: 0 50px;
}

button[type="submit"] i {
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  transform: translateY(2px);
}

/* SPACING */
.no-spacing {
  margin: 0 !important;
  padding: 0 !important;
}

.no-bottom-spacing {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.spacing-400 {
  height: 400px;
}

.spacing-200 {
  height: 200px;
}

.spacing-100 {
  height: 100px;
}

.spacing-50 {
  height: 20px;
}

/* ACCORDION */
.accordion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.accordion dt {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.accordion dt a {
  display: flex;
  align-items: center;
  position: relative;
}

.accordion dt a:before {
  content: "\f078";
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: #c6a34878;
  border-radius: 50%;
  font-family: "Font Awesome 5 Pro";
  font-size: 13px;
}

.accordion dt a:hover {
  text-decoration: none;
}

.accordion dd {
  width: 100%;
  display: block;
  padding-top: 15px;
  margin-bottom: 30px;
}

/* HAMBURGER */
.hamburger path {
  -webkit-transform: translate3d(0, 0, 0);
  fill: transparent;
  stroke-width: 2px;
  stroke: #fff;
  stroke-linecap: round;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.hamburger path.line-center {
  padding: 10px 0;
}

.hamburger.active .line-center {
  -moz-transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}

.hamburger.active .line-top {
  -moz-transform: rotate(45deg) translateX(6px) translateY(-9px);
  -webkit-transform: rotate(45deg) translateX(6px) translateY(-9px);
  -o-transform: rotate(45deg) translateX(6px) translateY(-9px);
  -ms-transform: rotate(45deg) translateX(6px) translateY(-9px);
  transform: rotate(45deg) translateX(6px) translateY(-9px);
}

.hamburger.active .line-bottom {
  -moz-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  -webkit-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  -o-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  -ms-transform: rotate(-45deg) translateX(-15px) translateY(0px);
  transform: rotate(-45deg) translateX(-15px) translateY(0px);
}

/* PRELOADER */
.preloader {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s;
  overflow: hidden;
}

.preloader .inner {
  display: inline-block;
  position: relative;
  z-index: 1;
  animation-name: preloader-inner;
  animation-duration: 0.8s;
  transition: all ease 0.8s;
}

.preloader .inner figure {
  width: 200px;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 40%;
  top: 0;
  margin-bottom: 0;
}

.preloader .inner figure img {
  height: auto;
  width: 150px;
}


.preloader .inner .progress-bar {
  background: none;
  margin: auto;
  text-align: center;
}

.preloader svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  fill: #fff;
}

.preloader svg path {
  animation-name: preloader-svg;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 0.7s;
  animation-play-state: paused;
  animation-fill-mode: forwards;
}

/* BEFORE PAGE LOADED */
.navbar {
  transform: translateY(-100%);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 0.20s;
}

.slider {
  transform: scale(1.4);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 0.25s;
  opacity: 0;
}

.page-header {
  transform: scale(1.4);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 0.25s;
  opacity: 0;
}

/* PAGE LOADED */
.page-loaded .preloader {
  top: 100%;
}

.page-loaded .preloader .inner {
  transform: translateY(50px);
  opacity: 0;
}

.page-loaded .preloader svg path {
  animation-play-state: running;
}

.page-loaded .navbar {
  transform: translateY(0);
}

.page-loaded .slider {
  transform: scale(1);
  opacity: 1;
}

.page-loaded .page-header {
  transform: scale(1);
  opacity: 1;
}

/* PAGE TRANSITION */
.page-transition {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: -100%;
  z-index: 99;
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.7s;
  overflow: hidden;
}

.page-transition.active {
  top: 0;
}

.page-transition.active svg path {
  animation-name: page-transition;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.page-transition svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  fill: #080808;
}

/* SEARCH BOX */
.search-box {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  background: #fff;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.search-box.active {
  opacity: 1;
  visibility: visible;
}

.search-box .container {
  display: flex;
  flex-wrap: wrap;
}

.search-box .container .form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.search-box .container .form h3 {
  width: 100%;
  display: block;
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  font-size: 30px;
}

.search-box .container .form input[type="search"] {
  width: 70%;
  border: none;
  border-bottom: 2px solid #eee;
  margin: 0 15%;
  margin-bottom: 20px;
  font-size: 19px;
}

.search-box .container .search-events {
  width: 100%;
  display: block;
  margin-top: 5vh;
}

.search-box .container .search-events ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.search-box .container .search-events ul li {
  flex: 1;
  margin: 0;
  padding: 0 5%;
  list-style: none;
  text-align: center;
}

.search-box .container .search-events ul li h5 {
  width: 100%;
  display: block;
  font-size: 20px;
  font-family: 'Prata';
  font-weight: 400;
}

.search-box .container .search-events ul li h5 a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #080808 2px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #080808 2px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), #080808 1px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}

.search-box .container .search-events ul li h5 a:hover {
  background-size: 100% 100%;
  text-decoration: none;
}

.search-box .container .search-events ul li small {
  width: 100%;
  display: block;
  opacity: 0.7;
}

/* SIDE WIDGET */
.side-widget {
  width: 540px;
  max-width: 80vw;
  height: 100vh;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 10;
  padding: 30px 50px;
  padding-right: 110px;
  color: #fff;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  overflow: auto;
}

.side-widget.active {
  left: 0;
}

.side-widget.active .logo {
  opacity: 1;
  transform: translateX(0);
}

.side-widget.active .inner {
  opacity: 1;
  transform: translateX(0);
}

.side-widget.active .display-mobile {
  opacity: 1;
  transform: translateX(0);
}

.side-widget.active svg path {
  animation-name: side-widget-in;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.side-widget svg {
  width: 100%;
  height: 143%;
  position: absolute;
  right: 0;
  top: 0;
  fill: #080808;
}

.side-widget svg path {
  animation-name: side-widget-out;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.side-widget .logo {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  transform: translateX(-100px);
}

.side-widget .logo img {
  height: 62px;
}

.side-widget .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  opacity: 0;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  transform: translateX(-100px);
}

.side-widget .inner .widget {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.side-widget .inner .widget:last-child {
  margin-bottom: 0;
}

.side-widget .inner .widget p:last-child {
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.8;
}

.side-widget .inner .widget-title {
  width: 100%;
  display: block;
  font-size: 26px;
  font-family: 'Cinzel', serif;
  margin-bottom: 15px;
  color: #94ffc4;
}

.side-widget .display-mobile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  opacity: 0;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  transform: translateX(-100px);
  display: none;
}

.side-widget .display-mobile .custom-menu {
  width: 100%;
  display: block;
  margin-top: auto;
}

.side-widget .display-mobile .custom-menu ul {
  width: 100%;
  margin: 0;
}

.side-widget .display-mobile .custom-menu ul li {
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: 20px;
}

.side-widget .display-mobile .custom-menu ul li a {
  display: inline-block;
  color: #fff;
  margin: 5px 0;
}

.side-widget .display-mobile .custom-menu ul li a:hover {
  text-decoration: none;
  color: #94ffc4;
}

.side-widget .display-mobile .site-menu {
  width: 100%;
  display: block;
  margin-bottom: auto;
  margin-top: 40px;
}

.side-widget .display-mobile .site-menu ul {
  width: 100%;
  margin: 0;
  display: block;
  padding: 0;
}

.side-widget .display-mobile .site-menu ul li {
  width: 100%;
  font-family: 'Prata';
  font-size: 20px;
  display: block;
}

.side-widget .display-mobile .site-menu ul li a {
  display: inline-block;
  color: #fff;
  margin: 5px 0;
  font-family: 'Montserrat';
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
}

.side-widget .display-mobile .site-menu ul li a:hover {
  text-decoration: none;
  color: #ffe494;
}

/* NAVBAR */
.hamburger-menu {
  display: none !important;
}

.navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 120px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background: #040404;
}

.navbar.light {
  color: #fff;
}

.navbar.light .custom-menu ul li a {
  color: #fff;
}

.navbar.light .site-menu ul li a {
  color: #fff;
}

.navbar.light .hamburger-menu .hamburger path {
  stroke: #fff;
}

.navbar.light .navbar-button a {
  border: 3px solid transparent;
  line-height: 56px;
}

.navbar.light .navbar-button a:hover {
  border-color: #94ffc4;
  background: none;
  color: #fff;
}

.navbar .logo {
  display: inline-block;
}

.navbar .logo a {
  display: block;
}

.navbar .logo a img {
  height: 44px;
}

.navbar .custom-menu {
  display: inline-block;
  margin: 0 auto;
}

.navbar .custom-menu ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar .custom-menu ul li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  list-style: none;
}

.navbar .custom-menu ul li a {
  display: inline-block;
  position: relative;
  color: white;
}

.navbar .custom-menu ul li a:hover {
  text-decoration: none;
}

.navbar .custom-menu ul li a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  transition: width 0s ease, background .25s ease;
}

.navbar .custom-menu ul li a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width .25s ease;
}

.navbar .custom-menu ul li a:hover:before {
  width: 50%;
  background: #94ffc4;
  transition: width .25s ease;
}

.navbar .custom-menu ul li a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.navbar .site-menu {
  display: inline-block;
}

.navbar .site-menu ul {
  /* width: 100%; */
  display: block;
  margin: 0;
  padding: 0 2px;
  /* border-left: 1px solid #00000029; */
  padding-left: 21px;
}

.navbar .site-menu ul li {
  display: inline-block;
  margin: 0 4px;
  padding: 12px 13px;
  list-style: none;
}

.navbar .site-menu ul li a {
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-family: 'Muli';
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.navbar .site-menu ul li a:hover {
  text-decoration: none;
}

.navbar .site-menu ul li a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  transition: width 0s ease, background .25s ease;
}

.navbar .site-menu ul li a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  background: #c6a348;
  transition: width .25s ease;
}

.navbar .site-menu ul li a:hover:before {
  width: 50%;
  background: #c6a348;
  transition: width .25s ease;
}

.navbar .site-menu ul li a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.navbar .search-button {
  height: 30px;
  color: white;
  line-height: 34px;
  display: inline-block;
  margin-left: 15px;
}

.navbar .search-button i {
  display: inline-block;
  font-size: 17px;
  cursor: pointer;
}

.navbar .hamburger-menu {
  margin-left: 30px;
  display: inline-block;
  cursor: pointer;
}

.navbar .navbar-button {
  margin-left: 30px;
}

.navbar .navbar-button a {
  height: 37px;
  line-height: 36px;
  display: inline-block;
  text-transform: uppercase;
  padding: 0 28px;
  /* background: #ffffff29; */
  border: 1px solid #ffffff5e;
  color: #fadc8e;
  font-size: 12px;
  border-radius: 29px;
  font-weight: 700;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.navbar .navbar-button a:hover {
  text-decoration: none;
  background: #d09806;
  color: #fff;
}

/* SLIDER */
.h-auto {
  height: auto;
}

.instadiv .slider0 .h-full.relative:after {
  border-radius: 15px;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 7px;
}

.slider {
  width: 100%;
  /* height: 100vh; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slider .container-fluid {
  width: calc(100% - 120px);
  margin: 0 60px;
}

.slider .kinetic-slider {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: #080808;
}

.slider .kinetic-slider canvas {
  width: 100% !important;
  height: auto !important;
  transform: none !important;
}

.slider .kinetic-texts {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
  color: #fff;
}

.slider .kinetic-texts .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.slider .kinetic-texts .swiper-slide * {
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  opacity: 0;
}

.slider .kinetic-texts .swiper-slide.swiper-slide-active * {
  opacity: 1;
}

.slider .kinetic-texts .swiper-slide h1 {
  font-size: 126px;
  font-weight: 400;
  font-family: 'Cinzel', serif;
  line-height: 1;
  margin-bottom: 30px;
}

.slider .kinetic-texts .swiper-slide p {
  font-size: 19px;
  margin: 0;
  opacity: 0.7;
  padding-left: 30px;
  border-left: 3px solid #fff;
  margin-left: 10px;
}

.slider .slider-images {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.slider .slider-images .swiper-slide {
  background-size: cover !important;
}

.slider .slider-images .swiper-slide .mobile-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover !important;
  display: none;
}

.slider .slider-texts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
}

.slider .slider-texts .svg-morph {
  position: absolute;
  top: calc(50% - 200px);
  left: 50%;
  transform: translateX(-140%);
}

.slider .slider-texts .svg-morph path {
  fill: #94ffc4;
  animation-name: svg-morph;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 8s;
  animation-fill-mode: both;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.slider .slider-texts .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.slider .slider-texts .swiper-slide h1 {
  font-size: 126px;
  font-weight: 400;
  font-family: 'Cinzel', serif;
  line-height: 1;
  margin-bottom: 30px;
}

.slider .slider-texts .swiper-slide p {
  font-size: 19px;
  margin: 0;
  opacity: 0.7;
  padding-left: 30px;
  border-left: 3px solid #080808;
  margin-left: 10px;
}

.slider .swiper-fraction {
  width: 200px;
  color: #fff;
}

.slider .swiper-fraction span {
  width: 22px;
  display: inline-block;
  color: #080808;
  font-weight: 700;
}

.slider .swiper-fraction span:before {
  content: "0";
}

.slider .swiper-fraction .swiper-pagination-current {
  margin-right: 122px;
}

.slider .swiper-pagination-progressbar {
  top: auto;
  bottom: 56px;
  left: 50px;
  width: 100px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #080808;
}

.slider .slider-nav {
  display: flex;
  height: 70px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.slider .slider-nav .button-prev {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: #94ffc4;
  color: #080808;
  margin-left: auto;
  margin-right: 8px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transform: translateY(-22px);
  border-radius: 50%;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.slider .slider-nav .button-prev:hover {
  background: #080808;
  color: #94ffc4;
}

.slider .slider-nav .button-next {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: #94ffc4;
  color: #080808;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transform: translateY(-22px);
  border-radius: 50%;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.slider .slider-nav .button-next:hover {
  background: #080808;
  color: #94ffc4;
}

/* PLAY NOW */
.play-now {
  position: relative;
  width: 340px;
  height: 340px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
  margin-left: -100px;
}

.play-now .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #080808;
  transform: translateX(-50%) translateY(-50%);
}

.play-now text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  fill: #080808;
}

.play-now svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 340px;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  -ms-animation-duration: 10s;
  -o-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  height: 540px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
}

.page-header .inner {
  width: 100%;
  display: block;
  padding: 0 60px;
  position: relative;
  margin-top: 60px;
}

.page-header .inner h1 {
  font-size: 126px;
  font-weight: 400;
  font-family: 'Prata';
  line-height: 1;
  margin-bottom: 30px;
  position: relative;
}


.page-header .inner p {
  font-size: 19px;
  margin: 0;
  opacity: 0.7;
  padding-left: 30px;
  border-left: 3px solid #080808;
  margin-left: 10px;
  position: relative;
  padding-right: 50%;
}

.page-header .inner .svg-morph {
  position: absolute;
  top: calc(50% - 200px);
  left: 50%;
  z-index: 0;
  transform: translateX(-140%);
}

.page-header .inner .svg-morph path {
  fill: #94ffc4;
  animation-name: svg-morph;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 8s;
  animation-fill-mode: both;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

/* CONTENT SECTION */
.content-section {
  width: 100%;
  display: block;
  padding: 120px 0 16px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.footerpara {
  color: white;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-weight: 500;
  padding-right: 120px;
  margin-bottom: 5pc;
  margin-top: 1pc;
  font-family: 'Prata';
}

.footerpara b {
  color: #c6a348;
  font-family: 'Muli';
}

.content-section .container {
  position: relative;
  z-index: 1;
}

.content-section .container-fluid {
  position: relative;
  z-index: 1;
}

.bottom-white {
  position: relative;
}

.bottom-white:before {
  content: "";
  width: 100%;
  height: 140px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.bottom-white:before .container {
  position: relative;
  z-index: 1;
}

/* VIDEO BG */
.video-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.video-bg:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #08080882;
  z-index: 1;
  opacity: 0.7;
}

.video-bg video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* SECTION TITLE */
.section-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.section-title figure {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.section-title figure img {
  height: 70px;
}

.section-title h6 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.5;
}

.section-title h2 {
  width: 100%;
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.1px;
  line-height: 1.2;}

.section-title h2 strong {
  font-weight: 600;
}

/* CUSTOM LINK */
.custom-link {
  display: inline-block;
  position: relative;
}

.custom-link:hover {
  text-decoration: none;
}

.custom-link:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  transition: width 0s ease, background .25s ease;
}

.custom-link:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width .25s ease;
}

.custom-link:hover:before {
  width: 50%;
  background: #94ffc4;
  transition: width .25s ease;
}

.custom-link:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* CUSTOM BUTTON */
.col-12.text-center .custom-button {
  margin-top: 50px;
}

.custom-button {
  height: 40px;
  line-height: 36px;
  display: inline-block;
  background: #c6a348;
  padding: 0 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.custom-button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid transparent;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.custom-button:hover {
  text-decoration: none;
  line-height: 50px;
  text-indent: 6px;
}

.custom-button:hover:before {
  top: 6px;
  left: 6px;
  border-color: #080808;
}

/* CIRCLE BUTTON */
.text-center .circle-button {
  margin: 0 auto;
}

.circle-button {
  width: 183px;
  height: 79px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #c6a348;
  border-radius: 50%;
  text-align: center;
  font-weight: 500;
}

.circle-button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -5px;
  top: -5px;
  border: 1px solid #080808;
  border-radius: 50%;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.circle-button:hover {
  text-decoration: none;
}

.circle-button:hover:before {
  left: 0;
  top: 0;
  opacity: 0;
}

/* IMAGE BOX */
.image-box {
  width: 100%;
  display: block;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.image-box.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.image-box img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

/* SIDE ICON LIST */
.side-icon-list {
  width: inherit;
  display: flex;
  flex-wrap: wrap;
  padding-right: 80px;
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(360deg, rgb(134 88 10) 0%, rgba(148, 187, 233, 0) 112%);
  padding: 2%;

}

.side-icon-list.right-side {
  padding-right: 0;
  padding-left: 80px;
}

.side-icon-list ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.side-icon-list ul li {
  width: 100%;
  display: block;
  margin-bottom: 50px;
  padding: 0;
  list-style: none;
}

.side-icon-list ul li:last-child {
  margin-bottom: 0;
}

.side-icon-list ul li figure {
  width: 80px;
  height: 100%;
  float: left;
  margin-bottom: 0;
}

.side-icon-list ul li figure img {
  height: 44px;
}

.side-icon-list ul li .content {
  width: calc(100% - 80px);
  display: inline-block;
  margin-top: 0;
  font-family: 'Prata';
}

.side-icon-list ul li .content h5 {
  width: 100%;
  color: white;
  display: block;
  font-family: 'Prata';
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 300;
  color: white;
}

.side-icon-list ul li .content p {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  /* opacity: 0.7; */
  color: #fffffffa;
  font-family: 'Prata';
  font-weight: 100;
}

.side-icon-list ul li .content a {
  display: inline-block;
  text-decoration: underline;
}

/* IMAGE BOX CAROUSEL */
.image-box-carousel {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.image-box-carousel figure {
  width: 100%;
  display: block;
  margin-bottom: 50px;
  position: relative;
}

.image-box-carousel figure:before {
  content: "";
  width: 1px;
  height: 64px;
  background: #080808;
  position: absolute;
  left: calc(50% - 0.5px);
  bottom: -32px;
  opacity: 0.8;
}

.image-box-carousel figure img {
  width: 100%;
  height: 523px;
  object-fit: cover;
}

.svgi svg {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  color: white;
  background: #c6a348;
  padding: 9px;
  width: 34px;
  height: 34px;
  border-bottom-left-radius: 21px;
}

.image-box-carousel .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  text-align: center;
}

.image-box-carousel .content-box h5 {
  width: 100%;
  display: block;
  font-size: 14px;
  font-family: 'Muli';
  font-weight: 700;
}

.image-box-carousel .content-box .custom-link {
  color: #d1ad13;
  font-weight: 200;
  font-family: 'Prata';
  font-size: 14px;
}

.productpara {
  padding-top: 11px;
  font-family: 'Muli';
  font-size: 13px;
  margin-bottom: 15px;
  /* width: 90%; */
  color: black;
  margin: auto;
  margin-bottom: 15px;
  /* border-top: 1px solid #0000001c; */
}


/* SIDE CONTENT */
.side-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.side-content.left {
  padding-right: 20%;
}



.side-content small {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 20px;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  font-size: 14px;
  font-weight: 500;
  background: #94ffc4;
  border-radius: 40px;
}

.side-content h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: 'Prata';
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;

}

.side-content p {
  width: 100%;
  display: block;
  margin: 0;
  opacity: 0.7;
  font-family: 'Muli';
  font-size: 14px;
}

.side-content table {
  width: 100%;
  margin: 20px 0;
  opacity: 0.7;
}

.side-content table tr {
  padding: 5px 0;
}

.side-content table tr td:nth-child(2) {
  font-weight: 700;
}

/* SIDE IMAGE */
.side-image {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}

.side-image.left-half {
  overflow: hidden;
  width: 50vw;
  float: right;
  height: 100%;
}

.side-image.right-half {
  width: 50vw;
  float: left;
}

.moreevent {
  color: #ffffffa8;
  width: 100%;
  font-size: 15px;
}

.moreevent:hover {
  color: #fff;
  width: 100%;
  font-size: 15px;
}

.moreevent svg {
  margin-left: 6px;
  color: white;
}


.moreevent0 {
  color: #d19d1a;
  width: 100%;
  font-size: 14px;
}

.moreevent0:hover {
  color: #000;
  width: 100%;
  font-size: 14px;
}

.moreevent0 svg {
  margin-left: 6px;
  color: #d2d2d2;
}

.side-image.is-inview img {
  opacity: 1;
  transform: scale(1);
  height: -webkit-fill-available;
}

.side-image img {
  width: 100%;
  opacity: 1;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

/* SIDE LIST */
.side-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.side-list.left {
  padding-right: 20%;
}

.side-list.right {
  padding-left: 20%;
}

.side-list h2 {
  width: 100%;
  display: block;
  font-size: 52px;
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
}

.side-list ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.side-list ul li {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
}

.side-list ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #080808;
  opacity: 0.5;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
  border-radius: 50%;
}

.side-list ul li:last-child {
  margin-bottom: 0;
}

/* SIDE ARTS */
.side-arts {
  width: 50vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #080808;
  color: #fff;
  padding: 100px 80px;
}

.side-arts .titles {
  width: 100%;
  display: block;
  margin-bottom: 60px;
}

.side-arts .titles h6 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.5;
}

.side-arts .titles h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 26px;
  text-transform: uppercase;
  font-family: 'Prata';
  /* letter-spacing: -2px; */
  line-height: 1;
}

.side-arts ul {
  width: calc(100% + 30px);
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 0;
}

.side-arts ul li {
  width: 50%;
  display: inline-block;
  margin: 0;
  margin-bottom: 20px;
  padding: 0 15px;
  list-style: none;
}

.side-arts ul li img {
  width: 100%;
  display: block;
  border: 2px solid #fff;
  height: 292px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 12px 12px 25px -12px #ffbf1bbd;
}

.hyperlink-event strong {
  margin-top: 1.2pc;
  color: white;
  display: block;
  font-size: 16px;
  font-family: 'Muli';
  font-weight: 500;
}

.hyperlink-event span {
  font-size: 11px;
  color: gold;
}

/* COUNTER BOX */
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
  padding: 0;
  padding-right: 7px;
}

.counter-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-box .odometer {
  font-size: 34px;
  font-family: 'Prata';
  display: inline-block;
  /* line-height: 1; */
  position: relative;
  padding: 0;
}

.counter-box .odometer:after {
  content: "";
  width: 33px;
  height: 33px;
  background: #e5c470;
  border-radius: 50%;
  position: absolute;
  right: -53px;
  top: -11px;
  z-index: -1;
}

.counter-box .value {
  font-size: 35px;
  font-family: 'Prata';
  display: inline-block;
  line-height: 1;
  margin-left: 2px;
  position: relative;
  z-index: 1;
  color: #c94343;
}

.counter-box p {
  width: 100%;
  display: block;
  margin: 0;
  text-align: center;
  font-weight: 700;
  opacity: 0.7;
  font-size: 13px;
}

/* IMAGE CONTENT BOX */
.col-lg-4:nth-child(1) .image-content-box {
  padding-right: 30px;
}

.col-lg-4:nth-child(2) .image-content-box {
  padding: 0 15px;
}

.col-lg-4:nth-child(3) .image-content-box {
  padding-left: 30px;
}

.image-content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.image-content-box.is-inview figure img {
  opacity: 1;
  transform: scale(1);
}

.image-content-box figure {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}

.image-content-box figure img {
  width: 100%;
  /* opacity: 0; */
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.image-content-box .content-box {
  width: calc(100% - 30px);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
  margin-top: -30px;
  padding-top: 30px;
  padding-right: 30px;
}

.image-content-box .content-box h3 {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Muli';
  margin-bottom: 0px;
}

.image-content-box .content-box p {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 200;
  color: #868686;
}

/* TESTIMONIAL BOX */
.col-md-6:nth-child(2) .testimonial-box {
  margin-left: auto;
}

.testimonial-box {
  width: 100%;
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
}

.testimonial-box .content-box {
  width: 100%;
  display: block;
  background: #fffbf7;
  position: relative;
  margin-bottom: 30px;
  padding: 50px;
  font-size: 18px;
  font-family: 'Prata';
}

.testimonial-box .content-box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #fffbf7 transparent transparent transparent;
  position: absolute;
  left: 50px;
  bottom: -20px;
}

.testimonial-box h6 {
  width: 100%;
  display: block;
  margin: 0;
  padding-left: 50px;
}

/* COLLECTION BOX */
.col-lg-4:nth-child(3n + 1) .collection-box {
  padding-right: 30px;
}

.col-lg-4:nth-child(3n + 2) .collection-box {
  padding: 0 15px;
}

.col-lg-4:nth-child(3n + 3) .collection-box {
  padding-left: 30px;
}

.collection-box {
  width: 100%;
  display: block;
  margin: 15px 0;
}

.collection-box.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.collection-box figure {
width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid #deb447;
    padding: 12px;
    border-radius: 11px;
}

.collection-box figure img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.collection-box h4 {
  width: 100%;
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 30px;
  margin-bottom: 20px;
}

.collection-box h4 a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px), #080808 2px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px), #080808 2px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px), #080808 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}

.collection-box h4 a:hover {
  background-size: 100% 100%;
  text-decoration: none;
}

.collection-box p {
  width: 100%;
  display: block;
  margin: 0;
}

/* EXHIBITION BOX */
.col-lg-4:nth-child(3n + 1) .exhibition-box {
  padding-right: 30px;
}

.col-lg-4:nth-child(3n + 2) .exhibition-box {
  padding: 0 15px;
}

.col-lg-4:nth-child(3n + 3) .exhibition-box {
  padding-left: 30px;
}

.exhibition-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.exhibition-box.is-inview .img {
  opacity: 1;
  transform: scale(1);
}

.exhibition-box figure {
  width: 100%;
  display: block;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.exhibition-box figure * {
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.exhibition-box figure .info {
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: center;
  border-radius: 40px;
}

.exhibition-box figure .info span {
  width: 100%;
  max-width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  font-size: 14px;
  font-weight: 500;
  background: #c6a348;
  border-radius: 40px;
  color: white;
}

.exhibition-box figure .info figure {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #fff;
  border-radius: 40px;
}

.exhibition-box figure .info figure img {
  width: 17px;
  height: 17px;
}

.exhibition-box figure .info:hover {
  width: auto;
}

.exhibition-box figure .info:hover figure {
  opacity: 0;
}

.exhibition-box figure .info:hover span {
  max-width: 220px;
  padding: 0 20px;
}

.exhibition-box figure .img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.exhibition-box .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.exhibition-box .content-box h4 {
  text-align: left;
  width: 100%;
  font-weight: 700;
  display: block;
  font-family: 'Muli';
  font-size: 19px;
  margin-bottom: 4px;
}

.exhibition-box .content-box h4 a {
  display: inline;
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px), #080808 2px);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px), #080808 2px);
  background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 2px), #080808 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}

.exhibition-box .content-box h4 a:hover {
  background-size: 100% 100%;
  text-decoration: none;
}

.exhibition-box .content-box p {
  text-align: left;
  width: 100%;
  display: block;
  margin: 0;
  font-size: 13px;
  color: #868686;
}

/* TEXT BOX */
.text-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.text-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: 'Prata';
  font-size: 50px;
}

.text-box h3 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  font-size: 46px;
}

.text-box p {
  width: 100%;
  display: block;
  opacity: 0.7;
}

/* TEXT CONTENT */
.col-lg-4:nth-child(3) .text-content {
  margin-top: 100px;
}

.col-lg-4:nth-child(6) .text-content {
  margin-top: 100px;
}

.text-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.text-content h6 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 600;
}

.text-content p {
  width: 100%;
  display: block;
  padding-right: 1%;
  /* opacity: 0.7; */
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Muli';
}

.text-content p:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0e783d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.text-content p:last-child {
  margin-bottom: 0;
}

/* ART SLIDER */
.art-slider {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.art-slider.is-inview .art-slider-images {
  opacity: 1;
  transform: scale(1);
}

.art-slider .titles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.art-slider .titles h6 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.5;
  color: white;
}

.art-slider .titles h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-size: 31px;
  font-family: "Prata";
  letter-spacing: 0px;
  line-height: 1.4;
  font-weight: 500;
}

.art-slider .art-slider-images {
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

/* ART SLIDER CONTENT */
.art-slider-content {
  width: 100%;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.art-slider-content .swiper-slide {
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  height: 100.333px !important;
}

.art-slider-content .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.menusideimg2 {
  position: absolute;
  width: 128px;
  bottom: -1px;
  right: 0px;
}

.menusideimg {
  position: absolute;
  width: 76px;
  bottom: 0px;
  right: 0px;
}

.art-slider-content .swiper-slide span {
  width: 70px;
  border-bottom: 3px solid #fff;
  margin-right: 40px;
  float: left;
  font-family: 'Cinzel', serif;
  transform: rotate(-90deg);
  font-weight: 700;
  color: white;
}

.art-slider-content .swiper-slide h3 {
  display: block;
  font-family: 'Montserrat';
  text-transform: capitalize;
  margin: 0;
  font-size: 20px;
  color: white;
}

/* ART SLIDER IMAGES */
.art-slider-images {
  width: 50vw;
  float: left;
  position: relative;
  overflow: hidden;
}

.art-slider-images .swiper-slide {
  background: #080808;
}

.art-slider-images .swiper-slide img {
  width: 100%;
  float: left;
  height: 450px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
}

.art-slider-images .swiper-slide img:hover {
  filter: none;
}

/* HORIZONTAL SCROLL */
.horizontal-scroll {
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.horizontal-scroll .scroll-inner {
  width: 200vw;
  display: flex;
  position: relative;
  z-index: 1;
}

.horizontal-scroll .scroll-inner .scroll-wrapper {
  width: 100vw;
  float: left;
}

/* IMAGE ICON BOX */
.image-icon-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 145px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.image-icon-box.is-inview .content-image img {
  opacity: 1;
  transform: scale(1);
}

.image-icon-box:hover .content-box .expand {
  max-height: 190px;
}

.image-icon-box:hover .content-box p {
  margin-bottom: 40px;
  margin-top: 20px;
}

.image-icon-box * {
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.image-icon-box .icon {
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
}

.image-icon-box .icon img {
  height: 50px;
}

.image-icon-box .content-image {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}

.image-icon-box .content-image img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.image-icon-box .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  padding: 30px 10%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.image-icon-box .content-box .expand {
  width: 66%;
  max-height: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.image-icon-box .content-box b {
  width: 100%;
  display: block;
  color: #f4c13bd6;
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 10px;
}

.image-icon-box .content-box h4 {
  width: 81%;
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Muli';
  text-transform: capitalize;
  margin-bottom: 0;
}

.image-icon-box .content-box p {
  width: 100%;
  margin: 0;
}

.image-icon-box .content-box a {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #0000001f;
  padding: 7px 20px;
  margin-top: 10px;
}

.image-icon-box .content-box a:hover {
  text-decoration: none;
}

.image-icon-box .content-box a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  transition: width 0s ease, background .25s ease;
}

.image-icon-box .content-box a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width .25s ease;
}

.image-icon-box .content-box a:hover:before {
  width: 50%;
  background: #f6cb5b;
  transition: width .25s ease;
}

.image-icon-box .content-box a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* CTA BOX */
.cta-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  color: #fff;
  margin: 100px 0;
}

.cta-box.dark {
  color: #080808;
  margin: 0;
}

.cta-box.dark .custom-button:hover {
  background: #94ffc4;
  color: #080808;
}

.cta-box.dark .custom-button:hover:before {
  border-color: #080808;
}

.cta-box figure {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.cta-box figure img {
  height: 70px;
}

.cta-box h6 {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
}

.cta-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.2;
  letter-spacing: 0;
}

.bgvideo {
  align-items: center;
  display: flex !important;
}

.bgimg {
  align-items: center;
  display: flex !important;
}

.bgimg .cta-box {
  margin: 50px 0;
  align-items: center;
}

.bgimg h6 {
  margin-bottom: 0;
}

.bgimg h2 {
  /* font-size: 35px; */
}

.bgimg img {
  width: 100%;
  object-position: top;
  height: 333px;
  object-fit: cover;
  filter: grayscale(1);
}

.cta-box h2 strong {
  font-weight: 600;
}

.cta-box p {
  padding: 0 20%;
}

.cta-box .custom-button {
  margin: 0 auto;
  margin-top: 25px;
}

.cta-box .custom-button:hover {
  background: #080808;
  color: #fff;
}

.cta-box .custom-button:hover:before {
  border-color: #fff;
}

/* NOTE BOX */
.note-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #94ffc4;
  color: #080808;
  padding: 60px;
  margin: 50px 0;
}

.note-box h2 {
  width: 100%;
  display: block;
  font-size: 52px;
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
  line-height: 1.2;
}

.note-box p {
  width: 100%;
  display: block;
  margin: 0;
  opacity: 0.7;
  font-size: 19px;
}

/* RECENT NEWS */
.col-12:nth-child(2) .recent-news {
  margin-bottom: 100px;
}

.col-12:nth-child(even) .recent-news figure {
  order: 1;
}

.col-12:nth-child(even) .recent-news .content-box {
  order: 2;
  margin-right: 0;
  margin-left: -15%;
  text-align: right;
}

.col-12:nth-child(even) .recent-news .content-box p {
  padding-left: 30%;
  padding-right: 0;
}

.recent-news {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 150px;
  padding: 0 5%;
}

.recent-news figure {
  width: 60%;
  display: inline-block;
  margin: 0;
  overflow: hidden;
}

.recent-news figure.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.recent-news figure img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.recent-news .content-box {
  width: 55%;
  display: inline-block;
  margin-right: -15%;
  position: relative;
  z-index: 1;
}

.recent-news .content-box small {
  height: 22px;
  line-height: 22px;
  display: inline-block;
  background: #eccf226b;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
}

.recent-news .content-box h3 {
  width: 100%;
  display: block;
  font-size: 54px;
  font-weight: 400;
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  margin-top: 10px;
}

.recent-news .content-box p {
  width: 100%;
  display: block;
  padding-right: 30%;
  margin-bottom: 40px;
  opacity: 0.7;
}

/* NEWSLETTER BOX */
.newsletter-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fbfbfb;
  padding: 16px 0 0;
  color: white;
  border: 1px solid #c4c4c4;
}

.newsletter-box .form {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  padding-right: 50px;
  padding-left: 50px;
}

.newsletter-box .form .titles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.newsletter-box .form .titles h6 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  color: #ff9994;
}

.newsletter-box .form .titles h2 {
  display: block;
  margin-bottom: 0;
  font-size: 40px;
  width: 70%;
  font-family: 'Prata';
  letter-spacing: -2px;
  line-height: 1.1;
  color: black;
}

.newsletter-box .form small {
  width: 100%;
  display: block;
  margin-top: 15px;
  color: #c6a348;
}

.newsletter-box .form small a {
  display: inline-block;
  text-decoration: underline;
}

.newsletter-box .form .inner {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #ebebeb82;
  padding: 10px;
}

.newsletter-box .form input[type="email"] {
  width: 70%;
  flex: auto;
  border: none;
  padding: 0;
  padding-left: 20px;
}

.newsletter-box .form input[type="submit"] {
  width: 30%;
  background: #c6a348;
  padding: 0;
  color: white;
}

.newsletter-box .newsletter-image {
  width: 35%;
  display: inline-block;
  margin: 0;
}

.newsletter-box .newsletter-image img {
  /* filter: invert(1); */
  width: 100%;
}

/* CONTACT BOX */
.contact-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-right: 10%;
}

.contact-box:last-child {
  margin-bottom: 0;
}

.contact-box h6 {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 600;
}

.contact-box a {
  display: block;
  text-decoration: underline;
}

.contact-box a:hover {
  text-decoration: none;
}

.contact-box p {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* CONTACT FORM */
.contact-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 10%;
}

.contact-form .mb-3 {
  width: 100%;
  display: block;
}

.contact-form .mb-3 input[type="text"] {
  width: 100%;
}

.contact-form .mb-3 textarea {
  width: 100%;
}

/* GOOGLE MAPS */
.google-maps {
  width: 100%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #94ffc4;
}

.google-maps iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: none;
  filter: grayscale(1);
}

/* BLOG POST */
.blog-post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 120px;
}

.blog-post figure {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  overflow: hidden;
}

.blog-post figure.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.blog-post figure img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.blog-post .content-box {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.blog-post .content-box small {
  height: 22px;
  line-height: 22px;
  display: inline-block;
  background: #94ffc4;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
}

.blog-post .content-box h3 {
  width: 100%;
  display: block;
  font-size: 54px;
  font-weight: 400;
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  margin-top: 10px;
}

.blog-post .content-box blockquote {
  width: 100%;
  display: block;
  margin: 40px 0;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  padding-left: 40px;
  border-left: 4px solid #94ffc4;
}

.blog-post .content-box p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  opacity: 0.7;
}

.blog-post .content-box p:last-child {
  margin-bottom: 0;
}

/* SIDEBAR */
.sidebar {
  width: 100%;
  display: block;
  padding-left: 30px;
}

.sidebar .widget {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #f1f1f1;
  border-right: 4px solid #f1f1f1;
  border-bottom: 4px solid #f1f1f1;
  padding: 35px;
  margin-bottom: 35px;
  position: relative;
}

.sidebar .widget * {
  position: relative;
}

.sidebar .widget .widget-title {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 22px;
  color: #080808;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-family: 'Cinzel', serif;
}

.sidebar .widget .widget-title:after {
  content: "";
  width: 50px;
  height: 4px;
  background: #080808;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sidebar .widget .widget-title:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: difference;
}

.sidebar .widget form {
  width: 100%;
  display: block;
}

.sidebar .widget form input[type="submit"] {
  margin-top: 10px;
  background: #080808;
  color: #fff;
}

.sidebar .widget .categories {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.sidebar .widget .categories li {
  width: 100%;
  display: block;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.sidebar .widget .categories li a {
  color: #080808;
  font-size: 19px;
}

.sidebar .widget .widget-gallery {
  width: calc(100% + 4px);
  float: left;
  margin: 0 -2px;
  padding: 0;
}

.sidebar .widget .widget-gallery li {
  width: 50%;
  float: left;
  margin: 0;
  padding: 2px;
  list-style: none;
}

/* PAGINATION */
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-item.active .page-link {
  background: #080808;
  border-color: transparent;
  color: #fff;
}

.pagination .page-item .page-link {
  height: 60px;
  line-height: 60px;
  border-radius: 0 !important;
  padding: 0 20px;
  color: #080808;
}

.pagination .page-item .page-link:hover {
  text-decoration: none;
}

/* FOOTER */
.morefilms {
  color: white;
  /* display: flex; */
  /* align-items: center; */
  padding: 6%;
  margin: 0;
  color: #ededed;
  font-size: 14px;
  cursor: pointer;
}

.books {
  height: 65px;
  display: flex;
  background: #fdfdfd2e;
  border: 1px solid #bebebe;
  border-radius: 6px;
  color: white;
  align-items: center;
  padding-left: 10px;
}

.ptitle {
  color: #ffffff8a;
  font-size: 14px;
  margin-bottom: 7px;
}

.books p {
  font-size: 11px;
}

.books strong {
  font-size: 14px;
  font-weight: 800;
  text-transform: capitalize;
}

.books .col-md-10 {
  padding-left: 14px;
}

.books img {
  height: 41px;
  width: 41px;
  /* margin: auto; */
  text-align: center;
  object-fit: cover;
  border-radius: 100%;
}

.logosection img {
  width: auto;
}

.footer span {
  color: #facb54;
  font-weight: 500;
  font-family: 'Muli';
  /* text-decoration: underline; */
  font-size: 15px;
}

.logosection {
  display: flex;
  flex-wrap: wrap;
  /* max-width: 70rem; */
  padding: 1pc 0 2pc;

}

.logosection a {
  height: 6rem;
  margin-left: 2rem;
  margin-right: 2rem;
  width: 5rem;
}

.setborder {
  border-top: 1px solid #ffffff29;
  padding-top: 3%;
  margin-top: 3%;
}

.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  background-color: #1e1e1e;
  background-image: url(../images/banner/banner.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: scroll;
}

.keepexplore {
  background: white;
  width: max-content;
  display: block;
  text-align: center;
  margin: -8% auto auto;
  padding: 2% 0 0% 0;
  border-radius: 8px;
  box-shadow: 0px -22px 41px -28px #000;
}

.artpattern {
  background-image: url(../public/images/arts/banner/pattern2.png);
  display: block;
  width: 100%;
  height: 34px;
  position: relative;
  top: -1px;
  background-size: contain;
  background-repeat: repeat;
}

.patterndiv {
  background-image: url(../public/images/banner/explore/4.png);
  display: block;
  width: 100%;
  height: 42px;
}

.craftpattern {
  background-image: url(../public/images/craft/pattern.png);
  display: block;
  width: 100%;
  height: 42px;
  position: relative;
  top: 2px;
  background-size: contain;
  background-repeat: repeat;
}

.footer .logo {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.footer .logo img {
  height: 64px;
}

.footer .app-logos {
  width: 100%;
  display: block;
  margin: 0;
}

.footer .app-logos img {
  width: auto;
  height: 32px;
}

.footer .widget-title {
  width: 100%;
  display: block;
  font-weight: 200;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: 'Prata';
  position: relative;
  padding-bottom: 15px;
}

.footer .widget-title:after {
  /* content: "";
  width: 70px;
  height: 2px;
  background: #080808;
  position: absolute;
  left: 0;
  bottom: 0; */
}

.social-media {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

 .social-media li {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px;
  list-style: none;
  color: black;
  background: #f3f3f1;
  margin: 0 7px 0 0;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  text-align: center;
}

.social-media li a {
  font-size: 14px;
  display: inline-block;
  color: #000000;

}

 .social-media li a i {
  width: 20px;
  display: inline-block;
  font-size: 14px;
}

 .social-media li a:hover {
  text-decoration: underline;
}

.footer .footer-menu {
  width: 100%;
  display: block;
  margin: 0;
  padding-left: 0px;
}

.footer .footer-menu li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 8px;
  color: #ffffffdb;
}

.footer .footer-menu li a {
  display: inline-block;
  font-size: 14px;
  color: #ffffffdb;
}

.footer .address {
  width: 100%;
  display: block;
  line-height: 1.8;
}

.footer .address strong {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.footer .footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #f7f7f71a;
  margin-top: 60px;
  font-size: 14px;
}

.footer .footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
}

.footer .footer-bottom .copyright {
  display: flex;
  color: white;
}

.footer .footer-bottom .copyright ul {
  display: flex;
  color: white;
  padding: 0;
  margin-left: 18px;
  margin-bottom: 0;
  align-items: center;
}

.footer .footer-bottom .copyright ul li {
  font-size: 11px;
  font-family: 'Muli';
  font-weight: 100;
  letter-spacing: 1px;
  margin-right: 7px;
}

.footer .footer-bottom .copyright ul li:nth-child(1) {
  border-right: 1px solid #fff6;
  padding-right: 9px;
}

.footer .footer-bottom .copyright ul li a {
  color: #ffffff;
}

.footer .footer-bottom .creation {
  margin-left: auto;
  display: inline-block;
  color: white;
}

.footer .footer-bottom .creation a {
  display: inline-block;
  text-decoration: underline;
  color: #c6a348;
}

.footer .footer-bottom .creation a:hover {
  text-decoration: none;
}


/* ANIMATIONS */
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }

  to {
    -moz-transform: rotate(0);
  }
}

@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }

  to {
    -ms-transform: rotate(0);
  }
}

@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }

  to {
    -o-transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@-webkit-keyframes svg-morph {
  0% {
    d: path("m244.333332,38.437499c26.666664,-1.666666 125.666662,0.999995 195.333325,50.33333c69.666663,49.333335 -39.666664,141.666664 -70.666664,174.229164c-31,32.5625 -176.999993,107.437507 -234.999993,76.437507c-58,-31 73.666665,-107.000001 49,-190.4375c-24.666665,-83.437499 34.666668,-108.895835 61.333332,-110.562501z");
  }

  100% {
    d: path("m244.333332,38.437499c58.666669,50.333342 24.666647,101.000011 94.33331,150.333346c69.666663,49.333335 71.333353,156.666666 14.333349,175.229163c-57.000004,18.562498 -160.999991,6.437492 -218.999991,-24.562508c-58,-31 -109.333363,-174.000012 -70.000018,-236.437507c39.333345,-62.437496 121.666681,-114.895836 180.33335,-64.562494z");
  }
}

@-webkit-keyframes preloader-svg {
  0% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,1080 305.333333,1080 0,1080 L0,0 Z");
  }

  50% {
    d: path("M0,230 C305.333333,100 625.333333,0 960,0 C1294.66667,0 1614.66667,100 1920,300 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,960 305.333333,1080 0,1080 L0,230 Z");
  }

  100% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,1080 305.333333,1080 0,1080 L0,0 Z");
  }
}

@-webkit-keyframes preloader-inner {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes page-transition {
  0% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,980 1294.66667,930 960,930 C625.333333,930 305.333333,980 0,1080 L0,0 Z");
  }

  100% {
    d: path("M0,0 C305.333333,0 625.333333,0 960,0 C1294.66667,0 1614.66667,0 1920,0 L1920,1080 C1614.66667,1080 1294.66667,1080 960,1080 C625.333333,1080 305.333333,1080 0,1080 L0,0 Z");
  }
}

@-webkit-keyframes side-widget-in {
  0% {
    d: path("M540,1080H0V0h540c-40.28,124.78-85.13,311.48-85,541C455.13,769.53,499.81,955.48,540,1080z");
  }

  50% {
    d: path("M540,1080H0V0h540c31.96,142.05,60.09,325.94,60,541C599.91,755.16,571.87,938.34,540,1080z");
  }

  100% {
    d: path("M540,1080H0V0h540c0,179.85,0,359.7,0,539.54C540,719.7,540,899.85,540,1080z");
  }
}

@-webkit-keyframes side-widget-out {
  0% {
    d: path("M540,1080H0V0h540c0,179.85,0,359.7,0,539.54C540,719.7,540,899.85,540,1080z");
  }

  50% {
    d: path("M540,1080H0V0h540c-40.28,124.78-85.13,311.48-85,541C455.13,769.53,499.81,955.48,540,1080z");
  }

  100% {
    d: path("M540,1080H0V0h540c31.96,142.05,60.09,325.94,60,541C599.91,755.16,571.87,938.34,540,1080z");
  }
}


/* main banner css*/
.minititle {
  width: 86%;
  text-transform: capitalize;
  font-size: 22px;
}

/* .clspan {
  width: 66.666667%;
} */

.styles_panel__pmQtB {
  transition-property: all;
  position: absolute;
  right: 0;
  bottom: 17px;
  z-index: +99;
  text-decoration: none;
  font-size: 22px;
  font-weight: 200;
  font-family: 'Prata';
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.4, 0, 1, 1);
  background-position: 0 80%;
}

.styles_panel__pmQtB:hover {

  text-decoration: none;
}

.styles_panel__pmQtB a {
  display: flex;
  color: white;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.styles_panel__pmQtB a svg {
  float: right;
}

.pen {
  /* max-width: 635px; */
  width: 100%;
  opacity: 0;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-animation: 1s appear 1 forwards;
  -moz-animation: 1s appear 1 forwards;
  -o-animation: 1s appear 1 forwards;
  animation: 1s appear 1 forwards;
}

.credit {
  display: block;
  max-width: 400px;
  text-align: center;
  margin: 150px auto 0;
  padding: 0;
  font-size: 0.8em;
  color: #f0f0f0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.9);
}

.credit p a,
.credit a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.credit p a:hover,
.credit a:hover,
.credit p a:active,
.credit a:active {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
  color: white;
}

.credit p a.button,
.credit a.button {
  padding: 6px 12px;
  margin-top: 10px;
  background: #000000;
  border-radius: 3px;
}

.credit p a.button:hover,
.credit a.button:hover {
  background: #2b2b2b;
}

.credit p:last-of-type {
  margin-bottom: 30px;
}

.stage {
  /* max-width: 635px; */
  width: 100%;
  /* height: 400px; */
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.element {
  background: green;
  /* width: 202px; */
  -webkit-transform-origin: 50% 50%;
  height: inherit;
  margin: 0 -5px 0 0;
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.element.active {
  width: 39%;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  filter: none !important;
}

.element.inactive {
  width: 30%;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  /* opacity: 0.4; */
}


.element.inactive:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, hsla(0, 0%, 7%, .5), hsl(0deg 0% 7% / 66%) 51%, hsl(0deg 0% 0% / 65%));
}

.element:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(29 29 27), rgb(18 18 18 / 43%) 51%, rgb(0 0 0 / 87%));
  ;
}

.element.active:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: 0; */
}
.progress-bar{    color: #000;
}
.has-scroll-scrolling .navbar {
  background: #000000;
}

.element.franklin {
  background: url('../images/banner/Performing-arts.jpg') 45% 0 no-repeat;
  background-size: cover;
  filter: grayscale(1);
}

.element.michael {
  background: url('../images/banner/Kantha.jpg') 45% 0 no-repeat;
  background-size: cover;
  filter: grayscale(1);
}

.commonbtn1 {
  border: 1px solid #ffffff47;
  color: #ccba4f;
  border-radius: 3px;
  padding: 6px 29px;
  font-size: 13px;
  text-transform: capitalize;
}

.commonbtn1:hover {
  border: 1px solid #fff;
  background-color: white;
  color: #000000;
  text-decoration: none;
  border-radius: 3px;
  padding: 6px 29px;
  font-size: 13px;
}

.commonbtn {
  color: black;
  border: 2px solid #efc14b;
  padding: 9px 29px;
  font-size: 13px;
  font-weight: 800;
}

.artimg {
  filter: grayscale(1);
}

.artimg:hover {
  filter: none;
}

.element.trevor {
  background: url('../images/banner/Handicrafts-Dokra.jpg') 45% 0 no-repeat;
  background-size: cover;
  filter: grayscale(1);
}

.element:last-of-type {
  margin: 0;
}



@-webkit-keyframes appear {
  15% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes appear {
  15% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes appear {
  15% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes appear {
  15% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.mainbanner-text {

  width: 100%;
  position: absolute;
  z-index: +9;
  text-align: center;
  left: 50%;
  margin-left: -50%;
  top: 50%;
  margin-top: -50px;
}

.color-font {
  color: #e6bb4a;
}

.mainbanner-text h1 {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 23px;
  text-transform: capitalize;
  text-shadow: 0px 0px 39px #000;
  color: white;
  font-weight: 800;
}

.mainbanner-text h1 span {
  color: #ffe764;
  font-size: 17px;
  font-family: 'Muli';
  font-weight: 600;
}

/* main banner css end */

/* insta section */
.instadiv {
  padding: 0 0 0 0;
}

.artistdiv {
  padding: 0 0 0 0;
}

.newsletter {
  padding: 9% 0 0;
}

.instadiv a {
  flex: 1 1 0%;
  width: 28.333333%;
  margin: 11px;
  border-radius: 18px;
}

.instadiv .h-full.relative {
  position: relative;
  height: 100%;
  margin-right: 10px;
}

.instadiv .h-full.relative img {
  object-fit: cover;
  border-radius: 15px;
}

.instadiv .h-full.relative span {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  color: white;
  z-index: +99;
  left: 0;
  font-family: 'Muli';
}

.instadiv .h-full.relative:after {
  border-radius: 15px;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background: linear-gradient(0deg, hsla(0, 0%, 7%, .5), hsl(0deg 0% 7% / 27%) 51%, hsl(0deg 0% 7% / 0%));
}

.artistdiv a {
  flex: 1 1 0%;
  width: 28.333333%;
  /* margin: 11px; */
  border-radius: 18px;
}

.artistdiv .h-full.relative {
  position: relative;
  height: 100%;
  margin-right: 14px;
}

.artistdiv .h-full.relative img {
  object-fit: cover;
  border-radius: 15px;
  filter: grayscale(1.5);
}

.artistdiv span {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  color: black !important;
  z-index: +99;
  font-family: 'Prata';
  padding: 0;
}

.artistdiv p {
  font-size: 13px;
  color: #c6a348;
  margin-bottom: 5px;
}

.artistdiv .h-full.relative:after {
  border-radius: 15px;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, hsl(0deg 0% 7% / 32%), hsl(0deg 0% 7% / 0%) 51%, hsl(0deg 0% 7% / 60%));
}

.instatext {
  padding: 71px 120px 0;
}

.instatext a {
  text-align: center;
  margin: auto;
  font-family: 'Muli';
  color: #ea9e3a;
  text-decoration: underline;
  font-size: 15px;
}

.instatext h4 {
  font-weight: 800;
  text-align: center;
  font-family: 'Cinzel', serif;
  margin: 0;
  font-size: 20px;
}

/* insta section end */
.relative {
  position: relative;
}

.justify-center {
  justify-content: center;
}

.flex {
  display: flex;
}

.contenttext {
  position: absolute;
  right: 12pc;
  top: 2pc;
  margin-left: 7rem;
  margin-top: 5rem;
  width: 31%;
}

.contenttext h2 {
  font-size: 20px;
  font-family: 'Prata';
  text-transform: capitalize;
  line-height: 1.4;
  font-weight: 600;
}

.contenttext p {
  font-size: 14px;
  color: #d5d5d5;
}

.contenttext a {
  border: 1px solid #ffffff47;
  color: #ccba4f;
  border-radius: 3px;
  padding: 6px 29px;
  font-size: 13px;
  text-transform: capitalize;
}

.contenttext a:hover {
  border: 1px solid #fff;
  background-color: white;
  color: #000000;
  text-decoration: none;
  border-radius: 3px;
  padding: 6px 29px;
  font-size: 13px;
}



.w-96 {
  width: 24rem;
}


.site-menu li {
  position: relative;
}

.site-menu>ul {
  display: flex;
}

.site-menu li a {
  transition: all 0.3s;
}

.site-menu li a:hover {}

.seemore {
  background: #78f0ad;
  padding: 5px 0 5px 4px !important;
  color: antiquewhite;
  margin: 0 !important;
}




@keyframes rotateY {
  0% {
    transform: rotateY(90deg);
  }

  80% {
    transform: rotateY(-10deg);
  }

  100% {
    transform: rotateY(0);
  }
}


.site-menu ul .innermenu {
  /* display: flex; */
  text-wrap: pretty;
  /* min-height: 300px; */
  border-radius: 1px;
  visibility: hidden;
  opacity: 0;
  /* width: 690px; */
  min-width: 263px;
  position: absolute;
  top: 95% !important;
  /* right: -4pc; */
  padding: 18px;
  transition: all 0.3s;
}

.imgsection button {
  background: #434343;
  border: none;
  padding: 5px 12px;
  font-size: 12px;
  color: white;
  border-radius: 4px;
}

.innermenu strong {
  display: block;
  width: 100%;
  flex-flow: row;
  /* position: absolute; */
  font-family: 'Montserrat';
  font-weight: 700;
  line-height: normal;
  font-size: 12px;
  color: #000000;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.imgsection {
  display: grid !important;
  margin-right: 3%;
  padding: 0;
  grid-template-columns: 86px 1fr;
  grid-gap: 12px;

}

.menuu {
  padding-left: 0 !important;
  padding-top: 14px !important;
}

.menuu li a {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
}

.menuu li {
  display: block;
  width: 100% !important;
}

.imgsection img {
  width: 100%;
  height: 59px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;

}

.imgsection p {
  font-size: 11px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: 'Montserrat';
  line-height: 1.4;
  color: #ccaa38;

  margin-top: 4px;
  /* background: #efefef; */
  margin-bottom: 5px;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  border: 1px solid #0000002b;

}

.imgsection p:hover {
  color: #fafafa;
  margin-top: 4px;
  background: #cba938;
}

.innermenu ul li {
  /* width: 49% !important; */
}

.firstli a {
  display: block;
  width: 88%;
}

.firstli a img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  margin-right: 6px;
}

.site-menu ul li:hover>.innermenu {
  /* overflow: hidden; */
  top: 100%;
  visibility: visible;
  opacity: 1;
  background-color: white;
  animation: rotateY 800ms ease-in-out forwards;
  transform-origin: top center;
  box-shadow: 12px 18px 45px -17px #00000030;
  border-radius: 4px;
}

ul.mobilesubmenu {
  padding-left: 17px !important;
  /* font-size: 6px; */
  list-style: dots;
}

ul.mobilesubmenu li {
  font-size: 0 !important;
  display: block;
  margin-bottom: 4px !important;
}

ul.mobilesubmenu li a {
  font-size: 13px !important;
  font-family: 'Muli' !important;
  color: #b1b1b1 !important;

}

.navbar .site-menu .innermenu li a {
  color: #000;
  font-size: 11px;
  font-weight: 600;
}

.navbar .site-menu .innermenu li {
  display: inline-block;
  margin: 0px 0 0px 0;
  padding: 1px 0;
  list-style: none;
}

.site-menu ul ul li:hover>ul {
  top: 0;
}

.site-menu {
  max-width: 1000px;
  margin-left: auto;
}

/* new */
#background {
  background-position: center;
  background-size: cover;
  min-height: max-content;
  position: relative;
  background-image: url('../images/craft/TERRACOTTA.jpg');
  filter: grayscale(100%);

}

#background:hover {
  filter: none;
}

#background .background-panel {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity .75s;
  filter: none;
}

#background .col-md-3 {
  flex: 0 0 auto;
  width: 25%;
  padding: 0;
}

#background .main {
  position: relative;
  z-index: 2;
}

.main .section-title {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
  margin-bottom: 0px;
  position: absolute;
  top: 44%;
}

#background .btn {
  padding: 2em;
  position: relative;
  background: none;
  border-right: 1px solid #ffffff4d;
  border-bottom: 1px solid #ffffff4d;
  border-top: none;
  border-left: none;
  height: 128px;
  font-size: 17px;
  font-weight: 200;
  align-items: center;
  display: flex;
  justify-content: center;
  font-family: 'Prata';
}


/* end new */

/* action btn */
.float-container {
  position: fixed;
  bottom: 5%;
  z-index: +9;
  right: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.float-container a.two {
  background: #3F51B5;
}

.float-container a.three {
  background: #f71562;
}

.float-container a.four {
  background: #000000;
  border: 1px solid #000;
  border-radius: 40px;
}

.float-container a:hover {
  margin-right: 0;
  background-color: #6bb61b;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
}

.float-container a.two:hover {
  margin-right: 0;
  background-color: #3F51B5;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
}

.float-container a.three:hover {
  margin-right: 0;
  background-color: #f71562;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
}

.float-container a.four:hover {
  margin-right: 5px;
  background-color: #080808;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
}

.signin {
  padding: 0 9px !important;
  background: #000000 !important;
  color: white !important;
  font-size: 12px !important;
}

.signin img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 7px;
}

.float-container a {
  z-index: 99;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* width: 133px; */
  height: 45px;
  margin-right: 6px;
  margin-bottom: 1px;
  padding: 14px 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: white;
  border-color: #46b8da;
  border-radius: 2px;
  background-color: #6bb61b;
  /* -webkit-box-shadow: 0px 0px 22px -3px #ffffffdb; */
  /* box-shadow: 0px 0px 22px -3px #ffffffdb; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: sans-serif;
}



/* Icon settings - remove if not needed*/
.float-container .icon svg {
  font-family: 'Font Awesome 5 Pro';
  margin-right: 7px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* .icon.one:before {
  content: "\f019";
}

.icon.two:before {
  content: "\f09a";
}

.icon.three:before {
  content: "\f1d8";
}
.icon.four:before {
  content: "\f1d8";
} */

/* Media queries */


/* end action btn */

/* timelien sliders */
.cd-horizontal-timeline {
  opacity: 0;
  /* margin: 2em auto; */
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}

.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}

.cd-horizontal-timeline .timeline {
  position: relative;
  height: 50px;
  width: 100%;
  max-width: 100%;
}

.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px 0px 0px;
  overflow: hidden;
}

.cd-horizontal-timeline .events-wrapper::after,
.cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}

.cd-horizontal-timeline .events-wrapper::before {
  left: 0;
  /* background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0)); */
}

.cd-horizontal-timeline .events-wrapper::after {
  right: 0;
  /* background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0)); */
}

.cd-horizontal-timeline .events {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 35px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}

.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #c6a348;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 15px;
  color: #383838;
  /* fix bug on Safari - text flickering while timeline translates */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.cd-horizontal-timeline .events a::after {
  /* this is used to create the event spot */
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #7b9d6f;
  border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}

.cd-horizontal-timeline .events a.selected::after {
  background-color: #c6a348;
  border-color: #c6a348;
}

.cd-horizontal-timeline .events a.older-event::after {
  border-color: #c6a348;
}


.cd-timeline-navigation a {
  position: absolute;
  z-index: 1;
  top: 69%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #000000;
  overflow: hidden;
  color: #e6d6d6;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background: #fcf9ef;
}

.cd-timeline-navigation a.prev::after {
  /* arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../public/images/left-arrow.png) no-repeat 0 0;
}

.cd-timeline-navigation a.next::after {
  /* arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 46px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../public/images/left-arrow2.png) no-repeat 0 0;
}

.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(358deg);
  -moz-transform: translateY(-50%) rotate(358deg);
  -ms-transform: translateY(-50%) rotate(358deg);
  -o-transform: translateY(-50%) rotate(358deg);
  transform: translateY(-50%) rotate(358deg);
}

.cd-timeline-navigation a.next {
  -webkit-transform: translateY(-50%) rotate(358deg);
  -moz-transform: translateY(-50%) rotate(358deg);
  -ms-transform: translateY(-50%) rotate(358deg);
  -o-transform: translateY(-50%) rotate(358deg);
  transform: translateY(-50%) rotate(358deg);
}

.cd-timeline-navigation a.next {
  right: 0;
}

.no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f;
}

.cd-timeline-navigation a.inactive {
  border: none;
  cursor: not-allowed;
}

.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}

.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 1em 0;
  overflow: hidden;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}

.events-content img {
  filter: grayscale();
  height: 430px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.events-content img:hover {
  filter: none;
}

.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 0%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.cd-horizontal-timeline .events-content li.enter-right,
.cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}

.cd-horizontal-timeline .events-content li.enter-left,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}

.cd-horizontal-timeline .events-content li.leave-right,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}

.cd-horizontal-timeline .events-content li>* {
  /* max-width: 800px; */
  /* margin: 0 auto; */
}

.cd-horizontal-timeline .events-content h2 {
  font-family: "Montserrat";
  font-weight: 700;
  line-height: 1.2;
}

.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}

.cd-horizontal-timeline .events-content em::before {
  content: '- ';
}

.cd-horizontal-timeline .events-content p {
  font-size: 1.4rem;
  color: #1a1a1a;
}

.cd-horizontal-timeline .events-content em,
.cd-horizontal-timeline .events-content p {
  line-height: 1.6;
}


@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.pl-3 {
  padding-left: 3%;
}

.pl-3 a {
  color: #ed1a1a;
  font-weight: 600;
}

.pr-3 {
  padding-left: 3%;
}

.pr-3 a {
  color: #ed1a1a;
  font-weight: 600;
}

/* end timeline slider */


/* share btn */
.twitter {
  transform: translateX(164px) rotate(400deg);
  background-color: #fff;
}

.facebook {
  transform: translateX(100px) rotate(300deg);
  background-color: #fff;
}

.instagram {
  transform: translateX(50px) rotate(200deg);
  background-color: #fff;
}

.mail {
  transform: translateX(0);
  background-color: #fff;
}


.share {
  /* position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%); */
  height: 52px;
  margin: 0 auto;
}

.share:hover .share__icon {
  transform: none;
  opacity: 1;
  z-index: 2;
}

.share:hover .share__icon--button {
  max-width: 52px;
  opacity: 0;
  z-index: -1;
}

.share .share__icon {
  display: inline-block;
  font-size: 15px;
  border-radius: 50%;
  height: 37px;
  width: 37px;
  text-align: center;
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.41, 1.26, 0.56, 0.99), rotate 0.9s cubic-bezier(0.41, 1.26, 0.56, 0.99);
  z-index: 5;
}

.share a {
  display: block;
  color: white;
  line-height: 2.3;
}

.share i {
  line-height: 50px;
}

.share .share__icon--button {
  position: absolute;
  /* right: 0; */
  opacity: 1;
  width: 100%;
  max-width: 149px;
  border-radius: 50px;
  transition: all 0.5s;
  /* background-color: #FFC107; */
  border: 1px solid #fff;
}

.share .share__icon--button a {
  line-height: 35px;
  text-decoration: none;
}


/*end share btn */

/* engage-section */
.engage-section {
  padding-top: 3%;
  padding-bottom: 2%;
  position: relative;
}

.engage-section .section-title {
  padding-right: 6pc;
  padding-top: 13%;
}

.engage-section .section-title h2 {
  font-family: 'Playfair Display';
  letter-spacing: 0px;
  text-transform: capitalize;
  font-weight: 600;
  color: black;
}


.points li {
  display: inline-block;
  cursor: pointer;
  /* background: #dfdfdf; */
  padding: 8px 20px;
  width: 33%;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  margin: 0 8px 16px 0px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  font-family: 'Muli';
}

.points li:hover a {
  text-decoration: none;
  color: #e4b843;
}

.engage-section button {
  height: 35px;
  padding: 0px 23px;
  border: none;
  background: #ff000017;
  font-size: 14px;
  font-weight: 600;
  color: red;
}

.engage-section .col-lg-4 img {}

.points {
  padding: 0;
  margin-top: 4%;
}

/* end engage-section */


/* follow */
.instafollow {
  background: linear-gradient(90deg, rgb(253 29 152) 50%, rgb(252 212 69) 100%);
  color: white;
}

.instafollow img {
  filter: grayscale(1);
}

.instafollow h3 {
  font-weight: 600;
  font-size: 20px;

  margin: 0;
}

.instafollow h4 {
  font-weight: 300;
  font-size: 14px;
}

.instafollow .pl-5 {
  padding-left: 8%;
}

.youtubeinstafollow {
  background: #c70f0f;
  color: white;
  width: 88%;
  margin: 3pc auto auto;

}

.youtubeinstafollow h3 {
  font-weight: 600;
  font-size: 20px;
  color: white;
  margin: 0;
}

.youtubeinstafollow h4 {
  font-weight: 300;
  color: white;
  font-size: 14px;
}

.youtubeinstafollow .pl-5 {
  padding-left: 8%;
}

/* end follow */


/* slick slider */

.coating-1 {
  position: relative;
  height: 310px;
}

.coating-1 .slider .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.coating-1 .slider .slick-dots li {
  margin-right: 5px;
  padding: 5px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

.coating-1 .slider .slick-dots li:last-child {
  margin: 0;
}

.coating-1 .slider .slides {
  display: flex;
}

.coating-1 .slider .slides img {
  margin: 0 auto;
}

.coating-1 .slider .arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  cursor: pointer;
  padding: 20px;
  background: red;
  border-radius: 5px;
}

.coating-1 .slider .arrow i {
  font-size: 32px;
}

.coating-1 .slider .arrow.prev {
  left: -45px;
  display: none !important;
}

.coating-1 .slider .arrow.next {
  right: -45px;
  display: none !important;
}

/* end slick slider */


/* start innerbanner */

section.top-banner {
  padding: 0% 0 0 0;
}

section.top-banner img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 2px;
}

section.top-banner strong {
  background: #c6a348;
  color: white;
  padding: 14px 30px;
  font-size: 19px;
  /* align-items: center; */
  /* justify-content: center; */
  display: block;
  width: fit-content;
  margin: -2pc auto;
  z-index: +9;
  position: relative;
  font-size: 28px;
  font-family: "Prata";
  letter-spacing: 0px;
  line-height: 1.2;
  font-weight: 500;
}

/* end innerbanner */


/*  */
.craft-title {
  padding: 37px 120px 0;
}

.craft-title a {
  text-align: center;
  margin: auto;
  font-family: 'Prata';
  color: #ea9e3a;
  text-decoration: underline;
  font-size: 16px;
}

.craft-title h4 {
  font-weight: 800;
  text-align: center;
  font-family: 'Cinzel', serif;
  margin: 0;
  font-size: 20px;
}

.craft-div .h-full.relative {
  position: relative;
  height: 100%;
  margin-right: 10px;
}

.craft-div {
  padding: 0 0 0 0;
}

.craft-div a {
  flex: 1 1 0%;
  width: 28.333333%;
  margin: 11px;
  border-radius: 18px;
}

.craft-div .h-full.relative img {
  object-fit: cover;
  border-radius: 15px;
}

.craft-div .h-full.relative span {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  color: white;
  z-index: +99;
  left: 0;
}

.craft-div .h-full.relative:after {
  border-radius: 15px;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, hsla(0, 0%, 7%, .5), hsl(0deg 0% 7% / 27%) 51%, hsl(0deg 0% 7% / 0%));
}

.innerpagesection {
  width: 100%;
  display: block;
  padding: 58px 0 0px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.innerpagesection .main span {
  display: none;
  transition: color .3s ease-in-out, box-shadow .3s ease-
}

.innerpagesection .main .btn:hover span {
  display: block;
}

.innerpagesection h2 {
  z-index: +999;
  /* background: #0000007d; */
  width: max-content;
  padding: 11px 38px;
  margin: -4pc auto auto;
  color: white;
  font-size: 36px;
  /* position: absolute; */
  top: 54%;
  left: 41%;
  margin-left: 0;
}

.innerpagesection .main .btn:hover .overlay {
  width: 79%;
  left: 40px;
  height: 67%;
}

.overlay {
  position: absolute;
  bottom: 25px;
  align-items: center;
  right: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  background-color: #ffffff;
  overflow: hidden;
  width: 0;
  height: 67%;
  transition: .5s ease;
  border-radius: 0px;
  color: black;
  font-size: 16px;
  font-family: 'Montserrat';
  font-weight: 500;
}

.overlay .text {
  padding-left: 25px;
}

.overlay svg {
  padding-right: 15px;
  color: #dab145;
}

.shareul ul {
  display: flex;
  margin: auto;
  text-align: center;
  width: fit-content;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 17px;
}

.shareul span {
  font-size: 16px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.shareul ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid #0000001a;
  margin: 0 5px;
  padding: 7px;
  align-items: center;
  display: flex;
  border-radius: 35px;
  text-align: center;
}

.shareul a {
  color: #c6a348;
  font-size: 16px;
  font-family: 'Prata';
  font-weight: 700;
  cursor: pointer;
}

.shareul p {
  font-family: 'Muli';
  font-size: 14px;
  margin-bottom: 9px;
  width: 90%;
  margin: auto;
  margin-bottom: 10px;
}

.shareul ul span {
  text-align: center;
  /* margin: auto; */
  display: block;
  margin: 2px 0 11px;
  color: black;
  font-weight: 400;
}

.shareul ul li img {
  opacity: 0.6;
  max-width: 90%;
  text-align: center;
  margin: auto;
}

.shareulcw {
  background: #060606;
  color: white;
  padding: 4% 0;
}


.shareulcw ul {
  display: flex;
  margin: auto;
  text-align: center;
  width: fit-content;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 17px;
}

.shareulcw span {
  font-size: 16px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.shareulcw ul li {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff1a;
  margin: 0 5px;
  padding: 7px;
  background: white;
  align-items: center;
  display: flex;
  border-radius: 35px;
  text-align: center;
}

.shareulcw a {
  color: #c6a348;
  font-size: 16px;
  font-family: 'Prata';
  font-weight: 100;
  cursor: pointer;
}

.shareulcw p {
  font-family: 'Muli';
  font-size: 14px;
  margin-bottom: 9px;
  width: 90%;
  color: #d1d1d1;
  margin: auto auto 8px;
}

.imgs img {
  max-width: 100%;
  height: 532px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.contentdivcw {
  padding: 5%;
}

.contentdivcw .section-title {
  margin-bottom: 10px;
}

/* .pcontent{padding: 0 10%;} */
.w43 {
  width: 43%;
  display: none;
}

.pcontent {
  font-size: 14px;
  padding-right: 18%;
}

.shareulcw ul span {
  text-align: center;
  /* margin: auto; */
  display: block;
  margin: 2px 0 11px;
  color: black;
  font-weight: 400;
}

.shareulcw ul li img {
  opacity: 0.6;
  max-width: 90%;
  text-align: center;
  margin: auto;
}

.shareul2 ul {
  display: flex;
  margin: auto;
  text-align: center;
  width: fit-content;
  padding: 0;
  margin-top: 0px;
  margin-bottom: 17px;
}

.shareul2 span {
  font-size: 23px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.shareul2 ul li {
  cursor: pointer;
  width: 31px;
  height: 40px;
  border: 1px solid #0000001a;
  margin: 0 3px;
  padding: 0;
  align-items: center;
  display: flex;
  border-radius: 35px;
  text-align: center;
}

.distribution-map svg a {
  font-size: 8px;
}

.shareul2 a {
  color: #fff;
  font-size: 16px;
  font-family: 'Prata';
  font-weight: 700;
}

.maintitletext {
  font-size: 33px !important;
  text-transform: capitalize !important;
}

.shareul2 p {
  font-family: 'Prata';
  font-size: 18px;
  margin-bottom: 9px;
  width: 50%;
  margin: auto;
}

.shareul2 {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 0;
  bottom: 0;
  right: 0;
  /* margin-left: -7%; */
  color: white;
}

.shareul2 .section-title {
  justify-content: center;
}

.shareul2 h1 {
  font-size: 28px;
  font-family: 'Prata';
  margin-bottom: 0;
}

.shareul2 ul span {
  text-align: center;
  /* margin: auto; */
  display: block;
  margin: 2px 0 11px;
  color: black;
  font-weight: 400;
}

.shareul2 ul li img {
  opacity: 0.6;
  max-width: 90%;
  text-align: center;
  margin: auto;
  height: auto;
}


.shareul3 a {
  cursor: pointer;
  color: #c6a348 !important;
  font-size: 15px;
  font-family: 'Prata';
  font-weight: 500;
  text-decoration: underline !important;
}

.shareul3 p {
  font-family: 'Muli';
  font-size: 14px;
  margin-bottom: 15px;
  width: 90%;
  margin: auto;
  margin-bottom: 15px;
}

.timelinecontent {
  padding: 0;
}

.timelinecontent li {
  list-style: disc;
  position: inherit !important;
  transform: none !important;
  padding: 0 0%;
  opacity: 9 !important;
  font-size: 15px;
  font-family: "Montserrat";
  line-height: 1.6;
}

.innerpage-banner:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(0deg, hsl(0deg 0% 7% / 0%), hsl(0deg 0% 7% / 54%) 51%, hsl(0deg 0% 0% / 98%));
}

/* artist tab */

#nav-home .artistdiv .h-full .actionbtns {
  position: absolute;
  right: 11px;
  top: 11px;
  z-index: +9;
}

#nav-home .artistdiv .h-full svg {
  cursor: pointer;
  display: block;
  color: white;
  margin-bottom: 13px;
  width: auto;
  height: auto;
}

#shareicon a {
  color: white;
}

#nav-home .artistdiv .h-full svg a {
  color: white !important;
}

.artistnav .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: white;
  font-family: 'Muli';
  color: #c1931c;
  padding: 12px 12px 12px 0;
}

.artistnav .nav-link:hover {
  color: #495057;
  background-color: #fff;
  border-color: white;
  font-family: 'Muli';
  color: #e7bc4d;
  padding: 12px 12px 12px 0;
}

.artistnav .nav-link {
  padding: 12px 12px 12px 0;
  color: #495057;
  background-color: #fff;
  border-color: white;
  font-family: 'Muli';
  font-size: 14px;
  color: #00000091;
}

.instatext0 .section-title h2 {
  /* font-size: 27px; */
  letter-spacing: normal;
}

.searchBox {
  position: absolute;
  top: -2%;
  right: 0%;
  transform: translate(0%, 50%);
  height: 40px;
  border-radius: 40px;
  padding: 0px;

}

.searchBox:hover>.searchInput {
  width: 240px !important;
  padding: 0 6px !important;
}

.searchBox:hover>.searchButton {
  background: white;
  color: #2f3640;
}

.searchButton {
  color: white;
  float: right;
  width: 40px;
  height: 32px;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  border: 1px solid #00000000;
}

.searchButton i {
  color: black;
}

.searchInput {
  border: 1px solid #00000024 !important;
  background: #ffffff;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  outline: none !important;
  float: left;
  padding: 0 !important;
  color: black;
  font-weight: 700;
  font-size: 13px;
  height: auto !important;
  transition: 0.4s;
  line-height: 40px;
  width: 0px !important;
  height: 32px !important;


}


/* artist tab */

/* map  */

.distribution-map {
  margin-left: auto;
  position: relative;
  width: 35%;
  padding-right: 2%;
  padding-top: 67px;
  padding-bottom: 4%;
  box-sizing: border-box;

}


.distribution-map svg {
  width: 500px;
  top: 0;
  height: auto;
}

.distribution-map>img {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  filter: sepia(1);
}

.distribution-map .map-point {
  cursor: pointer;
  outline: none;
  z-index: 0;
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 15px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  /* opacity: 0.8; */
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.25s ease-in-out 0.25s, width 0.25s ease-in-out 0.25s, height 0.25s ease-in-out 0.25s, z-index 0.25s ease-in-out 0.25s;
  -o-transition: opacity 0.25s ease-in-out 0.25s, width 0.25s ease-in-out 0.25s, height 0.25s ease-in-out 0.25s, z-index 0.25s ease-in-out 0.25s;
  -webkit-transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out, z-index 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s, 0.25s, 0.25s, 0.25s;
  transition: opacity 0.25s ease-in-out 0.25s, width 0.25s ease-in-out 0.25s, height 0.25s ease-in-out 0.25s, z-index 0.25s ease-in-out 0.25s;
  background: rgb(255 255 255);
  border: 7px solid #f3bc2c;
}

.distribution-map .map-point .content {

  transition: opacity 0.25s ease-in-out;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(0%);
  overflow: overlay;
  padding: 5%;
}

.map-point p {
  color: black;
  font-size: 13px;
  font-family: 'Prata';
}

.map-point h2 {
  color: black;
  font-size: 20px;
  font-family: 'Prata';
}

.distribution-map .map-point:active,
.distribution-map .map-point:focus {
  margin: 0;
  padding: 0;
  opacity: 1;
  width: 300px;
  height: auto;
  color: #e5e5e5;
  z-index: 1;
  transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out;
}

.distribution-map .map-point:active .content,
.distribution-map .map-point:focus .content {
  -moz-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s, 0s, 0s;
  transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  overflow: hidden;
}

.distribution-map .map-point:active .content a:hover,
.distribution-map .map-point:active .content a:active,
.distribution-map .map-point:focus .content a:hover,
.distribution-map .map-point:focus .content a:active {
  color: #afe1fa;
}

.mappara {
  font-family: 'Muli';
  font-size: 14px;
  color: #eaeaea;
}

/* end map */


/* gallary */
.gallery .col-md-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
  margin-bottom: 1.5%;
}

.gallerypara {
  font-family: 'Muli';
  font-size: 14px;
  /* font-weight: 100; */
  margin-top: 13px;
  margin-bottom: 30px;
}

.bannerafter:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #08080882;
  z-index: auto;
  opacity: 0.7;
}

/* end gallery */


/* start art page */
.testdiv h2 {
  font-size: 64px;
  font-family: "Prata";
  /* letter-spacing: -2px; */
  text-transform: capitalize;
  line-height: 1.2;
}

.testdiv p {
  font-size: 17px;
  font-family: "Prata";
  line-height: 1.4;
}

.testdiv {
  padding: 9pc 0pc 0 8pc;
}

.testdiv a {
  height: 39px;
  line-height: 36px;
  display: inline-block;
  padding: 0 28px;
  background: #c6a348;
  color: #fff;
  font-size: 13px;
  width: 29%;
  font-weight: 600;
  text-align: center;
  border: none;
  text-transform: uppercase;
}

.innerpagesection2 {
  width: 100%;
  display: block;
  padding: 96px 0 15px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.innerpagesection2 .main span {
  display: none;
  transition: color .3s ease-in-out, box-shadow .3s ease-
}

.innerpagesection2 .main .btn:hover span {
  display: block;
}

.innerpagesection2 h2 {
  z-index: +999;
  background: #0000007d;
  width: max-content;
  padding: 11px 38px;
  margin: -4pc auto auto;
  color: white;
  font-size: 46px;
  position: absolute;
  top: 54%;
  left: 49%;
  margin-left: -185px;
}

.innerpagesection2 .main .btn:hover .overlay {
  width: 79%;
  left: 22px;
  height: 67%;
}

.innerpagesection2 #background .btn {
  height: 90px !important;
}

.innerpagesection2 .overlay {
  position: absolute;
  bottom: 13px;
  font-size: 12px;
  font-weight: 900;
  color: #367516;
}


.header {
  display: flex;
  overflow: hidden;
  height: 47vw;
  background: #111;
  position: relative;
}

.typediv {
  background-image: url(../images/arts/back.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3% 0 5%;
}

.typediv .side-content:before {
  content: "";
  top: 14px;
  left: 15px;
  border-color: #0808081a;
  width: 100%;
  height: 100%;
  position: absolute;
  /* left: 0; */
  /* top: 0; */
  border: 2px solid #020202;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.paratext {
  margin-top: 5%;
  text-align: center;
  color: black;
  font-size: 17px;
  font-family: 'Prata';
  background: #ffffffed;
  padding: 2% 6%;
  border-bottom-right-radius: 68px;
  border-top-left-radius: 68px;
}

.typediv .col-lg-4 a {
  margin-top: 8%;
  background: #fadc6f;
  padding: 5px 15px;
  font-size: 14px;
  z-index: +9;
}

.typediv .col-lg-4 h2 {
  width: 100%;
  display: block;
  margin-top: 4%;
  margin-bottom: 10px;
  font-family: 'Muli';
  font-size: 23px;
  font-weight: 800;
  line-height: 1.4;
}

.typediv .side-content.left img {
  height: 65px;
  filter: opacity(0.5);
}

.typediv .side-content.left {
  padding: 42px;
  position: relative;
  background: #fff;
  margin-bottom: 33px;
}


.header img {
  width: 100%;
  vertical-align: middle;
  border: 8px solid #191919;
  box-sizing: border-box;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.5s all ease-in-out;
  height: 221px;
}

.header img:hover {
  opacity: 1;
  transform: scale(1.2);
  filter: none;
}

.header .column {
  width: -webkit-fill-available;
}

.header .column a div {
  position: relative;
  overflow: hidden;
}

.header .column span {
  border-radius: 2px;
  position: absolute;
  display: none;
  color: white;
  z-index: +9;
  bottom: 10px;
  font-size: 12px;
  text-align: center;
  left: 17px;
  background: #fbb80869;
  color: white;
  padding: 5px 16px;
}

.header .column:hover {
  animation-play-state: paused;
}

.header .column:nth-child(3) {
  /* align-self: flex-end;
  --direction: 50%; */
  animation: var(--animation, none) 30s infinite linear;
}


.header .column:nth-child(1) {
  /* align-self: flex-end;
  --direction: 50%; */
  animation: var(--animation, none) 20s infinite linear;
}

.header .section-title {
  z-index: +1;
  /* background: #0000007d; */
  /* width: max-content; */
  /* padding: 11px 38px; */
  color: white;
  font-size: 46px;
  position: absolute;
  position: absolute;
  top: 48%;
}

.section-title h2.maintitletext {
  width: auto;
  padding: 15px 41px;
  background: #0000005c;
  text-align: center;
  font-family: 'Prata';
  font-weight: 100;
  border: 3px solid #fff;
  margin: auto;
  font-size: 1.3rem;
}

@keyframes slide {
  to {
    transform: translateY(var(--direction, -50%))
  }
}

/* end art page */

.cell iframe {
  max-width: 100%;
  height: 196px;
}

.processpoints {
  list-style: unset;
  font-family: 'Muli';
  font-size: 14px;
  margin-bottom: 15px;
  width: 90%;
  margin: auto;
  margin-bottom: 15px;
  padding-left: 0;
}

.h2bannertext {
  line-height: 1.3 !important;
  /* font-size: 41px !important; */
}

/* share popup */
#shareicon .modal-body {
  text-align: center;
  padding-top: 0;
}

#shareicon .modal-body ul {
  display: flex;
  margin: auto;
  justify-content: center;
  padding: 0;
}

#shareicon .modal-body h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Prata';
  margin-bottom: 14px;
}

#shareicon .modal-body ul li a svg {
  color: white;
}

#shareicon .modal-body ul li {
  width: 41px;
  height: 41px;
  background: #261791;
  color: white;
  margin: 0 3px;
  padding: 6px;
  border-radius: 7px;
}

#shareicon .modal-dialog {
  max-width: 315px;
}

#shareicon .modal-header {
  padding: 1rem 1rem 0;
  border-bottom: 1px solid #dee2e600;
}

#shareicon .modal-body ul li.instas {
  background: #d31d91;
}

#shareicon .modal-body ul li.youtubes {
  background: red;
}

#shareicon .modal-body ul li.twitters {
  background: #0fabed;
}

/* share popup */



/* comment popup */
#commentartist .modal-body {
  text-align: center;
}

#commentartist .modal-body h3 {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Prata';
  margin-bottom: 14px;
}

#commentartist .btn-primary {
  background: #d3a125;
  border: none;
}

#commentartist .artistprofile {
  margin-bottom: 13px;
  display: block;
}

#commentartist .artistprofile span {
  font-size: 16px;
  font-family: 'Prata';
  /* font-weight: 700; */
  color: #caa91a;
}

#commentartist .artistprofile img {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  margin: auto;
}

#commentartist .modal-footer {
  padding: 0 0.75rem 0.75rem;
  border-top: 1px solid #dee2e600;
}

#commentartist .btn-secondary {
  background: #e8e7e5;
  border: none;
  color: black;
}

#commentartist .modal-header {
  padding: 1rem 1rem 0;
  border-bottom: 1px solid #dee2e600;
}

/* event page */
.event-container {
  padding-top: 7%;
}

.event-container .row {
  justify-content: center;
}

.event-container .row p {
  font-size: 14px;
  margin-bottom: 21px;
  color: #666666;
}

.event-container .row .text p {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
  font-family: 'Muli';

}

.event-container .collection-box figure img {
  height: 350px;
    object-fit: cover;
    padding: 35px 18px;
}

.event-container .collection-box h4 a {
  font-family: 'Muli';
  font-size: 19px;

}

.event-container .collection-box span {
  font-size: 13px;
  color: #c6a348;
  font-weight: 700;
}

.event-container .collection-box h4 {
  margin-bottom: 3px;
}

/* end event page */

/* gallery section */
.gallery-container {
  padding-top: 7%;
}

.gallery-container .row {
  justify-content: center;
}

.gallery-container .row p {
  font-size: 16px;
  margin-bottom: 21px;
  color: #7f7f7f;
}

.gallery-container .row .text p {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
  font-family: 'Muli';

}


.gallery-container .main {
  /* max-width: 1000px; */
  margin: auto;
}

.gallery-container img {
  height: 280px;
  border-radius: 15px;
  object-fit: cover;
}

.gallery-container h4 {
  margin-bottom: 0;
  font-size: 17px;
  font-family: 'Prata';
  /* font-weight: 600; */
  margin-top: 12px;
}

.gallery-container h1 {
  font-size: 50px;
  word-break: break-all;
}

.gallery-container .row {
  margin: 10px 0px 54px;
}


/* Create three equal columns that floats next to each other */
.gallery-container .column {
  float: left;
  width: 19.33%;
  /* display: none; */
  padding: 4px;
  /* Hide all elements by default */
}

.gallery-container .text {
  position: absolute;
  bottom: 11px;
  z-index: +999;
  color: white;
  left: 10px;

}


/* Clear floats after rows */
.gallery-container .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.gallery-container .content {
  background-color: white;
  margin-bottom: 0px;
  position: relative;
}

.gallery-container .content::before {
  content: "";
  display: block;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgb(0 0 0 / 55%) 0%, rgb(255 255 255 / 0%) 100%);
}

/* The "show" class is added to the filtered elements */
.gallery-container .show {
  display: block;
}

#myBtnContainer {
  margin-bottom: 2pc;
  text-align: center;
  margin-top: 2pc;
}

/* Style the buttons */
.gallery-container .btn {
  border: none;
  outline: none;
  padding: 5px 12px;
  background-color: white;
  cursor: pointer;
}

.gallery-container .btn:hover {
  background-color: #ddd;
}

.gallery-container .btn.active {
  color: #c6a348;
}

.searchdiv {
  display: flex;
}

.searchdiv input {
  font-weight: 600;
  width: -webkit-fill-available;
  height: 44px;
  padding: 0 12px;
  color: black;
  font-size: 14px;

}

select:focus {
  background-position: calc(100% - 16px) 20px, calc(100% - 21px) 20px, calc(105% - 4.5em) 2px !important;
  background-size: 5px 5px, 5px 5px, 1px 40px;
}

.searchdiv select {
  border-radius: 4px;
  background-position: calc(100% - 20px) 20px, calc(100% - 17px) 20px, calc(105% - 4.5em) 2px;
  background-size: 5px 5px, 5px 5px, 1px 40px;
  height: 44px;
  width: 179px;
  margin: 0 0px 0 11px;
  padding: 0 12px;
  font-size: 12px;
}

/* end gallery section */
/* start hub banner */
.hubsbanner-div {
  height: 45vw !important;
}

.hubsbanner-div .inner p {
  font-size: 19px;
  color: white;
  margin: auto;
  text-align: center;
  opacity: 9;
  width: 49%;
  padding-left: 0;
  border-left: 0px solid #080808;
  position: relative;
  padding-right: 0;

}

.hubsbanner-div .inner {
  width: 100%;
  display: block;
  padding: 0 60px;
  position: relative;
  margin-top: 0px;
  z-index: +9;
}

.hubsbanner-div:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #0808085e;
  z-index: 1;
  opacity: 0.7;
}

.hubsbanner-div .inner h1 {
  font-size: 44px;
  font-weight: 400;
  font-family: 'Prata';
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  color: white;
  text-align: center;
}

.allhubs .nav-pills .nav-link.active,
.allhubs .nav-pills .show>.nav-link {
  color: #c6a348;
  background-color: #0d6efd00;
  margin-bottom: 8px;
}

.allhubs .more {
  background: none;
  border: none;
  color: #c6a348;
  padding: 0;
}

.allhubs .more svg {
  margin-left: 14px;
}

.allhubs .nav.flex-column.nav-pills {
  width: 30%;
  border-right: 1px solid #ffffff45;
  margin-right: 4%;
}

.allhubs .tab-content {
  width: 90%;
}

.allhubs .side-content h2 {
  font-size: 30px;
  margin-bottom: 2px;
  color: white;
}

.allhubs .side-content p {
  width: 100%;
  display: block;
  opacity: 9;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Muli';
  font-size: 14px;
  font-weight: 300;
}

.allhubs .categorydiv .nav-link.active {
  color: #ffffff !important;
  background-color: #c6a348 !important;
}

.allhubs .categorydiv .nav-pills .nav-link {
  margin-bottom: 7px;
  padding: 5px 27px;
  font-size: 14px;
  margin-top: 15px;
  background-color: #eff2f5;
  color: black;
  margin-right: 6px;
  font-weight: 600;
  border-radius: 3px;
  line-height: 1.6;
}

.allhubs .nav ul li {
  width: 100%;
}

.allhubs .nav-pills .nav-link {
  color: #fff;
  background-color: #0d6efd00;
  border: 0px solid #0000003d;
  margin-bottom: 10px;
  padding: 3px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Muli';
}

.allhubs .craftdiv .text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;

}

.hubssectiom {
  background: #161616;
  padding: 65px 0 65px;
}

.allhubs .craftdiv img {
  border: 11px solid #f3f3f342;
}

.allhubs .craftdiv .text {
  padding: 8px 0;
}

.allhubs .craftdiv .text p {
  font-size: 13px;
  line-height: 1.7;
  font-family: 'Muli';
  margin-bottom: 4px;
  color: #f4f4f4;
}

.allhubs .craftdiv .text .single-find-art-and-craft-meta {
  color: #19cd32;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 13px;
}

.counter-box.hubcounter .odometer {
  font-size: 27px;
  color: white;
}

.counter-box.hubcounter p {
  color: white;
  width: 100%;
  display: block;
  margin: 0;
  text-align: center;
  font-weight: 300;
  opacity: 9;
  font-size: 15px;
}

.counter-box.hubcounter .value {
  font-size: 42px;
  font-family: 'Prata';
  display: inline-block;
  line-height: 1;
  margin-left: 2px;
  position: relative;
  z-index: 1;
  color: #ffed00;
}

#eventdetail .modal-dialog {
  max-width: 661px;
}

#eventdetail .modal-dialog h3 {
  font-size: 21px;
  font-family: 'Prata';
  font-weight: 600;
  margin-bottom: 12px;
  color: #3d3638;
}

#eventdetail .modal-dialog p {
  font-size: 13px;
  line-height: inherit;
  font-family: 'Prata';
}

#eventdetail .modal-dialog .modal-body img {
  width: 100%;
  padding: 3% 5% 0;
}

#eventdetail .modal-dialog button {
  padding: 7px 37px;
  background: #c88934;
  border: none;
}

/* end hub banner */
.unescoimg {
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 14%;
  z-index: -1;
}

.distribution-map svg path:hover {
  fill: #ffd974 !important;
  transition: 0.25 ease-out;
  stroke-width: 2.25px;
  stroke: white !important;
  cursor: pointer;
}

.findmap {
  background-image: url(../public/images/arts/backbanner.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: scroll;
}

.findmap ul {
  padding: 0;
  width: 556px;
  position: relative;
}

.findmap ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.parapoint {
  display: flex;
  border: none;
  padding: 0;
  position: absolute;
  right: 0;
}

.parapoint a {
  border: none;
  color: #f8f4d4;
  border-radius: 3px;
  padding: 8px 15px;
  font-size: 13px;

}

.parapoint a span {
  margin-right: 10px !important;
  width: auto !important;
  height: auto !important;
  font-size: 17px !important;
  border: aliceblue !important;
  background: none !important;
  color: #ffc34b !important;
  font-weight: 600 !important;
}

.findmap ul li span {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  background: aqua;
  color: aqua;
  display: inline-block;
}

.findmap ul li p {
  margin: 0;
}

.mainabout {
  position: relative;
 background-color: #121212; 
  background-image: url(../public/images/banner/back-banner.jpg);
  padding-bottom: 0;
}

.mainabout .second {
  position: absolute;
  left: 0;
  width: 12%;
  filter: contrast(0.5);
}

.mainabou .one {
  width: 78%;
  display: block;
  margin: auto;
}
#paint{    position: absolute;
  z-index: +1;
  top: 0;
  width: 100%;
  height: 100%;}

.mainabout p {
  font-size: 14px;
  color: #d5d5d5;
  font-family: 'Muli';
  font-size: 14px;
}

.leading-relaxed {
  font-size: 14px;
}

.mainonediv {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.mainonediv p {
  font-family: 'Muli';
  font-size: 14px;
}

.mainonediv .third {
  position: absolute;
  bottom: 13px;
  right: -89px;
  /* opacity: 0.2; */
  width: 24%;
}

.sideimgone {
  width: 24%;
  position: absolute;
  bottom: -28px;
  right: -117px;
}

/* craft and weave */
.craftweavediv {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: #060606;
  color: #fff;
  overflow: hidden;
}

div#gallery-box {
  top: 0;
  left: 0;
  position: absolute;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.dhokraimg {
  width: 40%;
  margin-bottom: 3%;
}

.color1 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #e8d141;
  display: block;
}

.color2 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #fbf3c3;
  display: block;
}

.color3 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #b8a214;
  box-shadow: 1px 0px 13px -2px #c6c6c5;
  display: block;
}

.color4 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #FBC02D;
  display: block;
}

.color5 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #FFE082;
  display: block;
}

.color6 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #FFF59D;
  box-shadow: 1px 0px 13px -2px #c6c6c5;
  display: block;
}

.color7 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #e8d141;
  display: block;
}

.color8 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #fbf3c3;
  display: block;
}

.color9 span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  margin-right: 3px;
  margin-top: 0;
  float: left;
  background: #b8a214;
  box-shadow: 1px 0px 13px -2px #c6c6c5;
  display: block;
}

.first h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
  color: #242424;
}

.contentdivcw0 img {
  width: 32%;
  height: 145px;
  object-fit: cover;
  margin: 7px 3px;
  filter: grayscale(1);
  cursor: pointer;
}

.contentdivcw0 img:hover {
  filter: none;
}

#gallery-box div.overlay {
  position: absolute;
  top: 15%;
  bottom: 0;
  left: 34%;
  background: none;
  width: 500px;
  right: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
  z-index: +1;
  filter: drop-shadow(0px 0px 10px #000a);
  pointer-events: none;
  user-select: none;
}

#gallery-box div.overlay h1 {
  font-family: 'Prata';
  font-size: 30px;
  margin: 0;
  color: #fff;
}

.spanna {
  display: inline-block;
  font-weight: 200;
  font-family: 'Prata';
  align-items: center;
  text-align: center;
}

#gallery-box div.overlay a {
  font-family: 'Montserrat';
  color: #ddd;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  color: #ffffffe8;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.5rem;
  box-sizing: content-box;
  pointer-events: all;
  cursor: pointer;
  text-transform: uppercase;
  padding-bottom: 0;
  margin: 0 8px;
}

#gallery-box div.overlay a:after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: -5%;
  right: -5%;
  height: 2px;
  overflow: hidden;
  background-color: #ddd;
  transform: translateX(-100%);
}

#gallery-box div.overlay a:hover:after {
  transform: translateX(0);
  transition: 0.4s ease;
}

#gallery-box div.overlay a.leave:after {
  transform: translateX(100%);
  transition: 0.4s ease;
}


#gallery-box div.gallery {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  height: 140%;
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  padding: 1rem;
  transition: 2s ease;
}

#gallery-box div.row {
  display: flex;
  flex-direction: row;
  column-gap: 2rem;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}

#gallery-box div.item {
  background: #fff2;
  filter: grayscale(1) brightness(0.5);
  transition: 1s;
  height: 14.98rem;
  max-width: 100%;
  min-width: calc((25% - calc(6rem / 4)) / 1.5);
  width: fit-content;
  overflow: hidden;
  position: relative;
}

#gallery-box div.item:hover {
  filter: grayscale(0);
}

#gallery-box div.item img {
  widht: 120%;
  min-width: 198%;
  height: 200%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 2s ease;
}

/* image scaling */
.item.nr1 {
  width: 23% !important;
}

.item.nr2 {
  width: 15% !important;
}

.item.nr3 {
  width: 20% !important;
}

.item.nr4 {
  width: 12% !important;
}

.item.nr5 {
  width: 37% !important;
}

.item.nr6 {
  width: 19% !important;
}

.item.nr7 {
  width: 30% !important;
}

.item.nr8 {
  width: 22% !important;
}

.item.nr9 {
  width: 19% !important;
}

.item.nr10 {
  width: 16% !important;
}

.item.nr11 {
  width: 30% !important;
}

.item.nr12 {
  width: 30% !important;
}

.item.nr13 {
  width: 24% !important;
}

.item.nr14 {
  width: 10% !important;
}

.item.nr15 {
  width: 11% !important;
}

.item.nr16 {
  width: 11% !important;
}


/* media query for codepen preview */


/* credit (bottom left corner) */
#gallery-box div#credits {
  font-family: 'verdana';
  font-size: 0.75rem;
  opacity: 0.5;
  transition: 0.4s ease;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
}

#gallery-box div#credits:hover {
  opacity: 1;
}

#gallery-box div#credits a {
  color: #fff;
}

/* end craft and weave */
.color-blue {
  background-color: #cdcdcd;
}

.heights {
  display: flex;
}

.cover-background-img {
  position: sticky;
  height: 100vh;
  width: 50%;
  top: 0;
}

.cover-img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-color: #f4f1ec;
}

.details-shop {
  margin-left: auto;
  width: 50%;
}

.maker-product {
  padding: 0 60px;
  text-align: center;
  height: 100vh;
}

.maker-product .slide-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.content-image {
  /* max-width: 35%; */
  margin: 0 auto;
}

.chancebg h3 {
  font-size: 18px;
  margin: 20px 0 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

a.view {
  display: inline-block;
  border: 2px solid #eb4f47;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 30px;
  line-height: 2.2;
  vertical-align: middle;
  cursor: pointer;
  transition: outline 0.1s linear;
  box-sizing: border-box;
  background-color: #eb4f47;
  border-radius: 0;
  color: #fff;
}

.chancebg img {
  max-width: 100%;
  max-height: 100%;
}

.color-violet {
  background-color: #9d988b;
}

.color-blue {
  background-color: #cdcdcd;
}

.color-yellow {
  background-color: #a7a59e;
}

.color-red {
  background-color: #383a3c;
}

.maker-product.panel.first {
  position: relative;
  background: #fff8e6;
  padding: 0;
  padding: 0 60px;
}

.maker-product.panel.first .lastimg {
  width: 50%;
  /* height: 100%; */
  position: absolute;
  top: 0;
  right: 0;
}

.lastimg2 {
  width: 65%;
  position: absolute;
  bottom: 0;
  top: auto;
}

.maker-product.panel.second {
  padding: 9px 0;
  background: #2d5c14;
}

.maker-product.panel.first .slide-center {
  position: relative;
  top: 10%;
  transform: translateY(-10%);
  left: 0;
  text-align: left;

}

.onelastimg {
  position: absolute;
  right: 0px;
  bottom: -17px;
  width: 100%;

}

.maker-product.panel.one {
  position: relative;
}

.maker-product.panel.one .slide-center {
  position: relative;
  top: 15%;
  transform: translateY(-10%);
  left: 14px;
  text-align: left;
}

.contentdivcw.contentdivcw0 .section-title {
  text-align: left;
  color: white;
}

.contentdivcw0 .is-inview {
  text-align: left;
  color: #b2b2b2;
}

.mobdisplay {
  display: none !important;
}

.preloader .inner small {
  padding: 0 6px;
  font-size: 15px !important;
  font-family: 'Playfair Display', serif;
  width: 45%;
  display: block;
  color: #000;
  text-align: center;
  margin: auto;
  font-weight: 800;
}
.lightweight{font-weight: 100!important;}

/* 

.navbar{
  transform: translateY(-100%)!important;
}
.navbar.scrolling_up {
  transform: translateY(-100%);
}
.navbar.scrolling_down{ transform: translateY(0%)!important;} */


@media screen and (max-width: 620px) {
  .searchBox:hover>.searchInput {
    width: 150px !important;
    padding: 0 6px !important;
  }

}

@media screen and (max-width: 800px) {
  #gallery-box div.row div.item {
    height: 9rem;
  }

  #gallery-box div#credits {
    opacity: 0;
    visibility: hidden;
  }
}

/* RESPONSIVE MEDIUM  */
@media only screen and (max-width: 1199px) and (min-width: 1024px) {}

@media only screen and (min-width: 1200px) {
  .side-content h2 {
    font-size: 20px !important;
  }

  .engage-section .section-title h2 {
    font-size: 18px !important;
  }

  .section-title h2 {
    font-size: 22px !important;
  }

  .navbar {
    padding: 5px 70px;
  }

  /* 
  .mainbanner-text h1 {
    font-size: 2rem !important;
  } */

  .navbar .logo a img {
    height: 42px;
  }

  .navbar .navbar-button a {
    height: 32px;
    line-height: 30px;
  }

  .navbar .navbar-button a {
    font-size: 10px !important;
  }

  .signin {
    font-size: 9px !important;
  }

}

@media only screen and (max-width: 1199px),
only screen and (max-device-width: 1199px) {
  .search-box .container .search-events ul li {
    padding: 0 2%;
  }

  .slider .slider-texts .swiper-slide h1 {
    font-size: 92px;
  }

  .navbar .site-menu ul li {
    margin: 0 10px;
  }

  .navbar .navbar-button {
    display: none;
  }

  .play-now {
    left: 60%;
  }

  .page-header .inner h1 {
    font-size: 92px;
  }

  .page-header .inner p {
    padding-right: 30%;
  }

  /* .section-title h2 {
  font-size: 72px;
} */

  .side-icon-list ul li {
    margin-bottom: 30px;
  }

  .side-icon-list.right-side {
    padding-left: 30px;
  }

  .exhibition-box .content-box h4 {
    font-size: 25px;
  }

  .exhibition-box {
    padding: 0 !important;
  }

  .collection-box {
    padding: 0 !important;
  }

  .collection-box h4 {
    font-size: 25px;
  }

  .image-content-box {
    padding: 0 !important;
  }

  .counter-box .odometer {
    font-size: 56px;
  }

  .counter-box .value {
    font-size: 56px;
  }

  .testimonial-box {
    max-width: 100%;
  }

  .text-content p {
    padding-right: 10%;
  }

  .image-icon-box .content-box h4 {
    font-size: 26px;
  }

  .image-icon-box:hover .content-box .expand {
    max-height: 400px;
  }

  .side-list.right {
    padding-left: 30px;
  }

  .side-content h2 {
    font-size: 46px;
  }

  .side-content.left {
    padding-right: 30px;
  }

  .art-slider-content {
    height: 300px;
  }

  .art-slider .titles h2 {
    font-size: 46px;
  }

  .cta-box h2 {
    font-size: 72px;
  }

  .contact-form {
    padding: 0;
  }

  .recent-news .content-box h3 {
    font-size: 38px;
  }

  .newsletter-box .form {
    width: 100%;
    padding: 0;
  }

  .newsletter-box .newsletter-image {
    display: none;
  }
}

/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px),
only screen and (max-device-width: 991px) {
  input {
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
  }

  input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
  }

  textarea {
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .side-widget.active .display-mobile {
    display: flex;
    margin-top: -50px;
  }

  .side-widget.active .inner {
    display: none;
  }

  .side-widget {
    width: 440px;
  }

  .search-box .container .search-events ul {
    display: none;
  }

  .navbar .custom-menu {
    display: none;
  }

  .navbar .site-menu {
    display: none;
  }

  .navbar .navbar-button {
    display: inline-block;
  }

  .slider .slider-texts .swiper-slide h1 {
    font-size: 72px;
  }

  .slider .slider-texts .swiper-slide p {
    opacity: 1;
  }

  .slider .slider-images .swiper-slide .mobile-slide {
    display: block;
  }

  .play-now {
    display: none;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .page-header .inner p {
    padding-right: 10%;
    padding-left: 0;
    border-left: none;
    margin-left: 0;
  }

  .side-icon-list {
    padding-left: 0;
  }

  .side-icon-list ul li .content p br {
    display: none;
  }

  .sidebar {
    padding-left: 0;
    margin-top: 60px;
  }

  .col-lg-4:nth-child(1) .exhibition-box {
    padding-right: 0;
  }

  .col-lg-4:nth-child(2) .exhibition-box {
    padding: 0;
  }

  .col-lg-4:nth-child(3) .exhibition-box {
    padding-left: 0;
    margin: 50px 0;
  }

  .col-lg-3 .circle-button {
    display: none;
  }

  .col-lg-5 .side-icon-list.right-side {
    margin-top: 60px;
  }

  .cta-box h2 {
    font-size: 52px;
  }

  .exhibition-box {
    margin-top: 60px;
  }

  .side-image.right-half {
    width: 100%;
  }

  .side-image.left-half {
    width: 100%;
  }

  .image-content-box {
    margin-top: 60px;
  }

  .side-arts {
    width: 100%;
  }

  .counter-box {
    margin: 15px 0;
  }

  .art-slider {
    margin-top: -80px;
  }

  .art-slider-content {
    height: 200px;
    margin-bottom: 80px;
  }

  .art-slider-images {
    width: 100%;
  }

  .image-icon-box {
    border-right: none;
  }

  .recent-news {
    padding: 0;
    margin-bottom: 80px;
  }

  .recent-news .content-box {
    width: 100%;
    margin-bottom: 0;
    order: 2;
  }

  .recent-news figure {
    width: 100%;
    order: 1;
    margin-bottom: 50px;
  }

  .contact-form {
    margin-top: 60px;
  }

  .col-12:nth-child(even) .recent-news .content-box {
    text-align: left;
    margin: 0;
  }

  .col-12:nth-child(even) .recent-news .content-box p {
    padding-left: 0;
  }

  .newsletter-box {
    padding: 50px 0;
  }

  .newsletter-box .form .titles h2 {
    font-size: 48px;
  }

  .footer .footer-menu {
    margin-bottom: 50px;
  }
}

/* RESPONSIVE MOBILE */
@media only screen and (max-width: 767px),
only screen and (max-device-width: 767px) {
  .hamburger-menu {
    display: block !important;
  }

  .preloader {
    background: #000;
  }

  .preloader svg {
    display: none;
  }

  .page-transition {
    background: #080808;
  }

  .page-transition svg {
    display: none;
  }

  .content-section {
    padding: 80px 0;
  }

  .side-widget {
    padding: 30px;
    padding-right: 0;
    width: 100%;
    max-width: 85vw;
  }

  .side-widget .logo img {
    height: 43px;
  }

  .search-box .container .form input[type="search"] 
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .navbar {
    padding: 20px 15px;
  }

 

  .navbar .logo a img {
    height: 48px;
  }

  .slider .container-fluid {
    width: calc(100% - 30px);
    margin: 0 15px;
    padding: 0;
  }

  .slider .slider-texts .swiper-slide h1 {
    font-size: 42px;
  }

  .slider .slider-texts .swiper-slide h1 br {
    display: none;
  }

  .slider .slider-texts .swiper-slide p {
    margin-left: 0;
    padding-left: 20px;
    font-size: 17px;
  }

  .slider .slider-texts .swiper-slide p br {
    display: none;
  }

  .slider .slider-nav.container-fluid {
    margin-top: -70px;
  }

  .slider .swiper-pagination-progressbar {
    display: none;
  }

  .slider .swiper-fraction {
    display: none;
  }

  .slider .slider-images .button-prev {
    margin-left: 0;
    width: 60px;
    height: 60px;
  }

  .slider .slider-images .button-next {
    width: 60px;
    height: 60px;
  }

  .page-header .inner {
    padding: 0 15px;
  }

  .page-header .inner h1 {
    font-size: 42px;
  }

  .page-header .inner p {
    font-size: 17px;
    padding-right: 0;
  }

  .section-title {
    margin-bottom: 0px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .section-title h2 br {
    display: none;
  }

  .side-content.left br {
    display: none;
  }

  .counter-box {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .side-content.left {
    padding-right: 0;
  }

  .side-content table {
    font-size: 14px;
  }

  .side-icon-list ul li figure {
    width: 100%;
    margin-bottom: 10px;
  }

  .side-icon-list ul li .content {
    width: 100%;
  }

  .side-icon-list ul li .content p br {
    display: none;
  }

  .col-lg-6 .side-list.right {
    padding-left: 0;
    margin-top: 60px;
  }

  .col-lg-3:last-child .counter-box {
    margin-bottom: 0;
  }

  .col-lg-6 .side-icon-list {
    margin-bottom: 50px;
    padding-right: 0;
  }

  .collection-box figure {
    margin-bottom: 15px;
  }

  .col-lg-4:nth-child(1) .image-content-box {
    margin-top: 0;
  }

  .blog-post .content-box h3 {
    font-size: 32px;
  }

  .note-box {
    padding: 30px;
  }

  .note-box h2 {
    font-size: 32px;
  }

  .text-box p {
    padding-right: 0;
  }

  .art-slider {
    margin-top: 0;
  }

  .art-slider-content {
    display: none;
  }

  .cta-box h2 {
    font-size: 42px;
  }

  .side-icon-list.right-side {
    padding: 0;
  }

  .exhibition-box {
    margin-top: 60px;
  }

  .col-12.text-center .custom-button {
    margin-top: 0;
  }

  .col-lg-4:nth-child(1) .exhibition-box {
    margin-top: 0;
  }

  .col-lg-4:nth-child(3) .text-box {
    margin: 50px 0;
  }

  .col-lg-4:last-child .image-icon-box .content-box {
    padding-bottom: 0;
  }

  .col-lg-4:nth-child(3) .text-content {
    margin: 30px 0;
  }

  .col-lg-6 .side-icon-list.left-side {
    padding-top: 60px;
    padding-right: 0;
  }

  .side-arts {
    padding: 80px 30px;
  }

  .testimonial-box {
    margin-bottom: 60px;
  }

  .testimonial-box .content-box {
    padding: 30px;
  }

  .col-md-6:last-child .testimonial-box {
    margin-bottom: 0;
  }

  .image-content-box .content-box {
    width: 100%;
    margin-top: 0;
  }

  .text-content {
    text-align: center;
  }

  .text-content p {
    padding: 0 5%;
  }

  .text-content p:before {
    display: none;
  }

  .image-icon-box {
    padding-bottom: 100px;
  }

  .image-icon-box .content-box {
    padding: 30px 0;
  }

  .image-icon-box .icon {
    width: 60px;
    height: 60px;
  }

  .image-icon-box .icon img {
    height: 36px;
  }

  .recent-news figure {
    margin-bottom: 20px;
  }

  .recent-news .content-box h3 {
    font-size: 27px;
  }

  .recent-news .content-box p {
    padding: 0;
  }

  .text-box h2 {
    font-size: 42px;
  }

  .col-md-2 img {
    margin-bottom: 30px;
  }

  .col-12:nth-child(2) .recent-news {
    margin-bottom: 50px;
  }

  .newsletter-box {
    padding: 50px 0;
  }

  .newsletter-box .form .titles h2 {
    font-size: 34px;
  }

  .newsletter-box .form .inner {
    width: 100%;
  }

  .newsletter-box .form input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }

  .newsletter-box .form input[type="submit"] {
    width: 100%;
  }

  .footer {
    padding-top: 80px;
  }

  .footer .social-media {
    margin-bottom: 50px;
  }

  .footer .footer-bottom .creation {
    width: 100%;
  }
}

@media all and (min-width: 900px) {
  .pen {
    /* max-width: 890px; */
  }

  .element {
    width: 33.35%;
  }

  .element.inactive {
    width: 32.5%;
  }

  .element.active {
    width: 35%;
  }

  .stage {
    /* max-width: 890px; */
    height: 100vh;
  }
}

.mobileview {
  display: none;
}

@media all and (max-width: 660px) {
  .artistnav {
    display: none;
  }

  .gallery .col-md-2 {
    flex: 0 0 auto;
    width: 47.666667%;
  }

  section.top-banner img {
    width: 100%;
    height: 425px;
  }

  .searchBox {
    position: absolute;
    top: 0%;
    right: 0%;
    transform: none;
  }

  .findmap {
    display: none;
  }

  .distribution-map {
    width: 100%;
    padding-right: 0;
    padding-top: 67px;
    padding-bottom: 4%;
    box-sizing: border-box;
  }

  .findmap ul {
    padding: 0;
    width: auto;
  }

  .shareul2 {}

  .maker-product {
    padding: 18px 17px 83px !important;
    height: auto;
  }

  .maker-product.panel.first .lastimg {
    width: 55% !important;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
  }

  .first h5 {
    font-size: 13px;
  }

  .maker-product.panel.first {
    padding: 0 17px;
    overflow: hidden;
  }

  .contentdivcw {
    padding: 0%;
  }

  .onelastimg {
    display: none;
  }

  .shareulcw p {
    font-family: 'Muli';
    font-size: 13px;
  }

  .shareul p {
    font-family: 'Muli';
    font-size: 13px;
  }

  .maker-product.panel.one .slide-center {
    position: relative;
    top: 28%;
    transform: translateY(3%);
    left: 0px;
    text-align: left;
  }

  .maker-product.panel.first .slide-center {
    position: relative;
    top: 28%;
    transform: translateY(3%);
    left: 0px;
    text-align: left;
  }

  .details-shop {
    margin-left: auto;
    width: 100%;
  }

  .pcontent {
    font-size: 14px;
    padding-right: 18%;
    font-family: 'Muli';
  }



  .contentdivcw h1 {
    font-size: 2rem;
    font-family: 'Prata';
    color: #ffffff;
  }

  .cover-background-img {
    display: none;
  }

  #gallery-box div.row div.item {
    height: 11rem !important;
  }

  .heights {
    display: block;
  }

  .mobileview {
    display: block;
    height: max-content;
  }

  #gallery-box div.item {
    min-width: calc((71% - calc(6rem / 4)) / 1.5);
  }

  #gallery-box div.overlay a {
    font-family: 'Montserrat';
    color: #ddd;
    font-size: 9px;
  }

  div#gallery-box {
    width: 100%;
    height: 100%;
  }

  #gallery-box div.overlay {
    position: absolute;
    top: 15%;
    bottom: 0;
    left: 0;
    background: none;
    width: 366px;
    right: 0;
  }

  .craftweavediv {
    position: relative;
    width: 100%;
    height: 60vh;
  }

  #gallery-box div.overlay h1 {
    font-family: 'Prata';
    font-size: 24px;
  }

  .main .section-title {
    top: 40%;
  }

  .innerpagesection {
    padding: 45px 0 0px;
  }

  .innerpagesection .main .btn:hover .overlay {
    display: none;
  }

  #background .btn {
    padding: 0.5em;
    height: 68px;
  }

  .counter-box .odometer {
    font-size: 28px;
  }

  .youtubeinstafollow .pl-5 {
    padding: 4%;
  }

  .coating-1 {
    position: relative;
    height: auto;
  }

  .youtubeinstafollow h4 {
    font-size: 11px;
  }

  .youtubeinstafollow h3 {
    font-size: 16px;
  }

  .counter-box {
    margin: 18px 0;
  }

  .counter-box .value {
    font-size: 30px;
  }

  .counter-box .odometer:after {
    display: none;
  }

  .paratext {
    display: none;
  }

  .typediv {
    padding: 7% 10px 10% !important;
  }

  .side-content p {
    font-size: 12px;
  }

  .header {
    display: flex;
    overflow: hidden;
    height: 100vw;
  }

  .side-content h2 {
    font-size: 18px;
  }

  .preloader .inner small {
    width: 83%;
  }

  .footer {
    padding-top: 20px;
  }

  section.content-section.bgvideo {
    height: 46vh !important;
  }

  .preloader .inner figure {
    left: 26%;
  }


  .footerpara {
    margin-bottom: 1pc;
  }

  .footer .footer-bottom {
    margin-top: 0;
    font-size: 14px;
  }

  .books strong {
    font-size: 12px;
  }

  .books p {
    font-size: 10px;
    line-height: 1;
  }

  .image-content-box {
    margin-top: 23px;
  }

  .pt-50 {
    padding-top: 5rem !important;
  }

  .pb-50 {
    padding-bottom: 5rem !important;
  }

  .contenttext h2 {
    font-size: 18px;
  }

  .cta-box h2 {
    font-size: 17px;
    font-family: 'Muli';
    font-weight: 700;
    letter-spacing: 0;
  }

  .footer .widget-title {
    margin-bottom: 12px;
    padding-bottom: 0px;
  }

  .cta-box h6 {
    width: 100%;
    display: block;
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .points li {
    display: inline-block;
    cursor: pointer;
    background: #fff;
    padding: 8px 20px;
    width: 45%;
    /* border: 1px solid #d8d8d8; */
    border-radius: 5px;
    margin: 0 8px 16px 0px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    font-family: 'Muli';
  }

  .engage-section .section-title h2 {
    font-weight: bold;
    font-size: 15px;
  }

  .engage-section .section-title {
    padding-right: 0pc;
    padding-top: 2%;
  }

  .webdisplay {
    display: none;
  }

  .mobdisplay {
    display: block !important;
    height: auto;
  }

  .navbar {
    padding: 8px 15px;
    background: #121212;
  }

  .navbar .search-button {
    display: none;
  }

  .content-section {
    padding: 10px 0;
  }

  .share .share__icon {
    display: inline-block;
    font-size: 13px;
  }

  .styles_panel__pmQtB {
    font-size: 14px;
  }

  .mainbanner-text {
    top: 55%;
  }

  .navbar .logo a img {
    height: 36px;
  }

  .mainabout p {
    font-size: 11px;
  }

  .commonbtn1 {
    border: 1px solid #fff;
    padding: 6px 22px;
    font-size: 10px;
  }

  .contenttext p {
    font-size: 10px;
  }

  .share {
    height: 52px;
    margin: 0 auto;
    display: none;
  }

  .commonbtn {
    color: black;
    border: 1px solid #efc14b;
    padding: 6px 22px;
    font-size: 10px;
    font-weight: 800;
  }

  .mainonediv p {
    font-family: 'Muli';
    font-size: 12px;
  }

  .section-title h2.maintitletext {
    font-size: 24px !important;
    border: none;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .stage {
    max-width: 100% !important;
  }

  .pb-5 {
    padding-bottom: 1rem !important;
  }

  .pt-5 {
    padding-top: 1rem !important;
  }

  .element {
    width: 33.33% !important;
  }

  .mainbanner-text h1 span {
    color: #ffe764;
    font-size: 14px;
  }

  .mainbanner-text h1 {
    font-size: 28px;
    font-family: 'Montserrat';
    font-weight: 800;
    padding: 0 24px;
  }

  .image-icon-box .content-box h4 {
    font-size: 17px;
  }

  .mainbanner-text h1 span {
    color: #ffe764;
    font-size: 18px;
    font-family: 'Prata';
    font-weight: 100;
  }

  .mainonediv .third {
    position: absolute;
    bottom: 0;
    right: 0;
    /* opacity: 0.2; */
    width: 100%;
  }

  .contenttext {
    margin-left: 0;
    margin-top: 0;
    width: 100%;

  }

  .stage {
    /* max-width: 635px; */
    width: 100%;
    height: 418px;
  }

  .keepexplore {
    width: auto;
    margin: auto;
    box-shadow: none;
  }

  .pen {
    /* max-width: 335px; */
  }

  .element {
    width: 101px;
  }

  .element.inactive {
    width: 61px;
  }

  .element.active {
    width: 181px;
  }

  .stage {
    max-width: 335px;
  }
}

@media (min-width: 768px) {
  .hidden2 {
    display: none;
  }

  .img {
    display: block;
  }
}

@media screen and (max-width:440px) {
  .float-container .icon:last-child {
    display: none;
  }

  .float-container {
    position: fixed;
    top: auto;
    bottom: 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;

    width: 100%;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: auto;
    -webkit-box-align: auto;
    -ms-flex-align: auto;
    align-items: auto;
  }

  .float-container a.icon {
    right: 0;
    bottom: 0;

    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    padding: 5px;

    border-radius: 0;
    -webkit-box-shadow: 0 0 0 #7d7d7d;
    box-shadow: 0 0 0 #7d7d7d;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 1px solid darkorange;
    border-right: 1px solid darkorange;
  }
}

@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline {
    /* margin: 6em auto; */
  }

  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}


@media only screen and (min-width: 768px) {
  .cd-horizontal-timeline .events-content h2 {
    font-size: 19px;
    margin-top: 14px;
  }

  .cd-horizontal-timeline .events-content em {
    font-size: 1rem;
  }

  .cd-horizontal-timeline .events-content p {
    font-size: 17px;
  }
}


:root {
  --purple: hsl(265 100% 18%);
  --white: hsl(0 0% 100%);
  --gray: hsl(231 4% 63%);
}

.step.completed {
  --rectangle-bg-color: var(--white);
  --rectangle-border-color: var(--purple);
  --rectangle-color: var(--purple);
  --circle-bg-color: var(--purple);
  --circle-color: var(--white);
}

.step.active {
  --rectangle-bg-color: var(--purple);
  --rectangle-border-color: var(--purple);
  --rectangle-color: var(--white);
  --circle-bg-color: var(--purple);
  --circle-color: var(--white);
}

.step.incomplete {
  --rectangle-bg-color: var(--white);
  --rectangle-border-color: var(--gray);
  --rectangle-color: var(--gray);
  --circle-bg-color: var(--gray);
  --circle-color: var(--white);
}

.step {
  --border-size: 2px;
  --inner-circle-w: 0.5rem;
  margin-right: 25px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.process h5 {
  font-size: 20px;
  color: black;
  font-weight: 700;
}

.count {
  position: relative;
  z-index: 10;
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background-color: hsl(51.86deg 58.99% 48.64%);
  color: #fff;
}

.label {
  --label-h: 2rem;
  position: relative;
  left: 0;
  width: 15rem;
  height: 2rem;
  border-top: var(--border-size) solid hsl(51.78deg 58.87% 48.63% / 30%);
  border-bottom: var(--border-size) solid hsl(0deg 0% 96.46%);
  background: var(--rectangle-bg-color);
}

.inner-circle {
  position: relative;

  width: var(--inner-circle-w);
  height: 100%;
  overflow: hidden;
}

.inner-circle::before {
  --inner-circle-before-h: 3rem;
  --inner-circle-before-w: 1.5rem;
  --inner-circle-before-border-radius: calc(var(--inner-circle-before-w) + var(--border-size));
  content: " ";
  position: absolute;
  top: calc(-1 * (var(--inner-circle-before-h) / 2 / 2) + var(--border-size));
  left: -1.0625rem;
  height: var(--inner-circle-before-h);
  width: calc(var(--inner-circle-before-h) / 2);
  border: var(--border-size) solid hsl(51.78deg 58.87% 48.63% / 30%);
  border-radius: 0 var(--inner-circle-before-border-radius) var(--inner-circle-before-border-radius) 0;
  background: white;
}

.triangle-border {
  --triangle-diagonal: 1.414rem;
  position: absolute;
  transform: rotate(45deg);
  top: calc(50% - var(--triangle-diagonal) / 2);
  left: calc(100% - var(--triangle-diagonal) / 2);
  width: var(--triangle-diagonal);
  height: var(--triangle-diagonal);
  border-top: var(--border-size) solid hsl(51.78deg 58.87% 48.63% / 30%);
  border-right: var(--border-size) solid hsl(51.78deg 58.87% 48.63% / 30%);
  background-color: transparent;
}

.triangle {
  position: absolute;
  top: calc(var(--border-size) * -1);
  left: 100%;

  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid var(--rectangle-bg-color);
}

.texts {
  --text-h: calc(var(--label-h) - var(--border-size) * 2);
  position: absolute;
  top: 0;
  left: var(--inner-circle-w);
  z-index: 10;
  display: inline-block;
  width: calc(100% - var(--inner-circle-w));
  height: var(--text-h);
  overflow: hidden;
  padding-left: 5px;
  background-color: transparent;
  white-space: nowrap;
  color: black;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  line-height: var(--text-h);
}

.contentdivcw h1 {
  font-size: 2.5rem;
  font-family: 'Prata';
  color: #111111;
}

.topartist h5 {
  font-size: 16px;
  font-weight: 800;
  font-family: 'Muli';
  margin: 5% 0 2%;

}

.topartist .row {
  padding-right: 40%;
  --bs-gutter-x: 1rem;
}

.topartist .row p {
  font-size: 12px;
  line-height: 1.2;
  margin: 10px 0;
}

.topartist .row img {
  filter: sepia(1);
  border-radius: 15px;
  cursor: pointer;
}

.topartist .row img:hover {
  filter: none;
}

.loaderimgset {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}


.setborder img {
  width: 128px;
  margin-bottom: 8px
}

.setborder p b {
  color: #c6a348;
  display: block;
}

@media (min-width: 900px) {
    .element {
        width: 33.35%;
    }
.stage {
    height: 100vh;}
}




.success.alert-box {
    position: absolute;
    right: 36px;
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.success.alert-box .btn.close {
    position: absolute;
    right: 0;
    top: -7px;
    font-size: 17px;
}