/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --eventflow-font: "DM Sans", sans-serif;
  --eventflow-font-two: "Inter", sans-serif;
  --eventflow-gray: #7C7B7B;
  --eventflow-gray-rgb: 124, 123, 123;
  --eventflow-white: #ffffff;
  --eventflow-white-rgb: 255, 255, 255;
  --eventflow-base: #B20D5D;
  --eventflow-base-rgb: 178, 13, 93;
  --eventflow-black: #04000A;
  --eventflow-black-rgb: 4, 0, 10;
  --eventflow-primary: #4A0AB4;
  --eventflow-primary-rgb: 74, 10, 180;
  --eventflow-extra: #F8F8F8;
  --eventflow-extra-rgb: 248, 248, 248;
  --eventflow-bdr-color: #CCCCCC;
  --eventflow-bdr-color-rgb: 204, 204, 204;

}

.row {
  --bs-gutter-x: 30px;
}

body {
  font-family: var(--eventflow-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(var(--eventflow-white-rgb), .90);
}

.body-bg-color-1 {
  background-color: var(--eventflow-black);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--eventflow-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}


h2,
h3,
h4,
h5 {
  color: var(--eventflow-white);
  margin: 0;
  font-family: var(--eventflow-font-two);
}

p {
  margin: 0;
}


ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -5px;
  margin-bottom: 52px;
}

.section-title__tagline-box {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section-title__title {
  margin: 0;
  color: var(--eventflow-white);
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  text-transform: capitalize;
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 15px;
  color: var(--eventflow-white);
  text-transform: capitalize;
  letter-spacing: 1.6px;
  padding: 17px 30px 17px;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  border-radius: 30px;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  overflow: hidden;
  gap: 10px;
  z-index: 1;
}

.thm-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}

.thm-btn:hover {
  color: var(--eventflow-white);
}

.thm-btn:hover::after {
  bottom: -50%;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--eventflow-base);
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 0;
}

.scroll-to-top i {
  color: var(--eventflow-white);
  font-size: 18px;
  line-height: 60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--eventflow-white);
}

.scroll-to-top:hover i {
  color: var(--eventflow-base);
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 9999;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--eventflow-base);
  border-color: var(--eventflow-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  border-radius: 25px;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--eventflow-white);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--eventflow-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px;
  z-index: 1;
}

.main-menu__wrapper-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--eventflow-white-rgb), .15);
  z-index: -1;
}

.main-menu__left {
  position: relative;
  display: block;
}

.main-menu__logo {
  position: relative;
  display: block;
  padding: 15px 0;
  z-index: 1;
}

.main-menu__logo a img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.site-footer__logo a img {
  height: 120px;
  width: auto;
  object-fit: cover;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
}

.main-menu__cart-search-nav-sidebar-icon-and-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--eventflow-white);
  padding-top: 12px;
  padding-bottom: 12px;
}

.main-menu__cart:hover {
  color: var(--eventflow-base);
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--eventflow-white);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.main-menu__search:hover {
  color: var(--eventflow-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--eventflow-white);
  padding-top: 11px;
  padding-bottom: 11px;
}

.main-menu__nav-sidebar-icon a:hover {
  color: var(--eventflow-base);
}


.stricky-header.main-menu {
  background-color: var(--eventflow-black);
}







.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 991px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}



.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 47px;
  padding-bottom: 47px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

@media(min-width:1200px) {

  .main-menu .main-menu__list>li+li,
  .stricky-header .main-menu__list>li+li {
    margin-left: 50px;
  }
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--eventflow-white);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 16px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 55%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 11px;
  color: var(--eventflow-white);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--eventflow-base);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--eventflow-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(var(--eventflow-black-rgb), .10);
}

.main-menu .main-menu__list>li>ul>li:last-child,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child,
.stricky-header .main-menu__list>li>ul>li:last-child,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child {
  border-bottom: 0;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--eventflow-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--eventflow-base);
  color: var(--eventflow-white);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}


.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--eventflow-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--eventflow-white);
}

@media (min-width: 991px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--eventflow-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--eventflow-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--eventflow-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--eventflow-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--eventflow-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--eventflow-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--eventflow-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--eventflow-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--eventflow-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--eventflow-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--eventflow-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--eventflow-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Main Header Three
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eventflow-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--eventflow-primary);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  clip-path: none;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--eventflow-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--eventflow-white);
}


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/

@keyframes border-round {

  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
    opacity: 1;
  }
}


/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  padding: 200px 0 200px;
  z-index: 91;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.banner-one__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 111;
}

.banner-one__countdown-timer-box {
  position: relative;
  display: block;
}

.banner-one__countdown-timer-box .time-countdown-two {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 10px;
}

.banner-one__countdown-timer-box li {
  position: relative;
  display: block;
  float: left;
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
}

.banner-one__countdown-timer-box li+li {
  margin-left: 5px;
}

.banner-one__countdown-timer-box li .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 120px;
  width: 120px;
  margin: 0 auto 0;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}

.banner-one__countdown-timer-box li .box:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(180deg, #B20D5D, rgba(140, 30, 13, .33)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.banner-one__countdown-timer-box li span.days,
.banner-one__countdown-timer-box li span.hours,
.banner-one__countdown-timer-box li span.minutes,
.banner-one__countdown-timer-box li span.seconds {
  position: relative;
  display: block;
  color: var(--eventflow-white);
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto;
}

.banner-one__countdown-timer-box li span.timeRef {
  position: relative;
  display: block;
  color: var(--eventflow-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
}

.banner-one__title {
  font-size: 45px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 55px;
}

.banner-one__date {
  font-size: 35px;
  line-height: 45px;
  color: var(--eventflow-white);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}

.banner-one__address {
  font-size: 24px;
  color: var(--eventflow-white);
  font-weight: 500;
  line-height: 34px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
  margin-top: 41px;
}


/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/

.services-one__single {
  position: relative;
  display: block;
  padding: 38px 39px 37px;
  border-radius: 20px;
  margin-bottom: 30px;
  z-index: 1;
  min-height: 350px;
}

.services-one__single:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #F24617, rgba(140, 30, 13, .33)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

.services-one__single:hover:before {
  visibility: hidden;
  opacity: 0;
}

.services-one__single:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(140, 30, 13, .33), #F24617) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.services-one__single:hover:after {
  visibility: visible;
  opacity: 1;
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--eventflow-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}


.icons-size {
  height: 45px;
  width: 45px;
  object-fit: cover;
}

.services-one__single:hover .services-one__icon span {
  transform: scale(1.05);
}

.services-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 22px;
}

.services-one__title a {
  color: var(--eventflow-white);
}

.services-one__title a:hover {
  color: var(--eventflow-base);
}

.services-one__text {
  margin-top: 14px;
  margin-bottom: 30px;
}

.services-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--eventflow-white);
  background-color: transparent;
  border: 0;
  font-weight: 700;
}

.services-one__read-more:hover {
  color: var(--eventflow-base);
}

/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Event One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Buy Ticket
--------------------------------------------------------------*/
.buy-ticket {
  position: relative;
  display: block;
  /* background-color: #0E0A17; */
  padding: 80px 0 50px;
  z-index: 1;
}

.buy-ticket__left {
  position: relative;
  display: block;
  margin-right: -20px;
}

.buy-ticket__address {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.buy-ticket__address li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.buy-ticket__address li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.buy-ticket__address li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--eventflow-white);
}

.buy-ticket__address li .text {
  position: relative;
  display: block;
}

.buy-ticket__address li .text p {
  font-size: 12px;
  color: var(--eventflow-white);
}

.buy-ticket__title {
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.buy-ticket__title a {
  color: var(--eventflow-white);
}

.buy-ticket__text {
  margin-bottom: 42px;
}

.buy-ticket__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.buy-ticket__btn-2 {
  background: transparent;
  border: 1px solid var(--eventflow-bdr-color);
  padding: 16px 30px 16px;
}

.buy-ticket__btn-2:hover {
  border: 1px solid transparent;
}

.buy-ticket__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.buy-ticket__img {
  position: relative;
  display: block;
}

.buy-ticket__img img {
  width: 100%;
  border: 7px solid #261E36;
  border-radius: 20px;
  height: 400px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;

}

.team-one__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  height: 350px;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}


.team-one__single:hover .team-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-one__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: #0E0A17;
  padding: 10px 10px;
  text-align: center;
  border-radius: 20px;
  transform: translateY(0%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}

@media(min-width:991px) {
  .team-one__content {
    visibility: hidden;
    opacity: 0;
  }

  .team-one__single:hover .team-one__content {
    visibility: visible;
    opacity: 1;
  }
}

@media(max-width:767px) {
  .team-one__name {
    font-size: 10px;
  }

  .team-one__img {
    height: 300px;
  }
}

.team-one__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0px;
}

.team-one__name a {
  color: var(--eventflow-white);
}

.team-one__sub-title {
  line-height: 16px;
  color: var(--eventflow-white);
}

/*--------------------------------------------------------------
# Event Direction
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

.gallery-one .container {
  max-width: 1572px;
}

.gallery-one .row {
  --bs-gutter-x: 10px;
}

.gallery-one__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
  aspect-ratio: 4/3;
}

/* .gallery-one__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--eventflow-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
} */

.gallery-one__single:hover .gallery-one__img::before {
  opacity: .40;
}

.gallery-one__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-one__single:hover .gallery-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.gallery-one__content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: #0E0A17;
  border-radius: 20px;
  padding: 26px 30px 18px;
  transform: translateX(-50%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.gallery-one__single:hover .gallery-one__content {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  transition-delay: 500ms;
}

.gallery-one__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.gallery-one__sub-title-shape {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
}

.gallery-one__sub-title {
  font-size: 16px;
  line-height: 16px;
  color: var(--eventflow-white);
}

.gallery-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.gallery-one__title a {
  color: var(--eventflow-white);
}

.gallery-one__title a:hover {
  color: var(--eventflow-base);
}

/*--------------------------------------------------------------
# Schedule One
--------------------------------------------------------------*/

.schedule-one__inner {
  position: relative;
  display: block;
}

.schedule-one__inner .section-title {
  position: relative;
}

.schedule-one__main-tab-box {
  position: relative;
  display: block;
}

.schedule-one__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 40px auto;
  margin-bottom: 60px;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 11px 29px 11px;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  border-radius: 32px;
  z-index: 1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  border-radius: 32px;
  transition: all 0.3s ease;
  z-index: -1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 14px solid var(--eventflow-primary);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn::after {
  opacity: 1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn h3 {
  font-size: 15px;
  color: var(--eventflow-white);
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1.4px;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn h3 {
  color: var(--eventflow-white);
}

.schedule-one__main-tab-box .tab-buttons .tab-btn p {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 14px;
  line-height: 14px;
  color: var(--eventflow-white);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
}

.schedule-one__main-tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--eventflow-white);
}

.schedule-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.schedule-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.schedule-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}


/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  /* background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%); */
  background-image: url(/assets/images/Music-Soundcloud-Banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid #ffff;
  padding: 50px 0 50px;
  z-index: 1;
  border-radius: 20px;
  margin: 40px 25px;
}

.cta-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.cta-one__title {
  font-size: 55px;
  font-weight: 600;
  line-height: 75px;
  color: var(--eventflow-white);
  text-transform: capitalize;
  margin-bottom: 29px;
}

.cta-one__form.mc-form {
  position: relative;
  display: block;
  max-width: 670px;
  width: 100%;
  margin: 0 auto 0;
}

.cta-one__form-input-box {
  position: relative;
  display: block;
}

.cta-one__form-input-box input[type="email"] {
  font-size: 16px;
  height: 60px;
  width: 100%;
  background-color: transparent;
  outline: none;
  color: var(--eventflow-white);
  font-weight: 400;
  border: 2px solid rgba(var(--eventflow-white-rgb), .14);
  border-radius: 30px;
  padding-right: 65px;
  padding-left: 30px;
}

.cta-one__btn {
  position: absolute;
  top: 50%;
  right: 7px;
  height: 45px;
  width: 45px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--eventflow-black);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-one__btn:hover {
  background-color: var(--eventflow-base);
  color: var(--eventflow-white);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  padding: 50px 0px 0px;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  bottom: 25px;
  right: 0;
  z-index: -1;
}

.site-footer__shape-2 {
  position: absolute;
  bottom: 25px;
  left: 0;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
  opacity: .05;
}

.site-footer__shape-2 img {
  width: auto;
  opacity: .05;
}

.site-footer__top-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  padding-top: 22px;
  gap: 40px;
  z-index: 1;
}

.site-footer__logo {
  position: relative;
  display: block;
}

.site-footer__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--eventflow-white);
}

.site-footer__social a img {
  height: 25px;
  width: 100%;
  object-fit: contain;
}


.site-footer__middle {
  position: relative;
  display: block;
  padding: 30px 0px 52px;
}

.site-footer__middle-inner {
  position: relative;
  display: block;
}

.footer-widget__title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-widget__title {
  font-size: 24px;
  color: var(--eventflow-white);
  font-weight: 700;
  line-height: 24px;
}

.footer-widget__events {
  position: relative;
  display: block;
}

.footer-widget__events-list {
  position: relative;
  display: block;
}

.footer-widget__events-list li {
  position: relative;
  display: block;
}

.footer-widget__events-list li+li {
  margin-top: 45px;
}

.footer-widget__events-list li h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 9px;
  margin-bottom: 17px;
}

.footer-widget__events-list li a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  color: rgba(var(--eventflow-white-rgb), .60);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget__events-list li a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
}

.footer-widget__events-list li a:hover {
  color: var(--eventflow-white);
}

.footer-widget__link {
  position: relative;
  display: block;
  margin-left: 50px;
}

.footer-widget__link-list {
  position: relative;
  display: block;
  margin-top: 20px;
  margin: 0 auto;
}

.footer-widget__link-list li {
  position: relative;
  display: block;
  margin: 5px auto;
  text-align: center;
}

.footer-widget__link-list li ::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #ffff;
  left: -20px;
  top: 30%;
  border-radius: 50%;
}

.footer-widget__link-list li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: rgba(var(--eventflow-white-rgb), .90);
}

.footer-widget__link-list li a:hover {
  color: rgba(var(--eventflow-base-rgb), 1);
}

.footer-widget__our-company {
  position: relative;
  display: block;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 15px;
  margin-top: 40px;
}

.footer-widget__contact-inner {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-widget__contact-list li+li {
  margin-top: 15px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  border-radius: 50%;
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-widget__contact-list li .text {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .text p {
  font-size: 16px;
  color: rgba(var(--eventflow-white-rgb), .90);
  line-height: 26px;
}

.footer-widget__contact-list li .text p a {
  color: rgba(var(--eventflow-white-rgb), .90);
}

.footer-widget__contact-list li .text p a:hover {
  color: rgba(var(--eventflow-base-rgb), 1);
}


.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  padding: 20.5px 0;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--eventflow-white-rgb), .90);
}

.site-footer__bottom-menu li a:hover {
  color: rgba(var(--eventflow-base-rgb), 1);
}

/*--------------------------------------------------------------
# Schedule One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Event Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Countdown One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Conference One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: rgba(var(--eventflow-white-rgb), .07);
  border-radius: 20px;
  padding: 40px 40px 40px;
  z-index: 1;
}

.section-title__title-1 {
  font-size: 18px;
  margin-bottom: 25px;
}

.section-title__title-1 .google-review-link {
  background: linear-gradient(to right, dodgerblue, yellow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.testimonial-one__client-info-and-review {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.testimonial-one__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__client-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.testimonial-one__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 10px;
}

.testimonial-one__client-name a {
  color: var(--eventflow-white);
}

.testimonial-one__client-name a:hover {
  color: var(--eventflow-base);
}

.testimonial-one__sub-title {
  color: rgba(var(--eventflow-white-rgb), .90);
}

.testimonial-one__review {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-one__review span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #F3DC65;
}

.testimonial-one__review span.clr-start {
  color: #CCCCCC;
}

.testimonial-one__text {
  font-size: 20px;
  line-height: 30px;
  color: rgba(var(--eventflow-white-rgb), .90);
  margin-top: 30px;
  margin-bottom: 30px;
}

.testimonial-one__quote {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__quote span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Ticket One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Schedule Three
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 188px 0 188px;
  overflow: hidden;
  z-index: 1;
}

.page-header__shape-1 {
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
}

.page-header__shape-1 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.20;
}

.page-header__shape-2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -1;
}

.page-header__shape-2 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.20;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.87) 24.4%, rgba(102, 102, 102, 0) 100%);
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
}

.page-header__inner h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: var(--eventflow-white);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.thm-breadcrumb__box {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.thm-breadcrumb {
  position: relative;
  display: inline-block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--eventflow-white);
  font-family: var(--eventflow-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 13px;
}

.thm-breadcrumb li span {
  font-size: 13px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--eventflow-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--eventflow-base);
}

/*--------------------------------------------------------------
#  Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

.contact-one .container {
  max-width: 1030px;
}

.contact-one__inner {
  position: relative;
  display: block;
  background-color: #0E0A17;
  text-align: center;
  padding: 58px 60px 70px;
}

.contact-one__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-transform: capitalize;
}

.contact-one__text {
  line-height: 24px;
  color: var(--eventflow-white);
  margin-top: 11px;
  margin-bottom: 40px;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.errormessage {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: red;
  text-align: start;
  padding-left: 15px;
}

.formMsg {
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 25px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"],
.contact-one__input-box input[type="tel"] {
  height: 54px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 18px;
  color: var(--eventflow-white);
  display: block;
  font-weight: 400;
  border-radius: 27px;
}

.contact-one__input-box .select-box {
  width: 100%;
}

.contact-one__input-box .nice-select {
  height: 54px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--eventflow-white);
  display: block;
  font-weight: 400;
  border-radius: 27px;
  line-height: 54px;
  float: none;
}

.contact-one__input-box .nice-select:after {
  position: absolute;
  top: 21px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--eventflow-base);
  border-right: 2px solid var(--eventflow-base);
  margin-top: 0px;
  z-index: 10;
}

.contact-one__input-box .nice-select .option {
  color: var(--eventflow-white);
}

.contact-one__input-box textarea {
  position: relative;
  height: 120px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--eventflow-white);
  display: block;
  font-weight: 400;
  border-radius: 5px;
  margin-bottom: 0;
}

.contact-one__input-box.text-message-box {
  height: 120px;
}

.contact-one__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

.contact-one__btn {
  border: none;
  padding: 17px 176px 17px;
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

.contact-two__single {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  border-radius: 20px;
  text-align: center;
  padding: 39px 30px 48px;
  margin-bottom: 30px;
  min-height: 330px;
}

.contact-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #0E0A17;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-two__single:hover .contact-two__icon {
  background-color: var(--eventflow-white);
}

.contact-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 4px;
  margin-top: 21px;
}

.contact-two__text {
  font-size: 18px;
  line-height: 28px;
  color: var(--eventflow-white);
}

.contact-two__text a {
  color: var(--eventflow-white);
}

.contact-two__text a:hover {
  color: var(--eventflow-base);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Gallery Details
--------------------------------------------------------------*/
.gallery-details {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

.service-details__faq-box {
  position: relative;
  display: block;
  counter-reset: count;
}

.service-details__faq-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 40px;
}

.service-details__faq-box .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: transparent;
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
  background-color: #0E0A17;
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 30px 17px;
  padding-left: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 25px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  color: var(--eventflow-white);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__faq-box .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 37px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-title h4::before {
  content: "\e915";
  font-family: 'icomoon' !important;
  font-weight: 700;
  font-size: 13px;
  color: var(--eventflow-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 21px;
  height: 21px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 30px;
  padding-right: 35px;
}

.service-details__faq-box .faq-one-accrodion .accrodion-content p {
  margin: 0;
  color: rgba(var(--eventflow-white-rgb), .80);
}

.service-details__faq-box .faq-one-accrodion__count {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.service-details__faq-box .faq-one-accrodion__count::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.4px;
  color: var(--eventflow-white);
  font-family: var(--eventflow-font-two);
  counter-increment: count;
  content: "" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details__faq-box .faq-one-accrodion__count:after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -7px;
  width: 4px;
  height: 4px;
  background-color: var(--eventflow-white);
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

.testimonial-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.event-page {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 72px 0 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 500;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 2;
}

.error-page__tagline {
  font-size: 40px;
  line-height: 49px;
  font-weight: 400;
  color: var(--eventflow-white);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.error-page__text {
  font-size: 20px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 47px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 52px;
  width: 100%;
  outline: none;
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  border-radius: 25px;
  border: 0;
  font-size: 14px;
  color: var(--eventflow-white);
  font-weight: 500;
  padding-left: 50px;
  padding-right: 75px;
}

.error-page__form button[type="submit"] {
  background-color: transparent;
  color: var(--eventflow-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Terms and condition && privacy policy */
.tc_pp_contents {
  border: 1px solid whitesmoke;
  color: white;
  padding: 20px;
  margin: 40px auto;
  max-width: 90%;
}

h1.tc_pp_heading {
  border-bottom: 1px solid rgb(81, 81, 81);
  font-size: 30px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

p.tc_pp__listheading {
  font-size: 22px;
  font-weight: 600;
}

p.tc_pp__content_para,
.tc_pp_content_flow ul {
  font-size: 17px;
  margin: 15px auto;

}

.tc_pp__content_para a {
  color: burlywood;
  font-weight: 700;
}

.tc_pp_content_flow ul {
  list-style-position: outside;
  padding-inline-start: 20px;
}

.tc_pp_content_flow ul span {
  font-weight: 500;
}

/* Cta Button */
.ctabtn-container {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1111;
}

.ctabtn {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  /* example yellow */
  transition: all 0.5s linear;
}

.img-container {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.cta-content-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s linear;
}

.cta-content-2 h5 {
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
}

.cta-menu {
  position: absolute;
  top: -185px;
  left: -95px;
  width: 150px;
  z-index: -1;
}

.color-wrapper {
  background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.5s linear;
  position: relative;
}

.color-wrapper::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #1e3a8a;
  bottom: -20px;
  right: 20px;
}

.media-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 8px;
}

.media-logo img {
  width: 22px;
  height: 22px;
}

.media-name {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
}

.media-name:hover {
  font-weight: bold;
  color: white;
}

.hidden {
  display: none;
}

.block {
  display: block;
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/