/*!
Template Name:
Author:
Version: 1.0

-----------------------------------------------------------------------------------
Front End is Developed By Shaikh Abu Amer on bahalf of
-----------------------------------------------------------------------------------


CSS INDEX
===================
01. CUSTOM PROPERTIES
02. GLOBAL
03. COMPONENTS
*/
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --et-orange: #f05537;
  --et-orange-rgb: 240, 85, 55;
  --et-pink: #DE0977;
  --et-pink-rgb: 222, 9, 119;
  --et-Lpink: #F929BB;
  --et-gray: #58595B;
  --et-gray2: #5C707E;
  --black: #181818;
  --white: #ffffff;
  --font-kalam: "Kalam", cursive;
  --font-kanit: "Kanit", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-lato: "Lato", sans-serif;
}

body {
  font-family: var(--font-lato);
}

p {
  line-height: 1.6;
}

a,
button {
  transition: 0.4s ease;
}

/* section sub title */
.et-section-sub-title {
  position: relative;
  padding-left: 40px;
  font-family: var(--font-kalam);
  color: var(--et-orange);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .et-section-sub-title {
    margin-bottom: 6px;
  }
}
.et-section-sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--et-orange);
}
.et-section-title {
  font-family: var(--font-kanit);
  font-weight: 500;
  font-size: 55px;
  color: var(--black);
  line-height: 1.05;
}
@media screen and (max-width: 1199px) {
  .et-section-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .et-section-title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .et-section-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .et-section-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 479px) {
  .et-section-title {
    font-size: 32px;
  }
}
.et-section-title span.colored {
  font-family: var(--font-kalam);
  font-weight: 700;
  color: var(--et-pink);
}

.et-pagination a.active {
  background-color: var(--et-orange);
  border-color: var(--et-orange);
  color: var(--white);
}

@media screen and (max-width: 1199px) {
  .et-header-nav {
    width: 100%;
  }
}
.et-header-nav a {
  display: block;
  color: var(--black);
  line-height: 3;
}
@media screen and (max-width: 1199px) {
  .et-header-nav a {
    line-height: 1.8;
  }
}
.et-header-nav a:hover {
  color: var(--et-orange);
}
.et-header-nav .has-sub-menu {
  display: grid;
  grid-template-rows: max-content 0fr;
  transition: 0.4s ease;
}
.et-header-nav .has-sub-menu:hover .et-header-submenu {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1199px) {
  .et-header-nav .has-sub-menu:hover .et-header-submenu {
    transform: translateY(0) translateX(0);
  }
}
@media screen and (max-width: 1199px) {
  .et-header-nav .has-sub-menu.active {
    grid-template-rows: max-content 1fr;
  }
}
.et-header-nav .has-sub-menu.active .et-header-submenu {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
  border-color: #ddd;
  pointer-events: all;
}
@media screen and (max-width: 1199px) {
  .et-header-nav .has-sub-menu.active .et-header-submenu {
    transform: translateY(0) translateX(0);
  }
}
.et-header-submenu {
  position: absolute;
  min-width: 200px;
  background-color: var(--white);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.03);
  top: 100%;
  left: 50%;
  opacity: 0;
  transform: translateY(10px) translateX(-50%);
  transition: 0.4s ease, pointer-events 0s;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .et-header-submenu {
    position: static;
    transform: translateY(0) translateX(0);
    opacity: 1;
    width: 100%;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid transparent;
  }
}
.et-header-submenu.active {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
}
.et-header-submenu a {
  padding: 14px 20px;
  border-bottom: 1px solid #ddd;
  line-height: 1;
}
.et-header-submenu li:last-child a {
  border-bottom: 0;
}
.et-header-search.active .et-header-search-open-btn {
  color: var(--et-orange);
}
.et-header-search.active form {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.et-header-search form {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .et-header-search form {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}
.et-header-location-dropdown {
  min-width: max-content;
  background-color: #230600;
}
.et-header-location-dropdown .ss-list {
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 230px;
}

.et-header-location-dropdown .ss-list .ss-option {
  padding: 8px 15px;
  color: #ffffff;
}
.et-header-location-dropdown .ss-list .ss-option:hover, .et-header-location-dropdown .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background-color: var(--et-orange);
}

.ss-placeholder {
    color: #ffffff !important;
}

.et-about-stat {
  position: relative;
}
.et-about-stat h6 span {
  -webkit-text-stroke: 1px var(--et-orange);
}
.et-about-stat:not(:first-child)::before {
  content: "";
  position: absolute;
  right: 100%;
  height: 65px;
  width: 1px;
  background-color: #d9d9d9;
  top: 50%;
  transform: translateY(-50%);
}
.et-about__action {
  background: url(../img/about-action-bg.jpg);
}

.et-category {
  position: relative;
  z-index: 1;
  background: url(../img/category-bg.jpg) var(--white) no-repeat center center;
  background-size: cover;
  transition: 0.4s ease;
}
.et-category:hover .et-category__icon {
  background-color: var(--white);
}
.et-category:hover::before {
  opacity: 1;
}
.et-category:hover::after {
  opacity: 0;
}
.et-category:hover .et-category__descr {
  color: var(--white);
}
.et-category:hover a {
  color: var(--white);
}
.et-category:hover a:hover {
  color: var(--et-pink);
}
.et-category:hover a:hover svg path {
  fill: var(--et-pink);
}
.et-category:hover a svg path {
  fill: var(--white);
}
.et-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(120, 5, 64) 0%, rgba(120, 5, 64, 0) 100%);
  z-index: -1;
  transition: 0.4s ease;
  opacity: 0;
}
.et-category::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.4s ease;
  background: var(--white);
}
.et-category__icon {
  mask: url(../img/category-icon-mask.svg) center center no-repeat;
  mask-size: contain;
  background-color: rgba(var(--et-pink-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.et-schedules {
  background: url(../img/schedules-bg.jpg) no-repeat center center;
  background-size: cover;
}
.et-schedules-tab-navs button {
  position: relative;
  z-index: 1;
}
.et-schedules-tab-navs button:hover, .et-schedules-tab-navs button.active {
  color: var(--white);
}
.et-schedules-tab-navs button:hover::before, .et-schedules-tab-navs button.active::before {
  opacity: 1;
}
.et-schedules-tab-navs button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(to right, var(--et-orange), var(--et-orange));
  z-index: -1;
  opacity: 0;
  border-radius: 999px;
  transition: 0.2s linear;
}

.et-schedule {
  z-index: 1;
  position: relative;
}
.et-schedule:hover::before, .et-schedule:hover::after {
  opacity: 1;
}
.et-schedule:hover .et-schedule-date-time span {
  color: var(--white);
}
.et-schedule:hover .et-schedule-date-time svg path {
  fill: var(--white);
}
.et-schedule:hover .et-schedule-title {
  color: var(--white);
}
.et-schedule:hover .et-schedule-loaction h6 {
  color: var(--white);
}
.et-schedule:hover .et-schedule-loaction svg path {
  fill: var(--white);
}
.et-schedule:hover .et-schedule__descr {
  color: var(--white);
}
.et-schedule:hover .et-schedule-btn {
  background-color: var(--white);
}
.et-schedule:hover .et-schedule-btn:hover {
  background-color: var(--et-pink);
}
.et-schedule:hover .et-schedule-btn:hover svg path {
  fill: var(--white);
}
.et-schedule::before, .et-schedule::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1s ease;
}
.et-schedule::before {
  background: linear-gradient(to right, var(--et-pink), rgba(120, 5, 64, 0.6));
  z-index: -1;
}
.et-schedule::after {
  background: url(../img/schedule-bg.jpg) no-repeat center center;
  background-size: cover;
  z-index: -2;
}
.et-schedule-date-time > *:not(:last-child) {
  position: relative;
}
.et-schedule-date-time > *:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  height: 21px;
  width: 1px;
  background-color: #D9D9D9;
}
@media screen and (max-width: 479px) {
  .et-schedule-date-time > *:not(:last-child)::before {
    top: calc(100% + 6px);
    height: 1px;
    width: 100%;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
}
.et-schedule-btn {
  background-color: rgba(var(--et-pink-rgb), 0.1);
}

.et-tab {
  height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}
.et-tab.active {
  height: auto;
}

.et-schedule-ticker h4 {
  position: relative;
}
.et-schedule-ticker h4::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/ticker-vector.svg) no-repeat center center;
  background-size: 100% 100%;
  width: 30px;
  height: 30px;
  left: -45px;
}
.et-schedule-ticker h4 a > * {
  flex-grow: 0;
  flex-shrink: 1;
}

.et-artists-slider .et-artist {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0);
}
.et-artists-slider .swiper-slide-visible .et-artist {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.et-upcoming-events-heading .et-section-sub-title::before {
  background-color: var(--white);
}
.et-upcoming-events-timer {
  position: relative;
}
.et-upcoming-events-timer::before, .et-upcoming-events-timer::after {
  content: "";
  position: absolute;
  width: 265px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
}
.et-upcoming-events-timer::after {
  left: auto;
  right: calc(100% + 20px);
}

.et-upcoming-event:hover .et-upcoming-event__img img {
  scale: 1.08;
}
.et-upcoming-event__img img {
  transition: 0.4s ease;
}
.et-upcoming-event a.btn:hover svg path {
  fill: var(--white);
}

.et-blog:hover .et-blog__img img {
  transform: scale(1.1);
}
.et-blog__img img {
  transition: 0.4s ease;
}
.et-blog__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(var(--et-orange-rgb), 0.7) 0%, transparent 100%);
}

.et-history-timeline {
  width: max-content;
}
.et-history-timeline::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  background-color: var(--et-orange);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  height: 0;
  transition: 0.4s ease;
}
.et-history-timeline h3 {
  -webkit-text-stroke: 1px var(--et-gray2);
}
.et-history-timeline.swiper-slide-thumb-active {
  border-top: 1px solid var(--et-orange);
}
.et-history-timeline.swiper-slide-thumb-active::before {
  height: 13px;
}
.et-history-timeline.swiper-slide-thumb-active h3 {
  -webkit-text-stroke: 0 var(--et-orange);
  color: var(--et-orange);
}

.et-single-accordion-item {
  transition: 0.4s ease;
}

.et-single-accordion-item.open .et-single-accordion-item__header i {
  transform: rotate(90deg);
  color: var(--et-orange);
}
.et-single-accordion-item.open .et-single-accordion-item__title {
  color: var(--et-orange);
}
.et-single-accordion-item.open .et-single-accordion-item__body {
  grid-template-rows: 1fr;
  padding-top: 9px;
}

.et-single-accordion-item__header i {
  transition: transform 0.4s ease;
}

.et-single-accordion-item__body {
  transition: all 0.4s ease;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}

.et-single-accordion-item__body p {
  overflow: hidden;
}

.et-event-details-requirements-list li {
  padding-left: 22px;
  position: relative;
}
.et-event-details-requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: url(../img/checkmark.svg) no-repeat center center;
  background-size: 100% 100%;
  width: 14px;
  height: 13px;
}

#date-slider .swiper-slide {
  width: max-content;
}

.et-date-button {
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 15px;
  height: 30px;
  display: grid;
  place-content: center;
  font-size: 14px;
  font-family: var(--font-inter);
}
.et-date-button:hover, .et-date-button.active {
  background-color: var(--et-orange);
  border-color: var(--et-orange);
  color: var(--white);
  transition: 0.4s ease;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

.et-event-details-img-slider-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.et-event-details-img-slider-dots span {
  width: 22px;
  height: 22px;
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0);
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.4s ease;
  vertical-align: top;
}
.et-event-details-img-slider-dots span::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: var(--et-orange);
  border-radius: 50%;
}
.et-event-details-img-slider-dots span.swiper-pagination-bullet-active {
  border-color: var(--et-orange);
}

.et-events-slider {
  mask: url(../img/slider-mask.svg) no-repeat bottom center;
  mask-size: cover;
}/*# sourceMappingURL=style.css.map */

.ss-main .ss-arrow path { stroke:white }
