/*--------------------------------------------------------------
>>> 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: #de012f;
    --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;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

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

.body-bg-color-1 {
    background-color: #000;
}

.body-bg-color-2 {
    background-color: var(--eventflow-white);
    color: var(--eventflow-gray);
}

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;
}

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

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

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

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

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

:-ms-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: 1140px;
    }
}

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

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

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

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

.section-separator {
    border-color: var(--eventflow-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -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: #000;
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    text-transform: capitalize;
}

.section-title__title--two {
    color: #000;
}

.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: 14px;
    color: var(--eventflow-white);
    text-transform: capitalize;
    letter-spacing: 1.6px;
    padding: 10px 25px 10px;
    background: linear-gradient(90deg, #000000 0%, #de012f 47%);
    border-radius: 8px;
    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, #e1002d 0%, #000000 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%;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--eventflow-base);
    color: var(--eventflow-white);
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 12px;
    color: #ffffff;
    text-transform: uppercase;
    background: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--eventflow-base);
    color: var(--eventflow-white);
    cursor: pointer;
}

.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.isActive .xs-overlay {
    opacity: .8;
    visibility: visible;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
    right: 100%;
}

.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;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: #000;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.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-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -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: 10px 0;
    z-index: 1;
}

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

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 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);
}







.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: 1200px) {

    .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: 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: #000;
    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: #000;
    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%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 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;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--eventflow-base);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

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

.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: 1200px) {
    .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: #000;
    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>.main-menu-border {
    display: none !important;
}

.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__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.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__top .main-menu__login a {
    color: var(--eventflow-text-dark);
}

.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;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    background-color: #000;
}

.main-menu-two .main-menu__wrapper-inner {
    padding: 0 0px;
}

.main-menu-two .main-menu__wrapper-inner:before {
    display: none;
}

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

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

/*--------------------------------------------------------------
# Main Header Three
--------------------------------------------------------------*/
.main-menu-three .main-menu__right {
    padding: 0;
}

.main-menu-three .main-menu__wrapper-inner:before {
    background-color: rgba(var(--eventflow-white-rgb), .05);
}


/*--------------------------------------------------------------
# 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: #000;
    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
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    background-color: var(--eventflow-white);
    z-index: 91;
    overflow: hidden;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--eventflow-white);
}

.main-slider__img {
    position: absolute;
    top: 10px;
    right: 350px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(400px);
    transform: perspective(400px) rotateY(0deg) translateX(400px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 2000ms ease;
    -moz-transition: all 2000ms ease;
    -ms-transition: all 2000ms ease;
    -o-transition: all 2000ms ease;
    transition: all 2000ms ease;
}

.main-slider__img img {
    width: auto;
    border: none;
    border-radius: 0;
}

.main-slider .swiper-slide-active .main-slider__img {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider__shpae-1 {
    position: absolute;
    top: 180px;
    right: 195px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-160px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-160px);
    transform: perspective(400px) rotateY(0deg) translateX(-160px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__shpae-1 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
}

.main-slider__shpae-1 img {
    width: auto;
}

.main-slider__shpae-2 {
    position: absolute;
    bottom: -50px;
    right: 270px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(160px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(160px);
    transform: perspective(400px) rotateY(0deg) translateY(160px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__shpae-2 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
}

.main-slider__shpae-2 img {
    width: auto;
    opacity: .10;
}

.main-slider__start-1 {
    position: absolute;
    top: 130px;
    left: 830px;
    animation-name: border-round;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: -1;
}

.main-slider__start-1 img {
    width: auto;
}

@keyframes border-round {

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

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

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

.main-slider__start-2 {
    position: absolute;
    bottom: 50px;
    left: 520px;
    z-index: -1;
}

.main-slider__start-2 img {
    width: auto;
}

.main-slider__start-3 {
    position: absolute;
    top: 216px;
    right: 170px;
    animation-name: border-round;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: -1;
}

.main-slider__start-3 img {
    width: auto;
}

.main-slider .container {
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
    z-index: 30;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 15;
}

.main-slider__sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #000;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
}

.main-slider__title {
    position: relative;
    font-size: 45px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 18px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider__title span {
    color: transparent;
    -webkit-text-stroke: 1.5px #000;
}

.main-slider .swiper-slide-active .main-slider__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}

.main-slider__text {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-120px);
    transform: perspective(400px) rotateY(0deg) translateX(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}

.main-slider__address {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
    margin-bottom: 34px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__address {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}

.main-slider__address li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-slider__address li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

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

.main-slider__btn-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
}

#main-slider-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 56%;
    transform: translateY(-50%);
    padding: 0 50px;
    margin: 0 auto !important;
    height: 0;
    line-height: 0;
    z-index: 100;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    padding: 6px 0;
    margin: 4px 0px;
    background: transparent;
    border: 1px solid #000;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

#main-slider-pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background-color: #000;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#main-slider-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.0);
}


/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
    background-color: #000;
    z-index: 91;
}

.main-slider-two .swiper-slide {
    position: relative;
    background-color: #000;
}

.main-slider-two .container {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    z-index: 30;
}

.main-slider-two__content {
    position: relative;
    display: block;
    margin-top: 60px;
    z-index: 15;
}

.main-slider-two__sub-title {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--eventflow-white);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
}

.main-slider-two__title {
    position: relative;
    color: var(--eventflow-white);
    font-size: 68px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 84px;
    margin-top: 20px;
    margin-bottom: 53px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-two__title .color-text {
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.main-slider-two .swiper-slide-active .main-slider-two__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
}

.main-slider-two__btn-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
}

.main-slider-two__btn {
    background: transparent;
}

.main-slider-two__btn:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 8px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, #b00d5c, #490ab3) 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;
    z-index: -1;
}

.main-slider-two__img-box {
    position: relative;
    display: block;
    padding: 16px;
    border-radius: 250px;
    opacity: 0;
    transform: translateX(300px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__img-box {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}

.main-slider-two__img-box:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 250px;
    border: 6px solid transparent;
    background: linear-gradient(180deg, #b20d5c, #490ab3) 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;
}

.main-slider-two__img {
    position: relative;
    display: block;
    border-radius: 250px;
    overflow: hidden;
    z-index: 1;
}

.main-slider-two__img img {
    width: 100%;
    border-radius: 250px;
}

.main-slider-two__shape-1 {
    position: absolute;
    bottom: -60px;
    left: -56px;
    z-index: -1;
    animation-name: border-round;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-slider-two__shape-1 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.3;
}

.main-slider-two__shape-2 {
    position: absolute;
    top: 0px;
    right: 0px;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.main-slider-two__shape-2 img {
    width: auto;
    filter: grayscale(1);
}

.main-slider-two__shape-3 {
    position: absolute;
    top: -10px;
    right: -100px;
    z-index: 1;
}

.main-slider-two__shape-3 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.10;
}

.main-slider-two #main-slider-pagination {
    top: 50%;
}


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

.banner-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .15;
    z-index: -1;
}

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

.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 {
    color: #ffffff;
    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: 700;
    line-height: 34px;
}

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


/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 96px 0 80px;
    z-index: 1;
}

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

.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);
}

.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__text {
    margin-top: 14px;
    margin-bottom: 30px;
}

.services-one__read-more {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.sliding-text-one {
    position: relative;
    display: block;
    padding: 0px 0 109px;
    z-index: 1;
}

.sliding-text-one__wrap {
    position: relative;
    display: block;
}

.sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.sliding-text__list li {
    osition: relative;
    display: block;
    float: left;
    margin-right: 35px;
}

.sliding-text__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    color: transparent;
    -webkit-text-stroke: 1px #000000;
    font-size: 96px;
    line-height: 115px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--eventflow-font-two);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sliding-text__title img {
    width: auto;
    animation: textRotate 05s linear 0s forwards infinite alternate;
}

.sliding-text__list li .sliding-text__title:hover {
    color: transparent;
    -webkit-text-stroke: 1px transparent;
}

.sliding-text__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--eventflow-white);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover .sliding-text__title:before {
    width: 100%;
    color: var(--eventflow-white);
}

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

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


/*--------------------------------------------------------------
# Event One
--------------------------------------------------------------*/
.event-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.event-one__inner {
    position: relative;
    display: block;
    border: 2px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    padding: 60px 60px 60px;
    z-index: 1;
}

.event-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.event-one__top .section-title {
    margin-bottom: 0;
}

.event-one__btn-box {
    position: relative;
    display: block;
}

.event-one__points {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 60px;
}

.event-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 460px;
    width: 100%;
}

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

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

.event-one__points li:hover .icon span {
    transform: scale(.9);
}

.event-one__points li .content {
    position: relative;
    display: block;
}

.event-one__points li .content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 14px;
}

.event-one__points li .content h4 a {
    color: var(--eventflow-white);
}

.event-one__points li .content p {
    font-size: 12px;
    line-height: 20px;
}

.event-one__points li .content h4 a:hover {
    color: var(--eventflow-base);
}

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

.event-one__img-box img {
    width: 100%;
    border-radius: 20px;
}

/*--------------------------------------------------------------
# Buy Ticket
--------------------------------------------------------------*/
.buy-ticket {
    position: relative;
    display: block;
    background-color: #0E0A17;
    padding: 120px 0 120px;
    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: 48px;
    line-height: 55px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
}

.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;
}

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

.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);
    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: 24px 30px 23px;
    border-radius: 20px;
    transform: translateY(0%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.team-one__single:hover .team-one__content {
    visibility: hidden;
    transform: translateY(150%);
    opacity: 0;
}

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

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

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

.team-one__content-hover {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 20px;
    padding: 27px 30px 29px;
    transform: translateY(66%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.team-one__single:hover .team-one__content-hover {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

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

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

.team-one__name-hover a:hover {
    color: #000;
}

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

.team-one__text-hover {
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Event Direction
--------------------------------------------------------------*/
.event-direction {
    position: relative;
    display: block;
    z-index: 1;
}

.event-direction__inner {
    position: relative;
    display: block;
    background-color: #df002d;
    padding: 100px 60px 70px;
    border-radius: 20px;
}

.event-direction__left {
    position: relative;
    display: block;
}

.event-direction__left .section-title {
    margin-bottom: 4px;
}

.event-direction__call {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.event-direction__call-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.event-direction__call-icon img {
    width: auto;
}

.event-direction__call-content {
    position: relative;
    display: block;
}

.event-direction__call-content p {
    color: var(--eventflow-white);
    margin-bottom: 9px;
}

.event-direction__call-content h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 16px;
}

.event-direction__call-content h4 a {
    color: var(--eventflow-white);
}

.event-direction__call-content h4 a:hover {
    color: var(--eventflow-base);
}

.event-direction__right {
    position: relative;
    display: block;
    margin-left: 8px;
}

.event-direction__counter {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.event-direction__counter li {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.event-direction__counter-single {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    padding: 21px 0 26px;
}

.event-direction__counter-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.event-direction__counter-box h3 {
    font-size: 48px;
    line-height: 48px !important;
    font-weight: 700;
    font-family: var(--eventflow-font-two) !important;
}

.event-direction__counter-plus {
    font-size: 48px;
    line-height: 48px !important;
    font-weight: 700;
    font-family: var(--eventflow-font-two) !important;
}

.event-direction__counter-text {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 16px;
}

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
    position: relative;
    display: block;
    padding: 0 0 110px;
    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;
}

.gallery-one__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    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;
}

.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 {
    position: relative;
    display: block;
    padding-bottom: 90px;
}

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

.schedule-one__inner .section-title {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    z-index: 20;
}

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

.schedule-one__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 480px;
    width: 100%;
    margin-left: 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: 10px;
    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);
}

.schedule-one__tab-content-box {
    position: relative;
    display: block;
}

.schedule-one__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(var(--eventflow-white-rgb), .08);
    border-radius: 20px;
    padding: 30px 40px 30px;
    margin-bottom: 30px;
    z-index: 1;
}

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

.schedule-one__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.schedule-one__text {
    color: var(--eventflow-white);
}

.schedule-one__img {
    position: relative;
    display: block;
    max-width: 309px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.schedule-one__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.schedule-one__single:hover .schedule-one__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.schedule-one__img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.schedule-one__single:hover .schedule-one__img img {
    transform: scale(1.1);
}

.schedule-one__address-and-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 70px;
}

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

.schedule-one__address li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.schedule-one__address li+li {
    margin-top: 13px;
}

.schedule-one__address li .icon {
    position: relative;
    display: inline-block;
}

.schedule-one__address li .icon span {
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: var(--eventflow-white);
}

.schedule-one__address li .text {
    position: relative;
    display: block;
}

.schedule-one__address li .text p {
    font-size: 12px;
    line-height: 20px;
}

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


/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding: 90px 0 90px;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
    z-index: 1;
}

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

.brand-one .swiper-slide {
    position: relative;
    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;
}

.brand-one .swiper-slide__img {
    position: relative;
    display: block;
    opacity: 0.50;
    max-width: 137px;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.brand-one .swiper-slide:hover .swiper-slide__img {
    opacity: 1;
}

.brand-one .swiper-slide__img img {
    -webkit-transition: 500ms;
    transition: 500ms;
    width: 100%;
}

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

.blog-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.blog-one__top .section-title {
    margin-bottom: 0;
}

.blog-one__btn-box {
    position: relative;
    display: block;
}

.blog-one__bottom {
    position: relative;
    display: block;
}

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

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    z-index: 3;
}

.blog-one__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

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

.blog-one__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--eventflow-base-rgb), .90);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

.blog-one__single:hover .blog-one__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.blog-one__hover>a {
    position: relative;
}

.blog-one__hover-icon-1 {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    transition: all 0.5s ease-in-out;
}

.blog-one__hover-icon-1:hover {
    background-color: #000;
}

.blog-one__hover-icon-2 {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
}

.blog-one__hover-icon-2::after,
.blog-one__hover-icon-2::before {
    content: "";
    width: 3px;
    height: 100%;
    background-color: var(--eventflow-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-one__hover-icon-2::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-one__content {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 45px 30px 30px;
    margin-top: -15px;
    margin-right: 40px;
    z-index: 1;
}

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

.blog-one__meta li {
    position: relative;
    display: block;
}

.blog-one__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(var(--eventflow-white-rgb), .90);
}

.blog-one__meta li a:hover {
    color: var(--eventflow-base);
}

.blog-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 28px;
    margin-bottom: 31px;
}

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

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

.blog-one__btn-box-two {
    position: relative;
    display: block;
}

.blog-one__btn-2 {
    background: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding: 16px 30px 16px;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
    padding: 80px 0 80px;
    z-index: 1;
}

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

.cta-one__title {
    font-size: 60px;
    font-weight: 700;
    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: 8px;
    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: #000;
    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 {
    background-color: #000000;
    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-1 img {
    width: auto;
    opacity: .05;
}

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

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

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

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

.site-footer__social a:hover {
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

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

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

.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;
}

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

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

.footer-widget__link-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    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;
}

.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 {
    text-align: center;
    border-top: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding: 20px 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
--------------------------------------------------------------*/
.schedule-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

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

.schedule-two__inner .section-title {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    z-index: 20;
}

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

.schedule-two__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-bottom: 60px;
}

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

.schedule-two__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-two__main-tab-box .tab-buttons .tab-btn.active-btn:before {
    height: 100%;
}

.schedule-two__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-two__main-tab-box .tab-buttons .tab-btn.active-btn::after {
    opacity: 1;
}

.schedule-two__main-tab-box .tab-buttons .tab-btn h3 {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

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

.schedule-two__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-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 1;
}

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

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

.schedule-two__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-two__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.schedule-two__tab-content-box {
    position: relative;
    display: block;
}

.schedule-two__sinlge {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.schedule-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.schedule-two__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.schedule-two__sinlge:hover .schedule-two__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.schedule-two__img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.schedule-two__sinlge:hover .schedule-two__img img {
    transform: scale(1.1);
}

.schedule-two__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--eventflow-extra);
    border-radius: 20px;
    padding: 34px 40px 35px;
}

.schedule-two__right-content {
    position: relative;
    display: block;
}

.schedule-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.schedule-two__title a {
    color: #000;
}

.schedule-two__title a:hover {
    color: var(--eventflow-base);
}

.schedule-two__text {
    color: #000;
    margin-top: 19px;
    margin-bottom: 20px;
}

.schedule-two__btn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #000;
    font-weight: 700;
    gap: 10px;
}

.schedule-two__btn:hover {
    color: var(--eventflow-base);
}

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

.schedule-two__address:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -55px;
    width: 1px;
    background-color: rgba(var(--eventflow-black-rgb), .20);
}

.schedule-two__address li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.schedule-two__address li+li {
    margin-top: 22px;
}

.schedule-two__address li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    border: 1px solid var(--eventflow-bdr-color);
    border-radius: 50%;
}

.schedule-two__address li .icon span {
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: #000;
}

.schedule-two__address li .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.schedule-two__address li .text p {
    font-size: 12px;
    line-height: 20px;
    color: #000;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.services-two__single {
    position: relative;
    display: block;
    border: 1px solid var(--eventflow-bdr-color);
    border-radius: 20px;
    padding: 39px 39px 37px;
    margin-bottom: 30px;
}

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

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

.services-two__single:hover .services-two__icon span {
    transform: scale(.9);
}

.services-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.services-two__title a {
    color: #000;
}

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

.services-two__text {
    margin-top: 18px;
    margin-bottom: 24px;
}

.services-two__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: capitalize;
}

.services-two__btn span {
    font-size: 13px;
}

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

/*--------------------------------------------------------------
# Event Two
--------------------------------------------------------------*/
.event-two {
    position: relative;
    display: block;
    background-color: var(--eventflow-extra);
    padding: 120px 0 280px;
    z-index: 1;
}

.event-two__left {
    position: relative;
    display: block;
    margin-right: 340px;
}

.event-two__img-box {
    position: relative;
    display: block;
}

.event-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.event-two__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.event-two__img-box:hover .event-two__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.event-two__img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.event-two__img-box:hover .event-two__img img {
    transform: scale(1.1);
}

.event-two__trusted-customer {
    position: absolute;
    bottom: 30px;
    right: -120px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    max-width: 230px;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    padding: 24px 0 16px;
    z-index: 2;
}

.event-two__trusted-customer-icon-and-count-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.event-two__trusted-customer-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.event-two__trusted-customer-icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--eventflow-white);
}

.event-two__trusted-customer-count {
    position: relative;
    display: flex;
    align-items: center;
}

.event-two__trusted-customer-count h3 {
    font-size: 30px;
    color: var(--eventflow-white);
    line-height: 30px !important;
    font-weight: 700;
    font-family: var(--eventflow-font-two) !important;
}

.event-two__trusted-customer-count-plus {
    font-size: 30px;
    color: var(--eventflow-white);
    line-height: 30px;
    font-weight: 700;
    font-family: var(--eventflow-font-two);
}

.event-two__trusted-customer-text {
    color: var(--eventflow-white);
}

.event-two__img-two {
    position: absolute;
    bottom: 0;
    right: -340px;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.event-two__img-two::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.event-two__img-box:hover .event-two__img-two::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
    transition-delay: 500ms;
}

.event-two__img-two img {
    width: auto;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.event-two__img-box:hover .event-two__img-two img {
    transform: scale(1.1);
    transition-delay: 500ms;
}

.event-two__shape-1 {
    position: absolute;
    top: 0;
    right: -340px;
    z-index: -1;
}

.event-two__shape-1 img {
    width: auto;
}

.event-two__right {
    position: relative;
    display: block;
    margin-top: 45px;
    margin-left: 68px;
}

.event-two__right .section-title {
    margin-bottom: 22px;
}

.event-two__points {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event-two__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--eventflow-bdr-color);
    background-color: var(--eventflow-white);
    max-width: 260px;
    width: 100%;
    border-radius: 20px;
    padding: 20px 20px 20px;
}

.event-two__points-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.event-two__points-icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.event-two__points li:hover .event-two__points-icon span {
    transform: scale(.9);
}

.event-two__points-text-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-two__points-count {
    position: relative;
    display: flex;
    align-items: center;
}

.event-two__points-count h3 {
    font-size: 15px;
    line-height: 15px !important;
    color: #000;
    font-weight: 700;
    letter-spacing: 1.4px;
    font-family: var(--eventflow-font-two) !important;
}

.event-two__points-count-plus {
    font-size: 15px;
    line-height: 15px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1.4px;
    font-family: var(--eventflow-font-two);
}

.event-two__points-text {
    font-size: 15px;
    line-height: 15px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1.4px;
    font-family: var(--eventflow-font-two);
}

.event-two__text {
    margin-top: 30px;
    margin-bottom: 30px;
}

.event-two__btn-box {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Countdown One
--------------------------------------------------------------*/
.countdown-one {
    position: relative;
    display: block;
    margin-top: -160px;
    z-index: 2;
}

.countdown-one__inner {
    position: relative;
    display: block;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 20px;
    padding: 70px 80px 30px;
    z-index: 1;
}

.countdown-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.countdown-one__title {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
}

.countdown-one__btn-box {
    position: relative;
    display: block;
}

.countdown-one__btn {
    background: transparent;
    border: 1px solid var(--eventflow-white);
    padding: 16px 30px 16px;
}

.countdown-one__btn:hover {
    color: var(--eventflow-base);
}

.countdown-one__btn:after {
    background: var(--eventflow-white);
}

.countdown-one__bottom {
    position: relative;
    display: block;
}

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

.countdown-one__countdown-timer-box .time-countdown-one {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.countdown-one__countdown-timer-box li .box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 116px;
    width: 206px;
    border: 2px solid rgba(var(--eventflow-white-rgb), .20);
    margin: 0 auto 0;
    border-radius: 20px;
    text-align: center;
}

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

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

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    padding: 90px 0 118px;
    z-index: 1;
}

.brand-two__inner {
    position: relative;
    display: block;
}

.brand-two .swiper-slide {
    position: relative;
    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;
}

.brand-two .swiper-slide__img {
    position: relative;
    display: block;
    opacity: 0.50;
    max-width: 137px;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.brand-two .swiper-slide:hover .swiper-slide__img {
    opacity: 1;
}

.brand-two .swiper-slide__img img {
    -webkit-transition: 500ms;
    transition: 500ms;
    width: 100%;
}

/*--------------------------------------------------------------
# Conference One
--------------------------------------------------------------*/
.conference-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

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

.conference-one__main-tab-box .tab-buttons {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 745px;
    width: 100%;
    margin: 0 auto 0;
    left: 0;
    right: 0;
    top: 437px;
    z-index: 5;
}

.conference-one__main-tab-box .tab-buttons:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: var(--eventflow-bdr-color);
    z-index: -1;
}

.conference-one__main-tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 55px;
}

.conference-one__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 12px 29px 11px;
    border: 1px solid var(--eventflow-bdr-color);
    background-color: var(--eventflow-white);
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
}

.conference-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;
}

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

.conference-one__main-tab-box .tab-buttons .tab-btn p {
    position: relative;
    display: block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 15px;
    line-height: 15px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1.6px;
    transition: all 0.3s ease;
    z-index: 1;
}

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

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

.conference-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;
}

.conference-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);
}

.conference-one__tab-content-box {
    position: relative;
    display: block;
}

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

.conference-one__img img {
    width: 100%;
    border-radius: 20px;
}

.conference-one__tab-content-bottom {
    position: relative;
    display: block;
    margin-top: 116px;
}

.conference-one__tab-content-bottom-left {
    position: relative;
    display: block;
}

.conference-one__tab-content-title {
    font-size: 30px;
    color: #000;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 25px;
}

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

.conference-one__address li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.conference-one__address li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.conference-one__address li .icon span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #000;
}

.conference-one__tab-content-text {
    position: relative;
    display: block;
    margin-left: 125px;
}

/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/
.gallery-two {
    position: relative;
    display: block;
    background-color: var(--eventflow-extra);
    padding: 120px 0 120px;
    z-index: 1;
}

.gallery-two__top {
    position: relative;
    display: block;
}

.gallery-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.gallery-two__top-inner .section-title {
    margin-bottom: 0px;
}

.gallery-two__nav {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-two__nav .swiper-button-prev1,
.gallery-two__nav .swiper-button-next1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.gallery-two__nav .swiper-button-prev1 i,
.gallery-two__nav .swiper-button-next1 i {
    color: #000;
    font-size: 16px;
    transition: all 500ms ease;
}

.gallery-two__nav .swiper-button-prev1:hover i,
.gallery-two__nav .swiper-button-next1:hover i {
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gallery-two__nav .swiper-button-prev1:before,
.gallery-two__nav .swiper-button-next1:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px solid var(--eventflow-bdr-color);
    border-radius: 50%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.gallery-two__nav .swiper-button-prev1:hover:before,
.gallery-two__nav .swiper-button-next1:hover:before {
    opacity: 0;
    visibility: hidden;
}

.gallery-two__nav .swiper-button-prev1:after,
.gallery-two__nav .swiper-button-next1:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(-90deg, #B20D5D, #4A0AB4) 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;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.gallery-two__nav .swiper-button-prev1:hover:after,
.gallery-two__nav .swiper-button-next1:hover:after {
    opacity: 1;
    visibility: visible;
}

.gallery-two__nav .swiper-button-next1 {
    margin-right: 15px;
}

.gallery-two__bottom {
    position: relative;
    display: block;
}

.gallery-two__bottom .container {
    max-width: 1840px;
}

.gallery-two__carousel-box {
    position: relative;
    display: block;
}

.gallery-two__single {
    position: relative;
    display: block;
}

.gallery-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.gallery-two__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.gallery-two__single:hover .gallery-two__img::before {
    opacity: .40;
}

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

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

.gallery-two__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--eventflow-white);
    border-radius: 20px;
    padding: 28px 30px 18px;
    transform: translateY(30%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.gallery-two__single:hover .gallery-two__content {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
    transition-delay: 500ms;
}

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

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

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

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

.gallery-two__title a {
    color: #000;
}

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

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    background-color: #000;
    padding: 120px 0 340px;
    z-index: 1;
}

.testimonial-one .section-title__title--two {
    color: var(--eventflow-white);
}

.testimonial-one__carousel-box {
    position: relative;
    display: block;
}

.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;
}

.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;
}


.testimonial-one__nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 50%;
    left: -115px;
    right: -115px;
    transform: translateY(-50%);
    line-height: 0;
    height: 0;
    z-index: 100;
}

.testimonial-one__nav .swiper-button-prev1,
.testimonial-one__nav .swiper-button-next1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.testimonial-one__nav .swiper-button-prev1 i,
.testimonial-one__nav .swiper-button-next1 i {
    color: var(--eventflow-white);
    font-size: 16px;
    transition: all 500ms ease;
}

.testimonial-one__nav .swiper-button-prev1:hover i,
.testimonial-one__nav .swiper-button-next1:hover i {
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.testimonial-one__nav .swiper-button-prev1:before,
.testimonial-one__nav .swiper-button-next1:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px solid var(--eventflow-bdr-color);
    border-radius: 50%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__nav .swiper-button-prev1:hover:before,
.testimonial-one__nav .swiper-button-next1:hover:before {
    opacity: 0;
    visibility: hidden;
}

.testimonial-one__nav .swiper-button-prev1:after,
.testimonial-one__nav .swiper-button-next1:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(-90deg, #B20D5D, #4A0AB4) 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;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.testimonial-one__nav .swiper-button-prev1:hover:after,
.testimonial-one__nav .swiper-button-next1:hover:after {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
    position: relative;
    display: block;
    margin-top: -220px;
    z-index: 1;
}

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

.video-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.video-one__img img {
    width: 100%;
    border-radius: 20px;
}

.video-one__video-link {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    font-size: 30px;
    color: var(--eventflow-white);
    background-color: rgba(var(--eventflow-white-rgb), .50);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.video-one__video-icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    opacity: 0.4;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.video-one__video-icon:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.video-one__video-icon:hover {
    color: var(--eventflow-white);
}


.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--eventflow-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--eventflow-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--eventflow-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--eventflow-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

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

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

.team-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border-top-left-radius: 0;
    margin-left: 107px;
    z-index: 1;
}

.team-two__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.team-two__single:hover .team-two__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.team-two__img img {
    width: 100%;
    border-radius: 20px;
    border-top-left-radius: 0;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.team-two__single:hover .team-two__img img {
    transform: scale(1.1);
}

.team-two__content-box {
    position: relative;
    display: block;
    border: 1px solid var(--eventflow-bdr-color);
    border-radius: 20px;
    margin-top: -250px;
    margin-right: 80px;
    padding: 290px 30px 29px;
}

.team-two__sub-title-box {
    position: absolute;
    top: 105px;
    left: -35px;
    transform: rotate(-90deg);
}

.team-two__sub-title-box h5 {
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 1.4px;
    color: rgba(var(--eventflow-black-rgb), .40);
    text-transform: uppercase;
}

.team-two__content {
    position: relative;
    display: block;
}

.team-two__name {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
}

.team-two__name a {
    color: #000;
}

.team-two__name a:hover {
    color: var(--eventflow-base);
}

.team-two__text {
    margin-top: 14px;
    margin-bottom: 17px;
}

.team-two__social {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.team-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    font-size: 14px;
    color: #000;
    overflow: hidden;
    z-index: 1;
}

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

.team-two__social a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid var(--eventflow-bdr-color);
    border-radius: 50%;
    z-index: -1;
}

.team-two__social a:after {
    content: "";
    position: absolute;
    height: 0%;
    width: 0%;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.team-two__social a:hover:after {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
    position: relative;
    display: block;
    padding: 70px 0 90px;
    z-index: 1;
}

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

.pricing-one__inner .section-title {
    position: absolute;
    margin-bottom: 0;
    top: -70px;
    left: 0;
}

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

.pricing-one__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 60px;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 130px;
    width: 100%;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 0px;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    color: #000;
    background-color: var(--eventflow-white);
    padding: 19px 35px 19px;
    font-weight: 400;
    cursor: pointer;
    overflow: hidden;
    border-radius: 27px;
    transition: all 0.5s linear;
    z-index: 1;
}

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

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(1) span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(2) span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

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

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

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(1) span:before {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(2) span:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--eventflow-bdr-color);
    border-radius: 27px;
    z-index: -1;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(1) span:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-one__main-tab-box .tab-buttons .tab-btn:nth-child(2) span:after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0px;
}

.pricing-one__main-tab-box .tabs-content {
    position: relative;
    display: block;
}

.pricing-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;
}

.pricing-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);
}

.pricing-one__tab-content-box {
    position: relative;
    display: block;
}

.pricing-one__single {
    position: relative;
    display: block;
    border-radius: 20px;
    background-color: var(--eventflow-white);
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    margin-bottom: 30px;
    z-index: 1;
}

.pricing-one__single-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--eventflow-white);
    padding: 0 0 45px;
    z-index: 1;
}

.pricing-one__price-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 59px 0 94px;
    z-index: 1;
}

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

.pricing-one__price {
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 26px;
}

.pricing-one__price span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: var(--eventflow-font);
    position: relative;
    display: inline-block;
    margin-left: -4px;
}

.pricing-one__pack-name {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: var(--eventflow-white);
    font-family: var(--eventflow-font-two);
}

.pricing-one__points {
    position: relative;
    display: block;
    padding: 33px 40px 33px;
}

.pricing-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.pricing-one__points li .icon span {
    position: relative;
    display: inline-block;
    color: #CCCCCC;
    font-size: 14px;
}

.pricing-one__points li .text {
    position: relative;
    display: block;
}

.pricing-one__points li+li {
    margin-top: 15px;
}

.pricing-one__btn-box {
    position: relative;
    display: block;
    padding: 0 40px 0;
}

.pricing-one__btn {
    background: transparent;
    border: 1px solid var(--eventflow-bdr-color);
    padding: 16px 30px 16px;
    width: 100%;
    color: #000;
    justify-content: center;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 0 0 90px;
    z-index: 1;
}

.blog-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
}

.blog-two__img img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-two__single:hover .blog-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.blog-two__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--eventflow-base-rgb), .90);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

.blog-two__single:hover .blog-two__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.blog-two__hover>a {
    position: relative;
}

.blog-two__hover-icon-1 {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    transition: all 0.5s ease-in-out;
}

.blog-two__hover-icon-1:hover {
    background-color: #000;
}

.blog-two__hover-icon-2 {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
}

.blog-two__hover-icon-2::after,
.blog-two__hover-icon-2::before {
    content: "";
    width: 3px;
    height: 100%;
    background-color: var(--eventflow-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-two__hover-icon-2::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-two__date {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 0px 20px;
    padding: 12.5px 16px;
    z-index: 2;
}

.blog-two__date p {
    font-size: 15px;
    line-height: 15px;
    color: var(--eventflow-white);
    letter-spacing: 1.4px;
    font-weight: 700;
}

.blog-two__content {
    position: relative;
    display: block;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid var(--eventflow-bdr-color);
    border-top: 0;
    padding: 35px 40px 40px;
    background-color: var(--eventflow-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-two__single:hover .blog-two__content {
    border: 1px solid transparent;
    border-top: 0;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
}

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

.blog-two__meta li {
    position: relative;
    display: block;
}

.blog-two__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--eventflow-gray);
}

.blog-two__meta li a span {
    color: #000;
}

.blog-two__meta li a:hover {
    color: var(--eventflow-base);
}

.blog-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 28px;
    margin-bottom: 31px;
}

.blog-two__title a {
    color: #000;
}

.blog-two__title a:hover {
    color: var(--eventflow-base);
}

.blog-two__btn {
    background: transparent;
    border: 1px solid var(--eventflow-bdr-color);
    padding: 16px 30px 16px;
    color: #000;
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    position: relative;
    display: block;
    background-color: #000;
    padding: 100px 0 0;
    z-index: 1;
}

.site-footer-two__top {
    position: relative;
    display: block;
}

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

.site-footer-two__top-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90.1deg, #F24617 -3.39%, rgba(242, 70, 23, 0.17) -3.38%, rgba(140, 40, 13, 0.1) 99.91%);
    border-radius: 10px;
    font-size: 60px;
    color: var(--eventflow-white);
    font-weight: 800;
    font-family: var(--eventflow-font-two);
    text-transform: capitalize;
    line-height: 60px;
    padding: 25px 20px 25px;
    max-width: 850px;
    width: 100%;
    margin: 0 auto 0;
}

.site-footer-two__top-content:hover {
    color: var(--eventflow-white);
}

.site-footer-two__top-content span {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    position: relative;
    display: block;
    margin-left: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.site-footer-two__top-content i {
    position: relative;
    display: inline-block;
    font-size: 55px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 800;
    margin-left: 10px;
}

.site-footer-two__middle {
    position: relative;
    display: block;
    padding: 80px 0px 74px;
}

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

.footer-widget-two__about {
    position: relative;
    display: block;
}

.site-footer-two__logo {
    position: relative;
    display: block;
}

.footer-widget-two__about-text {
    color: rgba(var(--eventflow-white-rgb), .90);
    margin-top: 24px;
    margin-bottom: 30px;
}

.site-footer-two__social {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-footer-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: #0E0A17;
    font-size: 14px;
    color: var(--eventflow-white);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.site-footer-two__social a:after {
    content: "";
    position: absolute;
    height: 0%;
    width: 0%;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.site-footer-two__social a:hover:after {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
}

.footer-widget-two__newsletter {
    position: relative;
    display: block;
}

.footer-widget-two__newsletter-text {
    color: rgba(var(--eventflow-white-rgb), .90);
}

.footer-widget-two__newsletter-form {
    position: relative;
    display: block;
    margin-top: 27px;
}

.footer-widget-two__newsletter-form-input-box {
    position: relative;
    display: block;
}

.footer-widget-two__newsletter-form-input-box input[type="email"] {
    font-size: 16px;
    height: 58px;
    width: 100%;
    background-color: #0E0A17;
    outline: none;
    color: rgba(var(--eventflow-white-rgb), .90);
    font-weight: 500;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 10px;
    padding-right: 64px;
    padding-left: 20px;
}

.footer-widget-two__newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    width: 55px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--eventflow-white);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.site-footer-two .footer-widget__contact {
    margin-left: 0;
}

.site-footer-two__bottom {
    position: relative;
    display: block;
}

.site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #0E0A17;
    padding: 29.5px 30px 29.5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.site-footer-two__bottom-text {
    color: var(--eventflow-white);
}

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

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

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

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

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 60px;
    z-index: 1;
}

.feature-one__single {
    position: relative;
    display: flex;
    margin-bottom: 52px;
}

.feature-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    max-width: 80px;
    width: 100%;
    background-color: var(--eventflow-base);
    border-radius: 50%;
    z-index: 1;
}

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

.feature-one__single:hover .feature-one__icon i {
    transform: scale(.9);
}

.feature-one__content {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-top: -2px;
}

.feature-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px;
}

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

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

/*--------------------------------------------------------------
# Ticket One
--------------------------------------------------------------*/
.ticket-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.ticket-one .row {
    --bs-gutter-x: 50px;
}

.ticket-one__single {
    position: relative;
    display: block;
    background-color: #0E0A17;
    padding: 30px 30px 30px;
    margin-bottom: 30px;
}

.ticket-one__title-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ticket-one__title-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.ticket-one__title-icon i {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--eventflow-white);
}

.ticket-one__title {
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
}

.ticket-one__price-box {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
    padding: 18px 30px 18px;
    border-top-right-radius: 37px;
    border-bottom-right-radius: 37px;
    margin-left: -30px;
    margin-top: 27px;
    margin-bottom: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.ticket-one__single:hover .ticket-one__price-box {
    padding-right: 80px;
}

.ticket-one__price-box h3 {
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
}

.ticket-one__points {
    position: relative;
    display: block;
}

.ticket-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px dashed rgba(var(--eventflow-white-rgb), .10);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.ticket-one__points li:last-child {
    border-bottom: 0;
}

.ticket-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border: 1px solid var(--eventflow-base);
    border-radius: 50%;
    font-size: 8px;
    color: var(--eventflow-base);
}

.ticket-one__points li .text {
    position: relative;
    display: block;
    margin-left: 15px;
}

.ticket-one__btn-box {
    position: relative;
    display: block;
}

.ticket-one__btn {
    background: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding: 16px 30px 16px;
}

/*--------------------------------------------------------------
# Schedule Three
--------------------------------------------------------------*/
.schedule-three {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.schedule-three__top .section-title {
    margin-bottom: 0;
}

.schedule-three__time-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.schedule-three__time-info-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 155px;
    width: 155px;
    border-radius: 5px;
    background-color: #0E0A17;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
}

.schedule-three__time-info-box:nth-child(1) {
    margin-right: -40px;
    margin-top: 80px;
}

.schedule-three__time-info-box:nth-child(2) {
    margin-right: -40px;
    margin-top: -80px;
}

.schedule-three__time-info-box:nth-child(3) {
    margin-top: 80px;
}

.schedule-three__time-info-box-content {
    position: relative;
    display: block;
}

.schedule-three__time-info-box-content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.schedule-three__time-info-box-content p {
    color: var(--eventflow-base);
    font-weight: 700;
    margin-top: 8px;
    line-height: 16px;
    text-transform: uppercase;
}

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

.schedule-three__routine-details {
    position: relative;
    display: grid;
    grid-template-columns: 55% 23% 22%;
    align-items: center;
    justify-content: center;
    background-color: #0E0A17;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.schedule-three__routine-details-description {
    position: relative;
    display: block;
    padding: 25px 50px;
}

.schedule-three__routine-details-description-title {
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    font-weight: 600;
}

.schedule-three__routine-details-description-title a {
    color: var(--eventflow-white);
}

.schedule-three__routine-details-description-title a:hover {
    color: var(--eventflow-base);
}

.schedule-three__routine-details-description-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

.schedule-three__routine-details-description-btn {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 16px;
}

.schedule-three__routine-details-description-btn:hover {
    color: var(--eventflow-white);
}

.schedule-three__routine-details-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 55px 0;
}

.schedule-three__routine-details-img-single {
    position: relative;
    display: block;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.schedule-three__routine-details-img-single img {
    width: 100%;
}

.schedule-three__routine-time-detail {
    position: relative;
    display: block;
    text-align: center;
    background-color: rgba(var(--eventflow-base-rgb), 1);
    padding: 74.5px 0;
}

.schedule-three__routine-time-detail p {
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
}

.schedule-three__routine-time-detail h6 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 16px;
    margin-top: 11px;
}

.schedule-three__routine-details:nth-child(2) .schedule-three__routine-time-detail {
    background-color: rgba(var(--eventflow-white-rgb), 0.05);
}

.schedule-three__routine-details:nth-child(4) .schedule-three__routine-time-detail {
    background-color: rgba(var(--eventflow-white-rgb), 0.05);
}

/*--------------------------------------------------------------
# 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);
}

.previous-party {
    display: none;
}

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

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

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

.contact-one__title {
    font-size: 35px;
    font-weight: 300;
    line-height: 45px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.contact-one__text {
    line-height: 35px;
    margin-top: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

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

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

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

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

label {
    width: 100%;
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-one__input-box .nice-select {
    height: 54px;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--eventflow-black);
    display: block;
    font-weight: 400;
    border-radius: 8px;
    line-height: 40px;
    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: 0 0 90px;
    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;
}

.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 {
    line-height: 24px;
    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;
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-details__img-1 {
    position: relative;
    display: block;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.blog-details__img-1 img {
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.blog-details__date {
    position: absolute;
    top: 0;
    right: 0;
    width: 86px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-details__date p {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 1.4px;
    font-family: var(--eventflow-font-two);
    text-transform: capitalize;
    color: var(--eventflow-white);
}

.blog-details__content {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-top: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 28px 40px 40px;
}

.blog-details__title-1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.blog-details__text-1 {
    color: var(--eventflow-white);
    margin-top: 17px;
    margin-bottom: 18px;
}

.blog-details__text-2 {
    color: var(--eventflow-white);
}

.blog-details__quote-box {
    position: relative;
    display: block;
    background-color: #04000A;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    padding: 30px 40px 28px;
    margin-top: 37px;
    margin-bottom: 28px;
}

.blog-details__quote-box-client-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
}

.blog-details__quote-box-sub-title {
    margin-top: 3px;
    margin-bottom: 18px;
}

.blog-details__quote-icon {
    position: absolute;
    right: 40px;
    top: 40px;
}

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

.blog-details__title-2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
}

.blog-details__text-3 {
    margin-top: 17px;
    margin-bottom: 18px;
}

.blog-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 75px;
    margin-bottom: 28px;
}

.blog-details__points {
    position: relative;
    display: block;
}

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

.blog-details__points li+li {
    margin-top: 13px;
}

.blog-details__points li .icon {
    position: relative;
    display: inline-block;
}

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

.blog-details__points li p {
    color: var(--eventflow-white);
}

.blog-details__text-4 {
    color: var(--eventflow-white);
}

.blog-details__img-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.blog-details__img-box-img-1 {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.blog-details__img-box-img-1 img {
    width: 100%;
    border-radius: 20px;
}

.blog-details__prev-and-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.blog-details__prev-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
}

.blog-details__prev-arrow:hover {
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
}

.blog-details__prev-arrow span {
    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;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__prev-arrow:hover span {
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    text-fill-color: #fff
}

.blog-details__prev-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #4A0AB4, #B20D5D) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 50%;
}

.blog-details__prev-arrow:hover::before {
    background: linear-gradient(90deg, #4A0AB4, #B20D5D) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.blog-details__prev {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.4px;
    font-family: var(--eventflow-font-two);
    color: var(--eventflow-white);
}

.blog-details__prev:hover {
    color: var(--eventflow-base);
}

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

.blog-details__next {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.4px;
    font-family: var(--eventflow-font-two);
    color: var(--eventflow-white);
}

.blog-details__next:hover {
    color: var(--eventflow-base);
}

.blog-details__next-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
}

.blog-details__next-arrow:hover {
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
}

.blog-details__next-arrow span {
    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;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__next-arrow:hover span {
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    text-fill-color: #fff
}

.blog-details__next-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #4A0AB4, #B20D5D) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 50%;
}

.blog-details__next-arrow:hover::before {
    background: linear-gradient(90deg, #4A0AB4, #B20D5D) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.blog-details__keyword-and-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    padding: 29px 29px 29px;
    margin-top: 40px;
    margin-bottom: 38px;
}

.blog-details__keyword-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.blog-details__keyword-box span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--eventflow-white);
}

.blog-details__keyword a {
    color: var(--eventflow-white);
    position: relative;
    display: inline-block;
}

.blog-details__keyword a:hover {
    color: var(--eventflow-base);
}

.blog-details__keyword a::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 50%;
    width: 5px;
    height: 5px;
    background-color: var(--eventflow-white);
    border-radius: 50%;
    transform: translateY(-50%);
}

.blog-details__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 50%;
    background-color: transparent;
}

.blog-details__social a:hover {
    background-color: var(--eventflow-base);
}

.blog-details__social a span {
    font-size: 17px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__social a:hover span {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: text;
    text-fill-color: #FFFFFF;
}

.blog-details__comment-box {
    position: relative;
    display: block;
}

.blog-details__comment-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.blog-details__comment-date {
    color: var(--eventflow-white);
    margin-top: 27px;
    margin-bottom: 5px;
}

.blog-details__comment-client-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
}

.blog-details__comment-text {
    margin-top: 18px;
    margin-bottom: 29px;
    color: var(--eventflow-white);
}

.blog-details__comment-btn-box {
    position: relative;
    display: block;
}

.blog-details__comment-btn {
    padding: 9px 30px 9px;
}

.comment-one {
    position: relative;
    display: block;
    background: #0E0A17;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    border-radius: 20px;
    margin-top: 60px;
    padding: 61px 60px 60px;
}

.comment-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
}

.comment-one__text {
    color: var(--eventflow-white);
    margin-top: 18px;
    margin-bottom: 39px;
}

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

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

.comment-one__input-box input[type="text"],
.comment-one__input-box input[type="email"] {
    height: 64px;
    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: 32px;
}

.comment-one__input-box textarea {
    position: relative;
    height: 130px;
    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: 16px;
    color: var(--eventflow-white);
    display: block;
    font-weight: 400;
    border-radius: 20px;
    margin-bottom: 0;
}

.comment-one__input-box.text-message-box {
    height: 130px;
}

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

.comment-one__btn {
    border: none;
    width: 100%;
    justify-content: center;
}

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

.sidebar__single+.sidebar__single {
    margin-top: 40px;
}

.sidebar__title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.sidebar__search {
    position: relative;
    display: block;
    padding: 44px 40px 40px;
    border-radius: 20px;
    background-color: #0E0A17;
}

.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    display: block;
    outline: none;
    background-color: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    font-weight: 400;
    font-size: 16px;
    height: 57px;
    width: 100%;
    padding-left: 30px;
    padding-right: 60px;
    color: var(--eventflow-white);
    border-radius: 29px;
}

.sidebar__search-form button[type="submit"] {
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    max-width: 50px;
    width: 100%;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
    background-color: #000;
    color: var(--eventflow-white);
}

.sidebar__all-category {
    position: relative;
    display: block;
    padding: 44px 40px 40px;
    border-radius: 20px;
    background-color: #0E0A17;
}

.sidebar__all-category .sidebar__title {
    margin-bottom: 34px;
}

.sidebar__all-category-list {
    position: relative;
    display: block;
}

.sidebar__all-category-list li {
    position: relative;
    display: block;
}

.sidebar__all-category-list li+li {
    margin-top: 20px;
}

.sidebar__all-category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 27px;
    color: var(--eventflow-white);
    padding: 14px 20px 14px;
    padding-left: 45px;
    z-index: 1;
}

.sidebar__all-category-list li.active a {
    color: var(--eventflow-white);
}

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

.sidebar__all-category-list li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 27px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.sidebar__all-category-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.sidebar__all-category-list li.active a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.sidebar__all-category-list li a i {
    position: absolute;
    top: 50%;
    left: 20px;
    font-size: 14px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sidebar__all-category-list li a:hover i {
    background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sidebar__all-category-list li.active a i {
    background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 44px 40px 40px;
    border-radius: 20px;
    background-color: #0E0A17;
}

.sidebar__post .sidebar__title {
    margin-bottom: 32px;
}

.sidebar__post-list {
    position: relative;
    display: block;
}

.sidebar__post-list li {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    padding: 23px 30px 24px;
}

.sidebar__post-list li+li {
    margin-top: 20px;
}

.sidebar__post-content {
    position: relative;
    display: block;
}

.sidebar__post-date {
    color: var(--eventflow-white);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar__post-date span {
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sidebar__post-content h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.4px;
    margin-top: 9px;
}

.sidebar__post-content h3 a {
    color: var(--eventflow-white);
}

.sidebar__post-content h3 a:hover {
    color: var(--eventflow-base);
}

.sidebar__tags {
    position: relative;
    display: block;
    padding: 44px 40px 40px;
    border-radius: 20px;
    padding-right: 20px;
    background-color: #0E0A17;
}

.sidebar__tags .sidebar__title {
    margin-bottom: 16px;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -10px;
}

.sidebar__tags-list a {
    position: relative;
    color: var(--eventflow-white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 3px 10px 3px;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    margin-left: 10px;
    font-weight: 400;
    border-radius: 17px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__tags-list a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 17px;
    background-position: center top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.sidebar__tags-list a:hover::before {
    transform: scaleY(1.0);
}

.sidebar__tags-list a+a {
    margin-top: 15px;
}

.sidebar__tags-list a:hover {
    color: var(--eventflow-white);
    border: 1px solid transparent;
}

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

.blog-list__left {
    position: relative;
    display: block;
}

.blog-list__single {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.blog-list__img-box {
    position: relative;
    display: block;
    z-index: 1;
}

.blog-list__img {
    position: relative;
    display: block;
    border-radius: 15px;
}

.blog-list__img img {
    width: 100%;
    border-radius: 15px;
}

.blog-list__date {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0E0A17;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.blog-list__date p {
    color: var(--eventflow-white);
}

.blog-list__content {
    position: relative;
    display: block;
    margin-right: 80px;
    background-color: #0E0A17;
    border-radius: 15px;
    padding: 59px 40px 40px;
    margin-top: -30px;
}

.blog-list__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
}

.blog-list__meta li {
    position: relative;
    display: block;
}

.blog-list__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eventflow-white);
}

.blog-list__meta li a:hover {
    color: var(--eventflow-base);
}

.blog-list__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 20px;
    margin-bottom: 39px;
    text-transform: capitalize;
}

.blog-list__title a {
    color: var(--eventflow-white);
}

.blog-list__title a:hover {
    color: var(--eventflow-base);
}

.blog-list__btn-box {
    position: relative;
    display: block;
}

.blog-list__pagination {
    position: relative;
    display: block;
    text-align: center;
}

.blog-list__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
    position: relative;
    display: block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    color: var(--eventflow-white);
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    font-weight: 400;
    font-size: 16px;
    border-radius: 50%;
    background-color: #0E0A17;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.blog-list__pagination .pg-pagination li a:hover {
    color: var(--eventflow-white);
}

.blog-list__pagination .pg-pagination li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.blog-list__pagination .pg-pagination li a:hover::before {
    opacity: 1;
}

.blog-list__pagination .pg-pagination li a i {
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:last-child a:hover i {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.gallery-details__top {
    position: relative;
    display: block;
}

.gallery-details__top-img {
    position: relative;
    display: block;
}

.gallery-details__top-img img {
    width: 100%;
    border-radius: 20px;
}

.gallery-details__top-right {
    position: relative;
    display: block;
}

.gallery-details__information {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20px;
    padding: 40px 20px 40px;
}

.gallery-details__information-title {
    position: relative;
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 20px;
    padding: 19px 20px 17px;
    margin-bottom: 30px;
}

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

.gallery-details__information-list {
    position: relative;
    display: block;
}

.gallery-details__information-list li {
    position: relative;
    display: block;
    text-align: center;
    background-color: #04000A;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    padding: 13px 20px 13px;
}

.gallery-details__information-list li:last-child {
    padding: 19px 20px 19px;
}

.gallery-details__information-list li+li {
    margin-top: 20px;
}

.gallery-details__information-list li p {
    color: var(--eventflow-gray);
}

.gallery-details__information-ratting {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.gallery-details__information-ratting span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #EECA48;
}

.gallery-details__information-ratting span.last-icon {
    color: #CCCCCC;
}

.gallery-details__information-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-details__information-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    font-size: 14px;
    color: var(--eventflow-white);
    background-color: #04000A;
    border-radius: 50%;
    z-index: 1;
}

.gallery-details__information-social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.gallery-details__information-social a:hover::before {
    opacity: 1;
}

.gallery-details__content {
    position: relative;
    display: block;
    margin-top: 28px;
}

.gallery-details__title-1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
}

.gallery-details__text-1 {
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-top: 17px;
    margin-bottom: 28px;
}

.gallery-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 100px;
}

.gallery-details__points {
    position: relative;
    display: block;
}

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

.gallery-details__points li+li {
    margin-top: 13px;
}

.gallery-details__points li .icon {
    position: relative;
    display: inline-block;
}

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

.gallery-details__points li p {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.gallery-details__title-2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 27px;
    margin-bottom: 19px;
}

.gallery-details__text-2 {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.gallery-details__img-box {
    position: relative;
    display: block;
    margin-top: 39px;
}

.gallery-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.gallery-details__img-box-img img {
    width: 100%;
    border-radius: 20px;
}

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

.event-details__left {
    position: relative;
    display: block;
}

.event-details__img {
    position: relative;
    display: block;
}

.event-details__img img {
    width: 100%;
    border-radius: 20px;
}

.event-details__main-tab-box {
    position: relative;
    display: block;
    margin-top: 40px;
}

.event-details__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 745px;
    width: 100%;
    z-index: 5;
}

.event-details__main-tab-box .tab-buttons:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: rgba(var(--eventflow-bdr-color-rgb), .20);
    z-index: -1;
}

.event-details__main-tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 55px;
}

.event-details__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 12px 29px 11px;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    background-color: #0E0A17;
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
}

.event-details__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;
}

.event-details__main-tab-box .tab-buttons .tab-btn.active-btn:before {
    height: 100%;
}

.event-details__main-tab-box .tab-buttons .tab-btn p {
    position: relative;
    display: block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 15px;
    line-height: 15px;
    color: var(--eventflow-white);
    font-weight: 700;
    letter-spacing: 1.6px;
    transition: all 0.3s ease;
    z-index: 1;
}

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

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

.event-details__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;
}

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

.event-details__tab-content-box {
    position: relative;
    display: block;
}

.event-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 39px;
    margin-bottom: 23px;
}

.event-details__meta li {
    position: relative;
    display: block;
}

.event-details__meta li p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eventflow-white);
}

.event-details__title-1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
}

.event-details__text-1 {
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-top: 17px;
    margin-bottom: 18px;
}

.event-details__text-2 {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.event-details__img-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.event-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.event-details__img-box-img img {
    width: 100%;
    border-radius: 20px;
}

.event-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 115px;
}

.event-details__points {
    position: relative;
    display: block;
}

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

.event-details__points li+li {
    margin-top: 13px;
}

.event-details__points li .icon {
    position: relative;
    display: inline-block;
}

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

.event-details__points li p {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.event-details__text-3 {
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-top: 28px;
    margin-bottom: 18px;
}

.event-details__text-4 {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.event-details__right {
    position: relative;
    display: block;
}

.event-details__speakers {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20PX;
    text-align: center;
    padding: 40px 40px 39px;
}

.event-details__speakers-title {
    position: relative;
    display: block;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    padding: 18px 20px 17px;
}

.event-details__speakers-sub-title {
    color: var(--eventflow-white);
    margin-top: 19px;
    margin-bottom: 18px;
}

.event-details__speakers-text {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.event-details__ticket {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20PX;
    text-align: center;
    padding: 40px 40px 38px;
    margin-top: 40px;
}

.event-details__ticket-title {
    position: relative;
    display: block;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    padding: 18px 20px 17px;
}

.event-details__ticket-sub-title {
    color: var(--eventflow-white);
    margin-top: 19px;
    margin-bottom: 19px;
}

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

.event-details__ticket-icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--eventflow-white);
}

.event-details__ticket-sub-title-2 {
    color: var(--eventflow-white);
    margin-top: 14px;
    margin-bottom: 7px;
}

.event-details__ticket-number {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.event-details__ticket-number a {
    color: var(--eventflow-white);
}

.event-details__ticket-number a:hover {
    color: var(--eventflow-base);
}

.event-details__ticket-two {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20PX;
    text-align: center;
    padding: 40px 40px 38px;
    margin-top: 40px;
}

.event-details__ticket-two-title {
    position: relative;
    display: block;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    padding: 18px 20px 17px;
}

.event-details__ticket-two-text {
    margin-top: 19px;
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-bottom: 29px;
}

.event-details__follow-us {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20PX;
    text-align: center;
    padding: 40px 40px 38px;
    margin-top: 40px;
}

.event-details__follow-us-title {
    position: relative;
    display: block;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    padding: 18px 20px 17px;
}

.event-details__follow-us-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.event-details__follow-us-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    background-color: #04000A;
    border-radius: 50%;
    font-size: 16px;
    color: var(--eventflow-white);
}

.event-details__follow-us-social a:hover {
    background-color: var(--eventflow-base);
    color: var(--eventflow-white);
}

.event-details__location {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20PX;
    text-align: center;
    padding: 40px 40px 38px;
    margin-top: 40px;
}

.event-details__location-title {
    position: relative;
    display: block;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    padding: 18px 20px 17px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 180px;
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

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

.service-details__top {
    position: relative;
    display: block;
}

.service-details__top-left {
    position: relative;
    display: block;
}

.service-details__category-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-details__all-category {
    position: relative;
    display: block;
    padding: 44px 40px 30px;
    border-radius: 20px;
    background-color: #0E0A17;
}

.service-details__all-category .service-details__title {
    margin-bottom: 34px;
}

.service-details__all-category-list {
    position: relative;
    display: block;
}

.service-details__all-category-list li {
    position: relative;
    display: block;
}

.service-details__all-category-list li+li {
    margin-top: 20px;
}

.service-details__all-category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #04000A;
    border-radius: 27px;
    color: var(--eventflow-white);
    padding: 14px 20px 14px;
    padding-left: 45px;
    z-index: 1;
}

.service-details__all-category-list li.active a {
    color: var(--eventflow-white);
}

.service-details__all-category-list li:hover a {
    color: var(--eventflow-white);
}

.service-details__all-category-list li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 27px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.service-details__all-category-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__all-category-list li.active a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__all-category-list li a i {
    position: absolute;
    top: 50%;
    left: 20px;
    font-size: 14px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.service-details__all-category-list li a:hover i {
    background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.service-details__all-category-list li.active a i {
    background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.service-details__get-touch {
    position: relative;
    display: block;
    padding: 20px;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 1;
}

.service-details__get-touch-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    z-index: -1;
}

.service-details__get-touch-inner {
    position: relative;
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    border-radius: 20px;
    padding: 38px 30px 38px;
}

.service-details__get-touch-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.service-details__get-touch-sub-title {
    color: var(--eventflow-white);
    margin-top: 7px;
    margin-bottom: 20px;
}

.service-details__get-touch-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 50%;
    margin: 0 auto;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-details__get-touch-icon:hover {
    background-color: #000;
}

.service-details__get-touch-icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--eventflow-white);
}

.service-details__get-touch-number {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 28px;
}

.service-details__get-touch-number a {
    color: var(--eventflow-white);
}

.service-details__get-touch-number a:hover {
    color: #000;
}

.service-details__download-box {
    position: relative;
    display: block;
    padding: 30px 40px 30px;
    background-color: #0E0A17;
    border-radius: 20px;
}

.service-details__download-list {
    position: relative;
    display: block;
}

.service-details__download-list li {
    position: relative;
    display: block;
}

.service-details__download-list li+li {
    margin-top: 20px;
}

.service-details__download-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(var(--eventflow-white-rgb), 0.05);
    border-radius: 34px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--eventflow-white);
    padding: 20px 30px 20px;
    z-index: 1;
}

.service-details__download-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 27px;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.service-details__download-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__top-right {
    position: relative;
    display: block;
}

.service-details__img-1 {
    position: relative;
    display: block;
}

.service-details__img-1 img {
    width: 100%;
    border-radius: 20px;
}

.service-details__title-1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 28px;
    margin-bottom: 17px;
}

.service-details__text-1 {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 24px;
}

.service-details__img-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.service-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.service-details__img-box-img img {
    width: 100%;
    border-radius: 20px;
}

.service-details__title-2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
}

.service-details__text-2 {
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-top: 17px;
    margin-bottom: 18px;
    line-height: 24px;
}

.service-details__text-3 {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 24px;
}

.service-details__bottom {
    position: relative;
    display: block;
    margin-top: 36px;
}

.service-details__single {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20px;
    padding: 39px 39px 37px;
    margin-bottom: 30px;
}

.service-details__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
    margin-bottom: 22px;
    z-index: 1;
}

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

.service-details__single:hover .service-details__icon span {
    transform: scale(.9);
}

.service-details__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.service-details__title a {
    color: var(--eventflow-white);
}

.service-details__title a:hover {
    color: var(--eventflow-base);
}

.service-details__text {
    margin-top: 18px;
    margin-bottom: 24px;
    color: rgba(var(--eventflow-white-rgb), .80);
}

.service-details__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--eventflow-white);
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: capitalize;
}

.service-details__btn span {
    font-size: 13px;
}

.service-details__btn:hover {
    color: var(--eventflow-base);
}

.service-details__text-4 {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 24px;
    padding-top: 54px;
}

.service-details__faq-box {
    position: relative;
    display: block;
    margin-top: 61px;
    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;
}

.team-details__left {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20px;
    padding: 40px 70px 100px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.team-details__client-shape-1 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    opacity: .10;
    z-index: -1;
}

.team-details__client-shape-1 img {
    width: auto;
}

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

.team-details__client-img {
    position: relative;
    display: block;
}

.team-details__client-img img {
    border-radius: 50%;
    padding: 10px;
    background-color: rgba(var(--eventflow-white-rgb), .10);
}

.team-details__img-content {
    position: relative;
    display: block;
}

.team-details__client-name {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--eventflow-white);
    margin-top: 25px;
}

.team-details__sub-title {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.team-details__social {
    position: relative;
    display: block;
    margin-top: 20px;
}

.team-details__social-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 15px;
    color: var(--eventflow-white);
    background-color: #04000A;
    border-radius: 50%;
    z-index: 1;
}

.team-details__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(90deg, #4A0AB4 0%, #B20D5D 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    z-index: -1;
}

.team-details__social a:hover::before {
    opacity: 1;
}

.team-details__right {
    position: relative;
    display: block;
    padding-left: 40px;
    margin-right: 40px;
}

.team-details__title-1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details__text-1 {
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-top: 17px;
}

.team-details__speaker-info-box {
    position: relative;
    display: block;
    margin-top: 42px;
}

.team-details__speaker-info {
    position: relative;
    display: block;
}

.team-details__speaker-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.team-details__speaker-info p {
    color: rgba(var(--eventflow-white-rgb), .80);
}

.team-details__speaker-info-list {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    background-color: #0E0A17;
    border-radius: 20px;
}

.team-details__speaker-info-list ul {
    position: relative;
    display: block;
}

.team-details__speaker-info-list ul li {
    padding: 10px 25px;
    position: relative;
    display: block;
}

.team-details__speaker-info-list ul li+li {
    border-top: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
}

.team-details__speaker-info-list ul li p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--eventflow-base);
}

.team-details__speaker-info-list ul li span {
    font-size: 14px;
    line-height: 24px;
}

.team-details__speaker-info-list ul li a {
    font-size: 14px;
    line-height: 24px;
    color: rgba(var(--eventflow-white-rgb), .90);
}

.team-details__speaker-info-list ul li a:hover {
    color: var(--eventflow-base);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.event-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    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;
}

/*--------------------------------------------------------------
# Coming Soon Page
--------------------------------------------------------------*/
.coming-soon-page {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.coming-soon-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #000;
    background-blend-mode: luminosity;
    z-index: -1;
}

.coming-soon-page__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
}

.coming-soon-page__content {
    position: relative;
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
}

.coming-soon-page__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.coming-soon-page__content .big-title {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 80px;
    line-height: 1.1em;
    font-family: var(--eventflow-font-2);
    font-weight: 700;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px var(--eventflow-white);
    word-spacing: 15px;
}

.coming-soon-page .timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 42px;
    z-index: 2;
}

.coming-soon-page .timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 170px;
    height: 170px;
    margin: 0px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 50%;
}

.coming-soon-page .timer-box .countdown-timer li span.days,
.coming-soon-page .timer-box .countdown-timer li span.hours,
.coming-soon-page .timer-box .countdown-timer li span.minutes,
.coming-soon-page .timer-box .countdown-timer li span.seconds {
    color: #ffffff;
    font-size: 55px;
    line-height: 60px;
    font-weight: 700;
    font-family: var(--eventflow-font);
}

.coming-soon-page .timer-box .countdown-timer li span.timeRef {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 11px;
    font-family: var(--eventflow-font);
}

.coming-soon-page__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.coming-soon-page__content .inner .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.coming-soon-page__subscribe-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon-page__subscribe-box form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.coming-soon-page__subscribe-box form input[type="email"] {
    position: relative;
    display: block;
    max-width: 490px;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    color: var(--eventflow-gray);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--eventflow-font);
    outline: none;
}

.coming-soon-page__btn {
    position: relative;
    align-items: center;
    border: 0;
    padding: 17px 40px 17px;
    background-color: var(--eventflow-base);
}

.coming-soon-page__btn:hover {
    color: var(--eventflow-white);
}


/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    padding: 0px 0 90px;
}

/*--------------------------------------------------------------
# Ticket Two
--------------------------------------------------------------*/
.ticket-two {
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Pricing Two
--------------------------------------------------------------*/
.pricing-two {
    background-color: var(--eventflow-white);
    padding: 190px 0 90px;
}

.pricing-two .pricing-one__points li .text p {
    color: var(--eventflow-gray);
}

/*--------------------------------------------------------------
# Event Three
--------------------------------------------------------------*/
.event-three {
    padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Event Direction Two
--------------------------------------------------------------*/
.event-direction-two {
    padding: 0 0 120px;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 100px;
    counter-reset: count;
}

.faq-page__left {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.faq-page .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;
}

.faq-page .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;
}

.faq-page .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;
}

.faq-page .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 37px;
}

.faq-page .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;
}

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

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

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

.faq-page .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;
}

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

.faq-page__right {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
    padding: 0px 0 90px;
}





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