:root {
    --brand-color-theme-1: #eb1c24;
    --brand-color-theme-2: #2d459b;
    --brand-color-theme-3: #e6e7e9;
    --brand-color-theme-4: #10183f;
    --brand-font-family-heading: "Abhaya Libre", serif;
    --brand-font-family-body: "Outfit", sans-serif;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'Abhaya Libre';
    src: url('fonts/Abhaya Libre.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ccc;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #12375d70;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.brand-color-theme-1-text {
    color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-2-text {
    color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-1-bg {
    background-color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-2-bg {
    background-color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-3-bg {
    background-color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-4-bg {
    background-color: var(--brand-color-theme-2) !important;
}

html {
    font-size: 16px;
}

body {
    padding: 0;
    padding-top: 0 !important;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    font-family: var(--brand-font-family-body);
}

p {}

a,
span {}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--brand-font-family-heading);
}

h1 {
    font-size: 3.25rem;
    font-weight: 600;
    margin: 1.25rem 0;
    line-height: 60px;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.25rem 0;
    line-height: 1.5;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 10px 0 0 0;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 1.25rem 0;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 1rem 0;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
    color: var(--brand-color-theme-1);
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.no-spacing {
    padding: 0 !important;
    margin: 0 !important;
}

.bg-none {
    background: transparent !important;
}

.container {
    min-width: 320px;
}

body.width-full #fContent>.container {
    width: 100%;
    padding: 0;
    min-width: 100%;
}

body.width-full #fMatter {
    padding: 0;
}

#f-messages {
    margin: 0;
    background-color: var(--brand-color-theme-1);
    position: fixed;
    top: 0rem;
    width: 100% !important;
    left: 0;
    color: white;
    z-index: 9999999;
}

#f-messages .item {
    background-color: var(--brand-color-theme-1);
}

@-webkit-keyframes fadeOutmessage {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

@keyframes fadeOutmessage {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.fadeOutmessage {
    -webkit-animation-name: fadeOutmessage;
    animation-name: fadeOutmessage;
}

#fPageTitle {
    display: block;
}

#nav-up {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99999;
    font-size: 18px;
    background-color: var(--brand-color-theme-1);
    color: white;
    cursor: pointer;
    width: 48px;
    outline: none;
    border-width: 1px;
    border-style: solid;
    border-color: var(--brand-color-theme-1);
    border-image: initial;
    padding: 10px 5px;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgb(37 34 25);
    visibility: visible !important;
}

#nav-up:hover {
    background-color: rgb(255, 255, 255);
    color: var(--brand-color-theme-1);
}

/*Module*/

.fModule .fModuleTitle,
.fModule .fModuleContent {
    width: 100%;
}

.fModuleEnd .fModuleTitle,
.fModuleEnd .fModuleContent,
.fModuleBoxed {
    margin: 0 auto;
}

#fMatter .fModule,
#fSidebarRight .fModule,
#fContentPre .fModule,
#fContentPost .fModule {
    padding-top: 0rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

.fRegion.region-header>.row {
    justify-content: space-between;
}

.fRegion {
    display: inline-block;
    width: 100%;
}

.fPageTitle {
    position: relative;
    background-color: black;
    color: white;
    padding: 7rem 12px 3rem 12px;
    text-align: center;
    border-bottom: 5px solid var(--brand-color-theme-2);
}

.fPageTitle h1 {
    font-weight: 700;
}

body.title-off .fPageTitle {
    display: none;
}

.f-photo-with-custom-text .fModuleTitle {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle {
    display: block;
}

.text-justify {
    text-align: justify;
}

.fModuleTitle h3 {
    color: black;
    font-weight: 600;
    padding-bottom: 2rem;

}

.title-center .fGalleryContainer>h4 {
    text-align: center !important;
}

.fGalleryContainer>h4 {
    font-size: 1.3rem;
    color: var(--brand-color-theme-2);
    font-weight: 600;
}

.fModuleTitle h3 span {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-color-theme-3);
    font-weight: normal;
    font-family: 'Montserrat';
    margin-bottom: 10px;
}

.title-white .fModuleTitle h3 {
    color: white;
}

.title-white.bg-abstract-1 .fModuleTitle h3 span {
    color: var(--brand-color-theme-2);
}

.title-white .fModuleTitle h3 span {
    color: white;
}

.title-center .fModuleTitle h3 {
    text-align: center !important;
}

.f-photo-with-custom-text.title-center .fModuleContent .fModuleTitle h3 {
    text-align: start !important;
}

ul.fGalleryImages.fGalleryList {
    position: relative;
    margin-top: 0px;
    list-style: none;
    padding: 0px;
    margin-bottom: 0;
}

ul.fGalleryImages.fGalleryList li.fGalleryItem {
    margin: 0px;
    list-style: none;
}

.ItemfinnerGallery {
    position: relative;
}

/* Responsive Homepage */

.fModuleEnd .fModuleTitle {
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
}

@media (min-width: 576px) {
    .fModuleEnd .fModuleTitle {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .fModuleEnd .fModuleTitle {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .fModuleEnd .fModuleTitle {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .fModuleEnd .fModuleTitle {
        width: 1140px;
    }
}

@media (min-width: 1400px) {
    .fModuleEnd .fModuleTitle {
        width: 1320px;
    }
}

.collapse.show {
    display: block !important;
}

.collapse.in {
    display: block !important;
}

.navbar-header .navbar-toggler {
    display: none;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 1rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle .icon-bar {
    position: absolute;
    right: 0;
    height: 3px;
    width: 26px;
    background: #1173ba;
}

.navbar-toggle .icon-bar:nth-child(3) {
    opacity: 0;
}

.navbar-toggle .icon-bar:nth-child(2) {
    transform: rotate(-45deg);
    margin-bottom: 4px;
}

.navbar-toggle .icon-bar:nth-child(1) {
    transform: rotate(45deg);
}

.navbar-toggle.collapsed .icon-bar:nth-child(1),
.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    transform: none;
    /* margin: 0;
    margin: 0; */
}

.navbar-toggle.collapsed .icon-bar:nth-child(1) {
    margin-top: -7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    margin-top: 7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1;
}

.navbar-toggle-container .navbar-toggle {
    z-index: 9999;
}

/* Header */
header.fHeader.active {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 999;
}

header .fModule.fLogo {
    padding-left: 0;
    padding-right: 0;
}

.region-header .fModule,
.region-headertop .fModule {
    display: flex;
    align-items: center;
    align-self: center;
}

.region-headertop .fModule {
    padding: 0;
}

header ul,
ul.fMenu,
header ul li,
ul.fMenu li {
    margin: 0px;
    list-style: none;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.headertop ul li {
    display: inline-block;
    align-items: center;
    padding: 0 0.7em 0 0;
    position: relative;
}

.headertop ul li ul {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    display: none;
}

.headertop ul li ul li {
    border: none;
    display: block;
}

.Ftop-header-logo li.fGalleryItem {
    width: 42%;
}

.navbar-header {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,20346f+100 */
    background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(32, 52, 111, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    .fMenu {
        li {
            margin: 0 10px;
        }

        a {
            color: white;
            text-transform: uppercase;
            font-size: 13px;
        }
    }
}

.social {
    ul.fMenu {
        display: flex;
        align-items: center;
    }

    span.menu-item-icon {
        border: 1px solid;
        padding: 5px;
        border-radius: 50%;
        display: flex;
        align-items: center;
    }

    span.menu-item-text {
        display: none;
    }

    img {
        width: 16px;
        filter: invert(1);
        height: 16px;
    }

    li:last-child {
        span.menu-item-icon {
            border: none;
            display: none;
        }

        span.menu-item-text {
            display: block;
        }

        a {
            background: var(--brand-color-theme-1);
            display: flex;
            align-items: center;
            padding: 10px 18px;
            border-radius: 5px;
        }
    }
}

.logo-header {
    img {
        padding: 10px 20px;
    }
}

/*** Footer ***/

footer#fFooter ul,
footer#fFooter ul li {
    margin: 0px;
    list-style: none;
    padding: 0px;
    justify-content: center;
    display: block;

    a {
        color: white;
        font-size: 0.9rem;
    }
}

.footer-social a {
    color: white;
    border: 1px solid #fff;
    margin: 20px 5px 20px 5px;
    padding: 5px;
    width: 34px;
    display: flex;
    justify-content: center;
    height: 34px;
    align-items: center;
    border-radius: 5px;
}

.footer-social a ::before {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 0;
}

/*** Button ***/

a.fButton,
.fForm .buttons input,
.fbutton-btn a,
.fForm .buttons a {
    background: var(--brand-color-theme-1);
    display: inline-block;
    padding: 10px 1.6rem;
    color: white;
    font-weight: 500;
    border-radius: 7px;
    margin: 0 10px 0 0;
    font-size: 0.9rem;
    border: none;
    font-size: 0.8rem;

}

a.fButton.smallfButton {
    padding: 6px 1rem;
    font-size: .8rem;
}

/****--Form---****/

select {
    word-wrap: normal;
    padding: 0.3rem 10px;
}

.fForm label {
    float: left;
    text-align: left;
    font-size: 16px;
    width: 100%;
}

.fForm .buttons {
    padding: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.fForm .form-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    padding: 0 0 7px;
}

.fForm input,
.fForm select,
.fForm textarea,
.fForm .date {
    padding: 0.85rem 10px;
    width: 100%;
}

.fForm .hint {
    color: #333;
    margin: 11px 0;
}

.fForm .hint a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.fForm .hint a:hover {
    color: var(--brand-color-theme-1);
}

input.form-control,
textarea.form-control {
    display: inline-block;
    margin: 10px 0px;
}

.fForm .form-item-type-checkbox .checkbox label,
.fForm .form-item-type-radio .checkbox label,
.fForm .form-item-type-boolean label {
    display: flex;
    align-items: center;
    width: 100%;
}

.fForm .form-item-option.checkbox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.fForm .form-item-option.checkbox>label {
    width: fit-content;
    margin-right: 10px;
    position: relative;
}

.fForm .form-item-option.checkbox>label>input {
    position: relative;
    top: 10.2px;
}

.user-register-group table tr:nth-child(odd) {
    background: #ddd;
}

.listing-header-item-currency {
    width: fit-content;
    display: flex;
    border: 1px solid var(--brand-color-theme-2);
    border-radius: 0.25rem;
    overflow: hidden;

    >* {
        border: 0;
        border-radius: 0;
    }

    input[type="submit"] {
        padding: 0.5rem 0.75rem;
        background: var(--brand-color-theme-2);
        color: #fff;
    }
}

/*----------iconset----------*/

.iconset .fMenu {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.iconset .fMenu li {
    padding: 1rem;
}

.iconset .fMenu a {
    display: block;
    padding: 1rem;
    font-weight: bold;
    color: #000;
    height: 100%;
    background: #f5f5f5;
    transition: 0.3s all ease-in-out;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 30%);
    position: relative;
}

.iconset .fMenu a:hover {
    background: #efefef;
    -webkit-box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 55%);
    -moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 55%);
}

.iconset img {
    width: auto;
    max-width: 45px;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.menu-item-text .action:before {
    display: block;
    content: "";
    height: 1.04rem;
    width: 1.04rem;
    background: red;
    border-radius: 1rem;
    position: absolute;
    left: 10px;
    top: 19%;
    transform: translate(0, -50%);
    animation: blinking 2s infinite;
}


/*----------animation----------*/

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Common CSS */

/* banner with countdown starts here */

.f-banner .fGalleryText {
    position: absolute;
    inset: 0;
}

.f-banner-home .fGalleryText {
    position: absolute;
    inset: 0;
    padding-top: 2.4rem;

    h1 {
        font-size: 4.25rem;
        line-height: 75px;
    }
}

/*home*/
.f-guest {
    ul {
        justify-content: center;

        li {
            list-style-type: none;
            border-right: 1px solid;
            padding: 0 50px 0 50px;
            margin: 0;

            p {
                font-size: 1rem;
                line-height: 26px;
            }

        }

        li.last {
            border-right: none !important;
        }
    }
}

.the-story {
    h5 {
        color: var(--brand-color-theme-1);
        font-family: "Open Sans", sans-serif;
    }

    h3:after {
        content: "";
        display: block;
        height: 0.5em;
        vertical-align: bottom;
        width: 100%;
        /* margin-right: -100%; */
        /* margin-left: 10px; */
        border-top: 2px solid var(--brand-color-theme-1);
        width: 100px;
        margin-top: 15px;
    }
}

.f-photo-custom-about {
    background: url(https://storage.unitedwebnetwork.com/files/1420/84c7e8e3809ab010494e6d116de832fe.webp) center center no-repeat;
    background-size: cover;

    .f-media-image {
        img {
            height: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

p {
    margin: 1em 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 24px;
}

.f-guest {
    h3 {
        font-family: "Open Sans", sans-serif;
        font-size: 2rem;
    }

    img {
        botrder-radius: 20px;
    }
}

.f-committee-members {
    h3 {
        color: var(--brand-color-theme-2);
    }

    .ItemfinnerGallery {
        background: var(--brand-color-theme-3);
        height: 100%;
        border-radius: 15px;
        padding: 10px;
        text-align: center;
        width: 100%;
        height: 100%;
        aspect-ratio: 2 / 2.9;

        p {
            margin: 0;
        }

        a.fButton {
            margin-top: 20px;
            position: absolute;
            left: 13px;
            bottom: 15px;
            width: 90%;
            padding: 10px 30px;
        }

        p:first-child {
            font-weight: 600;
            margin-top: 15px;
        }

        img {
            border-radius: 15px;
            min-height: 140px;
            aspect-ratio: 0 / 0.9;
            object-fit: cover;
            object-position: top;
            margin: 0;
        }
    }
}


.f-events-highlights {
    h3 {
        color: var(--brand-color-theme-1);
    }

    .f-list-item-container {
        display: inline-block;
        background: var(--brand-color-theme-3);
        height: 100%;
        border-radius: 7px;
        text-align: left;

        .f-list-item-node.f-list-item-title {
            display: none;
        }

        .f-list-item-node.f-list-item-teaser-content {
            padding: 5px 30px;
        }

        .fButton {
            /* display:block; width:100%;  */


            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        img {
            border-radius: 7px;
            min-height: 140px;
            aspect-ratio: 0 / 0.9;
            object-fit: cover;
            object-position: top;
            margin: 0;
        }
    }
}

/* .f-gallery-why-sponsor{
h3{ color:white;}
a.fGalleryImage{ display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    align-content: center;
	img{width: 60px !important;
        display: inline-block !important;
        filter: drop-shadow(0px 1000px 0 white);
        transform: translateY(-1000px);
    }
	p{ margin:8px 0 0 0;}
	}
} */
.f-gallery-why-sponsor {

    padding: 10px 0;
    background: #f7f8fc;

    .fModuleTitle {



        h3 {
            color: white;

        }
    }

    .fGalleryList {
        row-gap: 30px;
    }

    .fGalleryItem {

        .ItemfinnerGallery {

            background: #fff;
            border-radius: 7px;
            padding: 20px 20px;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid #edf0f5;
            transition: .35s;
            box-shadow: 0 15px 40px rgba(24, 39, 75, .08);

            &:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 5px;
                background: linear-gradient(90deg,
                        var(--brand-color-theme-1),
                        var(--brand-color-theme-2));
            }

            &:hover {

                transform: translateY(-10px);

                box-shadow: 0 25px 55px rgba(24, 39, 75, .15);

            }

        }

    }

    a.fGalleryImage {

        width: 82px;
        height: 82px;
        margin: 0 auto 28px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 18px;

        background: linear-gradient(135deg,
                var(--brand-color-theme-1),
                var(--brand-color-theme-2));

        box-shadow: 0 12px 25px rgba(45, 69, 155, .25);

        img {

            width: 42px !important;
            display: block !important;

            filter: brightness(0) invert(1);

            transform: none;

        }

    }

    .fGalleryText {

        .f-sponsor {

            font-size: 1, 1rem;
            font-weight: 700;
            color: var(--brand-color-theme-2);
            margin-bottom: 18px;
            line-height: 1.35;

        }

        p:not(.f-sponsor) {

            color: #222;
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
            line-height: 24px;

        }

    }

}

.form {
    background: url(https://storage.unitedwebnetwork.com/files/1420/a1fb129692a73cfd0cb0a7b0a638d126.webp) no-repeat;
    background-size: cover;
    padding: 40px 0 40px 0;

    .fForm .form-item {
        width: 100%;
        float: left;
    }

}

footer#fFooter {
    background: var(--brand-color-theme-4);
    padding: 30px 0 0px 0;
    font-family: "Open Sans", sans-serif;
    color: white;

    .row {
        display: flex;
        justify-content: center;
    }

    h3 {
        font-size: 1rem;
        color: white;
        font-family: "Open Sans", sans-serif;
        padding-bottom: 0;
        margin: 0;
    }

    .footer-logo img {
        width: 150px;
    }

    .f-footer {
        text-align: center;
    }

    .contact {
        img {
            width: 15px;
            height: 15px;
        }
    }

    .footer-logo {
        /* border-right:2px solid white;  */
        padding: 0 30px 0 0;
    }

    .contact {
        /* border-left:2px solid white; */
        /* padding: 0 0px 0 30px; */

        img {
            filter: invert(1);
            margin: 0 10px 0 0;
        }
    }
}

/* 
.form{
.row{ justify-content: center;
    align-items: center;
	
	}
}
.be-a-part-of{padding-bottom: 0 !important;
h4{font-family:"Open Sans", sans-serif; font-weight:600;}
}
.f-form{position:relative;
 background:var(--brand-color-theme-3);padding-bottom: 25px !important;
    border-radius: 15px;
    padding-top: 20px !important;
    padding-right: 20px !important;
    padding-left: 31px;
input{ font-size: 14px;
        color: #ccc;
        border-radius: 10px !important;
        height: 40px;
		border: none;
		}
		.buttons input{ display:block; width:100%;}
		select{font-size: 14px;
        color: #ccc;
        border-radius: 10px !important;
        height: 40px;}
		.hint{position: absolute;
        left: 43px;
        color: #676666;
        top: 65%;
        bottom: 0;
        height: 30px;
        display: inline-block;}
} */
.fForm .error {
    margin-left: 10px !important;
}

.be-a-part-of {
    display: flex;
    align-items: center;


    padding: 0 !important;
    text-align: left;

    .fModuleContent {
        width: 100%;
    }

    h1,
    h3,
    h4 {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    h3 {
        margin-bottom: 15px;
    }

    h1 {
        margin: 0 0 18px;
        font-size: 2.1rem;
    }

    h4 {
        margin: 0;
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
    }
}

.f-form {
    position: relative;
    background: var(--brand-color-theme-3);
    border-radius: 24px;
    padding: 40px !important;
    box-sizing: border-box;

    .fForm {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 30px;
    }

    .form-item {
        width: 100%;
        margin: 0;
        position: relative;
    }

    /* Hide hidden fields */
    .form-item-type-hidden,
    .hidden,
    .d-none {
        display: none !important;
    }

    /*==========================
        Text Inputs & Select
    ==========================*/

    input:not([type="submit"]),
    select {
        width: 100% !important;
        height: 48px;
        padding: 0 18px;
        border: none !important;
        border-radius: 10px !important;
        background: #fff !important;
        color: #666 !important;
        font-size: 15px;
        box-sizing: border-box;
        outline: none;
        box-shadow: none !important;
        -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
        transition: all .3s ease;
    }

    input:not([type="submit"])::placeholder {
        color: #c9c9c9;
        opacity: 1;
    }

    input:not([type="submit"]):focus,
    select:focus {
        background: #fff !important;
        color: #666 !important;
        outline: none;
        border: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    }

    /* Chrome Autofill */

    input:not([type="submit"]):-webkit-autofill,
    input:not([type="submit"]):-webkit-autofill:hover,
    input:not([type="submit"]):-webkit-autofill:focus,
    textarea:-webkit-autofill,
    select:-webkit-autofill {
        -webkit-text-fill-color: #666 !important;
        -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
        transition: background-color 9999s ease-in-out 0s;
    }

    /*==========================
        Dropdown
    ==========================*/
    .form-item-type-dropdown {

        select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding-right: 45px;
            cursor: pointer;
        }

        &::after {
            content: "";
            position: absolute;
            right: 18px;
            top: 50%;
            width: 10px;
            height: 10px;
            border-right: 3px solid #ef3a3a;
            border-bottom: 3px solid #ef3a3a;
            transform: translateY(-70%) rotate(45deg);
            pointer-events: none;
        }

        .hint {
            position: absolute;
            left: 18px;
            top: 38%;
            transform: translateY(-50%);
            color: #c9c9c9;
            font-size: 15px;
            pointer-events: none;
        }

        /* ✅ Hide hint when a real value is selected */
        &:has(select:valid) .hint {
            display: none;
        }
    }

    /*==========================
        Button
    ==========================*/

    .buttons {
        width: 100%;
    }

    .buttons input {
        width: 100%;
        height: 48px;
        border: none !important;
        border-radius: 10px !important;
        background: #f43636 !important;
        color: #fff !important;
        font-size: .8rem;
        font-weight: 700;
        cursor: pointer;
        transition: background .3s ease;
        box-shadow: none !important;
    }

    .buttons input:hover,
    .buttons input:focus,
    .buttons input:active {
        background: #df2d2d !important;
        color: #fff !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }
}


.copyright {
    background: #aedcfe;
    padding: 10px;
    margin-top: 40px;

    p {
        color: black;
        margin: 0;
    }

    img {
        width: 100px;
    }
}

a.fButton.border-button {
    background: transparent;
    border: 0px solid white;
    box-shadow: inset 0 0 0 2px var(--brand-color-theme-1);
}

.fForm input,
.fForm select,
.fForm textarea {
    font-family: "Open Sans", sans-serif;
}

/* new css add here */
#menu-item-37621 {
    display: none;
}

.f-redtext {
    color: var(--brand-color-theme-1);
}

.f-commiteefont {
    font-size: 1.1rem;
}

.f-sponsor {
    font-size: 1.1rem;
}

.f-whyelse {
    padding: 10px 0;
    background: #fff;
    position: relative;
}

.f-whyelse-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */

.f-whyelse-left .section-tag {
    display: inline-block;
    color: var(--brand-color-theme-1);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.f-whyelse-left h2 {
    font-size: 46px;
    line-height: 1.2;
    color: var(--brand-color-theme-2);
    margin-bottom: 25px;
    font-weight: 700;
}

.f-whyelse-left {
    & h3::after {
        content: "";
        display: block;
        height: 0.5em;
        vertical-align: bottom;
        border-top: 2px solid var(--brand-color-theme-1);
        width: 100px;
        margin-top: 15px;
    }
}

.f-whyelse-left p {

    line-height: 1.9;

}

.f-whyelse-left strong {
    color: var(--brand-color-theme-1);
}

/* RIGHT */

.f-whyelse-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pricing-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .35s;
}

.pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.price-head {
    padding: 28px;
    color: #fff;
}

.price-head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.price-head span {
    display: block;
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.platinum {
    background: linear-gradient(135deg, #2d459b, #1b2f75);
}

.gold {
    background: linear-gradient(135deg, #eb1c24, #b41118);
}

.pricing-box ul {
    list-style: none;
    margin: 0;
    padding: 18px;
}

.pricing-box li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: #555;
    line-height: 18px;
}

.pricing-box li:last-child {
    margin-bottom: 0;
}

.pricing-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    color: var(--brand-color-theme-1);
    font-weight: bold;
}

/* CONTACT */

.f-whyelse-contact {
    margin-top: 70px;
    text-align: center;
    background: linear-gradient(135deg, #2d459b, #1b2f75);
    color: #fff;
    padding: 40px;
    border-radius: 18px;
}

.f-whyelse-contact h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 28px;
    color: #fff;
}

.f-whyelse-contact p {
    margin: 15px 0 25px;
    opacity: .9;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-links span {
    opacity: .4;
}

.contact-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
}

.contact-links a:hover {
    color: var(--brand-color-theme-3);
}

.pricing-contact {
    grid-column: 1 / -1;
    margin-top: 10px;
    text-align: center;

    border-top: 1px solid #e6e7e9;
}

.pricing-contact h4 {
    color: var(--brand-color-theme-2);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-contact p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-numbers a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;

    font-size: 1rem;
    font-weight: 500;
    transition: .3s;
}

.contact-numbers .fButton {
    background: var(--brand-color-theme-2);

}

.contact-numbers .fButton a span:hover {
    color: #fff;
    font-size: 22px;
}

.contact-numbers a:hover {
    color: #fff;
}

.f-whitelogo {
    filter: invert(1);
    margin: 0 10px 0 0;
    width: 15px !important;
    height: 15px;
}

.f-dediazlogo {
    width: 130px !important;
    filter: none !important;
    height: 100% !important;

}

#fFooter .region-footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

#fFooter .region-footer .footer-logo {
    margin-right: auto;
}

#fFooter .region-footer .contact {
    margin-left: auto;

}

#fFooter .region-footer .fModule {
    flex: 0 0 auto;
    width: auto;
}

@media (max-width: 767px) {
    #fFooter .region-footer .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    #fFooter .region-footer .footer-logo,
    #fFooter .region-footer .contact {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    #fFooter .region-footer .contact-us ul {
        justify-content: center;
    }

    #fFooter .region-footer .footer-logo-section img,
    #fFooter .region-footer .f-dediazlogo {
        margin: 0 auto;
        display: block;
    }
}

/* new css add here*/
/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/

@media(min-width:991.9px) {
    .f-header-logo {
        width: fit-content;
        width: 100px;
    }

    .f-header-logo p {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .f-header-logo .fGalleryImage img {
        max-height: 70px;
        width: auto;
    }

    .main-menu .fMenu {
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .main-menu .fMenu>li {
        padding: 0px 5px;
        position: relative;
    }

    .main-menu .fMenu>li.has-submenu,
    .main-menu .fMenu>li.has-submenu:last-child {
        padding-right: 18px;
    }

    .main-menu .fMenu>li>a {
        color: white;
        position: relative;
        font-weight: 400;
        font-size: 0.8rem;
    }

    .main-menu .fMenu>li:last-child {
        padding-right: 0;
    }

    .main-menu .fMenu>li:last-child>a {
        background-color: var(--brand-color-theme-1);
        display: inline-block;
        padding: 8px 1.2rem;
        color: white !important;
        font-weight: 400;
        border-radius: 5px;
    }

    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 2.8rem;
        left: 7px;
        background-color: white;
        visibility: hidden;
        width: 210px;
        opacity: 0;
        z-index: -1;
        box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
        transform: scaleY(0);
        transform-origin: top center;
        transition: all 0.4s ease 0s;
        padding: 0;
        border: 1px solid #ccc;
    }

    .main-menu .fMenu>li:last-child>ul,
    .main-menu .fMenu>li:nth-last-child(2)>ul {
        left: unset;
        right: 0;
    }

    .main-menu .fMenu>li.has-submenu>a {
        position: static;
    }

    .main-menu .fMenu>li.has-submenu>a::before {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        font-size: .8rem;
    }

    .main-menu .fMenu>li>ul::before {
        content: "";
        position: absolute;
        left: 0;
        height: 2.3rem;
        width: 100%;
        top: -2rem;
        background-color: transparent;
    }

    .main-menu .fMenu>li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: scaleY(1);
        z-index: 9;
        border: none;
    }

    .main-menu .fMenu>li>ul>li {
        display: block;
        margin: 0 0;
        padding: 0px 0px;
    }

    .main-menu .fMenu>li>ul>li>a {
        font-size: 1rem;
        line-height: 1.2em;
        color: var(--brand-color-theme-1);
        padding: .7rem 1rem;
        display: block;
        border-bottom: 1px solid #dedede;
    }

    .main-menu .fMenu>li>ul>li>a:hover {
        color: black;
    }

    .main-menu .fMenu>li>ul>li:last-child>a {
        border-bottom: 0;
    }

    header .main-menu {
        width: fit-content;
    }
}

/*xl*/

@media (max-width: 1399px) {
    html {
        font-size: 16px;
    }
}

@media(max-width:1280.99px) {
    .f-card-design-1 .fGalleryItem .ItemfinnerGallery {
        aspect-ratio: 1 / .9;
        background: var(--brand-color-theme-5) !important;
        padding: 20px;
    }

    .f-card-design-1 .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
        font-size: 1.05rem;
    }
}

/*lg*/

@media (max-width: 1199px) {
    html {
        font-size: 16px;
    }

    #fFooter {
        text-align: center !important;
    }

    #fFooter p {
        text-align: center !important;
    }

    footer#fFooter ul,
    footer#fFooter ul li {
        justify-content: center;
    }

}

@media (max-width: 1024px) {
    .fRegion.region-header .row {
        flex-wrap: nowrap;
    }

    .logo-header {
        display: block;
        width: auto;
    }

    .main-menu .fMenu>li>a {
        font-size: 0.8rem;
    }

    #fFooter img {
        width: 80px;
    }
}

.footer-logo .f-module-content.fModuleContent {
    display: inline-block;
}

@media(max-width: 991.9px) {
    html {
        font-size: 15px;
    }

    .row.w-100 {
        --bs-gutter-x: 0;
    }

    .fHeader .navbar-header {
        margin: 0;
    }

    .fHeader .navbar-header .row.row-0 {
        margin: 0 15px;
    }

    .navbar-header .navbar-toggler {
        display: block;
    }

    .navbar-collapse.collapse.show {
        display: block;
    }

    .region-header,
    .region-headertop {
        display: inline-block;
        width: 100%;
    }

    .region-header .fModule,
    .region-headertop .fModule {
        display: block;
    }

    .row.w-100 {
        --bs-gutter-x: 0;
    }

    /*** Programme ***/
    .session-container th {
        font-size: 0px;
    }

    .session-container th select {
        font-size: 1rem;
    }

    tr.session-row {
        border: 1px solid var(--brand-color-theme-1);
        margin-top: 1.5rem;
    }

    tr.session-row-hidden {
        border: 0 none;
        margin-top: 0;
    }

    .session-time-zone {
        display: inline-block;
        padding-left: 0.5rem;
    }

    .session-time-zone::before,
    .session-time-zone::after {
        position: relative;
        content: " ";
        display: inline;
    }

    .session-time-zone::before {
        content: "(";
    }

    .session-time-zone::after {
        content: ")";
    }

    tr.session-row,
    tr.session-row td,
    td.session-time {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    tr.session-row td {
        border: 0px none;
    }

    th.session-time {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .session-time .session-time-date.is-different {
        margin-left: 0;
    }

    .session-container tr:hover td.session-time,
    table.fTable tr:nth-child(odd) td.session-time,
    table.fTable tr:nth-child(even) td.session-time {
        display: block;
        text-align: left;
        background: var(--brand-color-theme-1);
        color: #fff;
    }

    .session-container th:last-child {
        display: none;
    }

    .session-container {
        border: 0;
    }

    body .session-container th {
        display: none;
    }

    .navbar-toggle .icon-bar {
        background-color: white;
    }

    .main-menu {
        position: static !important;
    }

    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 4.5em;
        height: fit-content;
        width: 100%;
        background-color: var(--brand-color-theme-2);
        width: 95%;
        padding: 0;
        z-index: 9999999;
    }

    .main-menu nav ul {
        margin: 0;
        display: block;
    }

    .main-menu nav ul.fMenu>li>a {
        display: block;
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        width: 100%;
    }

    .main-menu nav ul.fMenu>li:last-child>a {
        border-bottom: 0;
    }

    .main-menu nav ul.fMenu>li.has-submenu>a::after {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: white;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul {
        position: relative;
        padding: 7px;
        background-color: var(--brand-color-theme-1);
        display: none;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul>li>a {
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: #000;
        display: block;
    }

    .f-photo-with-custom-text .fModuleTitle {
        display: block;
    }

    .f-photo-with-custom-text .fModuleContent .fModuleTitle {
        display: none;
    }

    .f-welcome-message div.f-media-image {
        float: unset;
        margin: 0 auto 10px auto;
    }

    .f-header-logo .fGalleryImage img {
        max-height: 65px;
    }

    .f-footer-menu {
        order: 2;
    }

    .f-banner-home {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    #fFooter .venue-address {
        text-align: left;
    }

    .f-important-dates-new {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .first .f-list-item {
        margin-bottom: 20px;
    }

    .fPageTitle {
        margin-bottom: 20px;
    }

    table.table.table-responsive th {
        text-align: center;
    }

    .f-text-sponsor h4 {
        margin-top: 0;
    }

    .f-text-sponsor {
        padding-bottom: 0;
    }

    .footer-logo {
        display: inline-block;
    }

    .footer-logo img {
        display: block;
    }

    .f-banner-home .fGalleryText h5 {
        margin: 1rem auto;
        font-size: 1rem;

    }

    .f-banner-home .fGalleryText img {
        osition: relative;
        margin: -43px 5px 0 0;
    }

    .f-banner-home .fGalleryText .date {
        font-size: 1rem;
        display: block;
    }

    .f-banner-home .fGalleryText h3 {
        font-size: 5.6vw;
    }

    .f-header-logo img {
        width: 60px;
    }

    header.fHeader {
        background: var(--brand-color-theme-1);
    }

    .fRegion.region-header>.row {
        justify-content: right;
    }

    footer#fFooter {
        text-align: center;
        padding: 30px;
    }

    .f-guest ul {
        display: block !important;
    }

    .mobile span {
        display: flex;

        a.fButton {
            padding: 10px 1.3rem;
        }

        a.fButton.border-button {
            background: #000;
        }
    }

    .f-guest ul li {
        list-style-type: none;
        border-bottom: 1px solid;
        margin: 0;
        padding: 0px;
        text-align: center;
        padding-bottom: 13px;
        border-right: none;
    }

    .form .fForm .form-item {
        width: 100%;
    }

    .form {
        padding-right: 0 !important;
        padding-left: 0;
    }

    footer#fFooter {
        .footer-logo {
            text-align: center;
            padding: 0;
            /* border-bottom: 2px solid white; */
            border-right: none;
            margin-bottom: 20px;
        }

        .footer-logo img {
            margin: 0 auto;
        }

        .contact {
            h3 {
                padding-top: 20px;
            }

            /* border-top: 2px solid white; */
            /* padding: 0 0px 0 30px; */
            margin-top: 20px;
            border-left:none;
        }

        .f-committee-members a.fButton.brand-color-theme-2-bg {
            position: inherit;

        }

        .f-committee-members .ItemfinnerGallery {
            aspect-ratio: auto;
        }

        .owl-dots {
            position: relative;
            display: inline-block;
        }
    }

    /*sm*/

    @media (max-width: 767px) {
        html {
            font-size: 14px;
        }

        .f-committee-members a.fButton.brand-color-theme-2-bg {
            position: inherit;

        }

        .f-banner-home .fGalleryText {
            h1 {
                font-size: 2.5rem;
                line-height: 55px;
            }
        }
    }
}



/*==========================
    Responsive sucharita
==========================*/

@media (max-width: 991px) {

    .f-form {
        padding: 30px !important;

        .fForm {
            gap: 20px;
        }
    }

    .f-whyelse-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .f-whyelse-right {
        grid-template-columns: 1fr;
    }

    .f-whyelse-left h2 {
        font-size: 36px;
    }

    .be-a-part-of {


        h1 {
            font-size: 2.1rem;
            margin-bottom: 0px;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0px;
        }

        h4 {
            font-size: 1rem;
            margin-bottom: 0px;
        }
    }
}

@media (max-width: 767px) {}

@media(max-width:768px) {

    .contact-numbers {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-contact h4 {

        font-size: 1.3rem;

    }

    .price-head h3 {

        font-size: 1.2rem;

    }

    .price-head {
        padding: 18px;
        color: #fff;
    }

    .f-form {
        padding: 20px !important;
        margin-top: 20px;

        .fForm {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        input:not([type="submit"]),
        select,
        .buttons input {
            height: 50px;
        }
    }

    .be-a-part-of {
        display: block;
        text-align: center;


        .fModuleContent {
            width: 100%;
        }

        h1,
        h3,
        h4 {
            text-align: center;
        }

        h1 {
            font-size: 1.8rem;
            margin-bottom: 0px;
        }

        h3 {
            font-size: 1.35rem;
            margin-bottom: 0px;
        }

        h4 {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0px;
        }
    }

    .f-committee-members {
        .ItemfinnerGallery {

            aspect-ratio: 2 / 2.5;
        }
    }
}


@media(max-width:576px) {



    .f-whyelse-left h2 {
        font-size: 30px;
    }

    .price-head span {
        font-size: 1rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-links span {
        display: none;
    }

    .contact-links a {
        font-size: 18px;
    }

}









@media (max-width: 480px) {

    .be-a-part-of {



        h1 {
            font-size: 1.6rem;
            margin-bottom: 0px;
        }

        h3 {
            font-size: 1.2rem;
            margin-bottom: 0px;
        }

        h4 {
            font-size: 0.9rem;
            margin-bottom: 0px;
        }
    }

}

/* end */