/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');



/*====================
2. Theme variables
======================*/

:root {
    --body-font: 'poppins', sans-serif;
    --heading-font: "Poppins", sans-serif;
    --theme-color: #a43205;
    --theme-color2: #debf42;
    --theme-bg-light: #F8F9FE;
    --color-dark: #01054C;
    --color-gray: #F6F6F6;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --hero-overlay: rgb(5, 3, 17);
    --slider-arrow-bg: rgba(140, 82, 255, .2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #01103B;
    --footer-bg2: #00134C;
    --footer-text-color: #F5FAFF;
    --theme-gradient: #cb5c36;
}



/*====================
3. General css
======================*/

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

/* 
.home-2 .navbar.fixed-top .nav-item .nav-link {
    font-family: "Poppins", sans-serif !important;
} */

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #545860;
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

    a,
    a:active,
    a:focus,
    a:hover {
        outline: none;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        text-decoration: none;
    }

        a:hover {
            color: #c12b11;
            ;
        }

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

#imgLogo {
    max-width: 78%;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #636161;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

body {
    font-family: "Mulish", sans-serif !important;
}

.nav-tabs .nav-link {
    font-family: "Marcellus", serif !important;
}

.site-title {
    font-family: "Mulish", sans-serif !important;
}

.nav-tabs .nav-link {
    border: none;
}

/*====================
4. Preloader
======================*/

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .loader-ripple div {
        position: absolute;
        border: 4px solid var(--theme-color);
        opacity: 1;
        border-radius: 50%;
        animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .loader-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}




/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
    z-index: 1;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background: var(--theme-bg-light);
}



/*====================
6. Margin & padding
======================*/

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 50px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.py-80 {
    padding: 80px 0;
}

.py-90 {
    padding: 60px 0;
}

.py-100 {
    padding: 60px 0;
}

.py-110 {
    padding: 110px 0;
}

.py-120 {
    padding: 120px 0;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.my-80 {
    margin: 80px 0;
}

.my-90 {
    margin: 90px 0;
}

.my-100 {
    margin: 100px 0;
}

.my-110 {
    margin: 110px 0;
}

.my-120 {
    margin: 120px 0;
}



/*====================
7. Site title css
======================*/

.site-heading {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    display: block;
    font-family: var(--heading-font2);
    text-transform: uppercase;
    /* letter-spacing: 4px; */
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 8px;
    position: relative;
}

    .site-title-tagline i {
        line-height: 0;
        font-size: 21px;
    }

.site-title {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 34px;
    color: var(--color-dark);
    margin-bottom: 0;
}

    .site-title span {
        color: var(--theme-color);
        font-weight: 500;
    }

.site-heading p {
    margin-top: 15px;
    color: #000;
}

.text-center {
    text-align: center;
}

.site-shadow-text {
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 0;
    font-size: 100px;
    font-family: var(--heading-font2);
    font-weight: bold;
    color: var(--color-gray);
    text-transform: uppercase;
    z-index: -1;
}

.heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--theme-color);
    width: 90px;
    height: 4px;
}

    .heading-divider:after {
        content: '';
        position: absolute;
        left: 0;
        top: -1px;
        height: 6px;
        width: 15px;
        border-radius: 0px;
        background-color: var(--color-white);
        -webkit-animation: heading-move 5s infinite linear;
        animation: heading-move 5s infinite linear;
    }

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(75px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(75px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@media all and (max-width: 991px) {
    .site-shadow-text {
        line-height: 1;
        top: -70px !important;
    }
}

@media all and (max-width: 767px) {
    .site-shadow-text {
        font-size: 65px !important;
        top: -40px !important;
    }
    
}




/*====================
8. Theme button
======================*/

.theme-btn {
    width: max-content;
    font-size: 16px;
    color: var(--color-white);
    padding: 6px 24px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: 1px solid #ecf1f6 !important;
    background: var(--theme-gradient);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

    .theme-btn::before {
        content: "";
        height: 300px;
        width: 300px;
        background: var(--theme-color2);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .theme-btn:hover {
        color: var(--color-white);
    }

        .theme-btn:hover::before {
            transform: translateY(-50%) translateX(-50%) scale(1);
        }





    .theme-btn i {
        margin-left: 10px;
        transform: rotate(-35deg);
        transition: var(--transition2);
    }

    .theme-btn:hover i {
        transform: rotate(0);
    }

    .theme-btn span {
        margin-right: 5px;
    }

.theme-btn2 {
    background: var(--color-white);
    color: var(--theme-color);
}

    .theme-btn2::before {
        background: var(--theme-color);
    }

    .theme-btn2:hover {
        color: var(--color-white);
    }

.theme-btn-2 {
    background: #cb5c36a6 !important;
}



.theme-btn2 {
    width: max-content;
    font-size: 14px;
    color: var(--color-white);
    padding: 6px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: 1px solid #ffffff !important;
    background: var(--theme-gradient);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

    .theme-btn2::before {
        content: "";
        height: 300px;
        width: 300px;
        background: var(--theme-color2) !important;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .theme-btn2:hover {
        color: var(--color-white);
    }

        .theme-btn2:hover::before {
            transform: translateY(-50%) translateX(-50%) scale(1);
        }
/*====================
9. Container
======================*/

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1420px;
    }
}



/*====================
10. Scroll top css
======================*/

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

    #scroll-top i {
        transform: rotate(-35deg);
        transition: var(--transition2);
    }

    #scroll-top:hover i {
        transform: rotate(0);
    }

    #scroll-top.active {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }


@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top.active {
        bottom: 100px;
    }
}



/*====================
11. Header
======================*/
.header {
    background: var(--theme-gradient);
}




/*====================
12. Header top css
======================*/

.header-top {
    position: relative;
    z-index: 0;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* gap: 50px; */
}

.header-top-contact a {
    color: var(--color-white);
    font-weight: 500;
}

    .header-top-contact a i {
        color: var(--color-white);
    }

.header-top-middle {
    text-align: center;
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 15px;
}

.header-top-link a {
    color: var(--color-white);
    margin-right: 12px;
}

    .header-top-link a:hover {
        color: var(--theme-color);
    }

.header-top-social span {
    color: var(--color-white);
}

.header-top-social a {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    margin-left: 14px;
    transition: var(--transition);
}

    .header-top-social a:hover {
        color: var(--theme-color2);
    }

.header-top-lang .top-lang {
    color: var(--color-white);
}

.header-top-lang .dropdown-menu {
    min-width: 60px;
    border-radius: 15px;
    padding: 10px;
    border: none;
    box-shadow: var(--box-shadow);
}

.header-top-lang .dropdown-item {
    color: var(--color-dark);
    border-radius: 10px;
}

    .header-top-lang .dropdown-item:hover {
        background: var(--theme-color);
        color: var(--color-white);
    }

@media all and (max-width: 1199px) {
    .header-top-contact li:first-child {
        display: none;
    }
}

@media all and (max-width: 991px) {
    .header-top {
        padding-top: 12px;
    }

    .header-top-contact ul,
    .header-top-right {
        /*justify-content: center;*/
    }
}



/*====================
13. Navbar css
======================*/

.navbar {
    background: #ffffff;
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 4;
    position: relative;
}

    .navbar::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100% - 200px);
        height: 100%;
        background: var(--color-white);
    }

    .navbar.fixed-top {
        position: fixed;
        background: var(--color-white);
        box-shadow: var(--box-shadow2);
        /* animation: slide-down 0.7s;  */
    }


@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand {
    margin-right: 0;
}

/* .navbar-brand img {
  width: 170px;
} */

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

.bg-image {
    background-image: url(../img/inner-images/bg-new.png);
}

.bg-color-table {
    background-color: #ffffff !important;
    border-radius: 11px !important;
    padding: 20px 20px;
    transition: .5s !important;
    -webkit-box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e6e6e6;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
    margin-bottom: 0px !important;
}

.table__head {
    color: #fff;
    font-weight: 700;
    background: #284d0b;
    white-space: nowrap;
}

/* .winner__table {
  white-space: nowrap;
} */
.table-bordered td,
.table-bordered th {
    border: 1px solid #e6e6e6;
}

/* .winner__table {
  white-space: nowrap;
} */
.convention-heading p {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    padding-bottom: 6px;
}

.ptb-30 {
    padding: 30px 0 0;
}

.convention-heading {
    display: flex;
    
}

.table-bordered tbody tr.winner__table td {
    font-size: 14px !important;
}

.table > :not(caption) > * > * {
    padding: 0px 10px !important;
}

.convention-heading .view-details-btn {
    margin-left: 20px;
}

.view-details-btn .btn {
    background-color: #ca3900;
    border: none;
    padding: 6px 16px;
    font-size: 16px;
    border-radius: 8px;
}
.hall-details-pdf {
    background: #e3f1f8d9;
    border-radius: 10px;
    padding: 24px;
}

/* .bg-color-table p {
  font-size: 16px;
} */
@media all and (max-width: 1199px) {
    .navbar::before {
        width: 93%;
    }

    .nav-right {
        margin-left: 25px !important;
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .navbar .nav-right-btn {
        display: none;
    }
}

@media screen and (max-width:992px) {

    .offcanvas.show:not(.hiding),
    .offcanvas.showing {
        transform: none;
        background-color: #fff !important;
    }

    .navbar .nav-item .nav-link {
        color: #000000 !important;
        font-weight: 400 !important;
        margin-right: 0px;
        transition: var(--transition);
    }
}

.btn-close {
    background-image: url(../img/inner-images/close.png) !important;
}

.btn-close-white {
    filter: unset !important;
}

.offcanvas {
    transition: unset !important;
}

@media all and (min-width: 992px) {
    .ptb-60 {
        padding: 30px 0;
    }

    .navbar .nav-item .nav-link {
        margin-right: 16px;
        padding: 25px 0 25px 0;
        font-size: 13px;
        font-weight: 500;
        color: #000;
        text-transform: capitalize;
    }

    .header-top-right {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        /* display: block; */
        padding: 10px;
        margin-top: 0;
        left: -40px;
        border-radius: 10px;
        border: none;
        background: var(--color-white);
        width: 260px;
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2);
    }

        .navbar .nav-item .dropdown-menu .dropdown-item {
            font-size: 14px;
            padding: 6px 15px;
            font-weight: 500;
            color: var(--color-dark);
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            text-transform: capitalize;
            transition: var(--transition2);
            z-index: 1;
        }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover {
                background: var(--theme-color);
                color: var(--color-white);
                padding-left: 32px;
            }

            .navbar .nav-item .dropdown-menu .dropdown-item::before {
                content: "//";
                position: absolute;
                left: 15px;
                top: 6px;
                color: var(--color-white);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: -1;
            }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
                opacity: 1;
                visibility: visible;
            }

    .navbar .nav-item .nav-link {
        position: relative;
    }

        .navbar .nav-item .nav-link::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 20px;
            width: 0;
            height: 2px;
            border-radius: 50px;
            transition: var(--transition2);
        }

        .navbar .nav-item .nav-link.active::before,
        .navbar .nav-item:hover .nav-link::before {
            background: var(--theme-gradient);
            width: 40%;
        }

    .navbar.fixed-top .nav-item .nav-link.active::before,
    .navbar.fixed-top .nav-item:hover .nav-link::before {
        background: var(--color-white);
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .navbar #main_nav {
        justify-content: end;
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        margin-left: 45px;
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        transition: var(--transition);
    }

        .nav-right-link:hover {
            color: var(--theme-color) !important;
        }

    .nav-right .search-btn .nav-right-link {
        border: none;
        background: transparent;
        color: var(--color-dark);
        font-size: 28px;
        padding-right: 0;
    }

    .nav-right .sidebar-btn .nav-right-link {
        background: var(--theme-color);
        width: 65px;
        height: 61px;
        color: var(--color-white) !important;
        font-size: 25px;
        border: none;
    }

        .nav-right .sidebar-btn .nav-right-link:hover {
            background: var(--theme-color2);
        }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
        padding: 0;
    }
}


/* mobile menu */
.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        position: absolute;
        width: 100%;
        height: auto;
        background: var(--color-white);
    }

        .navbar::before {
            display: none;
        }

    .navbar-brand img {
        width: 130px;
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        margin-bottom: 10px;
        background-color: var(--theme-bg-light);
        border-radius: 15px;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px;
    }


    .navbar .nav-item .nav-link {
        color: #e6dede;
        font-weight: 500;
        margin-right: 0px;
        transition: var(--transition);
    }


        .navbar .nav-item .nav-link:hover {
            color: var(--theme-color) !important;
        }

    .mobile-menu-right {
        margin: 0 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

        .mobile-menu-right .nav-right-link {
            background: transparent;
            border: none;
            font-size: 20px;
            color: var(--color-dark);
        }

            .mobile-menu-right .nav-right-link:hover {
                color: var(--theme-color);
            }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-dark);
        font-weight: 500;
    }

    .navbar .dropdown-menu {
        border-radius: 15px;
        border: none;
    }

    .nav-right {
        display: none;
    }
}


/*============================
14. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

    .navbar .nav-item .dropdown-submenu .dropdown-menu::before {
        display: none;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 15px;
        top: 8px;
        font-weight: 600;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        background: transparent;
        color: var(--color-white);
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        top: 120%;
        left: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

@media all and (max-width: 991px) {
    .checkhallavailability{
        padding-top: 84px !important; 
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--color-dark);
        font-size: 14px !important;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 3px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color);
    }
}



/* ======================
15. Search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, .8);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50px;
    text-align: center;
    background: var(--theme-color);
    text-align: center;
    width: 50px;
    height: 50px;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

    .search-popup .form-group input[type="text"],
    .search-popup .form-group input[type="search"] {
        position: relative;
        width: 100%;
        height: 60px;
        outline: none;
        border-radius: 50px;
        border: none;
        padding: 0 70px 0 35px;
        transition: all 500ms ease;
        text-transform: capitalize;
    }

    .search-popup .form-group input[type="submit"],
    .search-popup .form-group button {
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 50px;
        background: var(--theme-color);
        text-align: center;
        font-size: 20px;
        color: var(--color-white) !important;
        height: 50px;
        width: 50px;
        border: none;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .search-popup .form-group input[type="submit"]:hover,
        .search-popup .form-group button:hover {
            background: var(--theme-color);
        }

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: var(--color-dark);
}



/*====================
16. Sidebar popup css 
======================*/

.sidebar-popup {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

    .sidebar-popup.open {
        visibility: visible;
        opacity: 1;
    }

.sidebar-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    background: var(--color-white);
    visibility: hidden;
    opacity: 0;
    padding: 40px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 9999;
}

    .sidebar-wrapper.open {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

.sidebar-content {
    position: relative;
    overflow-y: auto;
    height: calc(100vh - 75px);
}

.close-sidebar-popup {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 38px;
    height: 38px;
    line-height: 36px;
    border-radius: 50px;
    text-align: center;
    border: none;
    font-size: 20px;
    background: var(--theme-color);
    color: var(--color-white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

    .close-sidebar-popup:hover {
        background: var(--theme-color2);
    }

    .close-sidebar-popup i {
        transition: var(--transition2);
    }

    .close-sidebar-popup:hover i {
        transform: rotate(180deg);
    }

.sidebar-logo img {
    width: 150px;
}

.sidebar-about {
    margin-top: 40px;
}

    .sidebar-about h4 {
        margin-bottom: 10px;
    }

.sidebar-contact {
    margin-top: 20px;
}

    .sidebar-contact h4 {
        margin-bottom: 15px;
    }

    .sidebar-contact li {
        margin: 10px 0;
    }

        .sidebar-contact li i {
            margin-right: 5px;
            color: var(--theme-color);
        }

        .sidebar-contact li a:hover {
            color: var(--theme-color);
        }

.sidebar-social {
    margin-top: 25px;
}

    .sidebar-social h4 {
        margin-bottom: 20px;
    }

    .sidebar-social a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50px;
        margin-right: 8px;
        background: var(--theme-color);
        color: var(--color-white);
        box-shadow: var(--box-shadow);
    }

        .sidebar-social a:hover {
            background: var(--theme-color2);
        }



/*====================
17. Main section css 
======================*/

/* .main {
  margin-top: -2.5rem;
} */

@media all and (max-width: 991px) {
    .main {
        margin-top: 0rem;
    }
}



/*====================
18. Hero css 
======================*/

.hero-section {
    position: relative;
}

.hero-scroll-box {
    position: absolute;
    left: 55px;
    bottom: 50px;
    z-index: 2;
}

.hero-scroll {
    width: 30px;
    height: 60px;
    border: 3px solid var(--color-white);
    border-radius: 15px;
    position: relative;
}

    .hero-scroll .scroller {
        width: 16px;
        border-radius: 8px;
        background-color: var(--color-white);
        position: absolute;
        top: 4px;
        left: 4px;
        bottom: 34px;
        animation: scroller 1500ms ease-out infinite;
    }

@keyframes scroller {
    0% {
        bottom: 34px;
    }

    5% {
        top: 4px;
    }

    32% {
        bottom: 4px;
    }

    66% {
        top: 34px;
        bottom: 4px;
    }

    100% {
        top: 4px;
        bottom: 34px;
    }
}

.hero-single {
    padding-top: 150px;
    padding-bottom: 160px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .hero-single::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: -0.5px;
        top: 0;
        background: var(--hero-overlay);
        opacity: 0.7;
        z-index: -1;
    }

    .hero-single .hero-content {
        height: 100%;
    }

.hero-date {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .hero-date h1 {
        color: var(--theme-color);
        font-size: 90px;
        font-weight: 700;
    }

    .hero-date .date-content span {
        color: var(--color-white);
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .hero-date .date-content p {
        color: var(--color-white);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.hero-single .hero-content .hero-title {
    color: var(--color-white);
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0;
    text-transform: uppercase;
}

    .hero-single .hero-content .hero-title span {
        color: var(--theme-color);
        font-weight: 500;
    }

.hero-single .hero-content .hero-sub-title {
    display: inline-block;
    color: var(--theme-color);
    font-size: 25px;
    letter-spacing: 6px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.hero-single .hero-content p {
    color: var(--color-white);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
    gap: 1rem;
    display: flex;
    margin-top: 35px;
    justify-content: start;
}

.hero-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

    .hero-slider.owl-theme .owl-nav [class*=owl-] {
        color: var(--color-white);
        font-size: 25px;
        margin: 0;
        padding: 0;
        background: var(--slider-arrow-bg);
        display: inline-block;
        cursor: pointer;
        height: 55px;
        width: 55px;
        line-height: 55px;
        border-radius: 50px;
        text-align: center;
        transition: var(--transition);
    }

        .hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
            background: var(--color-white);
            color: var(--theme-color);
        }

    .hero-slider.owl-theme .owl-nav .owl-prev {
        left: 40px;
    }

    .hero-slider.owl-theme .owl-nav .owl-next {
        right: 40px;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }

.hero-slider.owl-theme .owl-dots {
    position: absolute;
    text-align: center;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

    .hero-slider.owl-theme .owl-dots .owl-dot span {
        background: var(--color-white);
        margin: 5px;
        border-radius: 10px;
        width: 15px;
        height: 15px;
        display: inline-block;
        transition: var(--transition);
    }

    .hero-slider.owl-theme .owl-dots .owl-dot.active span {
        background-color: var(--theme-color);
    }

@media all and (max-width: 1199px) {
    .navbar.fixed-header {
        animation:unset !important;
    }
    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 70px !important;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev {
        left: unset;
        right: 120px;
    }

    .hero-slider.owl-theme .owl-nav .owl-next {
        right: 40px;
    }
}

@media all and (max-width: 991px) {
    .hero-single .hero-content .hero-title {
        font-size: 45px;
    }

    .hero-scroll-box {
        left: 20px;
        bottom: 80px;
    }
}

@media all and (max-width: 767px) {
    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }

    .hero-single .hero-content .hero-btn {
        gap: 1rem;
    }
}



/*===================
19. Play btn
=====================*/

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: var(--theme-color);
    color: var(--color-white) !important;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

    .play-btn i::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: var(--theme-color);
        border-radius: 50px;
        animation: ripple-wave 1s linear infinite;
        -webkit-transform: scale(1);
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

@keyframes ripple-wave {
    0% {
        opacity: 0.8;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}



/*======================
20. Event countdown css
========================*/

.event-countdown {
    position: relative;
}

    .event-countdown .time-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .event-countdown .time {
        border-radius: 15px;
        padding: 14px 10px;
        text-align: center;
    }

        .event-countdown .time span {
            display: block;
        }

            .event-countdown .time span:first-child {
                color: var(--color-white);
                font-weight: 700;
                font-size: 38px;
                line-height: 1;
            }

        .event-countdown .time .unit {
            color: var(--color-white);
            font-weight: 500;
        }

    .event-countdown .divider {
        display: none;
    }

    /* event-countdown 1 */
    .event-countdown.ec-1 {
        background: var(--theme-gradient);
        width: fit-content;
        margin-left: auto;
        margin-top: -135px;
        position: relative;
        padding: 20px 70px 20px 20px;
        z-index: 1;
    }

        .event-countdown.ec-1 .event-countdown-text {
            position: absolute;
            right: 0;
            top: 0;
            background: var(--color-white);
            width: 50px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .event-countdown.ec-1 .event-countdown-text span {
                writing-mode: vertical-lr;
                color: var(--theme-color2);
                text-transform: uppercase;
                font-weight: bold;
                letter-spacing: 1px;
            }

    /* event-countdown 2 */
    .event-countdown.ec-2 {
        background: var(--theme-bg-light);
    }

        .event-countdown.ec-2 .time-wrap .time span:first-child {
            font-size: 75px;
            color: var(--theme-color2);
        }

        .event-countdown.ec-2 .time-wrap .time .unit {
            color: var(--theme-color);
            font-size: 25px;
        }

        .event-countdown.ec-2 .time-wrap .divider {
            display: block;
            color: var(--color-dark);
            font-size: 70px;
        }


@media all and (max-width: 991px) {
    .event-countdown.ec-1 {
        margin-top: 0px;
    }
}

@media all and (max-width: 767px) {
    .event-countdown .time span:first-child {
        font-size: 22px;
    }

    .event-countdown.ec-1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .event-countdown .time-wrap {
        gap: 10px;
    }
}



/* ===================
21. About css 
====================== */

.about-area {
    position: relative;
    display: block;
}

.about-left {
    position: relative;
    display: block;
    /* margin-right: 30px; */
}

.about-img {
    position: relative;
}

    .about-img img {
        border-radius: 8%;
        border: 10px solid var(--color-white);
        box-shadow: var(--box-shadow);
    }

    .about-img .img-2 {
        position: absolute;
        right: -50px;
        bottom: -50px;
        width: 280px;
        box-shadow: none;
        height: 214px;
    }

    .about-img .img-3 {
        position: absolute;
        right: -30px;
        top: -30px;
        width: 200px;
        box-shadow: none;
    }

.about-right {
    position: relative;
    display: block;
    padding-left: 30px;
}

.about-experience {
    background: var(--theme-gradient);
    box-shadow: var(--box-shadow);
    position: absolute;
    left: -30px;
    bottom: 80px;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

    .about-experience h5 {
        color: var(--color-white);
        font-size: 20px;
    }

    .about-experience span {
        color: var(--color-white);
        font-size: 70px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
        display: inline-block;
    }

.about-list-wrap {
    position: relative;
    display: block;
    margin-top: 25px;
    margin-bottom: 35px;
}

.about-list {
    position: relative;
    display: block;
}

    .about-list li {
        position: relative;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border-info-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

        .about-list li:last-child {
            border-bottom: none;
        }

        .about-list li .icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .about-list li .icon i {
                font-size: 50px;
                color: var(--theme-color);
            }

            .about-list li .icon img {
                width: 50px;
            }

        .about-list li .about-item h4 span {
            color: var(--theme-color);
            margin-right: 10px;
        }

        .about-list li .about-item p {
            margin-top: 5px;
        }

.venueservices {
    font-size: 30px;
    padding-bottom: 16px;
}

@media all and (max-width: 991px) {
    .about-right {
        /* margin-top: 90px; */
    }
}

@media all and (max-width: 767px) {
    .about-right {
        padding-left: 0;
    }

    .about-title {
        font-size: 30px;
    }

    .about-left {
        margin-right: 0;
    }

    .about-left-content {
        bottom: -70px;
    }

    .about-img {
        width: 100%;
    }

    .about-experience {
        left: -7px;
        padding: 20px 10px;
    }

    .about-img .img-3 {
        width: 140px;
    }

    .about-img .img-2 {
        width: 150px;
        right: -10px;
    }
}



/*====================
22. Feature css 
======================*/

.feature-area {
    position: relative;
}

    .feature-area.fa-negative {
        /* margin-top: -120px; */
    }

.feature-item {
    padding: 25px 25px;
    text-align: center;
    position: relative;
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1;
    height: 100%;
}

    .feature-item:hover {
        transform: translateY(-10px);
    }

    .feature-item .count {
        font-size: 120px;
        font-weight: 800;
        -webkit-text-stroke: 2px var(--theme-color);
        -webkit-text-fill-color: transparent;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: .15;
        z-index: -1;
    }

.feature-icon {
    margin-bottom: 20px;
    transition: var(--transition);
}

    .feature-icon img {
        width: 70px;
    }

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}



/* ===================
23. Schedule css 
====================== */

.schedule-area {
    position: relative;
}

.schedule-nav {
    /* border-bottom: 1px solid var(--border-info-color); */
    padding-bottom: 35px;
    /* margin-bottom: 35px; */
}

    .schedule-nav .nav {
        background: var(--color-white);
        border-radius: 15px;
        width: fit-content;
        box-shadow: var(--box-shadow);
        margin: 0 auto;
        padding: 10px;
        gap: 10px;
    }

    .schedule-nav .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 5px 15px;
        color: var(--color-dark);
        border-radius: 10px;
    }

    .schedule-nav .nav-pills .nav-link.active {
        background: var(--theme-gradient);
    }

    .schedule-nav .nav-link .icon {
        font-size: 20px;
        color: var(--theme-color);
    }

    .schedule-nav .nav-pills .nav-link.active .icon {
        color: var(--color-white);
    }

    .schedule-nav .nav-link .content span {
        display: block;
        text-align: left;
        line-height: 1;
    }

    .schedule-nav .nav-link .content .day {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .schedule-nav .nav-link .content .date {
        font-weight: 500;
    }

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
 
.schedule-item::before {
  content: "";
  position: absolute;
  border-left: 3px dashed var(--theme-color2);
  left: 35px;
  top: 50%;
  height: 100%;
  z-index: -1;
    }
   
.col-lg-10.m-auto.mb-3:last-child .schedule-item::before {
    border-left: none !important;
}

    .schedule-item.last::before {
        display: none;
    }

.schedule-count {
    width: 70px;
    height: 70px;
    line-height: 68px;
    background: var(--theme-gradient);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--color-white);
    box-shadow: var(--box-shadow);
}

.schedule-content-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    background: var(--color-white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.schedule-img {
    overflow: hidden;
    border-radius: 15px;
    display:none;
}

    .schedule-img img {
        width: 280px;
        border-radius: 15px;
    }

.schedule-item:hover .schedule-img img {
    transform: scale(1.1);
}

.schedule-content {
    flex: 1;
}

.schedule-meta {
    margin-bottom: 4px;
}

    .schedule-meta ul {
        display: flex;
        gap: 20px;
    }

        .schedule-meta ul li {
            color: var(--theme-color);
            font-weight: 500;
        }

            .schedule-meta ul li i {
                color: var(--theme-color);
                padding-right: 10px;
            }

.schedule-info h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.speaker-info h6 {
    font-weight: 400 !important;
}

.schedule-info h4 a {
    color: var(--color-dark);
}

    .schedule-info h4 a:hover {
        color: var(--theme-color);
    }

.schedule-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-info-color);
}

.schedule-speaker {
    display: flex;
    gap: 20px;
}

    .schedule-speaker .speaker-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .schedule-speaker .speaker-img {
        position: relative;
    }

        .schedule-speaker .speaker-img img {
            width: 50px;
            border-radius: 50px;
        }

    .schedule-speaker .speaker-img-icon {
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 22px;
        height: 22px;
        line-height: 20px;
        font-size: 14px;
        color: var(--color-white);
        background: var(--theme-color);
        border: 2px solid var(--color-white);
        border-radius: 50px;
        text-align: center;
    }

/* schedule-area2 */
.schedule-area2 .schedule-nav .nav {
    border-radius: 50px;
}

.schedule-area2 .schedule-nav .nav-pills .nav-link {
    padding: 8px 30px;
}

    .schedule-area2 .schedule-nav .nav-pills .nav-link.active {
        border-radius: 50px;
    }

.schedule-area2 .schedule-item::before {
    display: none;
}

.schedule-area2 .schedule-count {
    color: var(--color-dark);
    background: transparent;
    width: unset;
    height: unset;
    line-height: unset;
    box-shadow: none;
    line-height: 1;
    font-weight: 800;
    color: var(--theme-color);
}

    .schedule-area2 .schedule-count span {
        display: block;
        line-height: 1;
        font-weight: 500;
        font-size: 20px;
        text-transform: uppercase;
        margin-top: 5px;
        color: var(--color-dark);
    }

.schedule-area2 .schedule-bottom {
    border-top: none;
    margin: 0;
    padding: 0;
}

.schedule-area2 .schedule-img img {
    width: 180px;
}

.schedule-area2 .schedule-content {
    /* border-right: 1px solid var(--border-info-color); */
    padding-right: 20px;
}

.schedule-speaker .speaker-item {
    width: 50%;
}



.schedule-speaker .speaker-item {
    align-items: baseline !important;
}

.speaker-item span {
    font-size: 14px !important;
}

.schedule-speaker {
    width: 80%;
}

/* schedule-area3 */
.schedule-area3 .schedule-nav .nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 20px;
}

.schedule-area3 .schedule-nav .nav-pills .nav-link {
    background: var(--color-white);
    box-shadow: var(--box-shadow);
}

    .schedule-area3 .schedule-nav .nav-pills .nav-link.active {
        background: var(--theme-gradient);
    }

.schedule-area3 .schedule-item::before {
    display: none;
}

.schedule-area3 .schedule-content-wrap {
    flex-direction: column;
    gap: 15px;
}

.schedule-area3 .schedule-img img {
    width: 100%;
}

.schedule-area3 .schedule-bottom {
    width: 100%;
    margin-top: 0px;
}

.schedule-item .time {
    color: var(--theme-color2);
    font-weight: 500;
}

.schedule-area3 .schedule-info .location {
    color: var(--theme-color);
    font-weight: 500;
}

.schedule-area3 .schedule-info h4 {
    margin-top: 10px;
}


@media all and (max-width: 991px) {
    .schedule-item::before {
        display: none;
    }

    .schedule-count {
        display: none;
    }

    .schedule-content-wrap {
        /* flex-direction: column; */
        align-items: unset;
    }

    .schedule-img img {
        width: 100%;
    }

    .schedule-meta ul {
        flex-direction: column;
        gap: 10px;
    }

    .schedule-speaker,
    .schedule-bottom {
        flex-direction: column;
    }

        .schedule-bottom .theme-btn {
            margin-top: 20px;
        }

    .schedule-area2 .schedule-img img {
        width: 100%;
    }

    .schedule-area2 .schedule-content {
        border-right: none;
        padding-right: 0px;
    }
}



/* ===================
24. Schedule single css 
====================== */

.schedule-single {
    position: relative;
}

.schedule-detail-img img {
    border-radius: 15px;
}

.schedule-sidebar .event-countdown {
    background: var(--theme-gradient);
    border-radius: 15px;
}

    .schedule-sidebar .event-countdown .time-wrap {
        gap: 0;
    }

.schedule-sidebar .schedule-list li {
    color: var(--color-dark);
    font-weight: 500;
    margin: 5px 0;
}

    .schedule-sidebar .schedule-list li i {
        color: var(--theme-color);
        width: 25px;
    }

.schedule-sidebar .social {
    margin-top: 30px;
}

    .schedule-sidebar .social a {
        width: 35px;
        height: 35px;
        line-height: 32px;
        border: 2px solid var(--theme-color2);
        color: var(--theme-color2);
        text-align: center;
        border-radius: 50px;
        margin-right: 5px;
    }

        .schedule-sidebar .social a:hover {
            background: var(--theme-color2);
            color: var(--color-white);
        }

.schedule-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.schedule-info-list .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
}

.schedule-info-list .theme-btn {
    margin-top: 20px;
}

.schedule-info-list .content span {
    color: var(--theme-color);
    font-weight: 500;
}

.schedule-detail-info .video-content,
.schedule-detail-info .video-content::before {
    border-radius: 15px;
}

.schedule-detail-info .location-map iframe {
    border-radius: 15px;
    width: 100%;
    height: 250px;
}




/* ===================
25. Pricing css 
====================== */

.pricing-item {
    position: relative;
    background: var(--color-white);
    padding: 10px 10px 30px 10px;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.pricing-shape img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.pricing-item:hover {
    transform: translateY(-10px);
}

.pricing-header-wrap {
    margin-bottom: 30px;
}

.pricing-header {
    text-align: center;
    margin-top: 15px;
}

    .pricing-header h5 {
        font-size: 25px;
        font-weight: 600;
        display: inline-block;
        color: var(--color-white);
        margin-bottom: 10px;
    }

.pricing-amount {
    text-align: center;
    margin-top: 105px;
    margin-bottom: 25px;
}

    .pricing-amount strong {
        font-size: 50px;
        font-weight: 900;
        color: var(--color-dark);
        line-height: 1;
    }

.pricing-feature {
    position: relative;
    padding: 0px 0px 0px 0px;
}

    .pricing-feature::before {
        content: "";
        position: absolute;
        left: -20px;
        top: -14px;
        width: 25px;
        height: 25px;
        border-radius: 50px;
        background: var(--theme-bg-light);
    }

    .pricing-feature::after {
        content: "";
        position: absolute;
        right: -20px;
        top: -14px;
        width: 25px;
        height: 25px;
        border-radius: 50px;
        background: var(--theme-bg-light);
    }

    .pricing-feature li {
        margin-bottom: 8px;
    }

        .pricing-feature li:last-child {
            margin-bottom: 0px;
        }

        .pricing-feature li i {
            color: var(--theme-color);
            margin-right: 10px;
        }

.pricing-btn-wrap {
    text-align: center;
}

/* pricing-area2 */
.pricing-area2 .pricing-item {
    background: var(--color-white);
    box-shadow: var(--box-shadow);
}

    .pricing-area2 .pricing-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: -80px;
        width: 100%;
        height: 170px;
        background: var(--theme-gradient);
        border-radius: 20px 20px 20px 80px;
        transform: rotate(-20deg);
        z-index: -1;
    }

    .pricing-area2 .pricing-item::after {
        content: "";
        position: absolute;
        right: -30px;
        top: 70px;
        width: 140px;
        height: 20px;
        background: var(--theme-gradient);
        border-radius: 20px;
        transform: rotate(-20deg);
    }


@media all and (max-width: 991px) {
    .pricing-amount strong {
        font-size: 50px;
    }
}




/*====================
26. Video css 
======================*/

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .video-content::before {
        content: "";
        position: absolute;
        background: rgba(11, 9, 23, .5);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    height: 500px;
    z-index: 1;
}

    .video-wrapper img {
        border-radius: 12px;
    }

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media all and (max-width: 991px) {
    .video-content {
        padding-top: 80px;
    }

    .video-wrapper {
        height: 250px;
    }
}



/* ===================
27. Counter css 
====================== */

.counter-area {
    position: relative;
    background-image: linear-gradient(to right, rgb(5 78 102 / 50%), rgb(6 78 102 / 50%)), url(../img/inner-images/LOBBY-ESCALATOR1.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.counter-info {
    padding-right: 20px;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* gap: 20px; */
    position: relative;
    background: var(--color-white);
    padding: 40px 34px 40px 34px;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    max-width: 600px;
    margin: auto;
}

.counter-content p {
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.counter-box .icon {
    width: 70px;
    height: 70px;
    line-height: 60px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--color-white);
    background: var(--theme-gradient);
    position: relative;
}

    .counter-box .icon::before {
        content: "";
        position: absolute;
        left: -7px;
        top: -7px;
        bottom: -7px;
        right: -7px;
        border: 2px dashed var(--theme-color);
        border-radius: 50%;
        transition: all .5s ease-in-out;
        z-index: -1;
    }

    .counter-box .icon img {
        width: 42px;
        filter: brightness(0) invert(1);
    }

.counter-box .counter-info {
    display: flex;
    align-items: center;
    gap: 2px;
}

.counter-box .counter-unit {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 25px;
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--color-dark);
    font-size: 50px;
    font-weight: 900;
}

.counter-box .title {
    color: var(--color-dark);
    margin-top: 5px;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 40px;
}

    .counter-box .title span {
        color: #ffd21d;
    }


/* ===================
28. Team css 
====================== */

.team-area {
    position: relative;
    overflow: hidden;
}

.team-item {
    position: relative;
    text-align: center;
    transition: var(--transition);
}

    .team-item:hover {
        transform: translateY(-8px);
    }

.team-img {
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: auto;
    display: none;
}

    .team-img img {
        border-radius: 50%;
        width: 100%;
    }

.team-content .social {
    position: relative;
    background: var(--theme-color);
    width: fit-content;
    padding: 0 8px;
    margin: -20px auto 0 auto;
    border-radius: 50px;
    z-index: 1;
}

    .team-content .social a {
        width: 25px;
        color: var(--color-white);
    }

        .team-content .social a:hover {
            color: var(--color-dark);
        }

.team-content .info {
    margin-top: 15px;
}

    .team-content .info h4 {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        background: #bd6343;
        height: 60px;
        display: flex;
        align-items: center;      
        justify-content: center;
        line-height: 22px;
        padding: 0px 10px;
    }

    .team-content .info span:first-of-type {
        color: #bd6343;
        padding: 0px 10px;
        font-weight: 600;
    }

    .team-content .info span {
        color: #000;
        font-weight: 500;
        font-size: 15px;
        padding: 0px 10px;
    }

/* team-area 2 */
.team-area2 .team-item {
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding-bottom: 12px;
}

.team-area2 .team-img {
    border: none;
}

    .team-area2 .team-img img {
        border-radius: 15px;
    }

.team-area2 .team-content .social {
    background: var(--color-white);
}

    .team-area2 .team-content .social a {
        color: var(--theme-color);
    }

        .team-area2 .team-content .social a:hover {
            color: var(--theme-color2);
        }




/*====================
29. Team single css 
======================*/

.team-single {
    position: relative;
}

.team-single-content {
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 15px;
    padding: 30px 20px;
}

.team-single-img img {
    border-radius: 15px;
    width: 64%;
}
@media (max-width:767px){
    .team-single-img img {
       
        width: 100%;
    }
    .chairman-img {
      
        padding: 0px 0px !important;
    }
    .team-details{
        padding-left:10px
    }
}
.chairman-img {
    display: flex;
    align-items: center;
    padding: 0px 26px;
}

.team-details .name {
    color: var(--color-dark);
    margin-bottom: 5px;
}

.team-details .designation {
    color: var(--theme-color);
    text-transform: uppercase;
    font-weight: 500;
    /* letter-spacing: 3px; */
}

.team-details-info {
    /* margin-top: 10px;
    margin-bottom: 20px; */
    color: #605d5d;
}

    .team-details-info ul {
        margin-top: 15px;
    }

        .team-details-info ul li {
            margin: 10px 0;
            color: var(--color-dark);
        }

            .team-details-info ul li a span {
                width: 110px;
                display: inline-block;
                font-weight: 500;
                color: var(--color-dark);
            }

            .team-details-info ul li i {
                color: var(--theme-color);
                width: 25px;
            }

.team-details-social a {
    width: 30px;
    color: var(--theme-color2);
}

    .team-details-social a:hover {
        color: var(--theme-color);
    }

/* team-session */
.team-session .session-item {
    background: var(--color-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

    .team-session .session-item .day {
        color: var(--theme-color2);
        text-transform: uppercase;
        letter-spacing: 3px;
    }

.team-session .session-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .team-session .session-meta li {
        color: var(--body-text-color);
    }

        .team-session .session-meta li i {
            color: var(--theme-color);
            margin-right: 5px;
        }

.team-session .session-content p {
    margin-top: 15px;
    color: var(--body-text-color);
}

    .team-session .session-content p span {
        color: var(--color-dark);
        font-weight: 500;
    }

    .team-session .session-content p i {
        color: var(--theme-color);
        margin-right: 5px;
    }

.team-session .session-content .theme-btn {
    margin-top: 20px;
}



/*====================
30. Cta css 
======================*/

.cta-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

    .cta-area::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: var(--theme-gradient);
        opacity: .85;
        z-index: -1;
    }

.cta-content {
    text-align: center;
}

    .cta-content h6 {
        font-size: 25px;
        color: var(--theme-color2);
        text-transform: uppercase;
        font-family: var(--heading-font2);
        letter-spacing: 3px;
    }

    .cta-content h1 {
        font-family: var(--heading-font2);
        color: var(--color-white);
        font-size: 50px;
        text-transform: capitalize;
        margin-bottom: 20px;
    }

    .cta-content p {
        color: var(--color-white);
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cta-content .theme-btn {
        background: var(--theme-color);
        color: var(--color-white);
    }



/*====================
31. Choose css 
======================*/

.choose-area {
    position: relative;
}

.choose-content-wrap {
    margin-top: 30px;
}

.choose-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.choose-item-icon {
    width: 60px;
    height: 60px;
    line-height: 55px;
    border-radius: 50px;
    background: var(--theme-color);
    text-align: center;
    box-shadow: var(--box-shadow);
}

    .choose-item-icon img {
        width: 35px;
        filter: brightness(0) invert(1);
    }

.choose-item-info h4 {
    margin-bottom: 5px;
}

.choose-item-info {
    border-bottom: 1px solid var(--border-info-color);
    padding-bottom: 20px;
    flex: 1;
}

.choose-item:last-child .choose-item-info {
    border-bottom: none;
}

.choose-img {
    position: relative;
    text-align: end;
    margin-right: 30px;
}

    .choose-img img {
        border-radius: 20px;
    }

    .choose-img::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 40px;
        background: var(--theme-color);
        border-radius: 20px;
        width: 70%;
        height: 88%;
        transform: rotate(-8deg);
        z-index: -1;
    }

    .choose-img .theme-btn {
        position: absolute;
        left: 0;
        bottom: 80px;
    }

@media all and (max-width: 991px) {
    .choose-content {
        margin-top: 50px;
    }

    .choose-img {
        text-align: left;
        padding-left: 40px;
    }
}



/*====================
32. Venue css 
======================*/

.venue-area {
    position: relative;
}

.venue-item {
    position: relative;
}

.venue-img {
    width: 85%;
}


    .venue-img img {
        border-radius: 15px;
        max-width: 100%;
        min-height: 400px !important;
    }


.venue-content {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 230px;
    background: #ffffffe3;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

    .venue-content span {
        color: var(--theme-color);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 500;
        font-size: 14px;
    }

    .venue-content h6 {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .venue-content p {
        color: #000000;
    }

.venue-play {
    margin-top: 15px;
}

    .venue-play .popup-youtube {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }

        .venue-play .popup-youtube i {
            width: 35px;
            height: 35px;
            line-height: 35px;
            background: var(--theme-gradient);
            border-radius: 50px;
            color: var(--color-white);
            text-align: center;
        }



/*====================
33. Venue single css 
======================*/

.venue-single {
    position: relative;
}

.venue-list li {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

    .venue-list li span {
        font-weight: 500;
        color: var(--color-dark);
    }

        .venue-list li span:first-child {
            width: 140px;
            display: inline-block;
        }

            .venue-list li span:first-child span {
                font-weight: 400;
            }

.venue-capacity .venue-list li span:nth-child(2) {
    width: 50px;
}

.venue-info .venue-list li span:first-child {
    width: 80px;
}

.venue-info .venue-list li span:nth-child(2) {
    width: 20px;
}

.venue-info .venue-list li span:last-child {
    flex: 1;
}

.venue-detail-img img {
    border-radius: 15px;
}

.venue-detail-info .video-content,
.venue-detail-info .video-content::before {
    border-radius: 20px;
}

.venue-single-list li {
    margin: 8px 0;
}

    .venue-single-list li i {
        color: var(--theme-color);
        margin-right: 10px;
    }




/*====================
34. Testimonial css 
======================*/

.testimonial-area {
    position: relative;
    overflow: hidden;
}

    .testimonial-area .site-shadow-text {
        color: var(--color-dark);
        font-size: 180px;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        opacity: .05;
    }

.testimonial-single {
    /* margin-bottom: 20px; */
}

.testimonial-quote {
    background: var(--theme-color);
    padding: 30px 30px 40px 30px;
    position: relative;
    border-radius: 20px;
}

    .testimonial-quote::before {
        content: "\f0dd";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        bottom: -52px;
        left: 40px;
        font-weight: bold;
        font-size: 70px;
        color: var(--theme-color);
    }

    .testimonial-quote p {
        color: var(--color-white);
        font-size: 18px;
        font-style: italic;
        font-weight: 500;
    }

.testimonial-content {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
    margin-left: 20px;
}

.testimonial-author-img {
    margin-right: 20px;
    width: 80px;
    padding: 5px;
    border-radius: 50px;
    border: 2px dashed var(--theme-color);
}

    .testimonial-author-img img {
        border-radius: 50%;
    }

.testimonial-author-info h4 {
    font-size: 20px;
    color: var(--color-dark);
}

.testimonial-author-info p {
    color: var(--theme-color);
}

.testimonial-quote-icon {
    position: absolute;
    right: 20px;
    top: 0px;
    opacity: .08;
}

    .testimonial-quote-icon i {
        font-size: 55px;
        color: var(--theme-color);
    }

    .testimonial-quote-icon img {
        width: 150px !important;
    }

.testimonial-rate {
    color: var(--theme-color2);
    width: fit-content;
    margin-bottom: 10px;
    background: var(--color-white);
    padding: 0 10px;
    border-radius: 50px;
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 30px;
}

    .testimonial-area .owl-dots .owl-dot span {
        background: var(--theme-color);
        margin: 5px;
        border-radius: 10px;
        width: 15px;
        height: 7px;
        display: inline-block;
        transition: var(--transition);
    }

    .testimonial-area .owl-dots .owl-dot.active span {
        background-color: var(--theme-color);
        width: 8px;
        height: 8px;
    }



/*====================
35. Quote css 
======================*/

.quote-area {
    position: relative;
    background-image: url(../img/quote/01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.quote-content {
    background: #ffffff8a;
    padding: 35px;
    border-radius: 20px;
    /* margin-top: -100px; */
    box-shadow: var(--box-shadow);
}

.quote-img img {
    border-radius: 15px;
}

.quote-head {
    margin-bottom: 20px;
}

    .quote-head h3 {
        margin-bottom: 8px;
    }

.quote-form .input-group {
    margin-bottom: 22px;
}

    .quote-form .input-group:focus-within {
        outline: 2px solid var(--theme-color);
        border-radius: 50px;
    }

    .quote-form .input-group.textarea:focus-within {
        border-radius: 30px;
    }

    .quote-form .input-group .form-control {
        padding: 15px 25px 15px 0px;
        border-radius: 50px;
        border: none;
        box-shadow: none;
        background-color: var(--theme-bg-light);
    }

        .quote-form .input-group .form-control,
        .quote-form .input-group .form-select,
        .quote-form .input-group .form-control::placeholder {
            color: var(--color-dark);
        }

    .quote-form .input-group .input-group-text {
        background: var(--theme-bg-light);
        color: var(--theme-color);
        border-radius: 50px;
        padding-left: 20px;
        border: none;
    }

    .quote-form .input-group.textarea .input-group-text,
    .quote-form .input-group.textarea .form-control {
        border-radius: 30px;
    }

    .quote-form .input-group.textarea .input-group-text {
        align-items: flex-start;
        padding-top: 20px;
    }

/* quote-area2 */
.quote-area2 {
    position: relative;
}

    .quote-area2 .quote-form {
        background: var(--color-white);
        padding: 30px;
        border-radius: 0 15px 15px 0;
        box-shadow: var(--box-shadow);
        margin-top: -50px;
        position: relative;
        z-index: 1;
    }

        .quote-area2 .quote-form .input-group {
            margin-bottom: 0;
        }




/*====================
36. Instagram css 
======================*/

.instagram-area {
    position: relative;
}

.instagram-img {
    overflow: hidden;
    border-radius: 15px;
}

    .instagram-img img {
        border-radius: 15px;
    }

    .instagram-img:hover img {
        transform: scale(1.1) rotate(2deg);
    }

.instagram-area .theme-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




/*====================
37. Blog css 
======================*/

.blog-area {
    position: relative;
}

.blog-item {
    padding: 20px;
    border: 2px solid rgba(140, 82, 255, .2);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
}

    .blog-item:hover {
        border-color: rgba(140, 82, 255, 1);
    }

.blog-date {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
    color: var(--color-white);
    padding: 0px 10px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

    .blog-date::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--theme-color);
        border-radius: 8px;
        transform: skewX(-10deg);
        z-index: -1;
    }

.blog-item-img {
    border-radius: 15px;
    overflow: hidden;
}

    .blog-item-img img {
        border-radius: 12px;
    }

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-info {
    padding: 15px 0 0 0;
}

.blog-item-meta ul {
    margin: 0;
    margin-bottom: 14px;
    padding: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-info-color);
}

    .blog-item-meta ul li {
        display: inline-block;
        margin-right: 15px;
        font-weight: 500;
        position: relative;
        color: var(--color-dark);
    }

        .blog-item-meta ul li i {
            margin-right: 5px;
            color: var(--theme-color);
        }

.blog-item-meta a {
    color: var(--color-dark);
}

    .blog-item-meta a:hover {
        color: var(--theme-color);
    }

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.blog-item-info h4 a {
    color: var(--color-dark);
}

    .blog-item-info h4 a:hover {
        color: var(--theme-color);
    }

.blog-item-info p {
    margin-bottom: 16px;
}

.blog-item-info .theme-btn {
    margin-top: 10px;
}




/*========================
38. Blog single css
==========================*/

.blog-single {
    position: relative;
}

    .blog-single .blog-thumb-img {
        margin-bottom: 20px;
    }

    .blog-single .blog-single-content img {
        border-radius: 15px;
    }

    .blog-single .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .blog-single .blog-meta-left ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .blog-single .blog-meta-left ul li {
            color: var(--color-dark);
            font-weight: 500;
        }

    .blog-single .blog-meta i {
        margin-right: 5px;
        color: var(--theme-color);
    }

    .blog-single .blog-meta a {
        color: var(--color-dark);
        font-weight: 500;
    }

        .blog-single .blog-meta a:hover {
            color: var(--theme-color);
        }

    .blog-single .blog-details-title {
        font-size: 34px;
        color: var(--color-dark);
    }

    .blog-single .blockqoute {
        background: var(--theme-bg-light);
        border-left: 5px solid var(--theme-color);
        padding: 30px;
        font-size: 17px;
        font-style: italic;
        margin: 20px 0;
        border-radius: 0px;
        position: relative;
    }

        .blog-single .blockqoute .blockqoute-icon {
            position: absolute;
            right: 20px;
            bottom: 5px;
            color: var(--theme-color);
            font-size: 70px;
        }

    .blog-single .blockqoute-author {
        margin-top: 20px;
        padding-left: 60px;
        position: relative;
        color: var(--color-dark);
    }

        .blog-single .blockqoute-author::before {
            content: "";
            position: absolute;
            height: 2px;
            width: 40px;
            background: var(--theme-color);
            left: 0;
            top: 10px;
        }

    .blog-single .blog-details-tags {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .blog-single .blog-details-tags h5 {
            color: var(--color-dark);
        }

        .blog-single .blog-details-tags ul {
            display: flex;
            align-items: center;
            gap: 15px;
        }

            .blog-single .blog-details-tags ul a {
                background: var(--theme-bg-light);
                color: var(--color-dark);
                padding: 5px 18px;
                border-radius: 50px;
                transition: var(--transition);
            }

                .blog-single .blog-details-tags ul a:hover {
                    background: var(--theme-color);
                    color: var(--color-white);
                }

    .blog-single .blog-author {
        display: flex;
        justify-content: start;
        align-items: center;
        background: var(--theme-bg-light);
        margin: 50px 0;
        padding: 20px;
        border-radius: 15px;
    }

    .blog-single .blog-author-img {
        width: 320px;
    }

        .blog-single .blog-author-img img {
            border-radius: 15px;
        }

    .blog-single .author-name {
        font-size: 22px;
        color: var(--theme-color);
        margin: 8px 0;
    }

    .blog-single .author-info {
        padding: 0 20px;
    }

    .blog-single .author-social {
        margin-top: 10px;
    }

        .blog-single .author-social a {
            width: 35px;
            height: 35px;
            line-height: 32px;
            text-align: center;
            border: 2px solid var(--theme-color);
            border-radius: 50px;
            margin-right: 5px;
            color: var(--theme-color);
            transition: var(--transition);
        }

            .blog-single .author-social a:hover {
                color: var(--color-white);
                background: var(--theme-color);
            }

    .blog-single .blog-comments h3 {
        color: var(--color-dark);
    }

    .blog-single .blog-comments-wrapper {
        margin: 30px 0;
    }

    .blog-single .blog-comments-single {
        display: flex;
        justify-content: start;
        align-items: flex-start;
        margin-top: 50px;
    }

        .blog-single .blog-comments-single img {
            border-radius: 50%;
        }

    .blog-single .blog-comments-content {
        padding: 0 0 0 20px;
    }

        .blog-single .blog-comments-content span {
            font-size: 14px;
            color: var(--theme-color);
            font-weight: 500;
        }

        .blog-single .blog-comments-content a {
            font-weight: 500;
            margin-top: 5px;
            color: var(--theme-color);
        }

            .blog-single .blog-comments-content a:hover {
                color: var(--theme-color2);
            }

        .blog-single .blog-comments-content h5 {
            color: var(--color-dark);
        }

    .blog-single .blog-comments-reply {
        margin-left: 50px;
    }

    .blog-single .blog-comments-form {
        padding: 30px;
        margin-top: 50px;
        border-radius: 15px;
        background: var(--theme-bg-light);
    }

        .blog-single .blog-comments-form h3 {
            margin-bottom: 20px;
        }

        .blog-single .blog-comments-form .input-group {
            margin-bottom: 22px;
        }

            .blog-single .blog-comments-form .input-group:focus-within {
                outline: 2px solid var(--theme-color);
                border-radius: 50px;
            }

            .blog-single .blog-comments-form .input-group.textarea:focus-within {
                border-radius: 30px;
            }

            .blog-single .blog-comments-form .input-group .form-control {
                padding: 15px 25px 15px 0px;
                border-radius: 50px;
                border: none;
                box-shadow: none;
                background: var(--color-white);
            }

            .blog-single .blog-comments-form .input-group .nice-select {
                line-height: 25px;
            }

            .blog-single .blog-comments-form .input-group .form-control,
            .blog-single .blog-comments-form .input-group .form-select,
            .blog-single .blog-comments-form .input-group .form-control::placeholder {
                color: var(--color-dark);
            }

            .blog-single .blog-comments-form .input-group .input-group-text {
                background: var(--color-white);
                color: var(--theme-color);
                border-radius: 50px;
                padding-left: 20px;
                border: none;
            }

            .blog-single .blog-comments-form .input-group.textarea .input-group-text,
            .blog-single .blog-comments-form .input-group.textarea .form-control {
                border-radius: 30px;
            }

            .blog-single .blog-comments-form .input-group.textarea .input-group-text {
                align-items: flex-start;
                padding-top: 20px;
            }


@media all and (max-width: 767px) {
    .blog-single .blog-meta {
        flex-direction: column;
        font-size: 15px;
    }

    .blog-single .blog-meta-left ul {
        gap: 10px;
    }

    .blog-single .blog-details-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-single .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .blog-single .author-info {
        margin-top: 25px;
    }

    .blog-single .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0px;
        background: var(--color-white);
        box-shadow: var(--box-shadow);
        margin-bottom: 30px;
        border-radius: 15px;
    }

        .blog-single .blog-comments-single img {
            margin: 0 auto 20px auto;
        }

    .blog-single .blog-comments-reply {
        margin-left: 0px;
    }
}



/*=======================
39. Widget sidebar css
=========================*/

.widget {
    background: var(--theme-bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
}

    .widget .widget-title {
        padding-bottom: 10px;
        margin-bottom: 30px;
        position: relative;
        font-size: 25px;
        color: var(--color-dark);
    }

        .widget .widget-title::before {
            position: absolute;
            content: '';
            width: 15px;
            border-bottom: 3px solid var(--theme-color);
            bottom: 0;
            left: 0;
        }

        .widget .widget-title::after {
            position: absolute;
            content: '';
            width: 30px;
            border-bottom: 3px solid var(--theme-color);
            bottom: 0;
            left: 22px;
        }

    .widget .search-form .form-control {
        padding: 12px 15px 12px 20px;
        border-radius: 50px;
        box-shadow: none;
        color: var(--color-dark);
    }

        .widget .search-form .form-control::placeholder {
            color: var(--color-dark);
        }

    .widget .search-form {
        position: relative;
    }

        .widget .search-form .form-control:focus {
            border-color: var(--theme-color);
        }

        .widget .search-form button {
            position: absolute;
            right: 0;
            top: 0;
            font-size: 18px;
            padding: 8px 18px 6px 18px;
            background: transparent;
            border: none;
            color: var(--theme-color);
        }

    .widget .category-list a {
        display: block;
        padding: 10px 0;
        font-weight: 500;
        color: var(--color-dark);
        border-bottom: 1px solid var(--border-info-color);
        transition: var(--transition);
    }

        .widget .category-list a:last-child {
            margin-bottom: 0px;
            border-bottom: none;
        }

        .widget .category-list a:hover {
            padding-left: 10px;
            color: var(--theme-color);
        }

        .widget .category-list a i {
            margin-right: 5px;
            color: var(--theme-color);
        }

        .widget .category-list a span {
            float: right;
        }

    .widget .recent-post-single {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .widget .recent-post-img img {
        width: 75px;
        border-radius: 15px;
    }

    .widget .recent-post-bio {
        flex: 1;
    }

        .widget .recent-post-bio h6 {
            font-size: 18px;
        }

        .widget .recent-post-bio span {
            font-size: 14px;
            color: var(--theme-color);
            font-weight: 500;
        }

            .widget .recent-post-bio span i {
                margin-right: 5px;
            }

        .widget .recent-post-bio h6 a:hover {
            color: var(--theme-color);
        }

    .widget .social-share-link a {
        width: 35px;
        height: 35px;
        line-height: 32px;
        border: 2px solid var(--theme-color);
        color: var(--theme-color);
        text-align: center;
        margin-right: 5px;
        border-radius: 50px;
        transition: var(--transition);
    }

        .widget .social-share-link a:hover {
            background: var(--theme-color);
            color: var(--color-white);
        }

    .widget .tag-list a {
        background: var(--color-white);
        color: var(--color-dark);
        padding: 5px 18px;
        margin-bottom: 10px;
        margin-right: 10px;
        border-radius: 50px;
        display: inline-block;
        transition: var(--transition);
    }

        .widget .tag-list a:hover {
            background-color: var(--theme-color);
            color: var(--color-white);
        }



/*===================
40. Contact us css 
=====================*/

.contact-wrapper {
    position: relative;
}

.contact-img img {
    width: 100%;
    border-radius: 15px;
}

.contact-form {
    background: var(--theme-bg-light);
    padding: 20px 25px;
    border-radius: 15px;
}

.contact-form-header {
    margin-bottom: 30px;
}

    .contact-form-header h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--color-dark);
    }

.contact-form .input-group {
    margin-bottom: 22px;
}

    .contact-form .input-group:focus-within {
        outline: 2px solid var(--theme-color);
        border-radius: 50px;
    }

    .contact-form .input-group.textarea:focus-within {
        border-radius: 30px;
    }

    .contact-form .input-group .form-control {
        padding: 15px 25px 15px 0px;
        border-radius: 50px;
        border: none;
        box-shadow: none;
        background: var(--color-white);
    }

    .contact-form .input-group .nice-select {
        line-height: 25px;
    }

    .contact-form .input-group .form-control,
    .contact-form .input-group .form-select,
    .contact-form .input-group .form-control::placeholder {
        color: var(--color-dark);
    }

    .contact-form .input-group .input-group-text {
        background: var(--color-white);
        color: var(--theme-color);
        border-radius: 50px;
        padding-left: 20px;
        border: none;
    }

    .contact-form .input-group.textarea .input-group-text,
    .contact-form .input-group.textarea .form-control {
        border-radius: 30px;
    }

    .contact-form .input-group.textarea .input-group-text {
        align-items: flex-start;
        padding-top: 20px;
    }

.contact-form .text-success {
    color: var(--theme-color);
}

.contact-map {
    margin-bottom: -9px;
}

    .contact-map iframe {
        width: 100%;
        height: 450px;
    }

.contact-content {
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    /* align-items: center;
  text-align: center; */
    gap: 15px;
    padding: 20px 40px;
    position: relative;
    border-radius: 15px;
    background: #fdfdfd;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    transition: var(--transition);
}

/* .contact-info:hover {
  transform: translateY(-8px)
} */

.contact-info-icon i {
    font-size: 35px;
    color: #cb5c36;
    border: 1px solid #a43205;
    width: 50px;
    height: 50px;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    background: #fff;
}

.contact-info h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.contact-info p {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 16px;
}


@media all and (max-width: 768px) {

    .contact-content {
        margin-top: 50px;
        margin-bottom: 0;
    }
    .border-right-20{
        border-right:none;
        padding-left:8px !important;
        margin-top: 12px;
    }
    .border-right-solid{
        border-right:none !important;
        padding-top: 8px;
        padding-right: 7px !important;
    }
    .admin-section {
        padding: 50px 0 30px !important;
    }
    .margin-top-15 br{
        display:none;
    }
}
.border-right-20{
    padding-left: 12px;  
}
.border-right-solid{
    border-right: 1px solid #e6e6e6;
    padding-right: 12px;
}

/* ========================
41. Gallery css 
=========================== */

.gallery-item {
    position: relative;
    width: 100%;
    text-align: center;
}

.gallery-img {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

    .gallery-img::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--theme-color);
        transition: all 0.7s ease-in-out;
        transform: translateY(-110%);
    }

    .gallery-img:hover::before {
        transform: translateY(110%);
    }

    .gallery-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--theme-color);
        opacity: .8;
        transition: all 0.7s ease-in-out;
        transform: translateY(-110%);
    }

    .gallery-img:hover::after {
        transform: none;
    }

    .gallery-img img {
        width: 100%;
        border-radius: 15px;
    }

.gallery-link {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    font-size: 34px;
    color: var(--theme-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--color-white);
    transition: all 200ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transform: translate(-50%, -50%) scale(0);
    z-index: 1;
}

.gallery-item:hover .gallery-link {
    transform: translate(-50%, -50%) scale(1);
    transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.7s;
}



/*====================
42. Faq css 
======================*/

.faq-area .accordion-item {
    border: none;
    margin-bottom: 30px;
    background: var(--color-white);
    border-radius: 12px !important;
    box-shadow: var(--box-shadow);
}

    .faq-area .accordion-item span {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .faq-area .accordion-item i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        border-radius: 50px;
        background: var(--theme-color);
        text-align: center;
        color: var(--color-white);
    }

.faq-area .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: transparent;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button {
    border-radius: 0px !important;
    background: transparent;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark);
    box-shadow: none !important;
}

    .faq-area .accordion-button:not(.collapsed) {
        border-bottom: 1px solid var(--theme-color);
    }

        .faq-area .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

.faq-area .accordion-body {
    color: var(--color-dark);
    font-weight: 500;
}

@media all and (max-width: 991px) {
    .faq-area .faq-right {
        margin-bottom: 50px;
    }

    .faq-area .accordion-button {
        font-size: 16px;
    }
}



/*====================
43. Breadcrumb css
======================*/

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    /* background-position: center !important; */
    background-size: cover !important;
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    z-index: 1;
}

    .site-breadcrumb::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: rgb(52 50 60 / 81%);
        opacity: 0.65;
        z-index: -1;
    }

    .site-breadcrumb .breadcrumb-title {
        font-size: 40px;
        color: var(--color-white);
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: capitalize;
        font-family: var(--heading-font2);
    }

    .site-breadcrumb .breadcrumb-menu {
        position: relative;
        z-index: 1;
    }

        .site-breadcrumb .breadcrumb-menu li {
            position: relative;
            display: inline-block;
            margin-left: 25px;
            color: var(--color-white);
            font-weight: 500;
            text-transform: capitalize;
        }

            .site-breadcrumb .breadcrumb-menu li a {
                color: var(--color-white);
                transition: all 0.5s ease-in-out;
            }

            .site-breadcrumb .breadcrumb-menu li::before {
                position: absolute;
                content: '\f101';
                font-family: 'Font Awesome 6 Pro';
                right: -21px;
                top: 1px;
                text-align: center;
                font-size: 16px;
                color: var(--color-white);
            }

            .site-breadcrumb .breadcrumb-menu li:first-child {
                margin-left: 0;
            }

            .site-breadcrumb .breadcrumb-menu li:last-child:before {
                display: none;
            }

            .site-breadcrumb .breadcrumb-menu li a:hover {
                color: var(--theme-color);
            }

            .site-breadcrumb .breadcrumb-menu li.active {
                color: #f1ac00;
            }




/*====================
44. Pagination css 
======================*/

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

    .pagination .page-link {
        border: none;
        background: var(--theme-bg-light);
        color: var(--color-dark);
        font-weight: 500;
        margin: 0 10px;
        border-radius: 12px !important;
        width: 40px;
        height: 40px;
        line-height: 28px;
        text-align: center;
        transition: var(--transition);
        z-index: 1;
    }

        .pagination .page-link:hover,
        .pagination .page-item.active .page-link {
            background: var(--theme-color);
            color: var(--color-white);
        }



/*====================
45. Auth css 
======================*/
.login-main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.input-group {
    border: 1px solid #e1dfdf;
    border-radius: 28px;
}

.login-form {
    padding: 40px;
    background: #f8f9fed1;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.07);
}

    .login-form .login-header {
        text-align: center;
        margin-bottom: 20px;
    }

        .login-form .login-header img {
            width: 200px;
            margin-bottom: 10px;
        }

        .login-form .login-header h3 {
            color: var(--theme-color);
            margin-bottom: 5px;
            font-weight: 800;
        }

        .login-form .login-header p {
            color: var(--color-dark);
            font-size: 30px;
            line-height: 36px;
            font-weight: 600;
        }

    .login-form .login-footer {
        margin-top: 20px;
    }

        .login-form .login-footer p {
            color: var(--color-dark);
            text-align: center;
        }

        .login-form .login-footer a {
            color: var(--theme-color);
            transition: .5s;
        }

            .login-form .login-footer a:hover {
                color: var(--theme-color2);
            }

    .login-form .input-group {
        margin-bottom: 22px;
    }

    .login-form label {
        color: var(--color-dark);
        margin-bottom: 5px;
    }

    .login-form .input-group:focus-within {
        outline: 2px solid var(--theme-color);
        border-radius: 50px;
    }

    .login-form .input-group .form-control {
        padding: 15px 25px 15px 0px;
        border-radius: 50px;
        border: none;
        box-shadow: none;
        background: var(--color-white);
    }

    .login-form .input-group .nice-select {
        line-height: 25px;
    }

    .login-form .input-group .form-control,
    .login-form .input-group .form-select,
    .login-form .input-group .form-control::placeholder {
        color: var(--color-dark);
    }

    .login-form .input-group .input-group-text {
        background: var(--color-white);
        color: var(--theme-color);
        border-radius: 50px;
        padding-left: 20px;
        border: none;
    }

    .login-form .form-check {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0;
        margin: 0;
    }

    .login-form .form-check-input {
        margin: 0;
        box-shadow: none;
        border-radius: 4px;
        border: none;
        width: 16px;
        height: 16px;
        background-color: var(--color-white);
        border: 1px solid #d3d2d2;
    }

        .login-form .form-check-input:checked {
            background-color: var(--theme-color);
            border-color: var(--theme-color);
        }

    .login-form .form-check-label {
        margin-bottom: 0;
    }

        .login-form .form-check-label a {
            color: var(--theme-color);
            transition: var(--transition);
        }

            .login-form .form-check-label a:hover {
                color: var(--theme-color);
            }

    .login-form .forgot-password {
        color: var(--theme-color);
        transition: var(--transition);
    }

        .login-form .forgot-password:hover {
            color: var(--theme-color2);
        }

    .login-form .theme-btn {
        padding: 5px 50px;
        margin: auto;
    }

        .login-form .theme-btn::before {
            width: 420px;
            height: 420px;
            transition: var(--transition2);
        }

    .login-form .social-login {
        border-top: 1px solid var(--border-info-color);
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .login-form .forgot-password {
        color: var(--theme-color);
        transition: var(--transition);
        font-size: 14px;
    }

    .login-form .form-check {
        font-size: 14px;
    }

    .login-form .social-login p {
        color: var(--color-dark);
        margin: 4px 0 0;
        font-size: 14px;
    }

    .login-form .social-login-list {
        text-align: center;
    }

        .login-form .social-login-list a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: var(--theme-color);
            border-radius: 50px;
            margin: 5px;
        }

            .login-form .social-login-list a i {
                color: var(--color-white);
            }

            .login-form .social-login-list a:hover {
                background: var(--theme-color2);
            }

@media only screen and (max-width: 991px) {
    .login-form {
        padding: 40px 20px;
    }
}




/*====================
46. Partner css 
======================*/

.partner-area {
    position: relative;
}

.partner-bg {
    position: relative;
    background: rgba(252, 34, 106, .03);
}

    .partner-bg::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
       /* background-image: url(../img/shape/04.png);*/
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.2;
    }

.partner-wrapper {
    position: relative;
}




/*====================
47. Coming soon css 
======================*/

.coming-soon {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center !important;
    min-height: 100vh;
    width: 100%;
    z-index: 1;
}

    .coming-soon:before {
        position: absolute;
        content: '';
        background: rgba(0, 0, 0, .7);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

.coming-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.coming-content {
    text-align: center;
}

.coming-info h1 {
    color: var(--color-white);
    font-weight: 700;
    font-size: 50px;
}

.coming-info p {
    font-size: 18px;
    color: var(--color-white);
    margin-top: 10px;
}

.coming-countdown-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
}

.coming-countdown .time-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.coming-countdown .time {
    background: var(--color-white);
    width: 125px;
    border-radius: 15px;
    padding: 14px 10px;
}

    .coming-countdown .time span {
        display: block;
    }

        .coming-countdown .time span:first-child {
            color: var(--theme-color);
            font-weight: 700;
            font-size: 38px;
            line-height: 1;
        }

    .coming-countdown .time .unit {
        color: var(--color-dark);
        font-weight: 500;
    }

.coming-countdown .divider {
    display: none;
}

.coming-newsletter-form {
    margin-top: 50px;
    margin-bottom: 25px;
}

    .coming-newsletter-form .form-group {
        position: relative;
    }

    .coming-newsletter-form .form-control {
        padding: 17px 150px 17px 20px;
        border-radius: 50px;
        border: none;
        box-shadow: none;
        color: var(--color-dark);
    }

        .coming-newsletter-form .form-control::placeholder {
            color: var(--color-dark);
        }

    .coming-newsletter-form .theme-btn {
        position: absolute;
        right: 5px;
        top: 5px;
        padding: 9px 15px;
    }

.coming-social {
    margin-top: 40px;
    text-align: center;
}

    .coming-social a {
        display: inline-block;
        background: var(--theme-color);
        color: var(--color-white);
        margin: 5px;
        width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 50px;
        transition: .5s;
        box-shadow: var(--box-shadow2);
    }

        .coming-social a:hover {
            background: var(--theme-color2);
        }

@media all and (max-width: 767px) {
    .coming-info h1 {
        font-size: 40px;
    }
}



/*====================
48. Error css 
======================*/

.error-wrapper {
    text-align: center;
}

    .error-wrapper h1 {
        font-size: 250px;
        letter-spacing: 5px;
        font-weight: bold;
        color: var(--theme-color);
    }

        .error-wrapper h1 span {
            color: var(--color-dark);
        }

    .error-wrapper h2 {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .error-wrapper img {
        width: 100%;
    }

    .error-wrapper .theme-btn {
        margin-top: 30px;
    }


@media all and (max-width: 767px) {
    .error-wrapper h1 {
        font-size: 160px;
    }
}



/*====================
49. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
    margin-bottom: 54px;
}

.terms-content:first-child {
    margin-top: -3px;
}

.terms-content .terms-list {
    margin-top: 37px;
}

.terms-content h3 {
    margin-bottom: 23px;
    position: relative;
}

.terms-content p:not(:last-child) {
    margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
    margin-bottom: 16px;
}



/*====================
50. Footer css 
======================*/

.footer-area {
    background: var(--footer-bg);
    position: relative;
    z-index: 1;
}

.footer-shape img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    z-index: -1;
}

.footer-widget-box {
    margin-bottom: 20px;
}

    .footer-widget-box.about-us {
        padding-right: 50px;
    }

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 220px;
    margin-bottom: 18px;
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 12px;
    font-size: 20px;
    z-index: 1;
}

    .footer-widget-title::before {
        position: absolute;
        content: '';
        z-index: -1;
        width: 90px;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
        bottom: 0;
        left: 0;
    }

    .footer-widget-title::after {
        position: absolute;
        content: '';
        z-index: -1;
        width: 30px;
        height: 2px;
        background-color: var(--theme-color);
        bottom: 0;
        left: 18px;
    }

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

    .footer-list li a {
        color: var(--color-white);
        transition: var(--transition);
    }

        .footer-list li a i {
            margin-right: 5px;
            color: var(--theme-color);
        }

        .footer-list li a:hover {
            padding-left: 10px;
            color: var(--theme-color);
        }

.footer-widget-box p {
    color: var(--color-white);
    padding-right: 18px;
    margin-bottom: 20px;
}

.footer-widget-box .social i {
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

    .footer-social li a i {
        height: 38px;
        width: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50px;
        background: var(--color-white);
        color: var(--theme-color);
        transition: var(--transition);
    }

        .footer-social li a i:hover {
            background: var(--color-dark);
            color: var(--color-white);
        }

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--footer-text-color);
    font-size: 16px;
    margin-bottom: 12px;
}

    .footer-contact li a {
        color: var(--footer-text-color);
        transition: var(--transition);
    }

    .footer-contact li i {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
        margin-right: 10px;
        border-radius: 50px;
        background: var(--theme-color);
        text-align: center;
        transition: var(--transition);
        color: var(--color-white);
    }

.footer-request {
    margin-top: 20px;
}

    .footer-request p {
        font-weight: 500;
        margin-bottom: 12px;
        letter-spacing: 4px;
    }

    .footer-request .theme-btn i {
        margin-left: 12px;
    }

.subscribe-form .form-group {
    position: relative;
}

.subscribe-form .form-control {
    padding: 16px 140px 16px 25px !important;
    border-radius: 50px !important;
    color: var(--color-dark) !important;
    box-shadow: none !important;
    border: none !important;
    height: 55px;
}

    .subscribe-form .form-control:focus {
        outline: 2px solid var(--theme-color);
        background: #fff;
    }
    .subscribe-form .form-control::placeholder {
        color: var(--color-dark);
    }

.subscribe-form .theme-btn {
    position: absolute;
    padding: 10px 18px;
    right: 4px;
    top: 3px;
}

    .subscribe-form .theme-btn:hover {
        color: var(--color-white);
    }

    .subscribe-form .theme-btn::before {
        background: var(--theme-color2);
    }

.footer-widget-box.about-us .footer-newsletter p {
    font-size: 18px;
    font-weight: 500;
}

.footer-menu {
    margin: 0;
    padding: 0;
    text-align: right;
}

    .footer-menu li {
        position: relative;
        display: inline-block;
        margin-left: 25px;
        font-size: 16px;
    }

        .footer-menu li::after {
            content: "";
            position: absolute;
            width: 5px;
            height: 5px;
            background: var(--theme-color);
            right: -18px;
            top: 13px;
            border-radius: 50px;
        }

        .footer-menu li:last-child::after {
            display: none;
        }

        .footer-menu li a {
            color: var(--footer-text-color);
            transition: var(--transition);
        }

            .footer-menu li a:hover {
                color: var(--theme-color);
            }

.copyright {
    padding: 10px 0;
    border-top: 1px solid rgb(255 255 255 / 77%);
}

    .copyright .copyright-text {
        color: #edf2fa;
        margin-bottom: 0px;
        font-size: 16px;
    }

        .copyright .copyright-text a {
            color: var(--theme-color);
            font-weight: 500;
        }


@media all and (max-width: 1199px) {
    .footer-widget-box {
        margin-bottom: 22px;
    }
}

@media all and (max-width: 991px) {
    .footer-widget-wrapper {
        padding-bottom: 0px;
    }

    .footer-menu {
        float: left;
        margin-top: 20px;
        text-align: left;
    }

        .footer-menu li {
            margin-left: 0;
            margin-right: 15px;
        }

            .footer-menu li::after {
                right: -12px;
            }
}

@media all and (max-width: 767px) {
    .footer-widget-wrapper {
        padding-bottom: 0px;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}




/*====================
51. Home 2
======================*/

.home-2 .header {
    background: transparent;
}

.home-2 .navbar::before {
    display: none;
}

/* .home-2 .main {
  margin-top: -9rem;
} */

.home-2 .hero-single {
    padding-top: 220px;
    padding-bottom: 120px;
}

    .home-2 .hero-single::before {
        opacity: .85;
    }

/* .home-2 .navbar-brand img{
  width: 190px;
} */

.home-2 .hero-img-wrap {
    position: relative;
}

.home-2 .hero-img {
    text-align: end;
    position: relative;
}

    .home-2 .hero-img::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        background: var(--theme-gradient);
        width: 80%;
        height: 100%;
        transform: rotate(10deg);
        border-radius: 50px;
        z-index: -1;
    }

    .home-2 .hero-img img {
        border-radius: 15px 100px 15px 100px;
        width: 90%;
    }

.home-2 .hero-img-wrap .event-countdown.ec-1 {
    margin-top: -150px;
    border-radius: 100px 0 0 100px;
}

.home-2 .hero-shape {
    position: absolute;
    left: 0;
    top: 140px;
    width: 350px;
    opacity: .15;
    z-index: -1;
}

.pricing-feature li {
    font-size: 16px;
    color: #000;
}

.room-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1.5px solid #ecf5fa;
    box-shadow: 0 4px 8px 0 rgba(0, 115, 187, 0.08);
    height: 100%;
    transition: transform 0.5s;
}

/* .room-section:hover{
  transform: scale(1.1);
} */
.slick-slide .box img {
    border-radius: 12px;
    margin-left: 21px;
    width: 98.0%;
}

.room-section ul li {
    text-align: left;
    font-size: 16px;
    color: #000;
}

    .room-section ul li i {
        color: #a43205;
        margin-right: 10px;
        font-weight: 900;
        font-size: 16px;
    }

.room-section h4 {
    font-size: 18px;
    text-align: left;
    padding-bottom: 4px;
    padding-top: 4px;
    color: #034e67;
    font-weight: 700;
}

@media all and (min-width: 992px) {
    .home-2 .navbar .nav-item .nav-link {
        /* font-weight: 600; */
        color: #000000;
    }

    .home-2 .navbar.fixed-top .nav-item .nav-link {
        /* color: var(--color-dark); */
    }

    .home-2 .nav-right .nav-right-link {
        color: var(--color-white);
    }

    .home-2 .navbar.fixed-top .nav-right .nav-right-link {
        /* color: var(--color-dark); */
    }
}

@media all and (max-width: 991px) {
    .home-2 .navbar {
        background: #ffffff;
    }

        .home-2 .navbar.fixed-top {
            background: var(--color-white);
        }

    .home-2 .hero-single {
        padding-top: 320px;
        padding-bottom: 150px;
    }

    .home-2 .mobile-menu-right .nav-right-link {
        color: var(--color-white);
    }

    .home-2 .navbar-toggler-mobile-icon {
        color: var(--color-white);
    }

    .home-2 .navbar.fixed-top .mobile-menu-right .nav-right-link,
    .home-2 .navbar.fixed-top .navbar-toggler-mobile-icon {
        color: var(--color-dark);
    }

    .home-2 .hero-img {
        margin-top: 80px;
    }

        .home-2 .hero-img img {
            width: 95%;
        }

    .home-2 .event-countdown.ec-1 .time-wrap {
        gap: 2px;
    }

    .home-2 .event-countdown.ec-1 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}



/*====================
52. Home 3
======================*/

.home-3 .header {
    background: transparent;
}

.home-3 .header-top {
    background: var(--theme-color2);
}

.home-3 .navbar::before {
    display: none;
}

.home-3 .main {
    margin-top: 0;
}

.home-3 .hero-single .hero-date {
    justify-content: center;
}

/* **************************** Sandeep ******************* */
.ptb-60 {
    padding: 50px 0;
}

.feature-area p {
    font-size: 16px;
    text-align: center;
    color: #000;
}

.about-right .about-text {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.our-venue {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1.5px solid #ecf5fa;
    box-shadow: 0 4px 8px 0 rgba(0, 115, 187, 0.08);
    height: 100%;
    transition: transform 0.5s;
}

    .our-venue:hover {
        transform: scale(1.1);
    }

    .our-venue img {
        width: 100%;
        border-radius: 10px;
    }

    .our-venue h4 {
        font-size: 18px;
        font-weight: 600;
        padding: 10px 0 2px;
        color: #000;
        text-align: left;
    }

    .our-venue p {
        font-size: 16px;
        color: #000;
        text-align: left;
    }

/* **************** Why Choose Us ****************  */
.fancy-title-view1 {
    float: left;
    width: 100%;
    margin-bottom: 70px;
    text-align: center;
}

    .fancy-title-view1 h2 {
        margin-bottom: 8px;
        font-size: 40px;
        font-weight: 700;
        display: block;
    }

    .fancy-title-view1 p {
        margin-bottom: 0px;
        display: inline-block;
        width: 65%;
    }

    .fancy-title-view1 i {
        font-size: 22px;
    }

.fancy-title-view1-color h2,
.fancy-title-view1-color p {
    color: #ffffff;
}

.light-transparent {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    background-color: #000;
}

.categories-view1-full {
    padding: 80px 0px 80px 0px;
    margin-top: 0;
    margin-bottom: 0;
    background: url(https://i.ibb.co/r4xf3sK/newslater.jpg);
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

.categories,
.categories-view1-wrap {
    /* float: left; */
    width: 100%;
}

    .categories ul li {
        list-style: none;
    }

    .categories > ul > li {
        float: none;
        display: inline-block;
        margin: 0px 0px 30px 0px;
        vertical-align: top;
    }

.categories-view1-wrap {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    /* padding: 30px 50px 30px 95px; */
    border-radius: 10px;
    position: relative;
    background-color: #ffffff;
    height: 100%;
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
}

    .categories-view1-wrap img {
        max-width: 50px;
        max-height: 50px;
    }

.categories-view1 i {
    position: absolute;
    left: 0px;
    top: 50%;
    font-size: 30px;
    color: #fb236a;
    width: 70px;
    height: 70px;
    border-radius: 0 100% 100% 0;
    text-align: center;
    padding-top: 18px;
    margin-top: -36px;
    background-color: #ffffff;
    /* border: 1px solid #eee; */
    border-left: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.categories-view1 li:hover i {
    color: #ffffff;
    background-color: #274160;
}

.categories-view1 a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 30px;
}

.categories-view1 small {
    font-size: 16px;
    color: #666;
}

.categories-view1 span {
    position: absolute;
    right: 5px;
    top: 8px;
    font-size: 90px;
    font-weight: 500;
    color: #999;
    opacity: 0.07;
    line-height: 1;
}

.main-load-btn {
    float: left;
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}

    .main-load-btn a {
        display: inline-block;
        line-height: 1;
        padding: 18px 45px;
        color: #ffffff;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        background-color: #fb236a;
    }

        .main-load-btn a:hover {
            background-color: #274160;
        }

.more-spacer {
    float: left;
    width: 100%;
    margin: 10px 0px;
}

.exhibitor-heading h3 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    padding-bottom: 14px;
}

.bg-color {
    background-color: #F8F9FE;
}

.exhibitor-heading h3 span {
    color: #a43205;
    opacity: unset;
    position: unset;
    font-size: 42px !important;
}

.why-choose-us-inner {
    padding-left: 10px;
}

    .why-choose-us-inner p {
        margin: 0;
        line-height: 26px;
        color: #000;
        font-size: 16px;
    }

.schedule-info p {
    font-size: 16px;
    color: #000;
}

.map {
    border: 5px solid #fff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: relative;
    background-color: #ffffff;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

.about-img .img-1 {
    width: 100%;
}

/* ************* header ********** */
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(../img/inner-images/hambergen.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.offcanvas-body {
    z-index: 99999;
}

.middle-logo {
    width: 220px;
}

.header-top-contact {
    display: flex;
    justify-content: end;
}

    .header-top-contact ul li a {
        /* padding: 10px 0px;
  border-radius: 4px;
  width: 100px;
  text-align: center;
  box-shadow: rgb(221, 221, 221) 0px 0px 3px 0px;
  font-size: 14px; */
        display: block;
        float: left;
        margin-top: 4px;
        margin-right: 10px;
        height: 40px;
        color: #ffffff;
        /* background: #333; */
        font-size: 14px;
        text-align: center;
        width: 150px;
        line-height: 40px;
        /* transform: skew(-45deg);
  transition: all 0.4s ease; */
        border: 2px solid #bab5b5;
        margin-bottom: 4px;
        border-radius: 4px;
        /* background-color: #fff; */
        margin-bottom: 4px;
        border-radius: 4px;
    }

        .header-top-contact ul li a span {
            display: inline-block;
            /* transform: skew(45deg); */
            font-size: 14px;
        }

        .header-top-contact ul li a:hover {
            background-color: #cb5c36;
        }

    .header-top-contact a.active {
        color: #fff;
        background-color: #f1ac00;
        border: 1px solid #ffffff00;
    }

.header-top {
    position: relative;
    /* padding: 6px 0 6px 0; */
    z-index: 1;
    background: linear-gradient(to right, #ca3900 0%, #034e67 100%);
    /* background: linear-gradient(to right, #38cdff7a 0%, #fb2279 100%); */
}

/* .container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
} */

i.far.fa-search {
    color: #fff;
}

.search-btn {
    background: none;
    border: none;
}

.login-btn a {
    color: #fff;
    padding: 0px 20px;
    border-radius: 4px;
    font-size: 14px;
}

    .login-btn a:hover {
        background-color: #ff6a2e;
    }

.header-top-social span {
    font-size: 14px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    animation: fadeOut 30s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* footer */
.footer-area {
    background: #000000 !important;
}

.footer-list.social {
    flex-direction: row !important;
}

.footer-widget-box .social i {
    width: 36px !important;
    background: #a43205 !important;
    padding: 10px !important;
    height: 30px !important;
    line-height: 10px !important;
    border-radius: 4px !important;
}

.footer-list.social li a i {
    margin-right: 5px;
    color: #ffffff;
}

.footer-list li a:hover {
    padding-left: 0px !important;
}

.footer-widget-box .social i:hover {
    background-color: #e4a70b !important;
}


.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    z-index: 1;
}

.tour-links {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    gap: 20px;
    align-items: center;
    right: 0px;
    bottom: 20px;
    z-index: 1;
    flex-direction: row;
}

    .tour-links a {
        color: white;
        font-size: 22px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: rgb(0 0 0 / 28%);
        padding: 10px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .tour-links a:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

    .tour-links img {
        width: 12%;
    }

.header-top-contact li:first-child {
    display: block !important;
}

/* **************** */
.about-section {
    position: relative;
    padding: 80px 0 100px;
}

    .about-section .sec-title {
        margin-bottom: 45px;
    }

    .about-section .btn-box {
        position: relative;
    }

        .about-section .btn-box a {
            padding: 15px 50px;
        }

    .about-section .image-column {
        position: relative;
    }

        .about-section .image-column .text-layer {
            position: absolute;
            right: -110px;
            top: 50%;
            font-size: 325px;
            line-height: 1em;
            color: #ffffff;
            margin-top: -175px;
            font-weight: 500;
        }

        .about-section .image-column .inner-column {
            position: relative;
            padding-left: 120px;
            /* padding-bottom: 125px; */
        }

            .about-section .image-column .inner-column:before {
                position: absolute;
                left: -75px;
                top: 65px;
                height: 520px;
                width: 520px;
                background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
                content: "";
            }

        .about-section .image-column .image-1 {
            position: relative;
        }

        .about-section .image-column .image-2 {
            position: absolute;
            left: 40px;
            bottom: 0;
        }

            .about-section .image-column .image-2 img,
            .about-section .image-column .image-1 img {
                box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
                border-radius: 12px;
            }

        .about-section .image-column .video-link {
            position: absolute;
            left: 70px;
            top: 170px;
        }

            .about-section .image-column .video-link .link:hover {
                background-color: #191e34;
                color: #fff;
            }

    .about-section .text {
        /* font-size: 15px; */
        color: #000;
        font-weight: 400;
        margin-bottom: 4px;
    }

.image-2 img {
    width: 360px;
    height: 270px;
}

/* *********** */
.item {
    /* border: 5px solid black; */
    padding: 50px 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0px 10px 10px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .item .title {
        font-size: 22px;
        font-weight: 600;
        margin: 0;
        color: #0e224a;
        margin-top: 1rem;
        text-align: center;
    }

.icon img {
    max-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: visible;
}

    .item .icon .vector {
        width: 2.5rem;
        position: relative;
        top: 1.25rem;
    }

.section .item .text {
    color: #000;
    font-size: 16px;
}

/* *************** */
.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    /* border-left: 2px solid #00a01d; */
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    /* border: medium none; */
    padding: 30px 24px 30px;
}

    .we-offer-area.text-center .item i {
        background: #cb5c36 none repeat scroll 0 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        color: #ffffff;
        font-size: 40px;
        height: 80px;
        line-height: 80px;
        position: relative;
        text-align: center;
        width: 80px;
        z-index: 1;
        transition: all 0.35s ease-in-out;
        -webkit-transition: all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        margin-bottom: 20px;
    }

        .we-offer-area.text-center .item i::after {
            border: 2px solid #cb5c36;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            content: "";
            height: 90px;
            left: -5px;
            position: absolute;
            top: -5px;
            width: 90px;
            z-index: -1;
            transition: all 0.35s ease-in-out;
            -webkit-transition: all 0.35s ease-in-out;
            -moz-transition: all 0.35s ease-in-out;
            -ms-transition: all 0.35s ease-in-out;
            -o-transition: all 0.35s ease-in-out;
        }

.we-offer-area .item::after {
    background: #cb5c36 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #cb5c36 !important;
}

.organiser-p {
    color: #000;
    font-size: 16px;
}

.ptb-80 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.equal-height p {
    color: #000;
    line-height: 28px;
}

.equal-height h4 {
    padding-bottom: 6px;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    font-size: 15px;
}

/* ************** */
/* ************** gallery ************** */
.gallery-section {
    padding: 60px 0;
}

.gallery-box .box {
    margin-bottom: 0;
}

.box a {
    height: 100%;
    width: 100%;
}

.gallery-section h2 {
    color: #333333;
    text-transform: uppercase;
    font-size: 1.6em;
}

.gallery-section .gallery-box {
    background: #fff;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    /*grid-template-rows: repeat(1, 18vw);*/
    grid-auto-rows: 16vw;
    grid-gap: 1rem;
    grid-auto-flow: dense;
}

/* General container */
.uib-container {
   
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Header */
.uib-header {
    text-align: center;
    margin-bottom: 3rem;
}

.uib-main-title {
    color: #2D74B1;
    margin-bottom: 1rem;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.32px;
}

.uib-description {
    color: #393D41;
    font-size: 1.125rem;
    margin: 0 auto;
}

/* Tab group & Radio Buttons */
.tab-group input[name="tab"] {
    display: none;
}

.uib-tabs-nav {
    display: flex;
   
    overflow: hidden;
    margin-bottom: 2rem;
}

.uib-tab-button {
    flex: 1;
    padding: 10px;
    color: #062844;
    background: none;
    border: 1px solid #9EBFDB;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    margin: 0px 8px;
    border-radius: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}

    .uib-tab-button:hover {
        color: #cb5c36;
        background-color: #f8f9fa;
    }

/* Active Tab (Color Change) */
#line-tab:checked ~ .uib-tabs-nav label[for="line-tab"],
#edit-tab:checked ~ .uib-tabs-nav label[for="edit-tab"],
#scale-tab:checked ~ .uib-tabs-nav label[for="scale-tab"],
#create-tab:checked ~ .uib-tabs-nav label[for="create-tab"],
#arrow-tab:checked ~ .uib-tabs-nav label[for="arrow-tab"] {
    background-color: #01294b;
    color: #fff;
    
}

/* Content Wrapping */
.uib-content-wrapper {
    flex: 0 0 400px;
    border-radius: 1rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;

    display: flex;
    gap: 2rem;
}

#line-tab:checked ~ .uib-tabs-nav ~ .uib-tab-content #line,
#edit-tab:checked ~ .uib-tabs-nav ~ .uib-tab-content #edit,
#scale-tab:checked ~ .uib-tabs-nav ~ .uib-tab-content #scale,
#create-tab:checked ~ .uib-tabs-nav ~ .uib-tab-content #create,
#arrow-tab:checked ~ .uib-tabs-nav ~ .uib-tab-content #arrow {
    max-height: 9999px;
    opacity: 1;
    visibility: visible;
}

/* Content areas */
.uib-image-container {
    border-radius: 1rem;
    overflow: hidden;
}

.uib-content-image {
    width: 412px;
    height: 412px;
    border-radius: 0.5rem;
    position: relative;
    bottom: 1em;
}

.uib-content-text {
    flex: 1;
   
}

.uib-content-title {
    color: #1F2937;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.uib-content-description {
    color: #393D41;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.uib-content-link {
    color: #393D41;
    cursor: pointer;
}

    .uib-content-link:hover {
        text-decoration: underline;
    }

/* Responsive design */
@media (max-width: 768px) {
    .uib-tabs-nav {
        flex-direction: column;
        border: none;
    }

    .uib-tab-button {
        border: 1px solid #9EBFDB;
    }

    .uib-image-container,
    .uib-content-text {
        width: 100%;
    }

    .uib-main-title {
        font-size: 2rem;
    }

    .uib-content-wrapper {
        display: block;
    }

    .uib-content-image {
        display: flex;
        height: 320px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        position: relative;
        right: 2em;
    }

    .uib-content-text {
        padding: 0 !important;
    }
}




/* .gallery-section .gallery-box .box {
        border-radius: 12px;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0px 4px 20px -4px rgba(0, 0, 0, 0.15);
        transition: all 0.5s ease;
        border: 5px solid rgba(0, 0, 0, 0.07);
    } */
/* 
        .gallery-section .gallery-box .box:hover {
            box-shadow: 0px 4px 40px -4px rgba(0, 0, 0, 0.3);
            border-radius: 12px;
        } */

/* .gallery-section .gallery-box .box.big {
            grid-row: span 2;
            grid-column: span 2;
        } */
/* 
        .gallery-section .gallery-box .box.horizontal {
            grid-column: span 2;
        } */
/* 
        .gallery-section .gallery-box .box.vertical {
            grid-row: span 2;
        } */

/* .gallery-section .gallery-box .box img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            transition: all 0.5s ease;
            border-radius: 12px;
        } */

/* .gallery-section .gallery-box .box:hover img {
            transform: scale(1.2);
        } */

/* ****************** Grid ************* */
.whats-on1 {
    position: relative;
}

.whats-on-content h5 {
    position: absolute;
    top: 10px;
    left: 15px;
    margin: 0;
    background-color: rgb(0 0 0 / 50%);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}

.whats-on-content p {
    bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.inner-content {
    position: absolute;
    bottom: 10%;
    left: 6%;
}

.whats-on-content a {
    color: #fff;
}

.whats-on1 img {
    border-radius: 12px;
    height: 300px;
    width: 100%;
}

.list-view .whats-on1 {
    position: unset;
    border-top: 1px solid #d3d3d3;
    padding: 6px 0 4px;
    display: flex;
}

.list-view .whats-on {
    display: block;
    width: 100px;
    height: 80px;
}

.list-view .inner-content .width-list-view {
    text-align: start;
    width: 30%;
}

.list-view .whats-on-content h5 {
    position: absolute;
    top: 4%;
    left: 6%;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background: none !important;
    padding: 5px 8px;
    border-radius: 10px;
}

.list-view .whats-on-content {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    width: 100%;
}

    .list-view .whats-on-content p {
        color: #000000;
        font-size: 14px;
    }

.list-view .inner-content {
    display: contents;
}

.list-view .row > [class*=col-] {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.list-view .whats-on-content h5 {
    position: unset;
    color: #000000;
    font-size: 16px;
    font-weight: 100;
    width: 35%;
}

.list-view .inner-content {
    position: unset;
}

.list-view .card {
    flex-direction: row;
}

.list-view .whats-on-content a {
    color: #ffffff;
    font-size: 16px;
}

.grid-view {
    float: inline-end;
}

    .grid-view .btn-primary {
        background: #034e67;
        border: none;
        font-size: 14px;
        padding: 12px 20px;
        margin: 0 6px;
    }

    .grid-view .btn-danger {
        background-color: #b13b0c;
        border: none;
        font-size: 14px;
        padding: 12px 20px;
        margin: 0 6px;
    }

    .grid-view a img {
        max-width: 20px;
        border: none !important;
    }

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgb(26 26 26 / 89%) !important;
}

.exhibition-hall-main h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 14px;
}

.exhibition-hall-content p {
    font-size: 16px;
    color: #000;
}

.why-chennai-inner-content-img img {
    border-radius: 12px;
}

.why-chennai-inner-content h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 6px;
}

.why-chennai-inner-content p {
    font-size: 16px;
    color: #000;
    line-height: 34px;
}

/* .why-chennai-inner-content ul li{
  font-size: 16px;
  color: #000;
  line-height: 34px; 
} */
.why-chennai-inner-content ul li b {
    font-size: 18px;
}

.why-chennai-inner-content .fas {
    color: #a43205;
    margin-right: 8px;
    font-size: 18px;
}

.why-chennai-inner-content-main {
    max-width: 1000px;
    text-align: center;
    margin: auto;
    padding-bottom: 20px;
}

    .why-chennai-inner-content-main p {
        text-align: center;
        color: #000;
    }

.getting-here-home {
    padding: 50px 0 60px 0;
/*    background: #01054c;*/
    color: #FFF;
}

    .getting-here-home .title-desktop {
        display: block;
    }

    .getting-here-home img {
        max-width: 50%;
        margin: auto;
    }

    .getting-here-home .subtitle {
        display: block;
        font-size: 22px;
        line-height: 1.2em;
        padding: 40px 0 20px 0;
    }

    .getting-here-home .btn-pink {
        display: inline-block;
        background: #FE487F;
        padding: 10px 20px;
        color: #FFF;
        font-size: 22px;
        line-height: 1.2em;
        margin-top: 20px;
    }

.journey-planner label {
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
}

input#jp-start {
    /* border: 1px solid #e6e6e6; */
    padding: 8px;
    width: 100%;
    border-radius: 10px;
    box-shadow: rgb(221, 221, 221) 0px 0px 3px 0px;
}

.journey-planner .jp-submit {
    background: none;
    cursor: pointer;
    margin-top: 20px;
    border: 2px solid #cb5c36;
}

.exhibitor-getting-here .subtitle {
    padding: 4px 0 4px 0;
    text-align: center;
    font-family: "Marcellus", serif;
    font-size: 18px;
    margin-top: 10px;
}

    .exhibitor-getting-here .subtitle p {
        text-align: center;
    }

.exhibitor-getting-here .journey-planner label {
    margin-bottom: 6px;
}

.exhibitor-getting-here input#jp-start {
    padding: 12px 16px;
    border-radius: 50px;
}

.exhibitor-getting-here .journey-planner .jp-submit {
    margin: auto;
    display: table;
    margin-top: 20px;
    padding: 8px 40px;
}

/* ********** Testimonials **************** */
.owl-carousel-main .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: unset;
    width: unset;
    border-radius: 50%;
    position: unset;
    top: unset;
    left: unset;
    transform: translateX(-7%);
}

.owl-carousel-main .item {
    box-shadow: unset;
}

.testimonials .testi .item {
    background: #F8F9FE;
    padding: 20px 20px;
    border-radius: 12px;
}

    .testimonials .testi .item .profile {
        display: flex;
        padding-left: 15px;
    }

        .testimonials .testi .item .profile span {
            border-radius: 100%;
            width: 50px;
            height: 50px;
            object-fit: cover;
            background-color: #cb5c36;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            font-weight: 600;
            color: #fff;
        }

        .testimonials .testi .item .profile .information {
            padding-left: 20px;
            margin-bottom: 14px;
        }

            .testimonials .testi .item .profile .information .stars i {
                color: #ffd832;
                font-size: 14px;
            }

            .testimonials .testi .item .profile .information p {
                font-size: 18px;
                margin: 0px auto 0px;
                color: #5a3733;
                font-weight: 600;
                line-height: 1;
            }

    .testimonials .testi .item > p {
        margin-bottom: 0px;
        font-size: 14px;
        line-height: 26px;
        display: block;
        z-index: 2;
        color: #000000;
    }

    .testimonials .testi .item .icon {
        text-align: center;
    }

        .testimonials .testi .item .icon i {
            font-size: 32px;
            color: #ffd832;
        }

.exhibitor-venue-guide-heading h3 {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 12px;
}

.exhibitor-venue-guide-inner {
    background-color: white;
    color: black;
    border-radius: 14px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    padding: 20px 20px 20px 20px;
    cursor: pointer;
    height: 100%;
}

    .exhibitor-venue-guide-inner h4 {
        font-size: 18px;
        text-align: center;
        font-weight: 600;
    }

    .exhibitor-venue-guide-inner img {
        max-width: 50px;
        margin: auto;
        display: block;
        padding-bottom: 8px;
    }

    .exhibitor-venue-guide-inner p {
        font-size: 14px;
    }

.exhibitor-venue-guide-main p {
    color: #000;
}

.exhibitor-venue-guide-main li {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

    .exhibitor-venue-guide-main li i {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a43205;
        border-radius: 50%;
        font-size: 18px;
        margin-right: 8px;
        flex: 0 0 auto;
    }

.exhibitor-destination-chenna-inner li {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

    .exhibitor-destination-chenna-inner li i {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a43205;
        border-radius: 50%;
        font-size: 18px;
        margin-right: 8px;
        flex: 0 0 auto;
    }

.exhibitor-destination-chenna-inner h3 {
    padding-bottom: 14px;
}

.exhibitor-destination-chenna-inner-img img {
    max-width: 100%;
    border-radius: 12px;
}

.exhibitor-destination-chennai ul li {
    padding: 2px 0;
    font-size: 14px;
    list-style-type: none;
    font-size: 16px;
    color: #000000;
}

/* .categories-view1-wrap img {
max-width: 60px;
max-height: 60px;
} */
.exhibitor-destination-chenna-inner p {
    color: #000;
}

.why-chennai-inner-content li {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

    .why-chennai-inner-content li i {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a43205;
        border-radius: 50%;
        font-size: 18px;
        margin-right: 8px;
        flex: 0 0 auto;
    }

/* visitors-case-study */

.news-card {
    position: relative;
    height: 12rem;
    overflow: hidden;
    border-radius: 12px;
    flex: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

@media (min-width: 900px) {

    .news-card {
        height: 20rem;
    }
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
    ;
    z-index: 0;
}

.news-card__card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /*     background: rgba(255,0,0,.5); */
}

.news-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    z-index: -1;
}

.news-card__text-wrapper {
    position: absolute;
    bottom: 0rem;
    padding: 1rem;
    color: white;
    transition: background-color 1.5s ease;
}

.news-card__title {
    transition: color 1s ease;
    margin-bottom: .5rem;
    font-size: 20px;
    color: #fff;
}

.about-text {
    color: #000;
    text-align: justify;
}

.news-card__post-date {
    font-size: 14px;
    margin-bottom: .5rem;
    color: #ffffff;
}

.about-section-area {
    display: flex;
    align-items: center;
}

.news-card__details-wrapper {
    max-height: 0;
    opacity: 0;
    transition: max-height 1.5s ease, opacity 1s ease;
}

/* Traiff styles */
.winner__table td p span {
    width: 24%;
    display: inline-block;
    font-weight: 500;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: rgb(228 249 255 / 59%) !important;
}

.winner__table td:first-child {
    width: 8%;
}

.winner__table td:nth-child(2) {
    width: 40%;
}

td {
    font-size: 18px !important;
    line-height: 30px;
}

.winner__table td ol li {
    list-style: disc;
}


/* new-organiser */

.event .slick-slide .box img {
    border-radius: 12px;
    margin-left: 21px;
    width: 78.0%;
}

.event .venue-content {
    position: absolute;
    right: 13%;
    bottom: 30px;
    width: 230px;
    background: #ffffffe3;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}





@media (min-width: 900px) {
    .news-card:hover .news-card__details-wrapper {
        max-height: 20rem;
        opacity: 1;
    }

    .news-card:hover .news-card__text-wrapper {
        background-color: rgba(0, 0, 0, 0.6);
        width: 100%;
    }

    .news-card:hover .news-card__title {
        color: yellow;
    }

    .news-card:hover .news-card__image {
        transform: scale(1.2);
        z-index: -1;
    }
}

.news-card__excerpt {
    font-weight: 300;
}

.news-card__read-more {
    background: black;
    color: #ffffff;
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: 0.3rem;
    margin-top: 1rem;
    /* border: 1px solid #444; */
    font-size: 1.0rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-decoration: none;
    width: 10rem;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

    .news-card__read-more i {
        position: relative;
        left: 0.2rem;
        color: #ffffff;
        transition: left 0.5s ease, color 0.6s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        font-size: 12px;
    }

    .news-card__read-more:hover i {
        left: 0.5rem;
        color: yellow;
    }


/* ********** Testimonials **************** */
/* ************** Cast Study ************** */
blockquote,
.rich-text-editor blockquote {
    border-left: 4px solid #f1ac00;
    /* margin: 0 0 40px;
    padding: 20px 0 0;
    position: relative;
    width: 95%; */
}

blockquote {
    background-color: #f9f9f9;
    font-style: italic;
    padding: 16px 20px 16px 20px !important;
    color: #000;
}

    /* blockquote,
blockquote span,
blockquote p {
    color: #777;
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
} */

    blockquote .author-name a {
        color: #999;
        font-size: 11px;
    }

    blockquote.text-left-align {
        text-align: left;
    }

    blockquote.text-right-align {
        text-align: right;
    }

    blockquote.text-center-align {
        text-align: center;
    }


.cs-blog .cs-author,
.cs-blog-detail .cs-author {
    float: left;
    margin: 0 0 0px;
    display: flex;
}

    .cs-blog .cs-author figure,
    .cs-blog-detail .cs-author figure {
        display: inline-block;
        height: 32px;
        margin: 0 10px 0 0;
        vertical-align: middle;
        width: 32px;
        border-radius: 50px;
    }

.cs-blog-detail .tags {
    display: inline-block;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 100%;
}

.cs-blog-detail .cs-tags {
    display: block;
    margin: 20px 0 20px;
}

    .cs-blog-detail .cs-tags .tags span {
        color: #333;
        display: inline-block;
        font-size: 18px;
        margin: 0 10px 5px 0;
    }

    .cs-blog-detail .cs-tags .tags ul {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

.cs-tags ul li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 0 6px;
}

    .cs-tags ul li a {
        display: block;
        font-size: 12px;
        margin: 0 8px 0 0;
    }

.cs-tags .tags ul li a {
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #777;
    padding: 2px 18px 3px;
}

.post-option {
    display: flex;
    justify-content: end;
}

.rich-editor-text {
    align-items: flex-start;
    display: inline-block;
}

.cs-main-post img {
    width: 100%;
    border-radius: 12px;
}

.post-option .post-date {
    padding: 0 30px;
}

.cs-author img {
    border-radius: 50px;
}

.rich-editor-text p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 6px 0;
}

.cs-blog-detail h4 {
    font-size: 22px;
    /* padding: 10px 0; */
}

.post-date a {
    color: #999;
    font-size: 14px;
}

.post-comment a {
    color: #999;
    font-size: 14px;
}

.post-option .post-date i {
    font-size: 12px;
}

/* ************** Cast Study ************** */
/* ************* tabs *********** */
.tabs-main {
    position: relative;
}

.tbs-d-flex {
    display: flex;
    margin: 6px 0;
}

    .tbs-d-flex img {
        max-width: 44px;
        height: 40px;
        /* width:30px; */
    }

    .tbs-d-flex h3 {
        font-size: 16px;
        font-weight: 600;
    }

.tbs-d-flex-main {
    display: flex;
    justify-content: space-around;
    padding: 14px 0px;
}

.tbs-d-flex-text {
    padding-left: 16px;
}

.tabs-main .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border: none;
}

.tabs-main .nav-tabs {
    border-bottom: 0;
    padding-bottom: 14px;
}

.tbs-d-flex-text p {
    font-size: 14px;
    color: #000;
}

.tabs-inner-content p {
    font-size: 15px;
    color: #000;
    line-height: 26px;
    line-height: 28px;
}

.tabs-inner-content .main-heading {
    font-size: 24px;
    padding-bottom: 6px;
}

.tabs-inner-img img {
    /* border-radius:4px; */
}

.tb-btn .theme-btn {
    border-radius: 10px;
}

.tb-btn {
    display: flex;
    /* justify-content: space-between; */
    position: absolute;
    bottom: 20px;
}

    .tb-btn span {
        color: #000;
    }

    .tb-btn img {
        width: 38px;
        padding-right: 4px;
        padding-left: 12px;
    }

    .tb-btn span {
        color: #000;
        padding-left: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.bg-new-color {
    background-color: #f4f5f4;
}

.nav-tabs .nav-link {
    font-size: 24px;
    color: #4B4847;
    padding-bottom: 16px;
    /* position: relative;
    font-family: "Marcellus", serif; */
    cursor: pointer;
    display: block;
    text-decoration: none;
}

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        background-color: unset;
        color: #cb5c36;
        border-bottom: 2px solid;
        padding-bottom: 16px;
    }

.tabs-main .nav-item {
    padding-left: 20px;
    padding-right: 20px;
}

/* ************* tabs *********** */
.getting-contact-inner {
    display: flex;
}

    .getting-contact-inner img {
        max-width: 52px;
    }

    .getting-contact-inner h3 {
        font-size: 20px;
    }

    .getting-contact-inner p {
        font-size: 16px;
    }

.getting-contact-inner-content {
    padding-left: 10px;
}

.getting-contact-inner-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketing-policy-download img {
    max-width: 36px;
    padding-left: 10px;
    /* position: absolute;
  right:34%; */
}

.marketing-policy-pdf p {
    padding: 6px 10px;
}

.marketing-policy-pdf {
    display: flex;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    background-color: rgb(228 249 255 / 72%);
    margin: 10px 0;
    border-radius: 8px;
    justify-content: space-between;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
}

.bg-remove {
    background-color: #ffffff;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
}

.marketing-policy {
    background-image: url(../img/inner-images/bg-new.png);
}

.side-list ul li span {
    float: right;
    color: #01496b;
}

@media (max-width: 991px) {
    .header-top-contact ul {
        gap: 20px;
    }

    .navbar-brand img {
        width: 40px;
    }

    .middle-logo {
        width: 160px !important;
    }

    .gallery-section .gallery-box {
        grid-template-columns: repeat(3, auto);
        grid-auto-rows: 18vw;
    }

    .winner__table {
        white-space: nowrap;
    }

    .tour-links a {
        font-size: 13px !important;
        gap: 8px !important;
        padding: 0px 3px !important;
    }
}

@media screen and (max-width:767px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(2, auto);
        grid-auto-rows: 18vw;
    }

    .home-2 .main {
        /* margin-top: 62px; */
    }

    .navbar-brand img {
        width: 180px;
    }

    .middle-logo {
        width: 160px !important;
    }

    .tour-links a {
        display: none;
    }

    .welcome-text {
        font-size: 24px;
    }

    .fullscreen-video {
        width: 100%;
        height: auto !important;
    }

    .hero-section {
        height: auto !important;
    }

    .navbar-toggler-mobile-icon .fa-bars {
        color: #000;
    }

    .header-top-right {
        display: none;
    }

    /* 
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 0px;
    } */

    .mobile-menu-right .search-btn {
        display: none;
    }

    .convention-heading p {
        font-size: 16px;
    }

    .convention-heading .view-details-btn {
        margin-left: 0px;
    }

    .view-details-btn .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .convention-heading {
        display: block;
        margin: auto;
        text-align: center;
    }
    @media screen and (max-width: 768px) {
        .convention-heading {
            display: block;
            margin: auto;
            text-align: start;
            border-bottom: 1px solid #d0d0d0;
        }
    }

        .about-right .site-title {
            font-size: 22px;
            line-height: 34px;
            margin-bottom: 8px;
        }

        .about-img .img-2 {
            width: 234px;
            right: -10px;
            height: 145px;
        }

        .site-title {
            font-size: 26px;
            line-height: 44px;
            margin-bottom: 8px;
        }

        .py-90 {
            padding: 30px 0;
        }

        .exhibitor-heading h3 {
            padding-bottom: 0px;
            font-size: 26px;
        }

            .exhibitor-heading h3 span {
                font-size: 26px !important;
            }

        .ptb-60 {
            padding: 30px 0;
        }

        .pb-50 {
            padding-bottom: 30px;
        }

        .pt-50 {
            padding-top: 30px;
        }

        .event-countdown.ec-2 .time-wrap .time span:first-child {
            font-size: 24px;
        }

        .event-countdown .time-wrap {
            gap: 2px;
        }

        .site-heading {
            margin-bottom: 0 !important;
            text-align: center;
        }

        .categories-view1 a {
            font-size: 18px;
        }

        .feature-area p {
            font-size: 14px;
        }

        .why-choose-us-inner p {
            font-size: 14px;
        }

        .feature-item h4 {
            font-size: 18px;
        }

        .site-title-tagline {
            letter-spacing: unset;
            font-size: 16px;
            margin-bottom: 0px;
            margin: 0 !important;
            padding: 0;
            line-height: 32px;
        }

        .schedule-nav .nav-link .content .day {
            font-size: 12px;
        }

        .schedule-nav .nav-link .icon {
            font-size: 20px;
        }

        .schedule-nav .nav-link .content .date {
            font-size: 12px;
        }

        .schedule-nav .nav {
            padding: 4px;
            gap: 2px;
        }

        .schedule-nav .nav-link {
            gap: 8px;
            padding: 6px 8px;
        }

        .schedule-nav {
            padding-bottom: 5px;
            margin-bottom: 6px;
        }

        .pt-100 {
            padding-top: 40px;
        }

        .footer-widget-box {
            margin-bottom: 20px;
        }

        .footer-widget-title {
            padding-bottom: 10px;
            margin-bottom: 10px;
        }

        .blog-item-info h4 a {
            font-size: 16px;
            line-height: 26px;
        }

        .blog-item-meta ul {
            margin-bottom: 4px;
            padding-bottom: 4px;
        }

        .blog-item-meta a {
            font-size: 14px;
        }

        .blog-item-info .theme-btn {
            margin-top: 0px;
        }

        .theme-btn {
            font-size: 14px;
        }


        .py-100 {
            padding: 30px 0;
        }

        .schedule-meta ul {
            flex-direction: column;
            gap: 4px;
        }

            .schedule-meta ul li {
                font-size: 14px;
            }

        .schedule-info h4 a {
            font-size: 18px;
            line-height: 28px;
        }

        .schedule-info p {
            font-size: 14px;
        }

        .schedule-info h4 {
            margin-bottom: 0px;
        }

        .site-shadow-text {
            display: none;
        }

        .theme-btn {
            font-size: 14px;
            margin: auto;
            display: table;
        }

        .footer-area .col-md-6.col-lg-2.col-sm-6.col-xs-6 {
            width: 50%;
        }

        .event-countdown.ec-2 .time-wrap .time .unit {
            font-size: 18px;
        }

        .event-countdown.ec-2 .time-wrap .divider {
            display: block;
            color: var(--color-dark);
            font-size: 28px;
        }

        .event-countdown h2 {
            font-size: 22px;
            margin: 0;
            padding: 0;
            line-height: 30px;
        }

        .about-section .image-column .inner-column:before {
            display: none;
        }

        .image-2 img {
            display: none;
        }

        .about-section .image-column .inner-column {
            position: relative;
            padding-left: unset;
            padding-bottom: unset;
        }

        .about-section .text {
            font-size: 14px;
        }

        .about-section .btn-box a {
            padding: 10px 34px;
            font-size: 12px;
        }

        .margin-top {
            margin: 54px 0;
        }

        .section .item .text {
            color: #000;
            font-size: 14px;
        }

        .item .title {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .ptb-80 {
            padding-top: 70px;
            padding-bottom: 40px;
        }

        .margin-top:last-child {
            margin-bottom: 0 !important;
        }

        .counter-box .title {
            font-size: 22px;
            line-height: 34px;
            margin-top: 0px;
        }

        .counter-box {
            padding: 20px 20px 20px 20px;
        }

        .counter-content p {
            font-size: 14px;
        }

        .equal-height p {
            font-size: 14px;
        }

        .row.our-offer-items.less-carousel h4 {
            font-size: 20px;
            padding-bottom: 0px;
        }
    }

@media (max-width: 767px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(3, auto);
    }

    .site-breadcrumb {
        padding-bottom: 60px !important;
    }

        .site-breadcrumb .breadcrumb-title {
            font-size: 20px;
            margin-bottom: 0px;
        }

        .site-breadcrumb .breadcrumb-menu {
            font-size: 16px;
        }

            .site-breadcrumb .breadcrumb-menu li a {
                font-size: 14px;
            }

            .site-breadcrumb .breadcrumb-menu li.active {
                font-size: 14px;
            }
}


@media (max-width: 599px) {
    .fullscreen-video {
        width: 100%;
        height: auto !important;
    }

    .header-top-contact {
        display: flex;
        justify-content: center;
    }

        .header-top-contact ul {
            gap: 10px;
        }
}

@media (max-width: 575px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(2, auto);
        grid-auto-rows: 35vw;
    }

    .list-view .card {
        flex-direction: column;
    }


        .list-view .card > .card-img-top {
            width: auto;
        }

        .list-view .card .card-body {
            display: inline-block;
        }

    .our-venues-content {
        max-width: 1000px;
        margin: auto;
    }

        .our-venues-content p {
            color: #000;
            font-size: 16px;
        }
}

span.plan-event {
    border: 1px solid #cb5c36;
    background-color: #cb5c36;
    padding: 7px 4px;
    border-radius: 8px;
    box-shadow: rgb(189 189 189) 0px 0px 14px 0px;
    display: block;
    transform: translateY(-3px);
}



    span.plan-event h6 {
        color: #fff;
        animation: blink 2s infinite;
        font-size: 12px;
        font-weight: 400;
    }

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.team-img img {
    /* width:200px;
  height:200px */
}

.team-area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.team-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* margin-bottom: 40px; */
}

.second-row {
    justify-content: center;
}

    .second-row .team-img {
        height: 50%;
    }

/* .team-item {
    flex: 1 1 18%;
    max-width: 20%;
    text-align: center;
    margin-bottom: 20px;
} */

.team-img img {
    width: 100%;
    border-radius: 8px;
}

/* .team-content .info {
    padding-top: 10px;
} */

/* @media (max-width: 992px) {
    .team-item {
        flex: 1 1 45%;
       
        max-width: 45%;
    }
} */

/* @media (max-width: 768px) {
    .team-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
} */


.contact-info-item {
    display: flex;
    margin-bottom: 10px;
}

.contact-info-icon {
    /* height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%; */
}

    .contact-info-icon i {
        font-size: 22px;
        line-height: 50px;
    }

.contact-info-content {
    margin-left: 20px;
}

    .contact-info-content h4 {
        color: #01054C;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 4px;
        font-family: "Marcellus", serif;
    }

    .contact-info-content p {
        color: #000000f0;
        font-weight: 400;
        font-size: 16px;
    }

.contact-form {
    background-color: #fff;
    padding: 40px;
    width: 45%;
    padding-bottom: 20px;
    padding-top: 20px;
}

    .contact-form h2 {
        font-weight: bold;
        font-size: 2em;
        margin-bottom: 10px;
        color: #333;
    }

    .contact-form .input-box {
        position: relative;
        width: 100%;
        margin-top: 10px;
    }

        .contact-form .input-box input,
        .contact-form .input-box textarea {
            width: 100%;
            padding: 5px 0;
            font-size: 16px;
            margin: 10px 0;
            border: none;
            border-bottom: 2px solid #333;
            outline: none;
            resize: none;
        }

        .contact-form .input-box span {
            position: absolute;
            left: 0;
            padding: 5px 0;
            font-size: 16px;
            margin: 10px 0;
            pointer-events: none;
            transition: 0.5s;
            color: #666;
        }

        .contact-form .input-box input:focus ~ span,
        .contact-form .input-box textarea:focus ~ span {
            color: #e91e63;
            font-size: 12px;
            transform: translateY(-20px);
        }

        .contact-form .input-box input[type="submit"] {
            width: 100%;
            background: #00bcd4;
            color: #FFF;
            border: none;
            cursor: pointer;
            padding: 10px;
            font-size: 18px;
            border: 1px solid #00bcd4;
            transition: 0.5s;
        }

            .contact-form .input-box input[type="submit"]:hover {
                background: #FFF;
                color: #00bcd4;
            }

.contact-officer .team-item {
    border: 1px solid #febda7;
    border-radius: 10px;
    box-shadow: rgb(222 218 218) 0px 0px 8px 0px;
}

.contact-officer .team-item {
    /* flex: 1 1 18%;
    max-width: 23%; */
    background: #fff;
    height: 100%;
}

.contact-officer .team-content .info {
    padding: 25px 12px;
    margin-top: 0px;
}

.venue-items {
    text-align: start;
    margin-bottom: 20px;
    color: #000;
}

    .venue-items .icon img {
        /* margin-right: 14px; */
    }

.exhibitionhalls-inner .icon {
    margin-bottom: 10px !important;
}

.exhibitionhalls-inner p {
    font-size: 15px;
}

.venue-items ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 4px;
}

.exhibitionhalls-inner .theme-btn {
    margin: auto;
    display: block;
}

i.fas.fa-check-circle {
    color: #f1ac00;
}

.venue-items ul li p {
    padding-left: 10px;
}

img.layout-img {
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* .row {
        flex-direction: column;
    } */

    .contact-info {
        /* margin-bottom: 40px; */
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }
}



body {
    font-family: "Mulish", sans-serif;
}

.nav-tabs .nav-link {
    font-family: "Marcellus", serif;
}

.site-title {
    font-family: "Mulish", sans-serif;
}

.nav-tabs .nav-link {
    border: none;
}

.tabs-inner-content p {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: #4B4847;
    font-weight: 400;
}

.tabs-inner-content .main-heading {
    font-family: "Mulish", sans-serif;
    color: #4B4847;
    font-size: 26px;
}

.about-section .image-column .inner-column {
    padding-bottom: 0px;
}

    .about-section .image-column .inner-column:before {
        content: unset;
    }

.about-section {
    position: relative;
    padding: 30px 0 60px;
}

    .about-section .btn-box a {
        padding: 8px 50px;
    }

.schedule-speaker {
    width: 100% !important;
}

.schedule-area2 .schedule-img img {
    width: 180px;
    height: 130px;
}

.counter-wrapper {
    /* background: #333; */
    /* background-image: url(assets/img/inner-images/case-study-details1.jpg); */
    /*background-image: linear-gradient(to right, #ca3900b5 0%, #034e67de 100%), url(../img/inner-images/case-study-details1.jpg);*/
    background-image: linear-gradient(to right, #ca3900b5 0%, #034e67de 100%), url(../img/inner-images/bg-1.jpg);
    background: cover;
    background-position: center center;
    position: relative;
}

.counter-inner h3 {
    font-size: 26px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.counter-inner span {
    font-size: 40px;
    padding: 0;
    margin: 0;
    line-height: 70px;
}

.counter-img img {
    max-width: 76px;
}

.Plan-Your-Event h4 {
    font-size: 40px;
    text-align: center;
    color: #fff;
    font-family: "Marcellus", serif;
}

.exhibitor-getting-here .subtitle {
    padding: 4px 0 4px 0;
    text-align: center;
    font-family: "Marcellus", serif;
    font-size: 18px;
    margin-top: 10px;
}

.Enquire-Now {
    margin: auto;
    display: block;
    text-align: center;
}

    .Enquire-Now .theme-btn {
        border-radius: 8px;
        box-shadow: none;
        padding: 10px 30px;
        border: none;
    }

        .Enquire-Now .theme-btn:hover {
            background-color: #ffffff !important;
            /* border:1px solid #debf42 !important; */
            color: #000 !important;
            border: none;
        }

    .Enquire-Now .theme-btn {
        margin-top: 8px;
        font-size: 16px;
        height: 56px !important;
        box-shadow: unset;
    }

.map-new {
    border: 14px solid #f4f5f4;
    border-radius: 12px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/* .faq {
            background-color: #f5f6f7;
        } */
/* .faq .faq-list {
            padding: 0 100px;
        } */
.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 14px;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    color: #000;
    box-shadow: 0px 5px 20px 3px rgba(230, 233, 249, 0.9);
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    /*padding: 0 30px;*/
    outline: none;
    cursor: pointer;
    text-decoration: none;
    /*padding-left: 34px;*/
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #a43205;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 10px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 8px 0 0 0;
    color: #000;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #36348d;
    transition: 0.3s;
}

    .faq .faq-list a.collapsed:hover {
        color: #a43205;
    }

    .faq .faq-list a.collapsed .icon-show {
        display: inline-block;
        padding-top: 2px;
    }

    .faq .faq-list a.collapsed .icon-close {
        display: none;
    }

.faqs-inner-list li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: decimal;
}

.faqs-inner-list {
    padding-left: 20px !important;
}

.exhibitionhalls-inner {
    padding: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff36;
    -webkit-box-shadow: 2.091px 19.89px 35px 0px rgba(2, 29, 89, 0.07);
    box-shadow: 2.091px 19.89px 35px 0px rgba(2, 29, 89, 0.07);
    transition: all 0.5s ease;
    border: 2px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
}

    .exhibitionhalls-inner .venue-items ul li p {
        font-size: 15px;
    }

    .exhibitionhalls-inner img {
        /* margin-right: 14px; */
        margin: auto;
    }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

.slide {
    position: relative;
}

    .slide img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        padding: 0% 2.5%;
        transition: transform 8s;
    }

        .slide img:hover {
            -ms-transform: scale(1.05);
            -webkit-transform: scale(1.05);
            transform: scale(1.05);
        }

.slider-content {
    width: 93%;
    /* margin: auto; */
    position: absolute;
    bottom: 0px;
    left: 30px;
    color: white;
    background-color: rgb(0 0 0 / 25%);
    padding: 10px;
    /* border-radius: 5px; */
    display: none;
    /* transition: opacity 0.7s ease-in-out !important;
transition-duration: 10s !important;
transition-delay: 3s !important; */
}

.owl-item.active .slider-content {
    width: 95%;
    position: absolute;
    bottom: 0px;
    left: 25px;
    color: white;
    background-color: #211f1fa8;
    padding: 10px;
    display: none;
    opacity: unset !important;
    /* transition: opacity 0.7s ease-in-out !important;
transition-duration: 10s !important;
transition-delay: 10s !important;
*/
}

.owl-item,
.slider {
    opacity: 0.4;
}

    .owl-item.active,
    .slider {
        opacity: unset !important;
    }

#discover-chennai.owl-carousel .owl-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    padding: 0% 1.5%;
    border-radius: 12px;
}
#beyond-ctc.owl-carousel .owl-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    padding: 0% 1.5%;
    border-radius: 12px;
}

.owl-item.active .slider-content {
    display: block;
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0;
}

.owl-nav {
    right: 0px;
    /* background: #cb5c36; */
    position: absolute;
    top: 0px;
 
}


.owl-next {
    top: -4px;
    position: relative;
}

.owl-prev {
   
}

    .owl-prev svg {
        background-color: #a43205;
        padding: 8px;
        border-radius: 50px;
        color: #fff;
    }

.owl-next svg {
    background-color: #a43205;
    padding: 8px;
    border-radius: 50px;
    color: #fff;
}

.owl-prev,
.owl-next {
    top: -4%;
}

.slider-content h4 {
    color: #fff;
    font-weight: 400;
}

.nextSlide {
    opacity: 0.3 !important;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: #fff;
    outline: 0;
    background: #debf42;
}

.slide.slick-slide.slick-current.slick-active {
    opacity: 1 !important;
}

.slide.slick-slide {
    opacity: 0.6;
}

.owl-item.slider {
    margin: 10px !important;
}

/* ********** Testimonials ***********  */
.section-title {
    text-align: center;
    margin: 0 0 20px;
}

    .section-title h2 {
        margin: 0 0 10px;
    }

.separator::after {
    background: #666;
    content: "";
    height: 5px;
    left: -1px;
    position: absolute;
    top: -1px;
    width: 30px;
}

.separator {
    background-color: #ccc;
    border: 1px solid #ccc;
    display: block;
    height: 5px;
    margin: 0 auto;
    position: relative;
    width: 60px;
}

.title-border-left::after {
    content: "";
    position: absolute;
    width: 50px;
    border: 1px solid #033d75;
}

.inner-page-wrapper.testimonials-wrapper {
    background: 0 0;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
}

    .testimonial-block .inner-box {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px;
        background-color: rgb(245,246,247);
        margin-right: 30px;
        margin-top: 60px;
        min-height: 300px;
        border-radius: 0px 30px 0px 30px;
        box-shadow: rgb(185 188 245) 0px 0px 4px 0px;
    }

       
        .testimonial-block .inner-box .content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
.fa-quote-right-alt:before, .fa-quote-right:before {
    content: "\f10e";
    background: #cb5c36;
    padding: 10px 12px;
    border-radius: 50%;
    color: #ffff;
    float: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-block .inner-box {
        min-height: 250px !important;
        padding: 20px !important;
        margin-right: 20px !important;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }

    .testimonial-block {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

        .testimonial-block .inner-box {
            min-height: auto !important;
            margin-right: 0 !important;
            padding: 20px !important;
        }
}

@media (max-width: 480px) {
    .testimonial-block .inner-box {
        padding: 15px !important;
        min-height: auto !important;
    }

        .testimonial-block .inner-box .content .text {
            font-size: 14px !important;
        }
}

#about .owl-item img {
    border-radius: 12px;
}

.about-us123 .slick-dots, .about-us1 .slick-dots, .about-us2 .slick-dots   {
    bottom: 6px !important;
}

    .about-us123 .slick-dots li button:before,  .about-us1 .slick-dots li button:before,  .about-us2 .slick-dots li button:before{
        font-size: 16px;
        color: #a43420 !important;
    }

.author-info h6 {
    color: #0b0f53;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
}

.author-info p {
    /* padding: 14px 0; */
    margin: 0;
    line-height: 0;
}

    .author-info p span {
        font-size: 16px;
        line-height: 26px;
        color: #150f0f;
    }

.tabs-inner-img img {
    height: 470px;
}

.schedule-speaker .speaker-item:first-child {
    width: 70%;
}

.customer-logos123 .clients-slide img {
    height: auto !important;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #f0f0fa;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0px 5px 20px 3px rgba(230, 233, 249, 0.9);
    margin: 10px 0;
    /* margin:0 10px; */
}

.customer-logos123 .clients-slide {
    margin: 8px 8px;
}

.customer-logos123 {
    margin: 0 10px;
}

.faqs-inner-list li {
    box-shadow: unset !important;
}

@media only screen and (max-width: 991px) {
    .testimonials-wrapper .owl-dots {
        display: block;
    }
}

.inner-column .about-us123 img {
    border-radius: 12px;
    margin-left: 2px;
}

.Discover-para {
    max-width: 1000px;
    margin: auto;
    font-family: "Mulish", sans-serif;
}

.main.main .visit-us .container-fluid {
    /* padding: 0;
    margin: 0; */
}

@media screen and (max-width:600px) {
    .about-section {
        padding: 22px 0 22px;
    }
}

@media screen and (max-width:700px) {
    /* .about-section {
        padding: 0px 0 20px;
    } */

    .site-title {
        font-size: 22px;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 6px;
    }

    .counter-inner h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .counter-inner span {
        font-size: 24px;
        line-height: 30px;
    }

    .counter-img img {
        max-width: 50px;
    }

    .nav-tabs .nav-link {
        font-size: 11px;
        padding: 0 4px;
        font-weight: 700;
        font-family: unset;
    }

    .tabs-main .nav-item {
        padding-left: 0px;
        padding-right: 0px;
    }

    .tabs-main .nav-tabs {
        border-bottom: 0;
        padding-bottom: 8px;
    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        padding-bottom: 4px;
    }

    .getting-here-home {
        padding: 30px 0 30px 0;
    }

    .exhibitor-getting-here .subtitle {
        padding: 4px 0 4px 0;
        margin-top: 0px;
    }

    .site-title {
        margin-bottom: 4px !important;
    }

    .Enquire-Now .theme-btn {
        margin-top: 6px;
        font-size: 12px;
        height: 46px !important;
    }

    .getting-contact-inner h3 {
        font-size: 16px;
    }

    .getting-contact-inner p {
        font-size: 13px;
    }

    .getting-contact-inner img {
        max-width: 34px;
    }

    .faq .faq-list a {
        font-size: 14px;
    }

    .faq .faq-list p {
        font-size: 14px;
    }

    .slick-next,
    .slick-prev {
        display: none !important;
    }

    .bg-color .mt-5 {
        margin-top: 10px !important;
    }

    .site-heading p {
        margin-top: 0px;
    }

    .exhibitor-getting-here .subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .ptb-80 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .tab-content .mt-4 {
        margin-top: 0.5rem !important;
    }

    .tabs-inner-content .main-heading {
        font-size: 18px;
    }

    .mobile-res .col-lg-4.col-md-4.col-sm-12.col-xs-12 {
        max-width: 50%;
        width: 50%;
    }

    .tabs-inner-content .col-lg-6.col-md-6.col-sm-12.col-xs-12 {
        max-width: 50%;
        width: 50%;
    }

        .tabs-inner-content .col-lg-6.col-md-6.col-sm-12.col-xs-12 p {
            font-size: 12px;
        }

    .tbs-d-flex-text {
        padding-left: 4px;
    }

    .tbs-d-flex {
        margin: 6px 0;
    }

        .tbs-d-flex h3 {
            font-size: 14px;
            font-weight: 700;
        }

    .tabs-inner-content p {
        font-size: 14px;
    }

    .mobile-res {
        background-color: #fff;
        padding: 16px 12px 80px 12px !important;
    }

    .welcome-text {
        font-size: 20px;
    }

    .tb-btn span {
        color: #000;
        padding-left: 14px;
        font-size: 12px;
    }

    .footer-area .col-md-6.col-lg-2 {
        max-width: 50%;
        width: 50%;
    }

    .copyright .copyright-text {
        font-size: 16px;
        text-align: center;
    }

    .copyright {
        padding: 4px 0;
    }

    .footer-menu li a {
        font-size: 14px;
    }

    .footer-menu {
        margin-top: 4px;
    }

    .testimonial-block .inner-box .content .text {
        font-size: 14px;
    }

    .testimonial-block .inner-box .content .text {
        margin-top: 0px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .author-info p span {
        font-size: 14px;
        line-height: 18px;
    }

    .author-info h6 {
        font-size: 18px !important;
    }
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
    padding-top: 8px;
}

.card_blk p {
    /* font-family: ttnorms-regular; */
    font-size: 16px;
    color: #292d32;
}

.careers_blk {
    border: 1px solid #e7e7e7;
    border-radius: 15px;
}

.heading_blk h6 {
    color: #070707;
    font-size: 22px;
    font-weight: 700 !important;
}

.heading_blk p {
    font-size: 20px;
    color: #000000;
    font-size: 16px;
}

.heading_inner_blk {
    background-color: #f4f5fc;
    border-radius: 15px;
}

    .heading_inner_blk h6 {
        font-size: 20px;
        line-height: 30px;
    }

    /* 
        .heading_inner_blk h6 {
            font-size: 20px;
        } */

    .heading_inner_blk p {
        font-size: 16px;
        line-height: 30px;
        color: #666;
    }


.float-end {
    float: right !important;
}

.heading_inner_blk a {
    text-decoration: underline;
    text-underline-offset: 0.5em;
}

.apply_btn {
    font-size: 18px;
    font-family: ttnorms-medium;
}

.career-last {
    float: inline-end;
}

.single-link {
    top: 0;
    padding-top: -36px !important;
    position: relative;
    right: 114px;
    font-size: 18px;
    color: #a43205;
    font-weight: 700;
}

.svg-icon {
    position: absolute;
    left: 62px;
    font-size: 48px;
}

.bg-light-success {
    color: #a43205 !important;
    background-color: #cb5c362b;
    padding: 2px 15px;
    font-weight: 500;
    border-color: #ecf1f6 !important;
    font-size: 15px !important;
    border-radius: 50px;
    max-width: max-content;
}

.heading_blk h2 {
    font-size: 30px;
    color: #a43205;
    font-weight: 700;
}

.text-primary {
    color: rgb(164 50 5) !important;
    font-weight: 700;
}

.clock_icon {
    display: flex;
    align-items: center;
}

    .clock_icon p {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.site-breadcrumb {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* 
        @media only screen and (max-width: 600px) {
            .content-secondFold1 h2 {
                font-size: 20px;
                padding-bottom: 10px;
            }

            .content-secondFold .container h2 {
                font-size: 18px;
                text-align: center;
                line-height: 24px;
            }
        } */
.gray {
    background: #f6fafd;
}

.detail-wrapper {
    width: 100%;
    display: table;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eef4f9;
    background: #ffffff;
}

.detail-wrapper-body {
    padding: 1.5em 1em 1.5em 1.5em;
}

.job-title-bar h1 {
    margin-bottom: 0.25em;
    color: #0047ab;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    font-size: 24px;
}

.job-title-bar h3 {
    margin-bottom: 0.25em;
    color: #0047ab;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    font-size: 24px;
}

html body .bg-success-light {
    background: rgba(15, 183, 107, 0.1) !important;
    color: #0fb76b !important;
}

span.job-tag {
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 50px;
    top: -3px;
    position: relative;
}

.detail-wrapper {
    width: 100%;
    display: table;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eef4f9;
    background: #ffffff;
}

.detail-wrapper-header {
    padding: 1em 1em 1em 1.5em;
    border-bottom: 1px solid #eef4f9;
}

.detail-wrapper-body {
    padding: 1.5em 1em 1.5em 1.5em;
}

.detail-wrapper {
    width: 100%;
    display: table;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eef4f9;
    background: #ffffff;
}

.detail-wrapper-header h4 {
    color: #0047ab;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    font-size: 20px;
}

.detail-list {
    /* margin: 0 0 20px 0; */
    padding: 0;
    display: inline-block;
    width: 100%;
}

    .detail-list li::before {
        position: absolute;
        left: 0;
        top: 13px;
        width: 10px;
        height: 1px;
        content: "";
        background: #677782;
    }

    .detail-list li {
        list-style: none;
        float: left;
        width: 100%;
        margin: 0;
        margin-bottom: 0px;
        position: relative;
        padding-left: 23px;
        line-height: 22px;
        margin-bottom: 12px;
        font-size: 16px !important;
    }

.job-title-bar h3 {
    color: #0047ab;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
}

.widget-boxed {
    background-color: #fff;
    border-radius: 6px;
    padding: 12px 12px 32px 12px;
    transform: translate3d(0, 0, 0);
    z-index: 1;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #eef4f9;
}

.widget-boxed-header {
    padding: 14px 0;
    border-bottom: 1px solid #eaeff5;
}

    .widget-boxed-header h4 {
        color: #0047ab;
        /* font-family: 'Poppins', sans-serif; */
        font-weight: 600;
    }

.side-list ul li {
    list-style: none;
    padding: 10px 5px;
    display: inline-block;
    width: 100%;
}

.side-list ul li {
    list-style: none;
    padding: 10px 5px;
    display: inline-block;
    width: 100%;
}

    .side-list ul li span {
        float: right;
    }

.widget-boxed-body .theme-btn {
    /* border-color: #0047ab;
    background-color: #0047ab !important; */
    /* width: 100%; */
    color: #fff;
    margin: auto;
    display: block;
}

.btn-m {
    padding: 13px 30px;
    font-size: 14px;
}

.widget-boxed-body a.full-width i {
    margin-right: 5px;
}

.theme-btn .fa {
    font-size: 16px;
    color: #fff !important;
}

.widget-boxed-body a:hover {
    color: #fff;
}

.no-border i {
    padding-right: 10px;
    color: #01496b !important;
    font-size: 17px;
}

.job-title-bar p {
    font-size: 16px;
}

.detail-wrapper-body p {
    font-size: 16px;
}

.side-list ul li {
    font-size: 16px;
}

.back-btn h5 a {
    color: #0047ab !important;
    font-size: 16px;
}

.form-control:hover {
    border: 1px solid #cb5c369e;
    box-shadow: 1px 1px 4px #cb5c369e;
    transition: .6s ease-in-out;
}

.form-control {
    width: 100%;
    height: 42px;
    margin-bottom: 0px;
    padding-left: 20px;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 40px;
}

.input-group-text {
    background-color: #ffffff !important;
    border: 1px solid #ced4da !important;
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border-radius: 0;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: inline-block;
    margin-bottom: 0;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
}

.logo-width {
    width: 280px;
}

.bg-color {
    background-color: #f4f5f4;
    z-index: 0;
}

.inner-images img {
    border-radius: 20px;
}

.info-section {
    display: none !important;
}

.services-detail h4 {
    z-index: 9999999999999 !important;
}

.inner-box h4 {
    color: #000;
}

.call-to-action-section-two {
    display: none !important;
}

.navbar-collapse ul li {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.info-list li {
    margin-bottom: 0rem !important;
}

.main-header .header-top .info-list {
    position: relative;
    margin-bottom: 0 !important;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

blockquote,
.rich-text-editor blockquote {
    border-left: 4px solid #f1ac00;
    /* margin: 0 0 40px;
            padding: 20px 0 0;
            position: relative;
            width: 95%; */
}

blockquote {
    background-color: #f9f9f9;
    font-style: italic;
    padding: 16px 20px 16px 20px !important;
    color: #000;
}

    /* blockquote,
        blockquote span,
        blockquote p {
            color: #777;
            display: block;
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 15px;
        } */

    blockquote .author-name a {
        color: #999;
        font-size: 11px;
    }

    blockquote.text-left-align {
        text-align: left;
    }

    blockquote.text-right-align {
        text-align: right;
    }

    blockquote.text-center-align {
        text-align: center;
    }


.cs-blog .cs-author,
.cs-blog-detail .cs-author {
    float: left;
    margin: 0 0 0px;
    display: flex;
}

    .cs-blog .cs-author figure,
    .cs-blog-detail .cs-author figure {
        display: inline-block;
        height: 32px;
        margin: 0 10px 0 0;
        vertical-align: middle;
        width: 32px;
        border-radius: 50px;
    }

.cs-blog-detail .tags {
    display: inline-block;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 100%;
}

.cs-blog-detail .cs-tags {
    display: block;
    margin: 40px 0 20px;
    border-top: 1px solid #e6e6e6;
    padding: 20px 0px;
}

    .cs-blog-detail .cs-tags .tags span {
        color: #333;
        display: inline-block;
        font-size: 18px;
        margin: 0 10px 5px 0;
    }

    .cs-blog-detail .cs-tags .tags ul {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

.cs-tags ul li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 0 6px;
}

    .cs-tags ul li a {
        display: block;
        font-size: 12px;
        margin: 0 8px 0 0;
    }

.cs-tags .tags ul li a {
    background-color: #f5f5f5;
    border-radius: 0px;
    color: #042862;
    padding: 2px 18px 3px;
    box-shadow: rgb(221, 221, 221) 0px 0px 4px 0px;
    margin-bottom: 10px;
}

.post-option {
    display: flex;
    justify-content: end;
}

.rich-editor-text {
    align-items: flex-start;
    display: inline-block;
}

.cs-main-post img {
    width: 100%;
}

.post-option .post-date {
    padding: 0 30px;
}

.cs-author img {
    border-radius: 50px;
}

.rich-editor-text p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 6px 0;
}

.cs-blog-detail h4 {
    font-size: 22px;
    padding: 10px 0;
}

.post-date a {
    color: #999;
    font-size: 14px;
}

.post-comment a {
    color: #999;
    font-size: 14px;
}

.post-option .post-date i {
    font-size: 12px;
}



/* ********************** sliders ************* */

/* ********************** sliders ************* */


@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
}

/* ***************** Careers ************* */
.gray {
    background: #f6fafd;
}

.detail-wrapper {
    width: 100%;
    display: table;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 4px 4px 4px 4px rgb(230 233 249 / 30%);
}

.job-title-bar h1 {
    margin-bottom: 0.25em;
    color: #a43205;
    font-weight: 600;
    font-size: 20px;
}

.job-title-bar h3 {
    margin-bottom: 0.25em;
    color: #a43205;
    font-weight: 600;
    font-size: 24px;
}

.bg-success-light {
    background: rgba(15, 183, 107, 0.1) !important;
    color: #0fb76b !important;
}

span.job-tag {
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 50px;
    top: -3px;
    position: relative;
}

.detail-wrapper-header {
    padding: 1em 1em 1em 1.5em;
    border-bottom: 1px solid #eef4f9;
}

.detail-wrapper-body {
    padding: 1em 1em 1.5em 1.5em;
}

.detail-wrapper-header h4 {
    color: #a43205;
    font-weight: 600;
    font-size: 18px;
}

.detail-list {
    padding: 0;
    display: inline-block;
    width: 100%;
}

    .detail-list li::before {
        position: absolute;
        left: 0;
        top: 13px;
        width: 10px;
        height: 1px;
        content: "";
        background: #677782;
    }

    .detail-list li {
        list-style: none;
        float: left;
        width: 100%;
        margin: 0;
        margin-bottom: 0px;
        position: relative;
        padding-left: 23px;
        line-height: 22px;
        margin-bottom: 12px;
        font-size: 16px !important;
    }

.job-title-bar h3 {
    color: #a43205;
    font-weight: 600;
}

.widget-boxed {
    background-color: #fff;
    border-radius: 6px;
    padding: 20px 12px 20px 20px;
    transform: translate3d(0, 0, 0);
    z-index: 1;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #eef4f9;
}



.widget-boxed-header {
    padding: 14px 0;
    border-bottom: 1px solid #eaeff5;
}

    .widget-boxed-header h4 {
        color: #a43205;
        font-weight: 600;
    }

.side-list ul li {
    list-style: none;
    padding: 4px 10px;
    display: flex;
    width: 100%;
    color: #000;
    align-items: center;
    justify-content: flex-start;
}

.career-details .detail-list li {
    color: #000;
    line-height: 28px;
}

.career-details p {
    color: #000;
}

.responsibilities li {
    margin-bottom: 0;
}

.responsibilities {
    margin: 0px 0;
    display: inline-block;
}

.widget-boxed-body .side-list i {
    padding-right: 10px;
}

.widget-boxed-body .side-list span {
    padding-right: 10px;
}

.side-list-second ul li {
    list-style: none;
    padding: 4px 10px;
    display: flex;
    width: 100%;
    color: #000;
    align-items: center;
    justify-content: space-between;
}

.side-list-second {
    padding-right: 40px;
}

    .side-list-second ul li p {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.widget-boxed-body .theme-btn i {
    margin-right: 12px;
    transform: rotate(0deg);
    transition: var(--transition2);
}

.sidebar {
    position: sticky;
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    /* background-position: center !important; */
    background-size: cover !important;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 1;
}

.mode-popup-desigen {
    background-color: #fff;
    height: auto;
    padding: 30px 20px;
    border-radius: 20px;
}

.mode-close-btn {
    position: absolute;
    right: 0;
    top: -8px;
}

.enquiry-frm .form-label {
    margin-bottom: 2px;
    color: #6d6969;
    font-size: 14px;
    padding-left: 12px;
}

.enquiry-frm input {
    height: 42px;
    border-radius: 50px;
    padding: 10px 22px;
}

.enquiry-frm textarea {
    border-radius: 50px;
    padding: 10px 22px;
}

.enquiry-frm ::placeholder {
    font-size: 14px;
    color: #857c7c;
}

.enquiry-frm input:hover {
    border: 1px solid #cb5c369e;
    box-shadow: 1px 1px 4px #cb5c369e;
    transition: .6s ease-in-out;
}

.form-control:focus {
    color: unset;
    background-color: unset;
    border-color: #dee2e6;
    outline: 0;
    box-shadow: unset;
}

.submit-btn .btn {
    margin: auto;
    display: block;
    background-color: #a43205;
    border: none;
    padding: 10px 30px;
    border-radius: 12px;
}

/* ************** gallery ************** */
.gallery-section {
    padding: 60px 0;
}

.box a {
    height: 100%;
}

.gallery-section h2 {
    color: #333333;
    text-transform: uppercase;
    font-size: 1.6em;
}

.gallery-section .gallery-box {
    background: #fff;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(5, auto);
    /*grid-template-rows: repeat(1, 18vw);*/
    grid-auto-rows: 12vw;
    grid-gap: 1rem;
    grid-auto-flow: dense;
}

    .gallery-section .gallery-box .box {
        border-radius: 12px;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0px 4px 20px -4px rgba(0, 0, 0, 0.15);
        transition: all 0.5s ease;
        border: 5px solid rgba(0, 0, 0, 0.07);
    }

        .gallery-section .gallery-box .box:hover {
            box-shadow: 0px 4px 40px -4px rgba(0, 0, 0, 0.3);
            border-radius: 12px;
        }

        .gallery-section .gallery-box .box.big {
            grid-row: span 2;
            grid-column: span 2;
        }

        .gallery-section .gallery-box .box.horizontal {
            grid-column: span 2;
        }

        .gallery-section .gallery-box .box.vertical {
            grid-row: span 2;
        }

        .gallery-section .gallery-box .box img {
            width: 100%;
            height: 100%;
            transition: all 0.5s ease;
            border-radius: 12px;
        }

        .gallery-section .gallery-box .box:hover img {
            transform: scale(1.2);
        }

.vertical img {
    object-fit: cover;
}

@media (max-width: 991px) {

    .gallery-section .gallery-box {
        grid-template-columns: repeat(3, auto);
        grid-auto-rows: 18vw;
    }

    section {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .widget-boxed-body .side-list span {
        font-size: 14px;
        color: #01496b;
    }

    .no-border i {
        font-size: 14px;
    }

    .side-list ul li {
        font-size: 14px;
    }

    .widget-boxed {
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }

    .widget-boxed-header h4 {
        font-size: 18px;
    }

    .widget-boxed-header {
        padding: 8px 0;
    }

    .detail-wrapper-body p {
        font-size: 14px !important;
    }

    .career-details .detail-list li {
        color: #000;
        line-height: 24px;
    }

    .detail-wrapper-header {
        padding: 10px;
    }

    .detail-wrapper-body {
        padding: 0em 0em 0.5em 0.5em;
    }

    .job-title-bar {
        padding: 1em 1em 1em 1em;
    }

    .detail-list li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 0px;
        font-size: 14px !important;
    }

    .detail-wrapper-body p {
        font-size: 14px;
    }

    span.job-tag {
        font-size: 8px;
        padding: 6px 8px;
    }

    .job-title-bar h1 {
        font-size: 16px;
    }

    .gallery-section .gallery-box {
        grid-template-columns: repeat(3, auto);
    }

    .gallery-section {
        padding: 26px 0;
    }

    .heading_blk h2 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .heading_blk h6 {
        font-size: 18px;
        margin-bottom: 0px !important;
    }

    .heading_blk p {
        font-size: 14px;
        padding-bottom: 8px;
    }

    .heading_inner_blk h6 {
        font-size: 18px;
        line-height: 24px;
    }

    .heading_inner_blk p {
        font-size: 14px;
        line-height: 24px;
        color: #666;
    }

    .mobile-d-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .heading_inner_blk p {
        margin-top: 6px;
    }
}

@media (max-width: 575px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(2, auto);
        grid-auto-rows: 35vw;
    }
}

/* *********** Owl Carousel responsive with dots and navigation *************** */
.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

    .owl-nav button.owl-prev {
        left: 0;
    }

    .owl-nav button.owl-next {
        right: 0;
    }

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.about-us123 .owl-dots, .about-us1 .owl-dots, .about-us2 .owl-dots{
    position: relative;
    bottom: 50px;
}

    .about-us123 .owl-dots button.owl-dot, .about-us1 .owl-dots button.owl-dot, .about-us2 .owl-dots button.owl-dot {
        background: #ffffffad;
    }

.owl-dots button.owl-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: #000000ad;
    margin: 0 3px;
}

    .owl-dots button.owl-dot.active {
        background-color: #a43205;
    }

    .owl-dots button.owl-dot:focus {
        outline: none;
    }

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

    /* span {
    font-size: 70px;
    position: relative;
    top: -5px;
  } */

    .owl-nav button:focus {
        outline: none;
    }

.nav-link .fa {
    padding-right: 8px;
}

/* *************************************  new styles  *************************** */
:root {
    --body-font: 'poppins', sans-serif;
    --heading-font: "Poppins", sans-serif;
    --theme-color: #a43205;
    --theme-color2: #debf42;
    --theme-bg-light: #F8F9FE;
    --color-dark: #01054C;
    --color-gray: #F6F6F6;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --hero-overlay: rgb(5, 3, 17);
    --slider-arrow-bg: rgba(140, 82, 255, .2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #01103B;
    --footer-bg2: #00134C;
    --footer-text-color: #F5FAFF;
    --theme-gradient: #cb5c36;
}


.middle-logo {
    width: 220px;
    margin-left: 10px;
}

.header-top-contact {
    display: flex;
    justify-content: end;
}

    .header-top-contact ul li a {
        /* padding: 10px 0px;
    border-radius: 4px;
    width: 100px;
    text-align: center;
    box-shadow: rgb(221, 221, 221) 0px 0px 3px 0px;
    font-size: 14px; */
    }

        .header-top-contact ul li a:hover {
            background-color: #cb5c36;
        }

    .header-top-contact a.active {
        color: #fff;
        background-color: #f1ac00;
        /* border-radius: 4px;
    padding: 10px 0px; */
    }

.header-top {
    position: relative;
    /* padding: 6px 0 6px 0; */
    background: linear-gradient(to right, #ca3900 0%, #034e67 100%);
}

/* 
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
} */

i.far.fa-search {
    color: #fff;
}

.search-btn {
    background: none;
    border: none;
}

.login-btn a {
    color: #fff;
    padding: 0px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.header-top-social span {
    font-size: 14px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-weight: 500;
    text-align: center;
    z-index: 1;
    animation: fadeOut 8s forwards;
    opacity: 1;
}

/* Fadeout class to be added dynamically */
.fade-out {
    opacity: 0;
}

.new-content {
    display: none;
    color: white;
    font-size: 2em;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.replacement-content {
    display: none;
    color: white;
    font-size: 3em;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: opacity 2s ease-out;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.statistics {
    display: none;
    color: white;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 1;
}

    .statistics ul {
        list-style: none;
        padding: 0;
    }

    .statistics li {
        margin-bottom: 10px;
        font-style: italic;
    }

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.tour-links {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    gap: 20px;
    align-items: center;
    right: 0px;
    bottom: 20px;
    z-index: 1;
    flex-direction: row;
}

    .tour-links a {
        color: white;
        font-size: 22px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: rgb(0 0 0 / 28%);
        padding: 10px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .tour-links a:hover {
            background-color: rgb(255 255 255 / 27%);
        }

    .tour-links i {
        font-size: 1.5rem;
    }

    .tour-links img {
        width: 12%;
    }

/* .hidden {
    display: none;
} */
.statistics ul {
    background: rgb(0 0 0 / 28%);
    padding: 20px;
}

#building-info {
    margin-top: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

    #building-info h2,
    #building-info h3 {
        color: #333;
    }

    #building-info p {
        color: #555;
    }

    #building-info ul {
        list-style-type: none;
        padding: 0;
    }

    #building-info li {
        margin: 10px 0;
        font-weight: bold;
    }

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* footer */
.footer-area {
    background: #000000 !important;
}

.footer-list.social {
    flex-direction: row !important;
}

.footer-widget-box .social i {
    width: 36px !important;
    background: #a43205 !important;
    padding: 10px !important;
    height: 30px !important;
    line-height: 10px !important;
    border-radius: 4px !important;
}

.footer-list.social li a i {
    margin-right: 5px;
    color: #ffffff;
}

.footer-list li a:hover {
    padding-left: 0px !important;
}

.footer-widget-box .social i:hover {
    background-color: #e4a70b !important;
}

/* vists-us */
.about-list li .about-item h4 span {
    font-size: 18px;
}

.about-item h4 {
    font-size: 18px;
}

.about-list li {
    border-bottom: 0 !important;
    margin-bottom: 0px !important;
}


.welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    z-index: 1;
}




.header-top-contact li:first-child {
    display: block !important;
}

.about-experience {
    bottom: 40px !important;
    padding: 5px 10px !important;
}

    .about-experience span {
        font-size: 50px !important;
        font-weight: 600 !important;
    }

    .about-experience h5 {
        font-size: 16px !important;
    }

.about-img img {
    border-radius: 20px !important;
    border: 4px solid var(--color-white) !important;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px !important;
}

.py-80 {
    padding: 80px 0px !important;
}

.image-link.withlink {
    height: 200px;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    border-radius: 14px;
    padding: 10px;
}

.getting-here-home {
    padding: 50px 0 60px 0;
  /*  background: #01054c;*/
    color: #FFF;
}

    .getting-here-home .title-desktop {
        display: block;
    }

    .getting-here-home img {
        max-width: 50%;
        margin: auto;
    }

    .getting-here-home .subtitle {
        padding: 4px 0 4px 0;
        text-align: center;
        font-family: "Marcellus", serif;
        font-size: 21px;
        margin-top: 10px;
        line-height: 37px;
        color: #d8d8d8;
    }

    .getting-here-home .btn-pink {
        display: inline-block;
        background: #FE487F;
        padding: 10px 20px;
        color: #FFF;
        font-size: 22px;
        line-height: 1.2em;
        margin-top: 20px;
    }

.journey-planner label {
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
}

input#jp-start {
    border: 1px solid #e6e6e6;
    padding: 8px;
    width: 100%;
    border-radius: 10px;
    box-shadow: rgb(221, 221, 221) 0px 0px 3px 0px;
}

.journey-planner .jp-submit {
    background: none;
    cursor: pointer;
    margin-top: 20px;
    border: 2px solid #cb5c36;
}

.schedule-speaker .speaker-item {
    /*width: 50% !important;*/
}

.no-details {
    background: #fff;
    box-shadow: rgb(221,221,221) 0px 0px 10px 0px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
    font-weight: 600;
}
.speaker-item span {
    font-size: 14px;
}

.schedule-speaker .speaker-item {
    align-items: baseline !important;
}

.schedule-nav .nav-pills .nav-link.active {
    background: #ffc730 !important;
}

.schedule-speaker {
    width: 80%;
}

/* marqueee tag */
.App {
    text-align: center;
}

.MarqueeContainer {
    min-height: 100%;
    padding: 20px;
}

.marquee-RightSide {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #131414;
}

.marquee-LeftSideMianTitle {
    font-weight: 700;
    font-size: 14px;
    line-height: 145.4%;
    color: #131414;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.marquee-LeftSideSubTitle {
    font-weight: 700;
    font-size: 35px;
    line-height: 43px;
    color: #131414;
}

.MarqueeContainer {
    --space: 10px;
    display: grid;
    align-content: center;
    gap: var(--space);
    width: 100%;
    font-family: "Corben", system-ui, sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
}

.marquee {
    --duration: 70s;
    --gap: 36px;
    display: flex;
    overflow: hidden;
    user-select: none;
    background: #f6f6f6;
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
    font-size: 17px;
}

.latest-right a {
    font-size: 14px;
}

.marquee__group ul li {
    margin-right: 16px;
}

.schedule-area {
    position: relative;
}

/* what's on  */
.whats-on {
    margin-bottom: 30px !important;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #003366;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .event-card:hover {
        transform: translateY(-10px);
    }

    .event-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.event-info {
    padding: 20px;
    flex-grow: 1;
}

    .event-info h3 {
        font-size: 18px;
        color: #003366;
        margin-bottom: 10px;
    }

.event-date {
    font-size: 16px;
    color: #ff6600;
    margin-bottom: 10px;
}

.event-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.show-more-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
    color: #003366;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    right: 0;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: none !important;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    z-index: 1;
}


    .show-more-btn:hover {
        background-color: #e6a90d;
        color: #fff;
    }

    .show-more-btn::before {
        content: "";
        height: 50px;
        width: 50px;
        background: var(--theme-color2);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .show-more-btn i {
        margin-left: -6px !important;
        transform: rotate(-35deg);
        transition: var(--transition2);
    }

.justify-center {
    justify-content: center;
}

.quote-area {
    position: relative;
    background-image: url(../img/inner-images/Organiser\ Rooms1.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.quote-content {
    background: #ffffff4f !important;
}

/* Gallery */
.gallery-img::before {
    background: none !important;
}

/*swiper slider */
.carousel-wrap {
    margin: 20px auto;
    /* padding: 0 5%; */
    width: 100%;
    position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
}

.owl-nav i {
    font-size: 50px;
    color: #ffffff82;
}

.owl-nav .owl-prev {
    left: 30px;
}

.owl-nav .owl-next {
    right: 30px;
}

.owl-carousel .owl-item img {
    display: block;
    /* width: 80% !important; */
    margin: auto;
}

.left.top {
    font-size: 50px;
    color: #fff;
    margin-bottom: 30px;
}

.left.bottom {
    font-weight: 200;
    color: #fff;
    margin-bottom: 30px;
    line-height: 40px;
}

.slider-info {
    display: flex;
    align-items: center;
}

.theme-btn {
    height: 42px !important;
    box-shadow: rgb(221, 221, 221) 0px 0px 14px 0px;
}

.schedule-count {
    font-size: 30px;
    font-weight: 500 !important;
}

/* amenties */

.p-3.amenity-item {
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px !important;
    border-radius: 12px !important;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    font-size: 3rem;
}

.amenity-item h5 {
    color: #333;
    font-weight: 600;
}

.amenity-item img {
    margin-right: 10px;
}

.amenity-item p {
    color: #3a3a3a;
}

.about-right .about-text {
    text-align: center;
}

/* Venue Guide */
.service-container .card {
    border: none;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    padding: 16px;
    border-radius: 12px;
    height: 100%;
}

    .service-container .card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .service-container .card img {
        height: 200px;
        object-fit: cover;
        border-radius: 12px 12px 12px 12px;
    }

.service-container .card-body h5 {
    position: absolute;
    top: 10px;
    left: 15px;
    margin: 0;
    background-color: rgb(0 0 0 / 38%);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}

i.fas.fa-check-circle {
    color: #f1ac00;
}

.service-container .card-body p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.card-body {
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 8px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.content-section {
    margin-bottom: 40px;
}

    .content-section h3 {
        color: #0d6efd;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .content-section p {
        color: #6c757d;
        line-height: 1.6;
    }

.content-image {
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* .service-row {
    margin-bottom: 64px;
    align-items: flex-start;
} */

.service-text h2 {
    color: #b91b00;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 30px;
}

.service-text p {
    color: #232425;
    line-height: 32px;
}

.service-icon {
    font-size: 3rem;
    color: #ff6f61;
    margin-bottom: 15px;
}

.service-image img {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

.service-text ul li {
    list-style: disc;
    margin-top: 12px;
}

.right-side-bar {
    /* width: 310px;
    position: absolute;
    right: 1%; */
    margin-left: 20px;
}

.services-list {
    /* 
    background-color: #ffffff;
    border: 1px solid #dddddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

    .services-list ul li {
        padding: 4px 10px;
    }

    .services-list h4 {
        /* background: #154c5e; */
        color: #cb5c36;
        font-size: 18px;
        font-weight: 400;
        padding: 6px 10px;
        /* text-align: center; */
        border-radius: 12px;
        /* padding-left: 18px; */
        max-width: fit-content;
    }

.border-bottom-line {
    height: 3px;
    width: 100px;
    color: #000;
    background-color: #000000;
    padding-left: 31px;
    margin-right: 16px;
    margin-left: 14px;
    border-radius: 16px;
    margin-bottom: 10px;
}

.right-side-bar a.theme-btn {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 22px;
}

.container-body {
    display: flex;
}

.right-side-bar {
    padding: 30px 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background: #fff;
}



/* Responsive: Stack on smaller screens */
@media (max-width: 767.98px) {
    /* .service-row {
        flex-direction: column-reverse;
    } */
}

.venue-card {
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
}

    .venue-card:hover {
        transform: scale(1.03);
    }

.card-title {
    font-size: 1.2rem;
    font-weight: 400;
}

#venueGrid .card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: #fff !important;
    position: absolute !important;
    top: 84%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 16px;
    width: 100%;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 77%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-card:hover .overlay {
    opacity: 1;
}



#venueGrid .card-body span {
    text-decoration: underline;
}

/* venue individual */


.icon img {
    max-width: 34px;
}

.btn-pink {
    background-color: #ff1493;
    color: white;
}

    .btn-pink:hover {
        background-color: #e71384;
    }

img.layout-img {
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    border-radius: 10px;
}

.venue-items {
    display: flex;
    text-align: start;
    margin-bottom: 20px;
    color: #000;
}

.about-text {
    color: #000;
}

.venue-items ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 4px;
}

    .venue-items ul li p {
        padding-left: 10px;
    }

.venue-items .icon img {
    /* margin-right: 14px; */
}

.contact-section {
    padding: 30px 0;
}

    .contact-section h5 {
        color: #010552;
        font-size: 30px;
    }

    .contact-section a {
        color: #1f7e9b;
        font-weight: 500;
        text-decoration: underline;
        line-height: 34px;
    }

    .contact-section p {
        color: #6c757d;
    }

.downloads h6 {
    color: #e84c17;
    font-size: 18px;
}

.downloads {
    padding-left: 50px;
}

/* Partner services */
.partner-service .section-title {
    text-align: center;
    font-weight: bold;
    /* margin: 40px 0; */
    font-size: 1.8rem;
    color: #0d3b66;
}

.partner-service .service-card {
    position: relative;
    overflow: hidden;
    height: 190px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

    .partner-service .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 19%);
        transition: background 0.3s;
    }

    .partner-service .service-card:hover::before {
        background: rgba(0, 0, 0, 0.6);
    }

.partner-service .service-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.partner-service .service-title {
    font-size: 14px;
    /* background: #ffffff; */
    color: #0a0a0a;
    text-align: center;
    padding: 10px 4px;
    font-weight: 600;
    /* border-radius: 12px; */
    /* height: 36%; */
    /* min-height: 128%; */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.schedule-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 0px !important;
    border-top: 0px solid var(--border-info-color) !important;
}

.schedule-content-wrap {
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px !important;
}

.partner-service-details img {
    border-radius: 12px 12px 0px 0px;
}

.partner-service-details {
/*    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;*/
     margin-bottom: 6px;
    height: 100%;
    border-radius: 12px;
    background: #fff;
}

.partner-service .service-link a {
    color: #ffffff;
    text-decoration: underline;
}

.partner-about-text {
    font-size: 16px;
    text-align: start !important;
    margin-bottom: 12px;
    color: #000;
    font-weight: 400;
}

.about-img img.img-1.partner-img {
    width: 80%;
    display: flex;
    margin: auto;
}

/* partners innerpage */
.hero-partner {
    background-color: #fff;
}

    .hero-partner .logo img {
        max-width: 120px;
    }

    .hero-partner h1 {
        color: #00AEEF;
        /* Blue text color for heading */
    }

    .hero-partner p {
        font-size: 1rem;
        line-height: 32px;
        color: #333;
    }

/* Advantages Section */
.advantages-section h2 {
    color: #98340c;
    font-weight: 500;
}

.advantage-item {
    /* background-color: #fff; */
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
}

    .advantage-item:hover {
        transform: translateY(-5px);
    }

    .advantage-item .icon {
        display: flex;
        justify-content: center;
    }

        .advantage-item .icon img {
            max-width: 64px !important;
        }

.project-manager-section {
    background-color: #00cfff;
}

    .project-manager-section p {
        font-size: 1.25rem;
        line-height: 1.6;
        margin: 0;
    }

    .project-manager-section img {
        max-width: 100%;
        border-radius: 10px;
    }

/* Event Manager Message Section */
.event-manager-message-section {
    background-color: #fff;
}

    .event-manager-message-section h2 {
        font-size: 1.5rem;
        color: #00cfff;
        line-height: 1.8;
        margin: 0;
    }

.service-row ul li img {
    width: 32px;
    height: 32px;
    margin: 8px 10px 0 0;
}

.service-row ul li {
    display: flex;
    margin-top: 12px;
}

.services-list ul li {
    border-bottom: 1px solid #d3d3d3;
    margin-top: 2px;
    margin-bottom: 2px;
}

.service-row ul li:last-child {
    border-bottom: none;
}

.org-venue-spaces .form-select {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
}

.inner-heading {
    color: #000000 !important;
    font-weight: 500 !important;
    margin-bottom: 0px !important;
    font-size: 20px !important;
}

.org-venue-spaces .form-select:focus {
    border-color: #5c677857;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}

.org-venue-spaces .card-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.org-venue-spaces #venueGrid .card-body span a{
    text-decoration: underline;
    font-size: 16px;
    color:#ffffff;
}

.org-venue-spaces #venueGrid .card-body {
    top: 83%;
    padding: 0px 10px;
}

.org-venue-spaces .theme-btn {
    height: 40px !important;
    padding-top: 8px !important;
    font-size: 14px !important;
    padding-left: 44px;
    padding-right: 44px;
}

.venue-spaces-main h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    letter-spacing: normal;
}

.venue-spaces-main {
    background-color: #f6f6f6;
}
.right-side-bar {
    padding:  20px;
}




@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

.marquee--borders {
    padding-block: 20px;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@media screen and (min-width: 311px) and (max-width: 767px) {
    .MarqueeContainer {
        padding: 10px;
        display: block;
    }

    .marquee__group img {
        width: 36px;
    }

    .marquee-LeftSideSubTitle {
        font-weight: 700;
        font-size: 25px;
        line-height: 43px;
        text-align: center;
    }

    .marquee {
        margin: 10px 0px;
    }
}

@media screen and (min-width: 768px) and (max-width: 2560px) {
    .marquee-LeftSideSubTitle {
        text-align: start;
    }

    .marquee-LeftSideMianTitle {
        display: flex;
        justify-content: start;
    }
}

@media (min-width: 991px) and (max-width:1640px) {
    .service-image img {
        width: 54%;
    }

    .right-side-bar {
        /* width: 266px; */
    }

    .services-list {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .service-row ul li img {
        width: 28px;
        height: 28px;
        margin: 0px 10px 0 0;
    }

    .servies-facilities h5 {
        font-size: 16px;
    }

    .servies-facilities p {
        color: #232425;
        line-height: 27px;
    }

    .servies-facilities h6 {
        font-size: 14px;
    }

    .navbar-brand img {
        width: 180px;
    }

    .welcome-text {
        font-size: 24px;
    }

    .middle-logo {
        width: 160px !important;
    }

    .navbar-toggler-mobile-icon .fa-bars {
        color: #000;
    }

    .site-title {
        font-size: 34px;
    }

    .site-shadow-text {
        line-height: 1;
        top: -40px !important;
    }

    .site-shadow-text {
        font-size: 56px;
    }

    .schedule-bottom .theme-btn {
        width: 30% !important;
        margin: auto !important;
    }

    .left.top {
        font-size: 32px;
        margin-bottom: 12px;
        margin-top: 14px;
    }

    .left.bottom {
        margin-bottom: 8px;
        margin-top: 14px;
        font-size: 20px;
    }

    .slider-info a {
        margin-bottom: 20px;
    }

    .py-120 {
        padding: 45px 0;
    }

    .marquee {
        padding: 16px 0px;
        margin: 10px 0px;
    }

    .copyright .copyright-text {
        font-size: 12px;
    }

    .footer-menu li a {
        font-size: 14px;
    }

    .news-card__title {
        font-size: 15px;
    }
}

@media (max-width:599px) {
    .home-2 .main {
        /* margin-top: 62px; */
    }

    .navbar-brand img {
        width: 180px;
    }

    .middle-logo {
        width: 186px !important;
    }

    .tour-links a {
        display: none;
    }

    .welcome-text {
        font-size: 24px;
    }

    .fullscreen-video {
        width: 100%;
        height: auto !important;
    }

    .hero-section {
        height: auto !important;
    }

    .navbar-toggler-mobile-icon .fa-bars {
        color: #000;
    }

    .header-top-right {
        display: none;
    }

    /* .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 0px;
    } */

    .mobile-menu-right .search-btn {
        display: none;
    }

    .owl-carousel .owl-item img {
        /* width: 50% !important; */
    }

    .left.top {
        font-size: 26px;
        text-align: center;
    }

    .left.bottom {
        line-height: 30px;
        font-size: 20px;
        text-align: center;
    }

    .slider-info a {
        margin-bottom: 30px;
    }

    .py-120 {
        padding: 0px 0 30px 0px;
    }

    .getting-here-home .subtitle {
        display: block;
        font-size: 16px;
        line-height: 30px;
        padding: 0px 0 0px 0;
        text-align: center;
        margin-top: 0;
    }

    .journey-planner {
        padding: 26px 0px 0px;
    }

    .owl-nav > div {
        top: 37%;
    }

    .owl-nav .owl-prev {
        left: 6px;
    }

    .owl-nav .owl-next {
        right: 6px;
    }

    .header-top-contact {
        display: flex;
        justify-content: center;
    }

        .header-top-contact ul {
            gap: 10px;
        }

    .about-experience span {
        font-size: 30px !important;
    }

    .about-experience h5 {
        font-size: 12px !important;
    }

    .about-right {
        margin-top: 0px !important;
    }

    .py-80 {
        padding: 76px 0px 30px 0px !important;
    }

    .about-list-wrap {
        margin-bottom: 0;
    }

    .schedule-nav .nav-link {
        gap: 2px !important;
        padding: 6px 5px !important;
    }

    .schedule-speaker .speaker-item {
        width: 100% !important;
    }

    .section-title h2 {
        font-size: 26px;
    }
    clients-slide img.img-fluid {
        box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
        padding: 8px;
    }
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

    .alert-dismissible .close {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.75rem 1.25rem;
        color: inherit;
    }

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

    .alert-primary hr {
        border-top-color: #9fcdff;
    }

    .alert-primary .alert-link {
        color: #002752;
    }

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

    .alert-secondary hr {
        border-top-color: #c8cbcf;
    }

    .alert-secondary .alert-link {
        color: #202326;
    }

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

    .alert-success hr {
        border-top-color: #b1dfbb;
    }

    .alert-success .alert-link {
        color: #0b2e13;
    }

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

    .alert-info hr {
        border-top-color: #abdde5;
    }

    .alert-info .alert-link {
        color: #062c33;
    }

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

    .alert-warning hr {
        border-top-color: #ffe8a1;
    }

    .alert-warning .alert-link {
        color: #533f03;
    }

.alert-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    width: 50%;
    margin: auto;
    transform: translate(0px, 32px);
}

    .alert-close-new {
        float: right;
        position: relative;
        transform: translate(-380px, -10px);
        border: 2px solid #fff;
        border-radius: 50%;
        overflow: hidden;
    }


@media (min-width:1700px) {
    .alert-close-new {
        transform: translate(-478px, -10px);
    }
}
@media (min-width:1200px) and (max-width:1400px) {
    .alert-close-new {
        transform: translate(-323px, -10px);
    }
}
a.closeButton.btn.btn-danger.btn-sm.text-white {
    width: 29px;
    height: 26px;
    font-size: 20px;
    line-height: 10px;
    padding: 4px;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

    .alert-light hr {
        border-top-color: #ececf6;
    }

    .alert-light .alert-link {
        color: #686868;
    }

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

    .alert-dark hr {
        border-top-color: #b9bbbe;
    }

    .alert-dark .alert-link {
        color: #040505;
    }


.modal.center-popup {
    text-align: center;
    padding: 0 !important;
}

    .modal.center-popup:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

.center-popup .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.modal .close {
    opacity: .7;
    font-size: 26px;
}

.hide {
    display: none;
}

.gallery-pt-20{
    padding-top:20px
}
.tbs-d-flex img {
    width: 28px;
    height: 28px;
}
/* *************************************  new styles End  *************************** */
.maping {
    height: 100%;
    width: 100%;
}

.offcanvas.offcanvas-end.bg-secondary.show {
    background-color: #fff !important;
}

@media screen and (max-width:1433px) and (min-width:1200px) {
    .contact-officer {
        padding: 0 20px;
    }
}

.video-main-col {
    padding: 0 !important;
    margin: 0 !important;
}

@media screen and (max-width:1358px) and (min-width:1200px) {
    .tour-links a {
        color: white;
        font-size: 16px;
    }

    .navbar .nav-item .nav-link {
        margin-right: 10px;
        font-size: 13px;
    }

    span.plan-event h6 {
        font-size: 13px !important;
        /* padding-top: 4px; */
    }

    .navbar .dropdown-toggle::after {
        font-size: 13px;
    }

    .middle-logo {
        width: 154px;
        margin-left: 0px;
    }
}

@media screen and (max-width:1270px) and (min-width:992px) {
    .tour-links a {
        color: white;
        font-size: 16px;
    }

    .team-area {
        padding-left: 20px;
        padding-right: 20px;
    }

    .team-item {
        flex: unset !important;
    }

    .team-content .info h4 {
        font-size: 14px;
    }

    .team-content .info span {
        color: #000;
        font-weight: 500;
        font-size: 14px;
        line-height: 2px !important;
    }

    .team-content .info {
        margin-top: 15px;
        line-height: 24px;
    }

    .team-area .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: fit-content;
    }
}

@media screen and (max-width:1200px) {
    .about-section .image-column .inner-column {
        position: relative;
        padding-left: 0px;
    }

    span.plan-event h6 {
        color: #000000 !important;
        animation: unset !important;
        font-size: 14px;
        font-weight: 400 !important;
    }

    span.plan-event {
        border: unset !important;
        background-color: unset !important;
        padding: unset !important;
        border-radius: unset !important;
        box-shadow: unset !important;
        display: unset !important;
        transform: unset !important;
    }

    .navbar .nav-item .nav-link.active::before,
    .navbar .nav-item:hover .nav-link::before {
        background: unset !important;
        width: unset;
    }

    .navbar .nav-item .nav-link {
        padding: 0px 0 12px 0;
    }

    .halls-tabs .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: fit-content;
    }

    .tbs-d-flex img {
        width: 30px;
        height: 30px;
    }

    .halls-tabs .col-lg-11 {
        flex: 0 0 auto;
        width: 100.666667%;
    }

    .tabs-inner-content p {
        font-size: 15px;
    }

    .tbs-d-flex {
        margin: 6px 0;
    }

    .discover-chennai-main .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: fit-content;
    }
   
}

@media screen and (max-width:992px) {
    .right-side-bar {
        padding: 10px;
    }
    .maping {
        height: 300px;
    }

    .team-area {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .site-shadow-text {
        font-size: 50px;
    }

    .mobile-row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    /* .mobile-row-reverse img{
        padding-top:10px;
    } */
    p {
        font-size: 14px !important;
    }

    .ptb-60 {
        padding: 30px 0;
    }

    .partner-service-details {
        height: unset;
    }

    .partner-service {
        padding: 0 20px;
    }

        .partner-service .section-title {
            margin: 0 0 12px;
            font-size: 22px;
            color: #0d3b66;
        }

    .partner-service-details {
        margin-bottom: 0px;
    }

    .venueservices {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .schedule-speaker,
    .schedule-bottom {
        flex-direction: unset;
    }

    .schedule-speaker {
        width: unset;
    }

    .speaker-info {
        line-height: 20px;
    }

    .tbs-d-flex-text p {
        font-size: 12px;
    }

    .tbs-d-flex-text {
        padding-left: 4px;
    }

    .tbs-d-flex {
        margin: 4px 0;
    }

    .mobile-res {
        padding: 10px 10px 10px 10px !important;
    }

    .tb-btn span {
        color: #000;
        padding-left: 4px;
    }

    .tb-btn {
        bottom: 8px;
    }

    .tabs-main .nav-item {
        padding-left: 8px;
        padding-right: 8px;
    }

    .halls-tabs .nav-tabs .nav-link {
        padding-bottom: 10px;
        font-size: 18px;
    }

    .tabs-inner-content .main-heading {
        font-size: 18px;
        padding-bottom: 2px;
    }

    .tabs-main .nav-tabs {
        border-bottom: 0;
        padding-bottom: 14px;
    }

    .tabs-inner-content p {
        line-height: 26px;
    }

    .testimonial-block .inner-box {
        margin-right: 8px;
        margin-top: 60px;
    }

    .about-us123.owl-carousel.owl-loaded.owl-drag, .about-us1.owl-carousel.owl-loaded.owl-drag, .about-us2.owl-carousel.owl-loaded.owl-drag {
        margin-bottom: 0;
        padding-bottom: 0;
        line-height: 0;
    }
.about-us1 .owl-nav button span, .about-us2 .owl-nav button span  {
  
    display: none !important;
}
    .counter-inner h3 {
        font-size: 18px;
    }

    .tour-links {
        left: 4%;
        gap: 8px;
        align-items: center;
        right: 4px;
    }

        .tour-links a {
            padding: 10px 6px !important;
        }
}

@media screen and (max-width:768px) {
    .tb-btn {
        bottom: 12px !important;
    }

    .mobile-res {
        padding-bottom: 70px !important;
    }

    .speaker-item h4 {
        font-size: 15px !important;
        font-weight: 500;
    }

    .schedule-nav {
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .visitors-case-study-details {
        padding-top: 60px;
    }

    .mobile-row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

        .mobile-row-reverse img {
            padding-top: 10px;
        }

    .why-chennai-inner-content h3 {
        font-size: 18px;
        font-weight: 400;
        padding-bottom: 0px;
    }

    .why-chennai-inner-content p {
        font-size: 14px;
        color: #000;
        font-weight: 400;
        margin-bottom: 4px;
        line-height: 1.8;
    }

    .why-chennai-inner-content li {
        font-size: 14px;
        color: #000;
        font-weight: 400;
        margin-bottom: 2px;
        line-height: 1.8;
    }

    .why-chennai-inner-content ul li b {
        font-size: 14px;
    }

    .team-details .name {
        font-size: 18px;
    }

    .enquiries h2 {
        font-size: 22px;
    }

    .enquiries h4 {
        font-size: 18px;
    }

    .about-img img.img-1.partner-img {
        width: 100%;
    }

    .partner-service-details {
        margin-bottom: 0px;
    }

    .venueservices {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .counter-inner h3 {
        font-size: 14px;
    }

    .site-heading .site-title {
        font-size: 24px;
    }

    .tbs-d-flex h3 {
        font-size: 14px;
        font-weight: 700;
    }

    .tbs-d-flex-text p {
        font-size: 12px !important;
    }

    /* .halls-tabs {
        padding-bottom: 60px;
    } */



    .halls-tabs .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: unset !important;
    }

    .tabs-inner-img img {
        height: auto;
        border-radius: 12px;
    }

    .owl-nav {
        display: none;
    }
}

@media screen and (max-width:576px) {
    .venueservices {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .team-img {
        width: 170px !important;
        height: 170px !important;
    }
    .team-row.mt-5 {
        margin-top: 0.5rem !important;
    }

    .team-area {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .team-area {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .pt-100 {
        padding-top: 20px;
    }

    .site-title {
        font-size: 22px;
    }

    .site-title {
        margin-bottom: 0px !important;
    }

    .contact-info-content h4 {
        font-size: 16px;
        margin-bottom: 0px;
        ;
    }

    .contact-info-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-info {
        gap: 0px;
    }

    .visitors-case-study-details {
        padding-top: 60px;
    }

    .cs-blog-detail h4 {
        font-size: 16px;
        padding: 10px 0 0;
    }

    .heading_inner_blk h6 {
        font-size: 14px;
    }

    .heading_blk h6 {
        font-size: 16px;
    }

    .rounded-5 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 12px !important;
    }

    .mobile-padding {
        padding-top: 10px;
    }

    .float-end {
        float: right !important;
        padding-right: 32px;
    }

    .marketing-policy-pdf p {
        padding: 6px 10px;
        font-size: 14px;
    }

    .why-chennai-inner-content h3 {
        font-size: 18px;
        font-weight: 400;
        padding-bottom: 0px;
    }

    .why-chennai-inner-content p {
        font-size: 14px;
        color: #000;
        font-weight: 400;
        margin-bottom: 4px;
        line-height: 1.8;
    }

    .why-chennai-inner-content li {
        font-size: 14px;
        color: #000;
        font-weight: 400;
        margin-bottom: 2px;
        line-height: 1.8;
    }

    .why-chennai-inner-content ul li b {
        font-size: 14px;
    }

    .mobile-row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer-list li a {
        font-size: 14px;
    }

    .footer-list {
        gap: 0.35rem;
    }

    .footer-contact li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-widget-title {
        font-size: 16px;
    }

    .post-date a {
        font-size: 12px;
    }

    .post-comment a {
        font-size: 12px;
    }

    .partner-service .section-title {
        margin: 0 0 8px;
        font-size: 18px;
    }

    .partner-service-details {
        margin-bottom: 0px;
    }

    .site-title {
        font-size: 22px;
        line-height: 30px;
    }

    .halls-tabs .col-lg-4.col-md-4.col-sm-4.col-xs-3 {
        max-width: 33%;
    }

    .counter-inner .col-lg-4.col-md-4.col-sm-4.col-xs-6 {
        width: 50%;
    }

    .ptb-60 {
        padding: 20px 0;
    }

    .site-heading .site-title {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .halls-tabs .nav-tabs .nav-link {
        padding-bottom: 10px;
        font-size: 14px;
    }

    .tbs-d-flex {
        margin: 8px 0;
    }

    .tb-btn {
        bottom: 18px !important;
    }

    .mobile-res {
        padding: 10px 10px 10px 10px !important;
        padding-bottom: 76px !important;
    }

    .tabs-main .nav-item {
        padding-left: 4px;
        padding-right: 4px;
    }

    .tabs-inner-img img {
        height: auto;
        border-radius: 12px;
    }

    .getting-here-home {
        padding: 20px 0 20px 0;
    }

        .getting-here-home .subtitle {
            font-size: 14px;
            line-height: 24px;
        }

    .schedule-area2 .schedule-img img {
        display: none;
    }

    .main.main.visit-us .container-fluid {
        /* padding:10px !important; */
        margin: unset !important;
    }

    .schedule-info h4 a {
        font-size: 14px;
        line-height: 28px;
    }

    .speaker-info h6 {
        font-weight: 400 !important;
        font-size: 14px;
    }

    .schedule-area2 .mt-2 {
        margin-top: 0rem !important;
    }

    .faq .faq-list a {
        font-size: 13px;
    }

    .site-heading .site-title {
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 10px;
    }

    .welcome-text {
        display: none;
    }

    .schedule-content-wrap {
        gap: 0px;
    }

    .contact-info {
        padding: 20px 20px;
    }

    .cs-blog-detail {
        margin-top: 40px;
    }

    .marketing-policy-pdf {
        padding: 0px 16px;
        margin: 14px 0;
    }

    /* .halls-tabs {
    padding-bottom: 74px !important;
} */
    .about-section h2 {
        padding-bottom: 0px !important;
    }

    /* .mobile-row-reverse img{
    padding-top:10px;
} */

    /* .why-chennai-inner-content{
    padding-top:10px;
} */
}


/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #a43205;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #a43205;
    }






/******************** Admin styles ************************************/

.text-danger {
    color: red;
}

.wrapper {
    width: 100%;
    margin: auto;
    position: relative;
    display: inline-block;
}

.form-heading {
    font-size: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.login-form .bg-light-success {
    color: #a43205 !important;
    background-color: #cb5c362b;
    padding: 10px 50px;
    font-weight: 500;
    border-color: #ecf1f6 !important;
    font-size: 15px !important;
    border-radius: 50px;
    max-width: max-content;
}

.reg-text-center {
    position: relative;
    transform: translate(0%, 20%);
}

.text-lh {
    line-height: 26px;
}

.box {
    /*  width: 100%;
/*    padding: 15px;*/
    /*   border: solid 1px #ccc;*/
    display: inline-block;
    margin-bottom: 20px;
}

.card-details {
    padding: 14px;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    border-radius: 10px;
    height: 100%;
}

.icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.intro {
    width: 100%;
    height: 100vh;
    position: relative;
    /*background:url(../images/introbg.jpg);*/
    background-size: cover;
    overflow: hidden;
}

.tab_sec {
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin-top: 30px;
}

    .tab_sec a {
        min-width: 300px;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        margin: auto;
        display: block;
        margin-bottom: 30px;
    }

    .tab_sec .box1 {
        background: white;
        padding: 20px;
        text-align: center;
        box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    }

        .tab_sec .box1 .icon {
            width: 100px;
            height: 100px;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .tab_sec .box1 .icon img {
                /*width: 100%;*/
            }

    .tab_sec .title11 {
        margin-top: 10px;
    }


.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.ptb10 {
    padding: 10px;
}

.profie-fields label {
    width: 40% !important;
    color: #2b2b2b;
}

.profie-fields span {
    color: #084d64;
    font-weight: 600;
}

.form-border {
    border: 1px solid #e6e6e6;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    padding: 20px;
    border-radius: 10px;
}

.admin-section {
    position: relative;
    padding: 30px 0 30px;
}

.fieldsetlegendinline {
    border-bottom: none;
    font-size: 1rem;
    color: #1f1f21;
    font-weight: 600;
}

.bg-light-success-form {
    color: #a43205 !important;
    background-color: #cb5c362b;
    padding: 8px 50px;
    font-weight: 500;
    border-color: #ecf1f6 !important;
    font-size: 15px !important;
    border-radius: 50px;
    max-width: max-content;
}

    .bg-light-success-form:hover {
        background-color: #debf42 !important;
        color: #fff !important;
    }

.theme-btn:hover {
    background-color: #debf42 !important;
    color: #fff !important;
    border: 1px solid #debf42 !important;
}

.stdMainMsg {
    color: red;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.page-content {
    padding: 20px 20px 50px 20px;
    min-height: 700px;
}

.hall-availability {
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

    .hall-availability .hall-availability-body {
        background: #FFFFFF;
        padding: 20px 0px;
        clear: both;
        border-bottom-right-radius: 5px !important;
        border-bottom-left-radius: 5px !important;
    }

td {
    font-size: 14px !important;
}

#hall-details .table-bordered th {
    border: 1px solid #ffffff !important;
    padding: 4px 0px !important;
}

td.red {
    background: #ff5c5c;
    color: #fff;
}

td.green {
    background: #24ab53ed;
    color: #fff;
}

.strip-blue {
    background: #dbebef;
}

.profile-header {
    box-shadow: rgb(221, 221, 221) 0px 0px 2px 0px;
}

.edit-btn {
    background: #084e65;
    font-size: 14px;
    height: 34px !important;
    margin: 6px;
}


.org-name-field span {
    color: #084e65;
    font-size: 1rem;
}

.team-details .name {
    font-size: 18px;
}

.label-data {
    padding-left: 42px;
    margin-top: -10px;
    margin-bottom: 2px;
}

.booked-text {
    background: #cd0000;
    color: #fff;
    height: 20px;
    line-height: 19px;
    font-size: 12px;
}

.available-text {
    color: green;
    height: 20px;
    line-height: 18px;
    font-size: 13px;
}

.label-data {
    padding-left: 44px;
    margin-top: -5px;
    margin-bottom: 10px;
}

.booked-text {
    background: #cd0000;
    color: #fff;
    height: 20px;
    line-height: 19px;
    font-size: 12px;
}

.available-text {
    color: #26af66;
    font-weight: 600;
    height: 20px;
    line-height: 18px;
    font-size: 13px;
}

.confirmation-card {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 30px;
}


.btn-custom {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
}

    .btn-custom:hover {
        background-color: #357ab8;
    }

.details-title {
    color: #01054c;
    font-weight: bold;
}

.details-value {
    font-size: 1rem;
    color: #782200;
    margin-left: 40px;
    font-weight: 700;
}

.details-title img {
    width: 36px;
}

.fieldsetlegendinline img {
    width: 34px;
}

.box-form img.icons {
    width: 28px !important;
}

.profie-fields .theme-btn i {
    margin-right: 10px;
    transform: rotate(0deg);
}

.request-container img {
    width: 30px;
}

.request-container h5 {
    border-bottom: none;
    font-size: 1rem;
    color: #1f1f21;
    font-weight: 500;
}

.theme-btn-p {
    padding: 6px 34px !important;
}

.field-odd {
    background: #edf6fa;
}

.form-check {
    padding-left: 2.3em;
}

.text-welcome {
    color: #2c2c2c;
    letter-spacing: .05em;
    text-shadow: 1px 2px 10px #d5d5d5, 1px 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 2.3em;
    font-family: sans-serif;
    -webkit-animation: shift 2s;
    animation: shift 2s;
    /*   margin-top: 100px;*/
    text-align: center;
    text-transform: uppercase;
}

.welcome-styles {
    animation: appear 3.2s;
    text-align: center;
}

@keyframes shift {
    0% {
        opacity: 0;
    }

    33% {
        margin-top: 0px;
        opacity: 0;
    }

    100% {
        /*    margin-top: 100px;*/
        opacity: 1;
        text-shadow: 1px 2px 10px #d5d5d5, 1px 2px 10px rgba(0, 0, 0, 0.2);
    }
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.table-bg {
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    border-radius: 10px;
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.icon-styles .icon {
    margin-right: 10px;
}

.category-section-tab:hover {
    background: #dcf6ff;
}

.category-section-tab .title11 span {
    font-weight: 700;
}









.ajax__calendar_container {
    width: 220px;
    z-index: 999;
}

.ajax__calendar .ajax__calendar_active {
    background-color: #edf9ff;
    border-color: #0066cc;
    color: red !important;
}

.ajax__calendar_container TABLE {
    width: 100%;
}

.cal_Theme1 .ajax__calendar_container {
    background-color: #FFF;
    border: 1px solid #ddd;
}

.cal_Theme1 .ajax__calendar_header {
    background-color: #ffffff;
    margin-bottom: 4px;
}

.cal_Theme1 .ajax__calendar_title,
.cal_Theme1 .ajax__calendar_next,
.cal_Theme1 .ajax__calendar_prev {
    color: #555F61;
    padding-top: 0px;
    padding-bottom: 3px;
}

.cal_Theme1 .ajax__calendar_body {
    background-color: #ffffff;
    border: solid 1px #ddd;
}

.ajax__calendar_body {
    width: 100%;
    height: 181px;
}
.ajax__calendar_body {
    height: 170px !important;
    width: 212px !important;
    position: relative;
    overflow: hidden;
    margin: auto;
    font-size: 14px;
}

.ajax__calendar_days,
.ajax__calendar_months,
.ajax__calendar_years {
    width: 100%;
}

.ajax__calendar_footer {
    height: auto;
}


.cal_Theme1 .ajax__calendar_dayname {
    text-align: center;
    font-weight: bold;
    margin-bottom: 4px;
    margin-top: 2px;
    color: #555F61;
}

.ajax__calendar_day {
    cursor: pointer;
    height: auto !important;
    padding: 0px ;
    text-align: right;
    width: auto !important;
    font-size:14px !important
}

.cal_Theme1 .ajax__calendar_day {
    text-align: center;
}

.cal_Theme1 .ajax__calendar_hover .ajax__calendar_day,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_month,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_year,
.cal_Theme1 .ajax__calendar_active {
    color: #FFF;
    font-weight: bold;
    background-color: #D1422F;
}


.cal_Theme1 .ajax__calendar_today {
    font-weight: bold;
}

.cal_Theme1 .ajax__calendar_other,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_today,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_title {
    color: #bbbbbb;
}

.lblConfirm {
    color: #084e65;
    font-weight: bold;
    word-wrap: break-word;
}


.ItemTeplateContent {
    font-size: 13px !important;
    color: Black;
    height: 30px;
    margin: 0px;
    border: solid 1px #e6e6e6;
    padding: 10px 2px;
    text-align: left;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;

}
   
    .table-responsive input {
        margin-top: 5px;
    }


.TeplateHeader {
    font: 12px helvetica, arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px;
    border-left: solid 1px #e6e6e6e6;
    border-top: solid 1px #e6e6e6e6;
    border-left: solid 1px #e6e6e6e6;
    border-right: solid 1px #e6e6e6e6;
    background-color: #005b7ad1;
    text-align: center;
    white-space: -moz-pre-wrap !important;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;

}

.TeplateHeader_Table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    color: white;
    text-align: center;
}

.ItemTeplateContent_TablePrint_TopBorder {
    border-top: solid 1px black;
}

.hide {
    display: none;
}


.stdBorderLeft {
    font-size: 13px !important;
    font-weight: bold;
    background-color: #2e7992;
    text-align: center;
    border-top: solid 1px #e6e6e6;
    border-bottom: solid 1px #e6e6e6;
    border-left: solid 1px #e6e6e6;
    /* text-shadow: 1px 1px #FFCC00; */
    color: #fff;
    height: 30px;
    padding: 8px 6px;
    white-space: -moz-pre-wrap !important;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
 /*   white-space: pre-wrap;*/
/*    word-wrap: break-word;
    word-break: unset;
    white-space: nowrap !important;*/
}

.stdBorderRight {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    background-color: #2e7992;
    border-top: solid 1px #e6e6e6;
    border-bottom: solid 1px #e6e6e6;
    border-left: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
    /*text-shadow: 1px 1px #FFCC00;*/
    color: #fff;
    height: 30px;
    padding: 3px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: unset;
    white-space: nowrap !important;
}

.stdContentLeft {
    font-size: 13px !important;
    border-bottom: solid 1px #e6e6e6;
    border-left: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
    color: #1f1f21;
    height: 30px;
    padding: 4px 6px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: unset;
    white-space: normal;
}

.stdContentRight {
    font-size: 13px;
    border-bottom: solid 1px #e6e6e6;
    border-left: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
    color: Black;
    height: 30px;
    padding: 3px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    /* white-space: normal; */
    white-space: nowrap;
}

.test input {
    float: left;
    margin-left: 6px;
    margin-right: 3px;
}

.test label {
    float: left;
    width: auto;
    margin-top: -8px;
}

.test .download-link {
    background: #cce3eb;
    padding: 0px 10px;
    text-decoration: underline;
    border-radius: 4px;
}

.text-warning {
    color: var(--orange);
}

.colorDark {
    color: var(--dark) !important;
}

.c_dark_green {
    color: var(--dark-green) !important;
}

.text-primary, .stdPopupInnerContentHeading {
    color: var(---green);
}

.my_apl_list img {
    /*width: 60px;*/
    height: auto;
}

.my_apl_list .name {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    color: #000000;
    padding-left: 6px;
}

.appliaction-ref-no span {
    color: #01054c;
    font-weight: 700;
}

.my_apl_list .text {
    font-size: 14px;
    color: var(--gray);
    margin-left: 12px;
}

.wizard {
    /*margin-bottom: 30px;
    margin-top: 40px;*/
}

    .wizard .nav-tabs {
        position: relative;
        margin-bottom: 0;
        border-bottom-color: transparent;
    }

    .wizard > div.wizard-inner {
        position: relative;
    }

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 60%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 50px;
    height: 50px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

    span.round-tab i {
        color: #555555;
    }

.wizard li.active span.round-tab {
    background: linear-gradient(135deg, #1ecb3d, #024719);
    color: #fff;
    border-color: #1ecb3d;
}

    .wizard li.active span.round-tab i {
        color: #5bc0de;
    }

.wizard .nav-tabs > li.active > a i {
    color: #0e7f28;
    font-weight: 700;
}

.wizard .nav-tabs > li {
    width: 9%;
    display: flex;
    padding-top: 10px;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}



.wizard .nav-tabs > li a {
    width: 50px;
    height: 50px;
    margin: 0px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}

    .wizard .nav-tabs > li a i {
        position: absolute;
        top: -15px;
        font-style: normal;
        font-weight: 400;
        white-space: nowrap;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        color: #000;
    }

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}

.wizard .nav-tabs li.active path, .wizard .nav-tabs li.active circle, .wizard .nav-tabs li.active g, .wizard .nav-tabs li.active rect {
    fill: #fff;
}

.SearchPopUpNew {
    margin-top: 14px;
    background-color: #f6f6f6;
    box-shadow: rgb(221, 221, 221) 0px 0px 4px 0px;
    border: 2px solid #f6f6f6;
    border-radius: 10px;
    padding: 20px;
    margin-left: -25%;
}

    .SearchPopUpNew input {
        margin-bottom: 10px;
    }

#widget {
    position: relative;
    /*margin-top: -14px;*/
}

#widgetField {
    width: 100%;
    height: 40px;
    /* background: url(../../images/field.png); */
    overflow: hidden;
    position: relative;
}

    #widgetField a {
        display: block;
        position: absolute;
        width: 26px;
        height: 26px;
        top: 4px;
        right: 12px;
        text-decoration: none;
        /*     text-indent: -3000px;*/
    }

    #widgetField span {
        font-size: 12px;
        font-weight: bold;
        color: #000;
        position: absolute;
        top: 5px;
        height: 26px;
        line-height: 26px;
        left: 5px;
        width: 250px;
        text-align: center;
    }

#widgetCalendar {
    position: absolute;
    top: 26px;
    left: 0;
    height: 0px;
    overflow: hidden;
    width: 360px;
    background: #B9B9B9;
}

    #widgetCalendar .datepicker {
        position: absolute;
        bottom: 0;
        top: auto;
    }

    #widgetCalendar .datepickerContainer,
    #widgetCalendar .datepickerBorderT,
    #widgetCalendar .datepickerBorderB,
    #widgetCalendar .datepickerBorderL,
    #widgetCalendar .datepickerBorderR,
    #widgetCalendar .datepickerBorderTL,
    #widgetCalendar .datepickerBorderTR,
    #widgetCalendar .datepickerBorderBL,
    #widgetCalendar .datepickerBorderBR {
        background: transparent !important;
    }

    #widgetCalendar .datepicker a:hover {
        color: #b6f063;
    }

/* Modal Popup Start */

.stdMainPopup {
    background: url(../images/header.jpg) repeat;
    border-radius: 10px;
}

.stdPopupClose {
    /*padding-right: -20px;
            cursor: pointer;
            margin-bottom: -30px;
            margin-top: -23px;
            margin-right: -18px;
            background-position: top;
            position: relative;*/
    /* cursor: pointer;
    margin-bottom: -41px;
    margin-top: 10px;
    margin-right: 12px;
    background-position: top;
    position: relative;
    height: 27px;
    border-radius: 10px; */
    cursor: pointer;
    margin-bottom: -41px;
    margin-top: 18px;
    margin-right: 12px;
    background-position: top;
    position: relative;
    height: 27px;
    border-radius: 10px;
    position: absolute;
    right: 2%;
}

.stdPopupInnerMain {
    background-color: White;
    border-radius: 10px;
    margin: 10px;
    float: left;
    padding: 16px 0px;
}

.stdPopInnerMsg {
    float: left;
    color: Red;
    text-align: center;
    margin-top: 6px;
}

.stdPopupInnerContent {
/*    float: left;
*/    margin: 5px 30px 10px 25px;
}

.stdPopupInnerContentHeading {
    float: left;
    font-weight: bold;
    color: #254F5D;
    font-size: 18px;
}

.modalBackground {
    background-color: gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.modal {
    background: #0000004d;
}

button.btn-outline-primary {
    background: white !important;
    border: 1px solid #4dc8f4 !important;
    color: #4dc8f4;
    font-weight: 500;
    font-size: 13px;
}

.text-warning {
    color: rgb(255 154 7) !important;
    font-weight: 600;
}

.theme-btn-outline {
    color: #cb5c36 !important;
    border: 1px solid #cb5c36 !important;
    background: none !important;
}

.table-responsive input.form-control {
    width: 100%;
    height: 40px;
    margin-bottom: 0px;
    padding-left: 20px;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    text-align: center;
}

    .table-responsive input.form-control:hover {
        border: 1px solid #cb5c369e;
        box-shadow: none;
    }

.text-right {
    text-align: right;
}

.action-btn {
    color: white;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: none;
    text-transform: capitalize;
    padding: 6px 26px !important;
}

img#cphBody_imgPrintApplication {
    padding: 6px 20px !important;
}

.update-btn {
    background: linear-gradient(135deg, #1ecb3d, #024719);
}

.make-payment {
    background: linear-gradient(135deg, #30bcff, #1e44f3);
}

.delete-btn {
    background: linear-gradient(135deg, #ef801b, #f23500);
}

.draft-submitted {
    background-color: #d8eaf7;
}

.draft-text {
    padding: 4px 10px;
}

span.test {
    align-items: baseline;
    display: flex;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #cb5c36;
    --bs-btn-border-color: #cb5c36 ;
}

.btn:hover {
    color: var(--bs-btn-active-color);
    background-color: #ebcb63 !important;
    border-color: #a98a0e !important;
}

.table-input-select input.form-control:hover, .table-input-select select.form-control:hover {
    border: 1px solid #cb5c369e;
    box-shadow: none;
}

.table-input-select input.form-control, .table-input-select select.form-control {
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    padding-left: 20px;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    margin-top: 6px;
}

input.sort {
    position: relative;
    float: right;
    bottom: 42px;
    right: 1px;
    background: #e6e6e6;
    padding: 10px;
    height: 42px;
    border-radius: 0px 20px 20px 0px;
}

.search-btn {
    background: linear-gradient(135deg, #ef801b, #f23500);
}
/*table tbody tr:nth-child(even) {
    background: #f2fcff;
}*/
.Regconfirmcss {
    margin-bottom: 12px;
}

.hall-available-text {
    display: flex;
    justify-content: space-around;
}

.form-border label {
    margin-top: 10px;
}
.list-of-app {
    background: rgb(237, 247, 252);
    padding: 10px 20px;
}
.view-more-link {
    font-weight: 700;
    color: #f06812;
}
.color-maroon {
    color: #c03a06;
    font-weight: 700;
}
.text-approved {
    color: #1c9c1c;
    font-weight: 700;
}
.text-rejected {
    color: red;
    font-weight: 700;
}
.current-status {
    color: #0a7c87;
    font-weight: 700;
}
.my_apl_list .text  span.ml-2.current-status {
    width: 57%;
    display: block;
}
.my_apl_list .text {

    display: flex;
}
.p-10{
    padding:10px
}
.py-20{
    padding:0px 20px;
}

    /* Horizontal scrollbar */
   ::-webkit-scrollbar {
        height: 6px !important;
        width: 6px !important; 
        background-color: #F5F5F5;
    }

   ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: green;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    }

   
    ::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #F5F5F5;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

.ItemTeplateContent:first-child{
    text-align:center;
}
.booking-amount {
    background-color: #d8eaf7;
    padding: 1% 0;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
.table-responsive {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.exhibitionhalls-inner img {
    height: 250px;
    width: 100%;
}
.icon-circle::before {
    content: "\2022";
    font-size: 20px;
    color: #cb5c36;
    margin-right: 10px;
}
.venue-card img{
    height:230px;
    width:100%
}
/********* Browser alert modal ****************/
.modal.alert-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

    .modal.alert-modal .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 30px 20px;
        border-radius: 8px;
        width: 36%;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .modal.alert-modal .modal-actions {
    
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .modal.alert-modal .btn-confirm {
        color: white;
        border-radius: 50px;
        overflow: hidden;
        position: relative;
        border: none;
        text-transform: capitalize;
        padding: 6px 26px !important;
        background: linear-gradient(135deg, #1ecb3d, #024719);
    }

    .modal.alert-modal .btn-cancel {
        color: white;
        border-radius: 50px;
        overflow: hidden;
        position: relative;
        border: none;
        text-transform: capitalize;
        padding: 6px 26px !important;
        background: linear-gradient(135deg, #ef781b, #f23500);
    }

    .modal.alert-modal .btn-confirm:hover {
        background-color: #45a049;
    }

    .modal.alert-modal .btn-cancel:hover {
        background-color: #d32f2f;
    }
.about-slider.venue-tab img{
    border-radius:0px
}
.carousel-height {
    margin-top: 28px;
    margin-bottom: -12px;
}
.clients-slide {
    padding: 12px 10px;
}
    .clients-slide img.img-fluid {
       box-shadow:rgb(221,221,221) 0px 0px 10px 0px;
        padding: 20px;
    }
.gallery-section.home-gallery{
    padding-top:8px;
}

.hotel-card {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .hotel-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.hotel-image {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 150px;

    width: 100%;
}

.hotel-info {
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 14px;
}

    .hotel-info h5 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .hotel-info p {
        font-size: 1rem;
        color: #777;
        margin-bottom: 15px;
    }

.rating {
    color: gold;
}

.hotel-link {
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

    .hotel-link:hover {
        color: #0056b3;
    }

.hotel-logo {
    width: 120px;
    margin-top: 10px;
    object-fit: contain;
}

.hotel-card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-card-footer {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotel-card {
        margin-bottom: 30px;
    }
}


.flowers-bg {
    background-image: url(../img/inner-images/bg-flower.jpg);
    background-position: center;
}
.events-section {
    background-image: linear-gradient(to right, #212121a6 50%, #131414d4 100%), url(../img/inner-images/upcoming-events.jpg);
    background-position: center;
}
.b2b-bg {
    background-image: url(../img/inner-images/b2b-b2c.jpg);
    background-position: center;
}
.ctc-admin-img {
    background-image: linear-gradient(to right, #e5e2e28a 40%, #1616168a 100%), url(../img/inner-images/ctc-admin-corner.jpg);
    background-position: center;
}
.navbar {
    background: #eaf2f5 !important;
}




@media (min-width:1200px) and (max-width:1400px){
    .wizard .nav-tabs > li a i {
        font-size: 10px;
    }
}



    @media (max-width:1199px) {
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .stdContentLeft {
            word-wrap: break-word;
            word-break: unset;
            white-space: nowrap !important;
        }

        .hall-details-table table {
            width: 1400px !important
        }

        .TeplateHeader_Table tbody tr td:nth-child(2) {
            background: #2e7992;
        }

        .welcom__text {
            margin-top: 16px;
        }

        h4.project-name {
            font-size: 20px;
        }

        h4 {
            font-size: 18px;
        }

        .p-20 {
            padding: 14px;
        }

        .mpt-20 {
            padding-top: 20px;
        }

        #lblPageTitle {
            font-size: 18px !important;
            margin-top: 20px !important;
        }

        .label-data {
            padding-left: 32px;
            margin-top: -5px;
            margin-bottom: 10px;
            text-wrap-mode: wrap;
            word-break: break-word;
        }

        .mobile-d-flex {
            display: flex;
            margin-top: 10px;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .mobile-d-grid {
            display: grid !important;
        }

        label {
            display: inline-block;
            margin-bottom: 0;
            margin-top: 12px;
        }

        .theme-btn {
            margin: initial;
        }

        .hall-table table thead tr td, .hall-table table tbody tr th, .hall-table table tbody tr td {
            min-width: 120px !important;
            text-wrap-mode: nowrap;
            padding: 10px 10px;
        }

            .hall-table table tbody tr td:nth-child(4) {
                min-width: 630px !important;
                text-wrap-mode: nowrap;
                padding: 10px 10px;
            }

            .hall-table table tbody tr td:nth-child(5) {
                min-width: 127px !important;
                text-wrap-mode: nowrap;
                padding: 10px 32px;
            }

        .hall-table tr th:nth-child(2) {
            position: -webkit-sticky;
            position: sticky;
            left: -11px;
            background-color: #2e7992;
            z-index: 1;
        }

        .hall-table tr td:nth-child(2) {
            position: -webkit-sticky;
            position: sticky;
            left: -11px;
            background-color: #fff;
        }

        .hall-table .TeplateHeader_Table tr td:nth-child(2) {
            background-color: #2e7992;
        }

        .hall-table table tbody tr td:nth-child(1) {
            text-align: center;
        }

        .wizard-inner i span {
            font-size: 8px;
        }

        .hall-table-preview table.TeplateHeader_Table tbody tr td:nth-child(4) {
            min-width: 120px !important;
        }

        .theme-btn2 {
            width: max-content;
            font-size: 16px;
            color: var(--color-white);
            padding: 4px 6px;
        }

        .alert-close-new {
            transform: translate(-150px, -34px);
        }

        .hall-details-table td.ItemTeplateContent:last-child {
            padding: 10px 4px 0px 0px;
        }

        .uib-tabs-nav {
            flex-direction: row !important
        }

            .uib-tabs-nav label {
                width: 20%
            }

        .gallery-pt-20 {
            padding-top: 10px
        }

        .stdPopupClose {
            right: 8%;
        }

        .stdPopupInnerContent {
            /* float: left; */
            margin: 3px 8px 6px 8px;
        }

        .clients-slide {
            padding: 16px 0px;
        }
    }

@media (min-width:992px) and (max-width:1199px) {

    img#cphBody_imgPrintApplication {
        padding: 7px 26px !important;
    }

    .gallery-section .gallery-box {
        grid-template-columns: repeat(4, auto);
        /* grid-template-rows: repeat(1, 18vw); */
        grid-auto-rows: 20vw;
    }

    .venue-card img {
        height: 160px;
        width: 100%;
    }

   
}

    @media (min-width:768px) and (max-width:991px) {
        .venue-card img {
            height: 160px;
            width: 100%;
        }

        .wizard-inner i span {
            font-size: 0.5rem;
        }

        .alert-close-new {
            transform: translate(-150px, -34px);
        }

        img#cphBody_imgPrintApplication {
            padding: 7px 26px !important;
        }

        .booking-amount {
            text-align: start;
        }

        .sitemap > li > ul {
            display: inline-grid !important;
            width: 100%;
        }

        .tabs-inner-img .venue-tab img {
            height: 284px;
        }
    }

    @media (min-width:600px) and (max-width:767px) {
        body {
            font-size: 14px;
        }


        .wizard-inner i span {
            font-size: 10px;
        }

        .alert-close-new {
            transform: translate(-150px, -34px);
        }

        img#cphBody_imgPrintApplication {
            padding: 7px 26px !important;
        }

        .my_apl_list .text span.ml-2.current-status {
            width: 69%;
            display: block;
        }

        .wizard-inner svg {
            width: 20px
        }

        .wizard-inner span.round-tab {
            width: 48px !important;
            height: 48px !important;
        }

        .booking-amount {
            text-align: start;
        }

        .sitemap > li > ul {
            display: inline-grid !important;
            width: 100%;
        }

        .tabs-inner-img .venue-tab img {
            height: 284px;
        }

    }

    @media (max-width:599px) {
        body {
            font-size: 14px;
        }

        table.payment-details-view tr td:first-child {
            width: 15% !important
        }

        .tabs-inner-img .venue-tab img {
            height: 284px;
        }

        .wizard-inner i span {
         font-size: 0.3rem;
        }

        .alert-close-new {
            transform: translate(-8px, -34px);
        }

        .alert-danger {
            width: 80%;
        }

        img #cphBody_imgPrintApplication {
            padding: 7px 26px !important;
        }

        .theme-btn {
            padding: 6px 12px;
        }

        .bg-light-success-form {
            padding: 8px 30px;
        }

        .owl-item.active .slider-content {
            left: 10px;
        }

        img#cphBody_imgPrintApplication {
            padding: 7px 26px !important;
        }

        .wizard {
            padding: 0;
            margin: 0;
        }

        span.round-tab svg {
            width: 13px;
        }

        .wizard-inner span.round-tab {
            width: 26px !important;
            height: 26px !important;
        }
        .wizard .nav-tabs > li a {
          
            height: 32px;
        }
            .booking-amount {
            padding-left: 20px;
            text-align: start;
        }

        .sitemap > li > ul {
            display: inline-grid !important;
            width: 100%;
        }
        .new-container {
        
            padding: 26px;
        }
        .new-container h2{
            font-size:20px;
        }
        .sidebar.minimized + .content.contnet-view {
            margin-left: 50px;
        }
    }

    @media (max-width:419px) {
        .alert-danger {
            width: 90%;
        }

        .alert-close-new {
            transform: translate(8px, -34px);
        }

        .wizard-inner i span {
            font-size: 0.3rem;
        }

        img#cphBody_imgPrintApplication {
            padding: 6px 26px !important;
        }

        .uib-tabs-nav label {
            width: 20%;
            font-size: 13px;
            line-height: 16px;
        }

        span.round-tab svg {
            width: 13px;
        }

        .wizard-inner span.round-tab {
            width: 26px !important;
            height: 26px !important;
        }
    }

    .PageInnerHeadingDetailsMain {
    float: left;
    color: #D65953;
    margin-bottom: 10px;
    height: 30px;
    font-weight: bold;
    font-size: 17px;
    border-bottom: solid 2px #D0C6B1;
}

.PageInnerHeadingDetailsSub {
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    /* text-shadow: 1px 1px #FFCC00; */
    border-top-right-radius: 10px;
    /* padding-top: 5px; */
    border-top-left-radius: 10px;
    height: 30px;
    background-color: #304e65;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.invoice-btn{
    display:flex;
    justify-content:center;

}
/* *************************** */
/* *************************** */
.table-width {
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    margin-top: 10px;
}
.btn-border-rd{
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px; 
    /* padding: 10px; */
}
.table-border-bottom{
    border-bottom: solid 1px #e6e6e6;
}
.mobile-re-width{
    flex: 0 0 auto;
    width: 33.33333333%;  
}
#cphBody_aclick img{
    display:none;
}
#widgetField #cphBody_aclick img {
    display: block !important;
}
@media screen and (max-width:1100px) {
    #cphBody_panel1{
        width: 60% !important;
        position: absolute;
        right: 0;
        left:unset !important
    } 
}
@media screen and (max-width:990px) {
    .about-section {
        margin-top: 40px;
    }
    /* .mobile-width{
        overflow-x: auto;
        width: 100% !important;
    } */
    /* .table-responsive123 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    } */
    .mobile-search-btn{
        margin: auto;
        display: block;
        text-align: center;
        margin-top: -18px;
    }
}
@media screen and (max-width: 768px) {
    .theme-btn {
        height: 42px !important;
        font-size: 14px;
        margin: unset;
        display: inline-block;
    }
    .mobile-top{
        margin-top: -34px !important;
    }
    .search-mobile-width{
        height: 400px !important;
        overflow-x: auto !important;  
    }
    #cphBody_panel1{
        width:80% !important;
    } 
    #cphBody_panel1{
        height:350px;
        overflow-x: auto;
    }
    /* .sort-by-form{
        position: relative;
    }
    input.sort {
        position: absolute;
        float: right;
        bottom:unset;
        right: 1px;
        background: #e6e6e6;
        padding: 10px;
        top: 29px;
    } */
}
@media (max-width:769px) {
    .mobile-top-30{
        margin-top:20px;
    }
    .table-mobile-res{
        padding-left: 0% !important;
        padding-right: 0% !important;
    }
    .stdPopupInnerContent-new{
        width: 90%;
        height: 400px !important;
        overflow-x: auto !important;  
    }

}
@media (max-width:942px) {
    .stdMainPopup-mobile-res{
    width: inherit !important;
    position: fixed !important;
    z-index: 100001 !important;
    left: 0px !important;
    top: 19.5px !important;
    overflow: scroll hidden !important;    
}
.mobile-close-btn{
    right: 0;
    top: 16px;
    position: absolute;
}
}
@media (max-width:599px) {
    .stdMainPopup-mobile-res{
        width: inherit !important;
        position: fixed !important;
        z-index: 100001 !important;
        left: 0px !important;
        top: 19.5px !important;
        overflow: scroll hidden !important;    
    }
    .about-section {
        margin:0px 0 0;
    }
    .table-mobile-res{
        padding-left: 0% !important;
        padding-right: 0% !important; 
    }
  .wel-container br{
  display:none;
  }
  .wel-container span{
    font-size: 30px !important;

  }
  .wel-container{
    transform: translate(0%, 100%) !important;
  }
  .label-data {
    margin-bottom: 0px;
    font-size: 14px;
}

.lblConfirm {
    font-size: 13px;
}
.card-details h5{
    font-size: 14px;
}
.connecting-line {
    top: 50%;
}
.label-data {
    padding-left: 32px;
}
}
@media (max-width:450px) {
    .stdPopupInnerMain  {
        width: 400px !important;
    }
.stdMainPopup{
    /* left: auto; */
    width: 399px; 
    left: 0.0px !important;
}
.stdMainPopup-mobile-res .stdPopupInnerMain{
    width:unset !important;
    margin: 2px;
    }  
    .mobile-close-btn {
        right: 0;
        top: 16px;
        position: absolute;
    }
}
.stdPopupInnerMain{
    /* width: 390px !important;   */
}
.table-width{
    display: grid;
        align-items:unset !important; 
        justify-content: unset !important;
        margin-top:0 !important;
}
.stdPopupInnerContent {
   /* float: left;*/
  /*  margin: 3px 8px 6px 8px;*/
}
.search-mobile-width{
    width: 88% !important;
    margin-left: -70% !important;
    left: 331px !important;   
}
}
@media (max-width:420px) {
    .stdPopupInnerMain {
        width: 380px !important;
    }
    .stdPopupInnerContent .form-control {
            width: 93%;
        }
        .stdPopupInnerContent{
            width: 380px !important;   
        }
        .table-border-bottom{
            border-bottom:0;
        }
        .table-input-select input.form-control, .table-input-select select.form-control {
            width: 92%;
        }
        #cphBody_aclick img{
            display:none;
        }
}

.grdpagenation {
text-align:right;width:100%;
}

/* Sidebar Styles */
/* Sidebar styling */
.sidebar {
    width: 250px;
    transition: width 0.3s ease-in-out;
    background-image: linear-gradient(to right, #e8e1deb5 0%, #c539025c 100%), url(../img/inner-images/bg-flower.jpg);
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0;
    padding-top: 20px;
    overflow: hidden;
    overflow-y: scroll;
}

    .sidebar.minimized {
        width: 70px;
    }

ul.user-sidebar {
    top: 154px;
    position: relative;
}

/* Styling for the toggle button */
.toggle-btn {
    position: absolute;
    left: 10px;
    top: 138px;
    z-index: 1000;
    font-size: 20px;
    transition: left 0.3s ease-in-out;
    padding: 0px 10px;
}

.sidebar.minimized .toggle-btn {
    left: 10px;
    font-size: 18px;
    line-height: 30px;
}

/* Navigation item styling */
.sidebar .nav-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    padding: 0px 10px;
}

.sidebar .tab-text {
    transition: opacity 0.3s ease-in-out;
    padding-left: 10px;
}

.sidebar.minimized .tab-text {
    display: none;
}

.sidebar.minimized .nav-link {
    text-align: center;
    justify-content: center;
}

ul.user-sidebar li a.nav-link {
    color: #076786 !important;
    font-weight: 600 !important;
    padding: 3px 10px;
    margin: 0px 0px 4px;
    width: 94%;
}

    ul.user-sidebar li a.nav-link.active {
        color: #ffffff !important;
        font-weight: 600 !important;
        background-color: #094e64 !important;
        width: 94%;
       
        padding-top: 3px;
        padding-bottom: 3px;
    }

/* Main content adjustment */
.content.contnet-view{
    margin-left: 250px;
    transition: margin-left 0.3s ease-in-out;
    padding: 20px;
    width: 100%;
    min-height: 700px;
}

.sidebar.minimized + .content.contnet-view {
    margin-left: 90px;
}
.user-sidebar i{
    font-size:20px;
  
}


.owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; 
}

.owl-prev, .owl-next {
    background: none;
    border: none;
    font-size: 50px;
    color: #000;
    cursor: pointer;
    pointer-events: all; 
}

.owl-prev {
    position: absolute;
    left: -40px;
}

.owl-next {
    position: absolute;
    right: -40px;
}

    .owl-prev:hover, .owl-next:hover {
        color: #ff7f00;
    }

.user-sidebar i {
    padding: 0px 10px 0px 0px;
    width: 24px;
}


/*case-study new design*/
/*.case-comb {
    background-color: #0d1028;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}*/
.honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hex-row {
    display: flex;
}

    .hex-row.offset {
        margin-left: 55px; /* Half width of hex for offset */
    }

.hex {
    width: 150px;
    height: 150px;
    margin: -9px -9px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    position: relative;
    background-color: #e6e6e6;
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hex img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .hex.yellow::before {
        content: attr(data-text);
        position: absolute;
        inset: 0;
        background-color: rgba(249, 205, 50, 0.9);
        color: #000;
        font-weight: bold;
        font-size: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 2;
       
    }

    .hex.yellow:hover::before {
        opacity: 0.5;
    }

.hex-text {
    position: absolute;
    inset: 0;
    background-color: #f4f4f4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    color: #a5340c;
    padding: 30px;
}

.hex:hover .hex-text {
    opacity: 1;
}
.case-category{
    text-align:center;
    padding:10px 0px;
}


}
/* Responsive scaling */
@media (max-width: 767px) {
    .hex {
       
        margin: 0px 0px 20px 0px;
    }
        .hex-row {
        display: inline-block;
    }
    .hex-row.offset {
        margin-left: 40px;
    }

    .hex.yellow::before {
        font-size: 0.8em;
    }
}
.keypoints{
    padding-left:30px;
}
.keypoints li {
    list-style: disc !important;
        color:#000;
}
.case-study-name {
    font-size: 22px;
    color: #c94518;
    font-weight: 500;
}
.case-comb {
    padding: 40px 0px;
}





@media (min-width:992px) and (max-width:1100px) {
    #sidebar.minimized {
        width: 60px;
    }

    .sidebar .nav-item {
        padding: 0px 2px;
    }

    .sidebar.minimized + .content {
        margin-left: 56px;
    }

    .content.contnet-view {
        width: 74%;
        padding: 5px;
    }
}

@media (max-width:991px) {


    #sidebar.minimized {
        width: 60px;
    }

    .sidebar .nav-item {
        padding: 0px 2px;
    }

   

    .content.contnet-view {
        width: 93% !important;
        overflow-x: scroll
    }
    .sidebar.minimized + .content.contnet-view {
        margin-left: 50px !important;
    }
}

@media (max-width:767px){
    .sidebar.minimized + .content.contnet-view {
        margin-left: 50px;
    }
}

span.test {
    align-items: baseline;
    display: inline-block;
    margin-left: 16px;
}
ul.bullets li
{
    list-style:square;
    padding-left: 0px; /*background:url(../img/right.png) left no-preat!important;*/
    margin-bottom: 10px;
    line-height: 22px;
}
.bullets
{
    padding-left: 2%; 
}