*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif !important;
    color: #14273E;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

a:hover {
    color: #cc1eb7;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}

img {
    max-width: 100%;
}

p {
    font-size: 15px;
    margin: 0;
    font-weight: normal;
}

a {
    text-decoration: none;
    color:#fff;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-weight: 900;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container-fluid {
        max-width: 90%;
    }

    .container {
        padding: 0 45px !important;
    }
}

@media (min-width: 1440px) {

    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.object-fit {
    width: 100%;
    max-width: unset;
    height: 100%;
    object-fit: cover;
}


.flex-prop {
    display: flex;
}

.section-padding {
    padding: 130px 0 0;
}

/*button style*/

.btn {
    cursor: pointer;
    padding: 10px 45px 10px 14px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all .4s ease-in-out;
    overflow: hidden;
    box-shadow: none !important;
}

.btn-primary {
    background: #cc1eb7;
    color: #fff;
}

.btn-primary:after {
    content: "";
    position: absolute;
    background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
    background-size: 47px;
    width: 42px;
    height: 40px;
    right: 0;
    top: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #721267;
    color: #fff;
    border-color: #721267;
    text-decoration: none;
    box-shadow: none;
}

.btn-secondary {
    background: #2F97DF;
    color: #fff;
    border-radius: 50px;
}

.btn-secondary:after {
    content: "";
    position: absolute;
    background: url(../img/btn-dark-blue-arrow.svg) 0 0 no-repeat;
    background-size: 46px;
    width: 42px;
    height: 41px;
    right: 0;
    top: 0;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #d9ecff;
    border-color: #d9ecff;
    color: #0e3040;
    box-shadow: none;
}

.btn-tertiary {
    background: #cc1eb7;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 55px 10px 14px;
}

.btn-tertiary:hover {
    background: #721267;
    color: #fff;
    text-decoration: none;
}

.btn-tertiary:after {
    content: "";
    position: absolute;
    background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
    background-size: 47px;
    width: 47px;
    height: 42px;
    right: 0;
    top: 0;
}


@media (min-width: 768px) {
    .btn-tertiary:after {
        background-size: 47px;
        width: 46px;
    }
}

@media (min-width: 1200px) {
    .btn {
        font-size: 18px;
        padding: 12px 81px 11px 24px;
    }

    .btn-primary:after {
        background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
        background-size: unset;
        width: 57px;
        height: 50px;
    }

    .btn-secondary:after {
        background: url(../img/btn-dark-blue-arrow.svg) 0 0 no-repeat;
        background-size: unset;
        width: 57px;
        height: 50px;
    }

    .btn-tertiary {
        padding: 7px 81px 7px 24px !important;
    }

        .btn-tertiary:after {
        background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
        background-size: 56px;
        width: 56px;
        height: 65px;
        top: -3px;
    }
}


/*page header*/
header {
    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    transition: all ease 0.3s;
}

.nav-up .header-main {
    top: -1px;
    position: relative;
}

.nav-up .header-top {
    height: 0;
    overflow: hidden;
    opacity: 0;
    overflow-x: -9999;
    padding: 0;
}

.header-main {
    display: block;
    background: #000;
    z-index: 99999;
    width: 100%;
    position: relative;
    transition: all ease 0.3s;
    top: 0;
    box-shadow: 0 4px 44px rgb(0 0 0 / 10%);
}

.header-main:after {
    content: "";
    position: absolute;
    width: 170px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: #000;
}

.header-top {
    background-color: #F5F5F5;
    padding: 8px 0;
    text-align: center;
    transition: all ease 0.3s;
}

.header-top p {
    font-size: 12px;
    font-weight: 500;
    color: #2C2B2B;
    line-height: 14px;
    padding: 0 10px;
}

.header-top p a {
    color: #242424;
    text-decoration: underline;
}

.header-main.header-fixed {
    top: 0;
    position: fixed;
    width: 100%;
    transition: all .3s ease;
}

.container-menu {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    transition: all ease 0.3s;
    align-items: center;
}

.navigation {
    width: calc(100% - 290px);
    display: flex;
    justify-content: flex-end;
}

.header-main:before,
.header-main:after {
    display: table;
    line-height: 0;
    content: "";
}

.core-menu {
    text-align: right;
    overflow: hidden;
}

.core-menu li {
    list-style: none;
    display: inline-block;
    cursor: pointer;
}

.core-menu li a {
    display: inline-block;
    padding: 15px 0 34px 0;
    font-size: 14px;
    transition: all ease 0.3s;
    color: #000;
    font-weight: 500;
}

.core-menu li a:hover{
    color: #000 !important;
}

.core-menu li.active a {
    color:#fad846;
}

.hamburger-menu {
    display: none;
}

.header-logo {
    width: 167px;
}

/* hover */
.core-menu li:hover a span.toggle:before {
    color: #fff;
}

.core-menu li:hover a {
    color: #fff !important;
    background-color: #0996DB !important;
}

.core-menu li:hover .menu-icon span {
    display: block;
}

.core-menu li:hover .menu-icon img {
    display: none;
}

.core-menu li:hover .menu-icon span img {
    display: block !important;
}

.core-menu li:hover .dropdown li a {
    background-color: #fff !important;
    color: #526581 !important;
}

.mobile-nav-btn {
    display: none;
}

.header-search {
    position: relative;
    margin-bottom: 30px;
}

.desktop-search {
    display: none;
}

.header-search input {
    width: 100%;
    border-radius: 5px;
    /* line-height: 40px; */
    display: inline-block;
    border: none;
    padding: 10px 60px 10px 15px;
    font-size: 14px;
    color: #181818;
    transition: all ease 0.3s;
    background: #ffffff;
}

.header-search input:focus {
    outline: none;
    border: none;
}

.header-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: #2F97DF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    border-radius: 0 5px 5px 0;
}

.header-search button:hover {
    background: #edaf25;
}


.header-search input::placrholder {
    color: #666666;
    transition: all ease 0.3s;
}

/* hover end */

@media (max-width:992px) {
    li span.toggle:before {
        color: #526581;
    }

    .container-menu {
        height: 60px;
        justify-content: flex-end;
        padding: 0 0;
    }

    .menu-icon {
        display: inline-block;
        margin-right: 25px;
    }

    .menu-icon span {
        display: none;
    }

    .hamburger-menu {
        position: absolute;
        top: 22px;
        right: 0;
        width: 30px;
        height: 20px;
        padding: 0;
        z-index: 99;
        border-radius: 50px;
        display: block;
    }

    .menu-open .hamburger-menu {
        position: fixed;
        top: 16px;
        right: 15px;
    }

    .header-logo {
        position: relative;
        left: 0;
        width: 137px;
        top: -3px;
    }

    .header-logo img {
        transition: all ease 1s;
    }


    .navigation {
        display: block;
        width: calc(100% - 137px);
        text-align: end;
        padding-right: 45px;
    }

    .core-menu {
        width: 300px;
        background: #fff;
        position: fixed;
        right: -1000vh;
        padding-top: 80px;
        height: 100vh;
        transition: all ease 0.7s;
    }

    .core-menu:after {
        position: absolute;
        top: 12px;
        left: 30px;
        content: "";
        width: 91px;
        height: 29px;
        background: url(../img/header-logo.svg) 0 0 no-repeat;
        background-size: 91px;
    }

    .core-menu.fast {
        right: 0;
        z-index: 9;
        top: 0;
        transition: all ease 0.7s;
    }

    .core-menu li {
        width: 100%;
        text-align: start;
        display: block;
        padding: 0 15px;
    }

    .core-menu li a {
        display: flex;
        height: 45px;
        align-items: center;
        color: #000;
        font-size: 15px;
        border-radius: 6px;
        position: relative;
        padding: 0 15px;
    }

    .core-menu li:focus {
        background: none;
    }

    .core-menu li a:focus {
        background: none;
    }

    .core-menu li a:hover {
        color: #526581;
    }

    .core-menu li.active a {
        color: #fff;
        background-color: #414CE5;
    }


    .core-menu li a span.toggle {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 20px;
    }

    .hamburger-menu {
        /*display: none;*/
    }

    .burger-1,
    .burger-2,
    .burger-3 {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        border-radius: 30px;
        background: #fff;
        -webkit-transition: .2s ease;
        -ms-transition: .2s ease;
        -moz-transition: .2s ease;
        -o-transition: .2s ease;
        transition: .2s ease;
        right: 0;
    }

    .burger-1 {
        top: 0;
    }

        .burger-2 {
        top: 8px;
    }

        .burger-3 {
        top: 16px;
        width: 16px;
    }

    .burger-1.open, .burger-2.open, .burger-3.open {
    left: 5px;
    -webkit-transition: .2s ease;
    -ms-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    transform-origin: 50% 50%;
    background: #000;
}

    .burger-1.open {
        top: 12px;
        width: 30px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .burger-2.open {
        opacity: 0;
    }

    .burger-3.open {
        top: 12px;
        width: 30px;
        transform: rotate(-45deg);
    }


    .dropdown {
        width: 100%;
        position: relative;
    }

    .dropdown2 {
        right: 0;
        top: 0;
        width: 100%;
        position: relative;
        padding: 0 20px;
    }

    .dropdown.fast {
        display: block;
    }

    .menu-off .core-menu.fast {
        right: -1000vh;
        z-index: -999;
    }

    .nav-down.menu-open.menu-off .header-logo {
        top: 25px;
    }

    .menu-open.menu-off.nav-up .hamburger-menu {
        top: 25px;
    }

    .menu-open.menu-off.nav-down .hamburger-menu {
        top: 86px;
    }

    .menu-off .burger-1.open,
    .menu-off .burger-2.open,
    .menu-off .burger-3.open {
        transform: rotate(0);
    }

    .menu-off .burger-1.open {
        left: 5px;
        top: 7px;
    }

    .menu-off .burger-2.open {
        left: 5px;
        top: 12px;
        opacity: 1;
    }

    .menu-off .burger-3.open {
        left: 5px;
        top: 17px;
    }
}

@media (min-width: 768px) {
    .menu-open .hamburger-menu {
        right: 45px;
    }

    .header-main:after {
        width: 210px;
    }
}

@media (min-width:993px) {
    .header-search {
        margin-bottom: 0;
        width: 100%;
    }

    .core-menu li:hover ul {
        display: block;
    }

    .header-main:after {
        width: 240px;
    }

    /* ----hover */
    .core-menu li:hover a {
        background-color: transparent !important;
        color: #fad846 !important;
    }

    .core-menu li:hover a:hover {
        color: #fad846  !important;
    }

    .header-main {
        height: 100px;
        display: flex;
        align-items: center;
    }

    .header_scroll .header-main{
        height: 100px;
    }

    .nav-down .header-up {
        height: 100px;
    }

    .navigation {
        align-items: center;
        width: calc(100% - 167px);
    }

    .core-menu li.active a {
        color: #4D4D4D;
    }

    .core-menu li a {
        padding: 0 10px;
    }

    .core-menu {
        position: relative;
        display: none;
        overflow: unset;
        width: 100%;
        justify-content: flex-end;
        
    }
    
    @media only screen and (max-width: 600px) {
   .core-menu {
        position: relative;
        display: flex;
        overflow: unset;
        width: 100%;
        justify-content: flex-end;
        
    }
}

    .core-menu li {
        position: relative;
        display: flex;
        align-items: center;
    }

    .core-menu li:first-child {
        order: 1;
        max-width: 234px;
        width: 100%;
        margin-left: 20px;
    }

    .header-top {
        padding: 13px 0;
    }

    .header-top p a {
        color: #7780FF;
    }

    .hideheader .header-main {
        height: 53px;
        padding: 6px 0 0 0;
    }
}

@media (min-width:1200px) {
    .header-logo {
        width: 227px;
        position: relative;
        top: -6px;
    }

    .header-main:after {
        width: 100vw;
        left: -78vw;
    }

    .navigation {
        width: calc(100% - 227px);
        justify-content: flex-end;
        padding-left: 1%;
    }

    .core-menu li:first-child {
        max-width: 314px;
    }

    .core-menu li a {
        padding: 0 12px;
        font-size: 16px;
    }

    .hideheader .header-logo {
        width: 135px;
    }

    .header-search input {
        font-size: 18px;
    }

    .desktop-search {
        display: block;
        width: 100%;
        margin: 0;
        max-width: 320px;
    }
}


/*@media (min-width:1500px) {*/
/*    .header-main:after {*/
/*        width: 100vw;*/
/*        left: -75vw;*/
/*    }*/

/*    .core-menu li a {*/
/*        padding: 0 15px;*/
/*        font-size: 18px;*/
/*    }*/

/*    .header-logo:after {*/
/*        content: "";*/
/*        position: absolute;*/
/*        width: 290px;*/
/*        height: 0px !important;*/
/*        left: -30px;*/
/*        top: -31px;*/
/*        z-index: -1;*/
/*        background: none !important;*/
/*    }*/

/*}*/


/*page header*/



/*page-footer*/
.page-footer {
    padding: 50px 0 0 0;
    background-color: #0e0e0e;
    color: #fff;
}

.page-footer h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 12px;
}

.fopoter-logo  {
    display: block;
    width: 100%;
}

.fopoter-logo  a {
    width: 180px;
    margin: 0 0 30px 0;
    display: block;
}

.footer-link ul li {
    display: block;
    margin-bottom: 15px;
}

.footer-link ul li a {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #AEAEAE;
    font-weight: 400;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-link {
    margin-bottom: 30px;
    width: 50%;
}

.social-link {
    width: 50%;
    padding-left: 30px;
}

.social-link ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.social-link ul li {
    display: inline-block;
    margin-right: 12px;
}
.social-link ul li a {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #AEAEAE;
    font-weight: 400;
}

.footer-blog ul li a {
    padding: 0;
    margin: 0;
    aspect-ratio: 2 / 1.455;
    display: block;
}

.footer-blog ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.footer-blog ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-blog ul li {
    width: 33.333%;
    margin: 0;
}

.bottom-footer-text {
    padding: 20px 0 5px;
    margin-top: 45px;
    background: #000;
}

.bottom-footer-text p {
    text-align: center;
    font-size: 15px;
    color: #BDBDBD;
    padding-bottom: 15px;
}



.bottom-footer-text p span {
    color: #0784F7;
}

@media (min-width:768px) {
    .bottom-footer-text-wrapper {
        display: flex;
        justify-content: center;
    }
    .bottom-footer-text-wrapper p {
        margin: 0 15px 0 0;
        padding: 0 15px 0 0;
        border-right: 2px solid #5E5E5E;
    }

    .bottom-footer-text-wrapper p:last-child {
        margin: 0;
        padding-right: 0;
        border-right: none;
    }

    .fopoter-logo a {
        margin: 0 0 50px 0;
        width: 227px;
    }

    .fopoter-logo img {
        width: 100%;
        max-width: unset;
    }

    .social-link {
        width: 33.333%;
        padding: 0 15px;
    }

    .social-link ul li {
        margin-right: 26px;
    }

    .footer-blog ul {
        max-width: 330px;
    }

    .footer-link {
        margin-bottom: 0;
        width: 33.333%;
    }

    .footer-blog {
        width: 33.333%;
    }

    .bottom-footer-text {
        padding: 30px 0 30px;
        margin-top: 55px;
    }

    .page-footer {
        padding: 30px 0 0 0;
    }
}


@media (min-width:1200px) {
    .bottom-footer-text-wrapper p {
        margin: 0 20px 0 0;
        font-size: 17px;
        padding: 0 22px 0 0;
    }

    .footer-link,
    .social-link,
    .footer-blog,
    .fopoter-logo {
        width: 100%;
    }

    .page-footer h3 {
        font-size: 21px;
        padding-bottom: 30px;
    }

    .social-link ul li a {
        font-size: 22px;
        transition: all ease 0.3s;
    }  

    .footer-link ul li a {
        position: relative;
        transition: all ease 0.3s;
    }

    .footer-link ul li a:hover {
        padding: 0 0 0 22px;
        color: #2F97DF;
    } 

    .footer-link ul li a:hover:after {
        content: "";
        position: absolute;
        background: url(../img/footer-arrow.svg) 0 0 no-repeat;
        width: 8px;
        height: 14px;
        left: 0;
        top: 3px;
    }

    .social-link ul li a:hover {
        color: #fff;
    }

    .bottom-footer-text {
        margin-top: 0px;
    }

    .fopoter-logo a {
        position: relative;
        top: -15px;
    }
} 

/*page-footer*/


.masterhead-banner {
    margin-top: 60px; 
    position: relative;
}

.masterhead-banner-image {
    position: relative;
    aspect-ratio: 2 / 0.613;
}

.masterhead-banner-overlay {
    z-index: 1;
    height: 100%;
    position: relative;
    left: 0;
    width: 100%;
    top: 0;
    background: #1856A0;
}

.masterhead-banner-overlay-content {
    bottom: 0;
    position: relative;
    width: 100%;
    padding: 15px 15px 25px 0;
} 

.masterhead-banner-overlay-wrapper {
    position: relative;
    padding: 0 0 5px 27px;
}

.masterhead-banner-overlay-wrapper:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/strip.png) center center no-repeat;
        background-size: 100% 100%;
}

.masterhead-banner-overlay h1 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.masterhead-banner-overlay p {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 16px;
}

.masterhead-banner-side-curve {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
}

.masterhead-banner-slide {
    position: relative;
}

.masterhead-banner-slider .slick-arrow.slick-prev {
    background: url(../img/slick-prev-arrow.svg) center center no-repeat;
    box-shadow: none;
}

.masterhead-banner-slider .slick-arrow.slick-next {
    background: url(../img/slick-next-arrow.svg) center center no-repeat;
    box-shadow: none;
}

@media(min-width: 768px) {
    .masterhead-banner-overlay-content {
        padding: 55px 25px 25px 0;
    }

    .masterhead-banner-overlay h1 {
        font-size: 24px;
    }

    .masterhead-banner-overlay p {
        font-size: 16px;
    }

    .masterhead-banner-side-curve {
        width: 100px;
        top: -70px;
    }

}



@media(min-width: 993px) {
    .masterhead-banner {
        margin-top: 100px;
    }

    .masterhead-banner-overlay-content {
        position: absolute;
        width: 100%;
        padding: 0 0 90px 0;
    }
    
    .inner-event-detail-banner .masterhead-banner-overlay-content {
        padding: 50px 0 15px 0;
    }

    .masterhead-banner-overlay {
        background: rgba(5, 18, 35, 0.75);
        position: absolute;
    }

    .masterhead-banner-overlay-wrapper {
        max-width: 680px;
    }
}

@media(min-width: 1200px) {
    .masterhead-banner-overlay-wrapper {
        padding: 0 0 5px 35px;
    }

    .masterhead-banner-overlay p {
        font-size: 20px;
        padding-bottom: 23px;
    }

    .masterhead-banner-overlay h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .masterhead-banner-side-curve {
        width: 180px;
        top: unset;
        bottom: 0;
    }
}



.item-card {
    position: relative;
    padding: 30px 0;
}

.item-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: -1;
    background: #14273E;
}
.item-card-slider .slick-slide {
    width: 150px;
    margin: 0 7px;
}

.item-card-slider-content h3 {
    font-size: 14px;
    color: #1E1E1E;
    font-weight: 600;
    display: block;
    padding-bottom: 6px;
}

.item-card-slider-content p {
    font-size: 13px;
    color: #5E5E5E;
    letter-spacing: 0.4px;
    font-weight: 400;
    display: block;
    padding-bottom: 0;
}

.item-card-slider-image {
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 2 / 1.115;
    margin-bottom: 6px;
}

.event-card-right {
    display: none;
}

.event-card-wrapper {
    position: relative;
    padding: 0 15px;
}

.event-card-list {
    margin: 0 0 50px;
}

.event-card-left .item-card-slider-item {
    margin: 0 0 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.1);
}

.event-card-left .item-card-slider-content {
    padding: 0 35px 10px 10px;
}

.addvertise-box {
    margin-bottom: 30px;
    display: block;
}

.addvertise-box img {
    width: 100%;
    max-width: unset;
}

.addvertise-box:last-child {
    margin-bottom: 0;
}

.heading {
    padding-top: 20px;
    width: 100%;
}

.heading h2 {
    font-size: 21px;
    color: #20313C;
    text-align: left;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
    position: relative;
}

.heading h2 span {
    font-weight: 400;
}

.heading h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    right: 0;
    bottom: -3px;
    background-color: #d628a6;
}

@keyframes lefttoright {
  from {width: 0;}
  to {width: 64px;}
}


.event-card {
    padding: 30px 0 80px;
}

.item-card-slider-box {
    display:block;
    position: relative;
}

.item-card-slider-content {
    padding-top: 15px;
}


.showMore,
.showMore-1 {
    margin: 15px auto 0;
    display: table;
}

.showMore:focus,
.showMore-1:focus {
    box-shadow: none;
}

.event-card .list-view .item-card-slider-box:hover {
    display: flex;
}

.event-card .list-view .item-card-slider-box:after {
    display: none;
}

.search-result-heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.search-result-heading-flex h4 {
    color: #141414;
    font-weight: 700;
    font-size: 16px;
}

.search-result-heading-flex h4 span { 
    color: #787878;
    display: inline-block;
    margin-left: 10px;
    font-weight: 500;
}

.view-type p {
    margin-right: 10px;
    color: #000000;
    font-size: 12px;
}


@media(min-width: 768px) {
    .item-card-slider .slick-slide {
        width: 220px;
    }

    .heading h2 {
        font-size: 30px;
        padding-bottom: 20px;
        margin-bottom: 35px;
    }

    .heading h2:after {
        width: 70px;
    }
    
    .event-card-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px 50px;
        width: calc(100% + 20px);
    }
    
    .event-card-left .item-card-slider-item {
        margin: 0 10px 20px;
        width: calc(50% - 20px);
    }
}


@media(min-width: 1200px) {
    .heading {
        padding-top: 50px;
    }

    .heading h2:after {
        left: 0;
        right: unset;
    }

    .heading h2 {
        font-size: 40px;
        padding-bottom: 30px;
    }

    .showMore,
    .showMore-1 {
        margin: 35px auto 0;
    }


    .item-card-slider .slick-slide {
        width: 452px;
        margin: 20px 10px 0;
    }

    .item-card-slider-image {
        border-radius: 12px;
        margin-bottom: 10px;
        transition: all ease 0.3s;
    }

    .item-card-slider-image:hover {
        box-shadow: 0 5px 24px rgba(166,219,255,1);
    }

    .item-card-slider-content h3 {
        font-size: 18px;
    }

    .item-card-slider-content p {
        font-size: 12px;
    }

    .item-card {
        padding: 55px 0 60px;
    }

    .item-card:after {
        height: 161px;
    }

    .item-card-slider .slick-prev, .item-card-slider .slick-next {
        opacity: 0;
        top: 20px;
        height: calc(100% - 20px);
    }

    .item-card-slider:hover .slick-prev, .item-card-slider:hover .slick-next {
        opacity: 1;
    }

    .event-card-wrapper {
        display: flex;
        padding: 0 70px 0 70px;
        align-items: flex-start;
        margin: 0 auto;
        max-width: 2000px;
    }

    .event-card-left {
        width: 71%;
        padding-right: 55px;
    }

    .event-card-right {
        width: 29%;
        display: block;
        max-width: 437px;
    }

    .event-card-list {
        width: calc(100% + 20px);
    }

    .event-card-left .item-card-slider-item {
        width: calc(33.333% - 20px);
        border-radius: 12px;
    }

    .event-card-left .item-card-slider-content {
        padding: 0 45px 10px 25px;
    }

    .item-card-slider-box:after {
        width: 13px;
        height: 24px;
        background: url(../img/black-right-arrow.svg) 0 0 no-repeat;
        background-size: unset;
        opacity: 0;
        transition: all ease 0.3s;
    }

    .item-card-slider-box:after {
        width: 13px;
        height: 24px;
        background: url(../img/black-right-arrow.svg) 0 0 no-repeat;
        background-size: unset;
        opacity: 0;
        bottom: 15px;
        transition: all ease 0.3s;
    }

    .event-card .item-card-slider-box:after {
        background: url(../img/white-right-arrow.svg) 0 0 no-repeat;
        right: 22px;
        bottom: 18px;
    }

    .item-card-slider-box:hover:after {
        opacity: 1;
    }

    .event-card .item-card-slider-item:hover {
        background: transparent !important;
        position: relative;
        z-index: 1;
        display: block;
        border-radius: 12px;
    }
    .event-card-list .item-card-slider-image:hover {
        box-shadow: none;
    }
    
    .event-card {
        padding: 90px 0;
    }

    .search-result-heading-flex h4 {
        font-size: 20px;
    }

    .view-type p {
        margin-right: 15px;
        font-size: 16px;
    }
}
@media(min-width: 1700px) {
.item-card-slider-content h3 {
        font-size: 18px;
    }

    .event-card-left .item-card-slider-item {
        width: calc(33.33% - 20px);
    }
    
}


.video-slider-section .heading {
    padding-top: 0;
    max-width: 590px;
    margin: 0 auto;
}

.video-slider-section {
    padding: 50px 0;
    position: relative;
    background: #FBFBFB;
}
.video-slider-for-item a {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2 / 1.115;
    margin-bottom: 0;
    display: block;
}

.video-slider-for-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slider-heading-right {
    margin-bottom: 30px;
    text-align: center;
}

.video-slider-nav-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2 / 1.115;
    margin-bottom: 16px;
    display: block;
    border: 3px solid transparent;
    cursor: pointer;
}

.video-slider-nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.video-slider-nav {
    width: calc(100% + 10px);
    margin: 0 -5px;
}

.video-slider-nav .slick-slide {
    margin: 0 5px;
}

.video-slider-nav .slick-slide.slick-center .video-slider-nav-item {
    border: 3px solid #67ADFF;
}

.video-slider-heading {
    position: relative;
    padding: 0 0 0 27px;
    margin-bottom: 25px;
}

.video-slider-heading h2 {
    font-size: 20px;
    color: #20313C;
    font-weight: 600;
    padding-bottom: 0;
}

.video-slider-heading:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/banner-design-strip.svg) center center no-repeat;
}

.video-slider-area {
    max-width: 500px;
    margin: 0 auto;
}

.video-slider-for-item a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 22;
}

.video-slider-for-item a:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    background: url(../img/video-play-btn-icon.png) 0 0 no-repeat;
    width: 100px;
    height: 70px;
    background-size: 100px;
    border-radius: 0 0 8px 0;
}

@media(min-width: 768px) {
    .video-slider-heading h2 {
        font-size: 26px;
    }

    .video-slider-for-item a:before {
        background: url(../img/video-play-btn-icon.png) 0 0 no-repeat;
        width: 180px;
        height: 125px;
        background-size: 180px;
    }

    .video-slider-section {
        padding: 70px 0 80px;
    }
}


@media(min-width: 1200px) {
    .video-slider-section .heading {
        display: flex;
        justify-content: space-between;
    }

    .video-slider-heading-left {
        width: 277px;
    }

    .video-slider-heading-right {
        width: calc(100% - 277px);
        max-width: 924px;
        text-align: left;
        padding-left: 30px;
        margin-bottom: 80px;
    }

    .video-slider-heading-right p {
        font-size: 18px;
    }

    .heading .video-slider-heading-left h2 {
        text-align: left;
        font-size: 34px;
    }

    .video-slider-area {
        max-width: unset;
        margin: 0;
        display: flex;
        align-items: flex-end;
    }

    .video-slider-left {
        width: 55%;
    }

    .video-slider-right {
        width: 45%;
        padding-left: 61px;
    }

    .video-slider-heading h2 {
        font-size: 34px;
    }

    .video-slider-nav-item {
        margin-bottom: 30px;
    }

    .video-slider-heading {
        padding: 0 0 0 37px;
        max-width: unset;
        margin: 0;
        margin-bottom: 30px;
    }

    .video-slider-for-item a:before {
        background: url(../img/video-play-btn-icon.png) 0 0 no-repeat;
        width: 266px;
        height: 185px;
        background-size: unset;
    }

    .video-slider-section {
        padding: 80px 0 100px;
    }
}

.cta .heading {
    padding-top: 0;
}

.cta {
    position: relative;
    background: #271738;
    padding: 30px 0;
    margin-top: 30px;
}

.cta-left {
    margin: 0; 
    display: none;
    /*max-width: 300px;*/
}

.cta-right {
    position: absolute;
    top: -97px;
    right: 0;
    width: 220px;
    display: none;
}

.cta h2 {
    color: #172128;
}

.cta-input {
    position: relative;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 590px;
    text-align: center;
    padding: 0 15px;
}

.cta-input input {
    width: 100%;
    display: block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}


.cta-input input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.cta .heading h2:after {
    display: none;
}

.cta .heading h2 {
    text-align: center;
    border-bottom: none;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
    background-color: #301c45;
    padding: 15px 0;
    color: #fff;
}


@media(min-width: 768px) {
    .cta-left {
        margin: 0; 
    }
    
    .cta {
        margin-top: 0;
    }

    .cta-right {
        top: unset;
        width: 410px;
        bottom: 0;
    }

    .cta-input .btn {
        top: 0;
        right: 0;
        position: absolute;
    }

    .cta-input input {
        text-align: left;
        padding: 10px 170px 10px 20px;
        margin-bottom: 0;
    }

    .cta-input .btn {
        right: 15px;
        border-radius: 0 5px 5px 0;
        padding: 11px 60px 11px 14px;
    }

    .cta-input {
        overflow: hidden;
        display: table;
        height: 40px;
    }

}


@media(min-width: 1200px) {
    .cta-right {
        width: 920px;
        z-index: 1;
    }

    .cta-left {
        max-width: 420px;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .cta-input {
        margin: 0;
    }

    .cta-center {
        position: relative;
        z-index: 2;
        max-width: 1330px;
        padding: 0 45px;
        margin: 0 auto;
    }

    .cta .heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cta .heading h2 {
        padding-bottom: 0;
        margin: 0;
        text-align: left;
        clip-path: unset;
        border-bottom: none;
        padding: 0;
        background-color: transparent;
    }

    .cta:after {
        content: "";
        position: absolute;
        width: calc(50% - 180px);
        height: 100%;
        background-color: #301c45;
        left: 0;
        top: 0;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    }

    .cta {
        padding: 80px 0;
    }
}

@media(min-width: 1600px) {
    .cta-right {
        width: 1110px;
    }

    .cta-left {
        max-width: unset;
    }
}

.event-detail-banner .masterhead-banner-overlay-content {
    display: flex;
    flex-direction: column-reverse;
}

.masterhead-banner-overlay-image {
    aspect-ratio: 2 / 1.025;
    width: 60%;
    margin: -80px 0 25px 0;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 14px 24px rgba(255,255,255,0.2);
}

.masterhead-banner-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masterhead-banner-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*backdrop-filter: blur(10px);*/
    /*background: rgba(0,0,0,0.20);*/
}


@media(min-width: 1200px) {
    .event-detail-banner .masterhead-banner-overlay-content {
        padding-left: 565px;
    }
    .masterhead-banner-overlay-image {
        width: 535px;
        margin: 0;
        max-width: unset;
        position: absolute;
        left: 0;
        bottom: 20px;
    }
}

.breedcum ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.breedcum ul li {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    font-size: 12px;
    color: #686D73;
}

.breedcum ul li:after {
    content: "";
    width: 4px;
    position: absolute;
    height: 9px;
    background: url(../img/breedcum-arrow.svg) 0 0 no-repeat;
    background-size: 4px;
    opacity: 1;
    top: 50%;
    right: 0;
    transition: all ease 0.3s;
    transform: translate(0, -50%);
}

.breedcum ul li a {
    font-size: 12px;
    color: #686D73;
    text-decoration: none;

}

.breedcum ul li:last-child:after {
    display: none;
}

.breedcum ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    padding-right: 0;
    margin-right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.event-list-banner .masterhead-banner-overlay {
    background: #440a3d;
    
    position: relative;
    max-height: 235px;
}

@media only screen and (max-width: 600px) {
  .event-list-banner .masterhead-banner-overlay {
    background: #440a3d;
   
    position: relative;
    max-height: 120px;
}
}

.event-list-banner .masterhead-banner-overlay h1 {
    color: #14273E;
}

.masterhead-middle {
    width: 100%;
    max-width: 1390px;
   
    padding: 0 15px;
    height: auto;
    display: flex;
    align-items: flex-end;
}

.view-type {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.view-type ul {
    display: flex;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.17);
    overflow: hidden;
}

.view-type ul li a {
    width: 32px;
    height: 32px;
    background: #ffff;
    display: flex;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.view-type ul li.active a {
    background: #14273E;
    color: #fff;
}

.view-type ul li.active a img {
    filter: brightness(0) invert(1);
}




.event-card-list.list-view .item-card-slider-image {
    border-radius: 6px 0 0 6px;
    margin: 0;
    position: absolute;
    left: 0;
    width: 140px;
    height: 78px;
}

.list-view .item-card-slider-box {
    width: 100%;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    padding-left: 152px;
    height: 78px;
}

.list-view .item-card-slider-content {
    padding: 0 36px 0 0;
    width: 100%;
}

.list-view .item-card-slider-item {
    width: 100%;
    border-radius: 6px;
    margin: 0 0 15px 0;
    width: 100%;
}

.list-view .item-card-slider-item .btn {
    display: none;
}

.grid-view .item-card-slider-item .btn {
    display: none;
}

.event-card-list.list-view {
    margin: 0 0 50px;
    width: 100%;
}

.list-view .item-card-slider-box {
    position: relative;
}

.list-view .item-card-slider-box:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 13px;
    background: url(../img/black-right-arrow.svg) 0 0 no-repeat;
    background-size: 7px;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    display: block;
}

.pagination {
    margin-bottom: 25px;
    width: 100%;
    display: block;
}


.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination ul li {
    margin: 0 10px;
    padding: 0;
}

.pagination ul li a {
    width: 40px;
    height: 40px;
    background: #E2E2E2;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all ease 0.3s;
    color: #000000;
}

.pagination ul li:first-child a {
    border-radius: 5px 0 0 5px;
}  

.pagination ul li:last-child a {
    border-radius: 0 5px 5px 0;
}  

.event-list .event-card-list {
    margin-bottom: 25px;
    margin-top: 25px;
}

.pagination ul li a:hover,
.pagination ul li.active a {
    background-color: #14273E;
    color: #fff;
}

@media(min-width: 768px) {
    .breedcum ul li a,
    .breedcum ul li {
        font-size: 15px;
    }

    .breedcum ul li:after {
        width: 6px;
        height: 12px;
        background: url(../img/breedcum-arrow.svg) 0 0 no-repeat;
        background-size: 6px;
    }

    .masterhead-middle {
        width: 100%;
        max-width: 1390px;
      
        padding: 0 45px;
    }

    .list-view .item-card-slider-item .btn {
        display: block;
        position: absolute;
        right: 24px;
        top: 50%;
        font-size: 14px;
        padding: 9px 57px 10px 20px;
        transform: translate(0, -50%);
    }

    .list-view  .btn-primary:after {
        background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
        background-size: 50px;
        width: 50px;
        height: 40px;
        right: -3px;
    }

    .list-view .item-card-slider-content {
        padding: 0 180px 0 0;
    }

    .list-view .item-card-slider-box:after {
        bottom: unset;
        top: 50%;
        transform: translate(0, -50%);
    }

    .list-view .item-card-slider-box:before {
        display: none;
    }
}




@media(min-width: 1200px) {
    .breedcum ul li a,
    .breedcum ul li {
        font-size: 18px;
    }

    .view-type ul li a {
        width: 50px;
        height: 48px;
        padding: 15px;
    }
}


.event-card-side-form {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 9px 44px rgba(0,0,0,0.15);
}

.event-card-form-area {
    padding: 28px 16px 20px 16px;
    border-radius: 10px; 
}

.event-card-form-heading {
    padding: 13px 16px 14px;
    background: #000;
    border-radius: 10px 10px 0 0;
    color: #fff;
}

.event-card-form-heading h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.event-card-form-heading h4 span {
    font-size: 12px;
    display: block;
    font-weight: 400;
}

.event-card-form-col label {
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    display: block;
    margin-bottom: 5px;
}

.event-card-form-col input {
    padding: 11px 15px;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    font-size: 16px;
    color: #000;
    width: 100%;
}

.event-card-form-col input:focus {
    outline: none;
    border: 1px solid #00000038;
}

.event-card-form-col {
    margin-bottom: 16px;
}


.search-result .event-card-right {
    display: block;
    margin-top: 50px;
}

@media(min-width: 768px) {
    .event-card-form-col label {
        font-size: 16px;
    }
}

@media(min-width: 1200px) {
.search-result .event-card-right {
    margin-top: 0;
    width: 23%;
    max-width: 437px;
}

.search-result .event-card-left {
    width: 77%;
}

.event-card-side-form {
    margin-bottom: 30px;
}

.event-card-side-form .btn-tertiary {
    padding: 11px 81px 11px 24px !important;
}

.event-card-side-form .btn-tertiary:after {
    background-size: 69px;
    width: 60px;
    height: 50px;
}
}

.search-result .event-card-wrapper {
    padding: 0;
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
}
  .custom-select-wrapper select {
    display: none;
  }
  .custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
  }
    .custom-select-trigger {
        position: relative;
        display: block;
        width: 100%;
        padding: 10px 54px 10px 22px;
        font-size: 16px;
        font-weight: 300;
        color: #ADADAD;
        background: #fff; 
        border-radius: 6px;
        border: 1px solid #EAEAEA;
        cursor: pointer;
        overflow: hidden;
        text-transform: uppercase;
    }
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '\f078';
    width: 49px;
    height: 100%;
    top: 0;
    font-family: "Font Awesome 6 Free";
    right: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #fff;
    font-weight: 700;
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
    width: 49px;
    background: #14273E;
}

.custom-select.opened .custom-select-trigger:after {
    content: '\f077';
}

.custom-options {
    position: absolute;
    display: block;
    text-transform:uppercase;
    top: 100%; left: 0; right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #fff;
    transition: all .4s ease-in-out;    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    z-index: 1;
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    
}
.custom-options:before {
      position: absolute;
      display: block;
      content: '';
      bottom: 100%; right: 25px;
      width: 7px; height: 7px;
      margin-bottom: -4px;
      border-top: 1px solid #eeeeee;
      border-left: 1px solid #eeeeee;
      background: #fff;
      transform: rotate(45deg);
      transition: all .4s ease-in-out;
}
    .option-hover:before {
      background: #f9f9f9;
    }
.custom-option {
    position: relative;
    display: block;
    padding: 7px 16px;
    border-bottom: 1px solid #e9e9e9;
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
  background: #f9f9f9;
}


.event-detail-block {
    padding: 50px 0 0;
}

.event-detail-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 12px;
}

.event-detail-block h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 12px;
}


.event-detail-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 12px;
}


.event-detail-block p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #141414;
    padding-bottom: 20px;
}

.event-detail-block .social-link {
    width: 100% !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0 55px;
}

.event-detail-block .social-link ul {
    margin: 0 0 0 15px;
}

.event-detail-block .social-link  h3 {
    padding-bottom: 0;
    color: #141414;
    font-weight: 600;
    font-size: 20px !important;
}

.event-detail-image {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2 / 1.202;
}

.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.inner-event-detail .event-card-left {
    width: 100%;
    padding: 0;
}

.event-detail-info {
    background-color: #fff;
    border: 1px solid rgb(225, 227, 230);
    border-radius: 10px 10px 0 0;
}

.event-detail-info ul {
    padding: 0;
    margin: 0;
}

.event-detail-info ul li {
    padding: 12px 15px 12px 58px;
    position: relative;
    border-bottom: 1px solid #EDEDED;
    font-size: 14px;
}

.event-detail-info ul li:last-child {
    border-bottom: 1px solid transparent;
}

.event-detail-info ul li img {
    position: absolute;
    top: 12px;
    left: 25px;
}

.event-detail-form {
    padding: 35px 25px 22px;
    border-radius: 0 0 10px 10px;
    background: #221038;
}

.event-detail-form .custom-select-trigger {
    border: none;
    color: #262626;
    padding: 10px 54px 10px 20px
}

.event-detail-form .custom-select-trigger:after {
    background: #cc1eb7;
}

.event-card-form-col.number {
    position: relative;
    padding-right: 110px;
}

.event-card-form-col.number .minus,
.event-card-form-col.number .plus {
    width: 49px;
    height: 49px;
    background: #cc1eb7;
    display: flex;
    align-items: center;
    top: 0;
    position: absolute;
    font-size: 35px;
    color: #fff;
    top: 0;
    cursor: pointer;
    justify-content: center;
}

.event-card-form-col.number .minus:hover,
.event-card-form-col.number .plus:hover {
    background-color: #5e0e54;
}

.event-detail-form .btn-tertiary {
    padding: 11px 66px 11px 20px !important;
    font-size: 15px;
}

.event-detail-form .btn-tertiary:after {
    background: url(../img/btn-blue-arrow.svg) center center no-repeat;
    background-size: 62px;
    width: 62px;
    height: 47px;
}

.event-card-form-col.number .minus {
    right: 49px;
    border-radius: 6px 0 0 6px;
}

.event-card-form-col.number .plus {
    right: 0;
    border-radius: 0 6px 6px 0;
}

.event-detail-form-btn p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding: 0 0 0 30px;
}

.event-detail-form-btn p img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.event-detail-form-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-detail-form {
    margin-bottom: 25px;
}

.event-detail-left .social-link ul li a:hover {
    color: #2F97DF;
}
.event-detail-left .social-link ul li a {
    color: #616161;
}

@media(min-width: 768px) {
    .event-detail-block h3 {
        font-size: 20px;
    }

    .event-detail-block p {
        font-size: 18px;
        line-height: 28px;
    }

    .event-detail-block {
    padding: 44px 0 0;
}

.inner-event-detail-banner .masterhead-banner-overlay-wrapper {
    max-width: 80%;
}
}

@media(min-width: 1200px) {
    .event-detail-wrapper {
        display: flex;
    }

    .event-detail-left {
        width: 73%;
        padding-right: 55px;
    }

    .event-detail-right {
        width: 27%;
        margin-top: 0;
    }

    .event-detail-form {
        margin-bottom: 55px;
    }
}


.event-list-banner.confirm-banner .masterhead-banner-overlay {
    height: unset !important;
    max-height: unset !important;
    position: relative !important;
}

.confirm-banner .masterhead-banner-overlay-content {
    position: relative;
}

#countdown li {
    display: inline-block;
    font-size: 15px;
    list-style-type: none;
    text-align: center;
    padding: 1em;
    position: relative;
    text-transform: uppercase;
    width: 50%;
}

#countdown li:after {
    content: ":";
    position: absolute;
    right: -4px;
    font-size: 28px;
    color: #cfcfcf;
    top: 13px;
    /* transform: translate(0, -50%); */
    font-weight: 700;
    transform-origin: 0 0;
}

#countdown li:last-child:after {
    display: none;
}

#countdown li span {
    display: block;
    font-size: 28px;
    text-align: center;
    color: #303030;
    font-weight: 700;
}

#countdown ul {
    display: flex;
    justify-content: center;
    border-top: 1px solid #FFFFFF;
    margin: 25px 0 0;
    max-width: fit-content;
    padding: 0 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 44px rgba(0,0,0,0.25);
}

#countdown li strong {
    font-weight: 400;
    font-size: 11px;
}

#countdown li:before {
    content:"Min";
    position: relative;
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 11px;
    line-height: 11px;
}

#countdown li:last-child:before {
    content:"Sec";
}

.cbs-right {
    margin-top: 40px;
}

.confirm-book-section .event-detail-info {
    border-radius: 12px;
    box-shadow: 0 4px 44px rgba(0,0,0,0.24);
}

.confirm-book-section {
    padding: 50px 0;
}

.cbs-left-heading h3 {
    font-size: 18px;
    padding-bottom: 12px;
    font-weight: 700;
    color: #313538;
}

.cbs-left-heading .cta-input input {
    background: #f3f3f3;
    border: 1px solid #e3eaef;
    padding: 10px 166px 10px 20px;
    text-align: left !important;
}

.cbs-left-heading .cta-input .btn {
    right: 0;
    height: 100%;
    position: absolute;
    top: 0;
}

.cbs-left-heading .cta-input .btn-tertiary:after {
    background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
    background-size: 50px;
    width: 47px;
    height: 45px;
}

.cbs-left-heading .cta-input {
    padding: 0;
}

.cbs-right .event-card-form-col label {
    font-size: 14px;
    position: absolute;
    top: -13px;
    left: 17px;
    background-color: #fff;
    padding: 2px;
    color: #434d58;
    font-weight: 600;
}

.cbs-right .event-card-form-col {
    position: relative;
}

.event-detail-info ul li span {
    font-weight: 700;
    display: block;
}


.cbs-left .event-detail-info ul li {
    padding: 12px 15px 12px 22px;
}

.event-card-form-phone {
    display: flex;
}

.event-card-form-phone input:first-child {
    width: 80px;
    margin-right: 15px;
}


@media (min-width:768px) {
    #countdown li {
        font-size: 18px;
        height: 60px;
        padding: 20px 30px 20px 20px;
    }

    
    #countdown ul {
    padding: 0 30px 0 0px;
    }

    #countdown li:before {
    position: absolute;
    transform: rotate(-90deg);
    right: -30px;
    transform-origin: 0 0;
    bottom: -8px;
    display: inline-block;
    width: 54px;
    text-align: revert;
    transform-origin: 0 0;
}
    


    #countdown li:after {
        font-size: 50px;
        top: 15px;
        right: -11px;
    }

    .confirm-book-section {
        padding: 75px 0;
    }

    .cbs-left-heading .cta-input .btn {
        ight: 0;
        height: 42.8px;
        font-size: 15px;
    }

    .cbs-left-heading .btn-tertiary:after {
        background-size: 62px;
        height: 46px;
    }

    .cbs-left-heading .cta-input input {
        padding: 10px 116px 10px 20px;
    }

    .cbs-left-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-bottom: 20px;
    }

    .cbs-left-heading .cta-input {
        margin: 0;
        width: calc(100% - 250px);
    }

    .cbs-left-heading h3 {
        width: 250px;
    }

}


@media (min-width: 1200px){
    .confirm-banner .masterhead-banner-overlay h1 {
        font-size: 36px;
    }

    .confirm-banner .masterhead-banner-overlay-content {
        padding: 55px 25px 25px 0;
    }

    #countdown li:before {
        right: -33px;
    }
    
    #countdown li:after {
        right: -13px;
    }

    .confirm-book-section {
        padding: 90px 0;
        min-height: calc(100vh - 438px);
    }

    .cbs-right {
        width: 400px;
        margin-top: 0;
        position: sticky;
        top: 120px;
    }

    .cbs-left {
        width: calc(100% - 400px);
        margin-top: 0;
        padding-right: 55px;
    }

    .cbs-flex {
        display: flex;
        position: relative;
        align-items: flex-start;
    }

    .cbs-right .event-card-side-form {
        margin-bottom: 0;
    }

    .event-detail-info ul li span {
        width: 180px;
    }

    .cbs-left .event-detail-info ul li {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.page-footer-top ul {
    padding: 0;
    margin: 39px -15px 46px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(100% + 30px);
}

.page-footer-top ul li {
    display: inline-block;
    margin: 7px 15px;
}

.page-footer-top ul li a {
    font-size: 15px;
    color: #919fa5;
    transition: all ease 0.3s;
    font-weight: 500;
}

.page-footer-top ul li a:hover {
    color: #919fa5;
}

.accordion {
    overflow-anchor: none;
}

.accordion .accordion-toggle-btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px 10px 10px 30px;
    color: #000000;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.accordion .content {
    opacity: 0;
    padding: 0 1rem;
    max-height: 0;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    clear: both;
    transition: all 0.2s ease 0.15s;
}

.accordion .content.active {
    opacity: 1;
    height: auto;
    padding: 15px 25px;
    max-height: max-content;
    transition: all 0.35s ease 0.15s;
}

.accordion .accordion-toggle-btn::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    /* float: left; */
    left: 0;
    font-size: 1rem;
    color: #cc1eb7;
    padding: 5px;
    /* width: 30px; */
    /* height: 30px; */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
}

.accordion a.active::after {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
}

.accordion-item {
    border: none;
}

.accordion .content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.accordion .content ul li {
    position: relative;
    padding: 0 0 0 15px;
    font-size: 14px;
    margin: 0 0 9px 0;
}

.accordion .content ul li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50px;
    left: 0;
    top: 7px;
}

.inner-event-detail {
    padding: 50px 0;
}
@media (min-width: 1200px) {
    .accordion .accordion-toggle-btn {
        font-size: 20px;
    }
    
    .inner-event-detail {
        padding: 50px 0 100px 0;
        min-height: calc(100vh - 656px);
    }
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: DodgerBlue;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-btn-tertiary {
    width: 100%;
    padding: 12px 81px 10px 14px !important;
    font-size: 16px;
}

.contact-btn-tertiary:after {
    top: 0;
    background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
    background-size: 56px;
    width: 56px;
    height: 65px;
}

.city-location-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}

.city-location-title i {
    margin-right: 5px;
}

.item-card-slider-content-flex p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
} 


                   .ttr {
   font-size: 12px;opacity:0.5;
   display:block;
   color:#fff !important; 
   text-align:center;
  }
                      @media only screen and (max-width: 600px) {
  .ttr {
   font-size: 12px;opacity:0.5;
   display:none;
   color:#fff !important;
    text-align:center;
  }
}

.ttr1 {
   font-size: 12px;opacity:0.5;
   display:none;
   color:#fff !important;
    text-align:center;
  }
                      @media only screen and (max-width: 600px) {
  .ttr1 {
   font-size: 12px;opacity:0.5;
   display:block;
   color:#fff !important;
    text-align:center;
  }
}


.lgf{
    margin-left:41%;
}

 @media only screen and (max-width: 600px) {
  .lgf{
    margin-left:35%;
}

}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	/*background-color:#0F1D2D;*/
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;

  z-index:100;
}

.my-float{
	margin-top:12px;
	width:60%;
}
                  
  .tt {
    display:block;
  }
                         @media only screen and (max-width: 600px) {
  .tt {
    display:none;
  }
}

.event-card-list .item-card-slider-image {
    aspect-ratio: 2 / 2.4 !important;
    border-radius: 12px;
    margin: 0;
}

.event-card-list .item-card-slider-image img {
    width: 100%;
    heoght: 100%;
    object-fit: cover;
}
 
.event-card-left .item-card-slider-content {
    background-color: #fff;
    padding: 14px 0 0 0;
}

.event-card .item-card-slider-item:hover {
    background: #fff;
}



.event-card-wrapper {
    flex-wrap: wrap;
}

.event-card-left .item-card-slider-item {
    box-shadow: none;
}

.event-card .item-card-slider-item:hover .item-card-slider-content h3 {
    color: #1E1E1E !important;
}

.event-card .item-card-slider-item:hover .item-card-slider-content p {
    color: #5E5E5E !important;
}

.add-box-slider {
    width: 100%;
}

.js-event-card-slider .slick-slide {
    width: 170px;
    margin: 0 6px;
    height: auto;
}

.js-event-card-slider .slick-track {
    display: flex !important;
}

.js-event-card-slider .slick-slide>* {
    height: 100%;
}


.js-event-card-slider .item-card-slider-image {
    aspect-ratio: 2 / 3.01 !important;
    border-radius: 12px;
    margin: 0;
    position: relative;
    padding-bottom: 25px;
}

.js-event-card-slider {
    padding: 0 0 75px;
}

.item-card-slider-image p {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
    font-size: 13px;
    padding: 3px 12px;
    width: 100%;
}

.js-event-card-slider .item-card-slider-item {
    margin: 0;
}

.event-card-slider-wrapper {
    position: relative;
    width: 100%;
}

.event-card-slider-bottom-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.item-card-slider-item-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0;
    padding: 5px 10px;
    background-color: #ebebeb;
    border-radius: 5px;
}

.item-card-slider-item-bottom-content p {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.experience-item {
    width: calc(50% - 12px);
}

.experience-item-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2 / 1.45;
}

.experience-item-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event--homepage {
    padding: 30px 0 40px;
}

.inner-event-detail-banner {
    width: 100%;
    background-color: #440a3d;
    display: inline-block;
    margin: 60px 0 0 !important;
}

.inner-event-detail-banner .masterhead-banner-overlay {
    background: transparent;
    max-height: unset;
    margin: 0;
    height: unset;
}

.inner-event-detail-banner .masterhead-banner-overlay-content {
    padding: 25px 15px 25px 0;
}



.inner-event-detail-banner .masterhead-banner-overlay h1 {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inner-event-detail-banner .breedcum ul li a,
.inner-event-detail-banner .breedcum ul li {
    color: #fff;
}

.event-card .item-card-slider-item:hover {
    background: transparent !important;
}

.event-detail-form-btn .btn-primary {
    font-size: 15px;
}

.event-detail-form-btn .btn-primary:after {
    background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
    background-size: 52px;
    width: 45px;
    height: 47px;
}



.event-detail-form-btn .btn-primary:disabled,
.event-detail-form-btn .btn-primary.disabled {
    background: #cc1eb7;
    color: #fff;
    opacity: 0.8;
}


.event-detail-info h4 {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    padding: 20px 25px 10px;
    border-bottom: 1px solid #EDEDED;
}

@media(min-width: 768px) {
    .js-event-card-slider .slick-slide {
        width: 190px;
        margin: 0 10px;
    }

    .item-card-slider-content h3 {
        font-size: 16px;
    }

    .item-card-slider-content p {
        font-size: 14px;
    }

    .event-card-wrapper {
        padding: 0 45px;
    }

    .js-event-card-slider {
        padding: 0 0 65px;
        margin: 0 -45px 0 0;
        overflow: unset;
    }

    .event-card-slider-bottom-content {
        bottom: unset;
        top: -92px;
        text-align: right;
    }

    .js-event-card-slider .slick-arrow {
        bottom: unset;
        top: 32%;
        transform: translate(0, -50%);
    }

    .js-event-card-slider .slick-prev {
        margin-left: -20px;
    }

    .js-event-card-slider .slick-next {
        margin-right: 45px;
    }

    .experience-item {
        width: calc(33.333% - 32px);
    }

    .experience-list {
        gap: 32px;
    }
    
    .inner-event-detail-banner .masterhead-banner-overlay-content {
        padding: 35px 25px 35px 0;
    }
}

@media(min-width: 993px) {
    .inner-event-detail-banner {
        margin: 100px 0 0 !important;
    }

    .inner-event-detail-banner .masterhead-banner-overlay-content {
        padding: 35px 0 35px 0;
        position: relative;
    }

    .inner-event-detail-banner .masterhead-middle {
        height: auto;
    }

    .inner-event-detail-banner .masterhead-banner-overlay {
        height: auto;
    }

    .inner-event-detail-banner .masterhead-banner-overlay h1 {
        -webkit-line-clamp: 1;
    }
}
@media(min-width: 1200px) {
    .js-event-card-slider {
        margin: 0;
    }

    .item-card-slider-item-bottom-content p {
        font-size: 15px;
    }

    .js-event-card-slider .slick-slide {
        margin: 0 16px;
    }
    
    .js-event-card-slider .slick-next {
        margin-right: -31px;
    }

    .js-event-card-slider .slick-prev {
        margin-left: -31px;
    }

    .event-card .item-card-slider-item:hover .item-card-slider-item-bottom-content p {
        color: #000 !important;
    }

    .event-card .item-card-slider-item:hover .item-card-slider-item-bottom-content p:last-child {
        color: #000 !important;
    }

    .experiences-area .heading {
        padding-top: 0;
    }

    .event--homepage .event-card-left {
        width: 72%;
        padding-right: 27px;
    }

    .event--homepage .event-card-right {
        width: 28%;
    }

    .event--homepage {
        padding: 90px 45px;
    }

    .event-detail-form-btn .btn-primary {
        font-size: 16px;
    }

    .event-detail-form-btn .btn-primary:after {
        background: url(../img/btn-blue-arrow.svg) 0 0 no-repeat;
        background-size: unset;
        width: 57px;
        height: 50px;
    }
}
@media(max-width: 767px) {
    #countdown ul {
        min-width: 140px !important;
        padding: 0 10px !important;
    }

    #countdown li span {
        font-size: 18px !important;
    }
}


.cbs--single-form .cbs-left {
    width: 100%;
}

.cbs--single-form {
    margin-top: 40px;
}

.cbs--single-form .event-price-right {
    margin: 30px auto 0;
    display: table;
}

.on-group {
    display: flex;
    align-items: center;
    margin: 15px 0 0;
}

.on-group .event-card-plus-minus {
    margin: 0 15px !important;
}


@media(min-width: 768px) {
.event-detail-info-title {
    width: 75% !important;
}

.cbs--single-form .cbs-left .event-detail-info ul li {
        align-items: center !important;
    }
}

@media(min-width: 1200px) {
    .cbs--single-form .cbs-left {
        padding-right: 0;
        max-width: 785px;
        margin: 0 auto;
    }

    .event-detail-info .event-card-plus-minus {
    margin: 0 15px;
}

.on-group {
    margin: 0;
}
}