@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --brand-color-theme-1: #009841;
    --brand-color-theme-2: #46368f;
    --brand-color-theme-3: #333;
    --brand-font-family-heading: "Poppins", sans-serif;
    --brand-font-family-body: "Outfit", sans-serif;
}

.inset-0 {
    inset: 0 !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-3) !important;
}

.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-3-text {
    color: var(--brand-color-theme-3) !important;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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: 2.25rem;
    font-weight: 600;
    margin: 1.25rem 0;
    line-height: 1.5;
}

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: 1.25rem 0;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 1.25rem 0;
}

h5 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 1rem 0;
}

ol li,
ul li {
    margin: .5em 0 .5em 17px;
}

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 {
    background-color: var(--brand-color-theme-2);
    border-bottom: 4px solid var(--brand-color-theme-1);
    color: white;
    text-align: center;
    padding: 3rem 10px;
}

body.title-off .fPageTitle {
    display: none;
}

ul,
ol {
    margin: 0;
}

.fModuleTitle h3 {
    color: var(--brand-color-theme-2);
    font-weight: 600;
}

.fModuleTitle h3 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: .5px var(--brand-color-theme-3);
    text-transform: uppercase;
    font-family: var(--brand-font-family-heading);
    font-size: 3.8rem;
    font-weight: 800;
}

body.not-home .fModuleTitle h3 span {
    font-size: 2.7rem;
}

.text-justify {
    text-align: justify;
}

.f-photo-with-custom-text .fModuleTitle {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle {
    display: block;
}

.f-photo-with-custom-text.title-center .fModuleContent .fModuleTitle h3 {
    text-align: start !important;
    margin-top: 0;
}

.title-center .fModuleTitle h3 {
    text-align: center !important;
}

.title-white .fModuleTitle h3 {
    color: white !important;
}

.title-dark .fModuleTitle h3 {
    color: var(--brand-color-theme-3) !important;
}

ul.fGalleryImages.fGalleryList {
    position: relative;
    list-style: none;
    padding: 0px;
}

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 */

.fheaderToptwo {
    color: white;
    background-color: var(--brand-color-theme-1);

    a {
        color: white;
    }
}

.fheaderToptwo #fModule-60225 .fMenu a {
    display: inline-block;
    align-content: center;
    font-size: .95rem;
}

.fheaderToptwo #fModule-60225 .fMenu a big {
    font-size: .9rem;
    display: inline-block;
    margin-right: 4px;
}

.fHeader {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.fHeader .region-header>.row {
    margin: 0;
}

header .fModule.fLogo {
    padding-left: 0;
    padding-right: 0;
}

header .fModule {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.region-headertop {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.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;
}

.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%;
}


/*** Footer ***/

footer#fFooter ul,
footer#fFooter ul li {
    margin: 0px;
    list-style: none;
    padding: 0px;
}


/*** Button ***/

a.fButton,
.fForm .buttons input,
.fbutton-btn a,
.fForm .buttons a {
    background-color: var(--brand-color-theme-1);
    display: inline-block;
    padding: 10px 2rem;
    color: white;
    font-weight: 500;
    border: 1px solid var(--brand-color-theme-1);
}

a.fButton:hover,
.fForm .buttons input:hover,
.fbutton-btn a:hover,
.fForm .buttons a:hover {
    background-color: var(--brand-color-theme-2);
}


/****--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;
}

.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 */


/* login page starts here */

body.view-login .fForm,
body.view-account-recover .fForm {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem 1rem;
    width: 700px;
    max-width: 100%;
    margin: auto;
}

body.view-account-recover .fForm .form-item-type-fieldset {
    border: 0;
    padding: 0;
}

.fForm .error {
    margin: .5rem 0 0 0;
    font-size: .8rem;
}

.buttons {
    padding-left: 12px !important;
}

body.view-login .fForm .buttons,
body.view-account-recover .fForm .buttons {
    padding-left: 0 !important;
}


/* login page ends here */


/* Programme Table */

tr.session-row-hidden {
    display: none !important;
}

.session-heading {
    text-align: center;
    margin-top: 1.5rem;
    color: #4d4f53;
    font-weight: bold;
    line-height: 1.3;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-color-theme-1);
}

.session-container {
    border-collapse: separate;
    border-spacing: 0 1rem;
}

body .session-container th {
    background: var(--brand-color-theme-1);
    color: #fff !important;
    font-weight: bold;
}

.session-container tr:last-child td {
    border-bottom: 0 none !important;
}

.session-container .session-details {
    vertical-align: top !important;
    position: relative;
}

.session-container td.session-details[colspan="2"] {
    text-align: center;
}

td.session-time,
th.session-time {
    padding: 1rem;
    width: 150px;
    min-width: 150px;
}

.session-time.session-time-show {
    font-size: 0.9rem;
}

td.session-time {
    border-right: 1px solid var(--brand-color-theme-1);
}

.session-time .session-time-start,
.session-time .session-time-end {
    display: inline-block;
    opacity: 1;
}

.session-time .session-time-start:after {
    display: inline-block;
    content: " - ";
    padding-left: 5px;
}

.session-time .session-time-zone {
    font-size: 0.9rem;
    color: #999;
}

.session-time .session-time-date {
    display: none;
}

.session-time .session-time-date.is-different {
    color: #fff;
    display: inline-block;
    background: #aaa;
    border-radius: 2rem;
    font-size: 0.8rem;
    padding: 0.25rem 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.session-container ul li {
    margin: .5em 0 .5em 20px !important;
    list-style: square;
}

.session-sub {
    padding-left: 0;
    list-style: square;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.session-sub-title {
    font-weight: 600;
}

.session-sub .session-people {
    padding-top: 0;
    margin-top: 0;
}

.session-title.session-sub-title {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.75;
    display: inline;
}

.session-title>a {
    text-decoration: underline;
}

.session-venue {
    width: fit-content;
    background: var(--brand-color-theme-1);
    display: inline-block;
    margin-top: .2rem;
    color: #fff;
    font-size: .8rem;
    padding: .2rem .7rem;
}

.session-venue::before {
    content: "\f3c5";
    font-family: "FontAwesome";
    margin-right: 5px;
}

.session-venue a {
    font-size: 0.8rem;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
}

.session-venue a::before {
    display: block;
    content: "";
    height: 1.1rem;
    width: 1.1rem;
    background: #fff;
    border-radius: 2rem;
    position: absolute;
    left: 6px;
    line-height: 1rem;
    top: 50%;
    transform: translate(0, -50%);
    animation: blinking 1.2s infinite;
}

.session-status-3 .session-venue,
.session-status-2 .session-venue {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    background: url('https://img.icons8.com/fluency-systems-regular/48/000000/marker--v1.png') left center no-repeat;
    background-size: 1rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

span.live {
    color: #cc0000 !important;
}

.session-status-3 .session-venue,
.session-status-2 .session-venue {
    background-color: #cc0000;
    display: inline-block;
    position: relative;
    margin-top: 2rem;
}

.session-status-3>.session-title:before,
.session-status-2>.session-title:before {
    position: relative;
    content: "LIVE";
    color: #cc0000;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    animation: blinking 1.2s infinite;
}

.no-user .session-status-3 .session-venue {
    display: none
}

.no-user .session-status-3>.session-title:before {
    display: none
}

.session-status-2 .session-venue,
.session-status-2>.session-title:before {
    display: none;
}

.session-mine.session-status-2>.session-title:before,
.session-mine.session-status-2.session-full:before {
    content: "PRESENTER TO JOIN SESSION";
    color: #FFA500;
    display: block;
    margin-bottom: 0.5rem;
}

.session-mine.session-status-2 .session-venue {
    display: inline-block;
}

.session-people-item {
    display: flex;
    flex-wrap: wrap;
}

.session-people-name {
    font-weight: 600;
    color: var(--brand-color-theme-1);
}

.session-people-role {
    display: inline-block;
    color: var(--brand-color-theme-2);
    text-decoration: underline;
    order: -1;
    padding-right: 5px;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body.com-event.view-session-view .session-full {
    border: 1px solid #dedede;
}

body.com-event.view-session-view .session-full .session-time {
    background-color: var(--brand-color-theme-1);
    text-align: start;
    padding: 10px 12px;
    color: white;
}

body.com-event.view-session-view .session-full .session-item {
    padding: 10px 12px;
    border-bottom: 1px solid #dedede;
}

body.com-event.view-session-view .session-full .session-item:last-child {
    border-bottom: 0;
}

body.com-user.view-view .f-content-item-teaser-image img,
body.view-session-person .f-content-image {
    width: 18rem;
    margin: 1rem auto;
    display: block;

    img {
        border-radius: 100%;
        object-fit: cover;
        border: 5px solid #aaa;
    }
}

body.com-user.view-view #fMatter .f-user-container,
body.event-session-person-hasphoto #fMatter .event-session-person {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

body.com-user.view-view #fMatter .f-user-container .f-content-item-teaser-image,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-image {
    width: 250px;
    height: 250px;
}

body.com-user.view-view #fMatter .f-user-container .f-content-item-teaser-image img,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-image img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 500px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 4px solid var(--brand-color-theme-3);
    object-fit: cover;
}

body.com-user.view-view #fMatter .f-user-container .f-list-item-content,
body.event-session-person-hasphoto #fMatter .event-session-person .f-content-text {
    background-color: #f7f7f7;
    text-align: justify;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

body.com-user.view-view #fMatter .f-user-container .f-content-node.f-content-fields {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: var(--brand-color-theme-2);
    color: white;
    padding: 2rem 1rem;
    border-radius: 15px;
}

body.com-user.view-view #fMatter .f-user-container .f-module-event-session,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-person-session {
    width: 100%;
}


/*** Programme table end ***/

/*** Custom CSS ***/

/* banner starts here */

.f-banner .bx-wrapper {
    margin-bottom: 0;
}

.f-banner .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    z-index: 99;
}

.f-banner .bx-wrapper .bx-pager.bx-default-pager a.active,
.f-banner .bx-wrapper .bx-pager.bx-default-pager a:hover,
.f-banner .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background-color: var(--brand-color-theme-1);
}

.f-banner .bx-wrapper .bx-pager.bx-default-pager a {
    background-color: white;
    border: 1px solid #dedede;
    border-radius: 50px;
}

.f-banner .bx-wrapper .bx-controls-direction a {
    background-image: unset;
    text-indent: unset;
    color: white;
    font-size: 2.75rem;
}

.f-banner .fGalleryImages {
    margin: 0;
}

.f-banner .fGalleryImage img {
    height: 500px;
    object-fit: cover;
}

.f-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    text-align: center;
    color: white;
}

.f-banner .fGalleryText h3 {
    display: inline-block;
    width: 600px;
    max-width: 100%;
    line-height: 1.1em;
    font-size: 3.6rem;
    font-weight: 400;
    margin-bottom: 0;
}

.f-banner .fGalleryText p {
    font-size: 1.5rem;
}

.f-banner .fGalleryText p>a.fButton {
    font-size: 1rem;

    &:hover {
        border-color: var(--brand-color-theme-2);
    }
}

/* banner ends here */

/* CTA buttons starts here */

.f-cta-btns .fButton {
    background-color: var(--brand-color-theme-3);
    border-color: var(--brand-color-theme-3);

    &:hover {
        border-color: var(--brand-color-theme-2);
    }
}

.f-cta-btns .col-6 {
    padding: 6px 12px;
}

/* CTA buttons ends here */

/* countdown starts here */

.f-counter-numbers-main .counter-item {
    text-align: center;
}

.f-counter-numbers-main .counter-item .counter-value {
    font-size: 2.4rem;
    font-weight: 600;
}

/* countdown ends here */

/* event starts here */

.f-main-event {
    width: 1362.6px;
    margin-left: auto;
    padding-left: 24px;
}

.f-main-event .row {
    align-items: center;
}

.f-event-nav ul {
    padding-left: 0;
}

.f-event-nav ul li {
    list-style: none;
    margin-left: 0 !important;
}

.f-event-nav ul li a {
    color: var(--brand-color-theme-3);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #33333391;
    max-width: 300px;
    align-content: center;
}

.f-event-nav ul li:last-child a {
    border-bottom: 0;
}

.f-event-nav ul li a>span {
    display: inline-block;
    width: 35px;
    border: 1px solid #33333391;
    height: 30px;
    align-content: center;
    text-align: center;
    margin-right: 10px;
    transition: all .7s;
    font-size: .8rem;
}

.f-event-nav ul li.active a span {
    color: white;
    background-color: var(--brand-color-theme-2);
    border-color: var(--brand-color-theme-2);
}

.f-event-nav a.fButton {
    background-color: var(--brand-color-theme-3);
    border: var(--brand-color-theme-3);

    &:hover {
        background-color: var(--brand-color-theme-2);
        border-color: var(--brand-color-theme-2);
    }
}

.f-main-event {
    padding-top: 3rem;
    position: relative;
}

.f-main-event>.row {
    position: relative;
    z-index: 9;
}

.f-main-event::after {
    content: "";
    display: block;
    width: 58%;
    max-width: 100%;
    height: 100%;
    background-image: url("https://storage.unitedwebnetwork.com/files/1358/bc0bd716627caa0e6f2b3fbe862a224f.jpg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}

.f-event .fModuleContent {
    width: 110%;
}

.f-event .f-list-item {
    padding: 12px;
}


.f-event .f-list-item .f-list-item-container {
    background-color: var(--brand-color-theme-2);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.f-event .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.65;
    object-fit: cover;
}

.f-event .owl-item.active.owl-next-item .f-list-item .f-list-item-container {
    background-color: white;
}

.f-event .f-list-item .f-list-item-container .f-content-container-text {
    position: relative;
    padding: 12px;
}

.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-title {
    font-size: 1.15rem;
    color: white;
    font-weight: 600;

    a {
        color: white;
    }
}

.f-event .owl-item.active.owl-next-item .f-list-item .f-list-item-container .f-content-container-text .f-list-item-title {
    color: var(--brand-color-theme-3);

    a {
        color: var(--brand-color-theme-3);
    }
}

.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div {
    color: white;
    margin-bottom: .2rem;
    margin-top: .2rem;
    font-size: .85rem;
    position: relative;
}

.f-event .owl-item.active.owl-next-item .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div {
    color: var(--brand-color-theme-3);
}

.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div.venue::before {
    content: "\f3c5";
    font-family: "FontAwesome";
    display: inline-block;
    margin-right: 5px;
    width: 13px;
    text-align: center;
}

.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div.date::before {
    content: "\f133";
    display: inline-block;
    width: 13px;
    margin-right: 5px;
    font-family: "FontAwesome";
}

.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div.event-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
}


.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div.event-btn .fButton {
    font-size: .8rem;
    padding: 5px 10px;
    background-color: transparent;
    border-color: white;
    opacity: .85;
}

.f-event .owl-item.active.owl-next-item .f-list-item .f-list-item-container .f-list-item-teaser-content>div.event-btn .fButton {
    color: var(--brand-color-theme-3);
    border-color: var(--brand-color-theme-3);
}

.f-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-teaser-content>div.event-btn .fButton:hover {
    opacity: 1;
}

/* event ends here */

/* services starts here */

.f-services .fGalleryItem {
    padding: 12px;
}

.f-services .owl-item {
    scale: .9;
    transition: all .4s;
}

.f-services .owl-item.center {
    scale: 1;
}

.f-services .fGalleryItem .ItemfinnerGallery {
    aspect-ratio: 1/.7;

}

.f-services .fGalleryItem .ItemfinnerGallery a.fGalleryImage img {
    height: 100%;
    object-fit: cover;
}

.f-services .fGalleryItem .ItemfinnerGallery .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    background-color: #00000092;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.f-services .owl-item.center .fGalleryItem .ItemfinnerGallery .fGalleryText {
    opacity: 1;
    visibility: visible;
}

.f-services .fGalleryItem .ItemfinnerGallery:hover .fGalleryText {
    opacity: 1;
    visibility: visible;
}

.f-services .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
    font-size: 1.1rem;
    color: white;
}

.f-services .owl-item .fGalleryItem .ItemfinnerGallery .fGalleryText>a {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 9;
}


.f-news-event .owl-nav button,
.f-services .owl-nav button {
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent !important;
    color: var(--brand-color-theme-3);
    font-size: 2rem !important;
}

.f-services .owl-nav button.owl-next,
.f-news-event .owl-nav button.owl-next {
    left: unset;
    right: -1rem;
}

.f-services .owl-dots button span,
.f-news-event .owl-dots button span {
    width: 20px !important;
    height: 5px !important;
    margin: 5px 2px !important;
    border-radius: 5px;
    background-color: var(--brand-color-theme-2) !important;
    opacity: 1 !important;
}

.f-services .owl-dots button.active span,
.f-news-event .owl-dots button.active span {
    background-color: var(--brand-color-theme-1) !important;
}

/* services ends here */

/* news event starts here */

.f-news-event .f-list {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.f-news-event .f-list-item {
    padding: 12px;
}

.f-news-event .f-list-item .f-list-item-container {
    height: 100%;
    border-radius: 12px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    overflow: hidden;
}

.f-news-event .f-list-item .f-list-item-container .f-content-container-text {
    padding: 24px;
}

.f-news-event .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    border-radius: 12px;
    aspect-ratio: 1 / .65;
    object-fit: cover;
}

.f-news-event .f-list-item .f-list-item-container .f-content-container-text .f-list-item-fields .f-item-node-title {
    display: none;
}

.f-news-event .f-list-item .f-list-item-container .f-list-item-title {
    color: var(--brand-color-theme-2);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;

    a {
        color: var(--brand-color-theme-2) !important;
    }
}

.f-news-event .f-list-item .f-list-item-container .f-date .f-item-node-value {
    color: var(--brand-color-theme-3);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.f-news-event .f-list-item .f-list-item-container .f-date .f-item-node-title {
    display: none;
}

.f-news-event .f-list-item .f-list-item-container .f-list-item-subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.f-news-event .f-list-item .f-list-item-container .f-list-item-button a {
    color: var(--brand-color-theme-1) !important;
    font-size: .9rem;
    text-decoration: underline;
}

/* news event ends here */

/* about us starts here */

.f-about .f-media>div {
    padding: 12px;
}

.f-about .f-media-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.f-about .f-media-text p {
    text-align: justify;
}

/* about us ends here */

/* partners and affiliations start here */

.f-all-logos .fGalleryItem {
    padding: 12px;
}

.f-all-logos .fGalleryItem .ItemfinnerGallery {
    align-content: end;
    height: 100%;
}

.f-all-logos .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    max-width: 200px;
    min-width: 100px;
    padding: 5px;
    border: 1px solid #dededecf;
    max-height: 70px;
    height: 100%;
    object-fit: contain;
}

/* partners and affiliations end here */


/* cta starts here */

.f-cta .fGalleryImage img {
    max-height: 400px;
    object-fit: cover;
    min-height: 250px;
}

.f-cta .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    color: white;
    background-color: #009842bc;
}

.f-cta .fGalleryText a.fButton {
    background-color: var(--brand-color-theme-2);
    border-color: var(--brand-color-theme-2);

    &:hover {
        background-color: white;
        color: var(--brand-color-theme-2);
    }
}

/* cta ends here */

/* footer starts here */

footer#fFooter {
    background-color: var(--brand-color-theme-2);
    margin-top: -6px;
    padding-top: 2rem;

    >*,
    a {
        color: white;
        font-size: .9rem;
        text-align: justify;
    }

    .contact-div>span {
        display: block;
        position: relative;
        margin-bottom: 7px;
    }

    .contact-div>span::before {
        content: "";
        width: 17px;
        height: 15px;
        top: 4px;
        display: inline-block;
        position: relative;
        background-size: 13px;
        background-position: left center;
        background-repeat: no-repeat;
        filter: invert();
    }

    .contact-div>span.email::before {
        background-image: url("https://cdn-icons-png.flaticon.com/128/542/542638.png");
    }

    .contact-div>span.phone::before {
        background-image: url("https://cdn-icons-png.flaticon.com/128/126/126509.png");
    }

}

footer#fFooter .region-footer>.row {
    justify-content: space-between;
}

footer#fFooter h3 {
    margin-top: 7px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

footer#fFooter .social a {
    display: inline-block;
    width: 25px;
    height: 25px;
    align-content: center;
    text-align: center;
    border-radius: 50px;
    background-color: white;
    margin: 7px 7px 7px 0;
    color: var(--brand-color-theme-2);
}

footer#fFooter .fCopy {
    padding: .7rem 12px !important;
    background-color: #382978;
    margin-top: 1rem;
}

footer#fFooter .f-links .fMenu li {
    margin-bottom: 10px;
}

/* footer ends here */

/* MILES OF MEMORIES Start here */

.fancybox-container {
    z-index: 99999999999999;
}

.f-miles-memory .fGalleryContainer>h4 {
    display: none !important;
}

.f-miles-memory .fGalleryImages {
    display: flex;
    flex-wrap: wrap;
}

.f-miles-memory .fGalleryItem {
    width: 16.66%;
}

.f-miles-memory .fGalleryItem:first-child .fGalleryText .social {
    position: absolute;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.f-miles-memory .fGalleryItem:first-child .fGalleryText .social>a {
    display: block;
    height: 70px;
    width: 50%;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    align-content: center;
    z-index: 9999;
}

.f-miles-memory .fGalleryItem:first-child .fGalleryText .social>a.fb {
    background-color: #1678f4;
}

.f-miles-memory .fGalleryItem:first-child .fGalleryText .social>a.insta {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.f-miles-memory .fGalleryItem .fGalleryText {
    position: absolute;
    inset: 0;
    background-color: #00000054;
    transition: all .4s;
}

.f-miles-memory .fGalleryItem:last-child .fGalleryText a.example-image-link {
    display: none !important;
}

.f-miles-memory .fGalleryItem:last-child .ItemfinnerGallery:hover .fGalleryText {
    background-color: #00984299;
}

.f-miles-memory .fGalleryItem:last-child .fGalleryText a.view-more {
    text-shadow: 1px 1px 1px #00000079;
    font-size: 1.2rem;
}

.f-miles-memory .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    scale: 1;
    transition: all .4s;

    &:hover {
        scale: 1.05;
        z-index: 9;

        .fGalleryText {
            background-color: transparent;
        }
    }
}

.f-miles-memory .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    height: 100%;
    object-fit: cover;
    max-height: 250px;
}

.f-miles-memory .fGalleryItem:nth-child(1) {
    width: 44%;

    .fGalleryImage img {
        min-height: unset;
        max-height: 300px;
    }
}

.f-miles-memory .fGalleryItem:nth-child(2),
.f-miles-memory .fGalleryItem:nth-child(3) {
    width: 28%;

    .fGalleryImage img {
        min-height: unset;
        max-height: 300px;
    }
}


/* MILES OF MEMORIES end here */

/* about page starts here */

.f-static-full-box .fGalleryItem {
    padding: 12px;
}

.f-static-full-box .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    transition: all .4s;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    &:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }
}

.f-static-full-box .fGalleryItem:nth-child(2) .ItemfinnerGallery .fGalleryImage {
    background-color: var(--brand-color-theme-3);
}

.f-static-full-box .fGalleryItem .ItemfinnerGallery .fGalleryImage {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    background-color: var(--brand-color-theme-2);
    border-bottom: 1px solid #dedede;
}

.f-static-full-box .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.f-static-full-box .fGalleryItem .ItemfinnerGallery .fGalleryImage>h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    padding-left: 10px;

    span {
        font-size: .85rem;
        color: white;
        opacity: .8;
        display: block;
        font-weight: normal;
    }
}

.f-static-full-box .fGalleryItem .ItemfinnerGallery .fGalleryText {
    background-color: #00984210;
    padding: 10px;
    border: 1px solid #dedede;
    border-top: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: justify;
}

.f-new-table-design table {
    border-radius: 15px;
    overflow: hidden;
    transition: all .4s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    &:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }
}

.f-new-table-design table>thead {
    background-color: var(--brand-color-theme-2);
    color: white;
}

.f-new-table-design table tbody {
    border-top: 0 !important;
}

.f-new-table-design table tbody td {
    padding: 10px 10px;
}

.f-new-table-design table thead th {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 10px;
}

.f-new-table-design table tbody tr {
    transition: all .4s;

    &:hover {
        background-color: #00984210;
    }
}

.f-new-table-design table tbody tr td[table-data="Year"] {
    width: 150px;
}

.f-user-list-design-1 .f-list-item {
    padding: 12px;
}

.f-user-list-design-1 .f-list-item .f-list-item-container {
    height: 100%;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #dedede;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
}

.f-user-list-design-1 .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.9;
    object-fit: cover;
    border: 1px solid #dededeb9;
    border-radius: 10px;
}

.f-user-list-design-1 .f-list-item .f-list-item-container .f-list-item-content-text {
    padding: 10px 0;
}

.f-user-list-design-1 .f-list-item .f-list-item-container .f-list-item-title a {
    color: var(--brand-color-theme-2);
    font-size: 1.1rem;
    font-weight: 600;
}

.f-user-list-design-1 .f-list-item .f-list-item-container .f-list-item-title a::after {
    content: "";
    position: absolute;
    inset: 10px;
}

.f-user-list-design-1 .f-list-item .f-list-item-container .f-list-item-subtitle a {
    color: var(--brand-color-theme-3);
    font-size: .9rem;
    font-style: italic;
}

/* about page ends here */

/* services starts here */

.f-cards-storage-1 .fGalleryItem {
    padding: 12px;
}

.f-cards-storage-1 .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    padding: 12px;
    border-radius: 15px;
    transition: all .4s;

    &:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        background-color: #dedede21;
    }
}

.f-cards-storage-1 .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.f-cards-storage-1 .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-color-theme-2);
}

.f-cards-storage-1 .fGalleryItem .ItemfinnerGallery .fGalleryText p {
    margin-top: 10px;
    font-size: .9rem;
}

.full-boxes .inner-full-box {
    margin-bottom: 1rem;
    transition: all .4s;
    border-radius: 15px;

    &:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
}

.full-boxes .inner-full-box .f-heading {
    background-color: var(--brand-color-theme-2);
    padding: 12px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.full-boxes .inner-full-box .f-heading h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.full-boxes .inner-full-box .f-inner-text {
    border: 1px solid #dedede;
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 5px 12px;
}

.full-boxes .inner-full-box .f-inner-text ul {
    padding-left: 0;
}

.f-list-filter {
    text-align: center;
    margin-top: 2rem;
}

.f-list-filter a {
    display: inline-block;
    width: 40px;
    height: 40px;
    align-content: center;
    font-weight: 500;
    color: white;
    background-color: var(--brand-color-theme-3);
    margin: 5px;
}

.f-list-filter a.selected {
    background-color: var(--brand-color-theme-1);
}

.f-card-from-content-1 .f-list-item {
    padding: 12px;
}

.f-card-from-content-1 .f-list-item .f-list-item-container {
    height: 100%;
    background-color: #dedede1f;
    border: 1px solid #dedede;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    transition: all .4s;

    &:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transform: translateY(-8px);
    }
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-teaser-image {
    width: 33.33%;
    align-content: center;

    img {
        height: 100%;
        object-fit: cover;
    }
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text {
    width: 66.66%;
    align-content: center;
    padding: 12px;
    position: relative;
    padding-bottom: 5rem;
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-fields .f-list-item-field>.f-item-node-title {
    display: none;
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .custom-card-btn {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 12px 12px 12px;
    width: 100%;
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .custom-card-btn a {
    padding: 4px 12px;
    font-size: .8rem;
    color: white;
    background-color: var(--brand-color-theme-3);
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    transition: all .4s;

    &:hover {
        background-color: var(--brand-color-theme-2);
    }
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-color-theme-2);
    line-height: 1.2em;
    margin-bottom: 10px;
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .venue,
.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .start-date {
    font-size: .9rem;
    display: flex;
    flex-wrap: wrap;
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .venue {
    position: relative;
    margin-bottom: 5px;

    >div {
        width: 80%;
    }
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .start-date {
    position: relative;
    margin-bottom: 5px;

    >div {
        width: 80%;
    }
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .start-date::before {
    content: "\f133";
    font-family: "FontAwesome";
    color: var(--brand-color-theme-1);
    width: 25px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text .venue::before {
    content: "\f3c5";
    font-family: "FontAwesome";
    color: var(--brand-color-theme-1);
    width: 25px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.f-past-events .f-list-item {
    padding: 12px;
}

.f-past-events .f-list-item .f-list-item-container {
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #dedede;
    position: relative;
    transition: all .4s;

    &:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transform: translateY(-8px);
    }
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-button a {
    color: var(--brand-color-theme-3);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: underline;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-teaser-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}


.f-past-events .f-list-item .f-list-item-container .f-list-item-title a {
    color: var(--brand-color-theme-2);
    font-size: 1.2rem;
    line-height: 1.1em;
    font-weight: 600;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-fields {
    margin-top: 10px;
    margin-bottom: 10px;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-field .f-item-node-title {
    display: none;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-field .f-item-node-value {
    position: relative;
    display: flex;
    padding-left: 20px;
    font-size: .9rem;
    margin-bottom: .3rem;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-field .f-item-node-value:empty {
    display: none;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-field .f-item-node-value::before {
    content: "\f133";
    font-family: "FontAwesome";
    width: 25px;
    position: absolute;
    left: 0;
    top: 0px;
}

.f-past-events .f-list-item .f-list-item-container .f-list-item-field:nth-child(2) .f-item-node-value::before {
    content: "\f3c5";
}

body.content-type-43728 #fMatter {
    padding: 1rem 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
}

body.content-type-43728 .f-content-text .row .col-12 {
    padding: 12px;
}

body.content-type-43728 .f-content-text .example-image-link {
    display: block;
    height: 100%;
}

body.content-type-43728 .f-content-text .example-image-link img {
    aspect-ratio: 1/.8;
    object-fit: cover;
}

body.content-type-43728 .f-content-text h3 {
    color: var(--brand-color-theme-2);
}

body.content-type-43728 .f-content-text h4 {
    color: var(--brand-color-theme-1);
    font-size: 1.4rem;
}


body.content-type-43728 .f-content-text ul {
    padding-left: 0;
}

body.content-type-43728 .f-content-text li {
    margin-left: 17px;
}

/* services ends here */

/* Event Page */

.f-banner-event-page .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 1px #0000009c;
}

.f-banner-event-page .bx-wrapper {
    margin-bottom: 0;
}

.f-banner-event-page .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    z-index: 99;
}

.f-banner-event-page .bx-wrapper .bx-pager.bx-default-pager a.active,
.f-banner-event-page .bx-wrapper .bx-pager.bx-default-pager a:hover,
.f-banner-event-page .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background-color: var(--brand-color-theme-1);
}

.f-banner-event-page .bx-wrapper .bx-pager.bx-default-pager a {
    background-color: white;
    border: 1px solid #dedede;
    border-radius: 50px;
}

.f-banner-event-page .bx-wrapper .bx-controls-direction a {
    background-image: unset;
    text-indent: unset;
    color: white;
    font-size: 3.75vw;
}

.f-banner-event-page h3 {
    font-size: 4.7vw;
    font-weight: 700;
    margin-bottom: .7vw;
    margin-top: 0;
}

.f-banner-event-page .logos {
    width: 30vw;
    display: inline-block;
    margin-bottom: 2%;
    filter: drop-shadow(1px 1px 1px var(--brand-color-theme-2));
}

.f-banner-event-page .date {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2.7vw;
}

.f-banner-event-page .date .icons-text {
    background-color: #99C613;
    color: white;
    width: 3vw;
    height: 3vw;
    align-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 1.7vw;
    text-shadow: none;
    box-sizing: border-box;
    margin-left: 1%;
    margin-top: .7%;
}

.f-banner-event-page .venue {
    margin-top: 1%;
    font-size: 2.7vw;
}

.f-banner-event-page .fGalleryText .fButton {
    text-shadow: none;
    padding: 1vw 2rem;
    font-size: 1.4vw;
}

/* countdown */

.f-countdown-event-page {
    margin-top: 2vw;
    margin-bottom: 1vw;
}

.f-countdown-event-page .fModuleContent .row {
    justify-content: center;
}

.f-countdown-event-page .col-count {
    width: fit-content;
    min-width: 7vw;
    min-height: 6.5vw;
    background: #ffffff6e;
    text-shadow: 0 0 BLACK;
    margin: .7vw;
    align-content: center;
    box-shadow: 1px 1px 1px #00000077;
}

.f-countdown-event-page .col-count h4 {
    margin: 0;
    color: white;
    font-size: 2vw;
    font-weight: 700;
}

.f-countdown-event-page .col-count p {
    margin: 0;
    font-size: 1.1vw;
}

/* about */

.f-about-event .date-and-venue b {
    display: block;
    color: var(--brand-color-theme-2);
    font-size: 1.2rem;
}

.f-about-event .date-and-venue>div {
    padding: 12px;
    align-content: center;
    text-align: center;
}

.f-about-event .date-and-venue p {
    height: 100%;
    background-color: white;
    border: 1px solid #dedede;
    margin: 0;
    padding: 1rem;
    border-radius: 10px;
}

.f-about-event .date-and-venue p>span {
    display: flex;
    justify-content: center;
}

.f-about-event .date-and-venue p>span>span {
    padding: 7px;
}

.f-about-event .date-and-venue p>span>span {
    font-weight: 500;
}

.f-about-event .date-and-venue p>span>span>span {
    display: block;
    font-size: .8rem;
    color: var(--brand-color-theme-1);
    font-weight: normal;
}

.f-about-event .map-div iframe {
    min-height: 300px;
    margin-top: 1rem;
    border-radius: 12px;
    width: 100%;
    border: 1px solid #dedede;
}

.f-transportation-details ul {
    padding-left: 0;
}

.f-transportation-details li {
    margin-left: 17px;
}

.f-transportation-details h4 {
    color: var(--brand-color-theme-1);
}

/* event highlights */

.f-event-highlights .f-media .f-media-image img {
    border-radius: 15px;
}

.f-event-highlights .f-media .f-media-text {
    padding: 24px 12px 12px 12px;
}

.content-type-43946 .fPageTitle h1,
.content-type-42608 .fPageTitle h1 {
    font-size: 1.7rem;

    span {
        display: block;
        font-size: 1rem;
        font-weight: normal;
    }
}

.inner-item-for-news {
    padding: 2rem;
    text-align: justify;
}

.inner-item-for-news ul,
.inner-item-for-news ol {
    padding-left: 0;
}

.inner-item-for-news ul li,
.inner-item-for-news ol li {
    margin-left: 17px;
}

.inner-item-for-news h2 {
    color: var(--brand-color-theme-1);
}

.inner-item-for-news h3 {
    color: var(--brand-color-theme-1);
}

.inner-item-for-news h4 {
    color: var(--brand-color-theme-2);
    font-weight: 600;
}

.f-exhibit-logos .f-list {
    margin-top: 1.5rem;
}

.f-exhibit-logos .f-list .f-list-item {
    padding: 12px;
}

.f-exhibit-logos .f-list .f-list-item .f-list-item-container {
    height: 100%;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.f-exhibit-logos .f-list .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.5;
    object-fit: contain;
    border: 1px solid #dedede;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.f-exhibit-logos .f-list-item .f-list-item-title>a {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
}

.f-exhibit-logos .f-list-item .f-list-item-title>a::after {
    content: "";
    inset: 0;
    position: absolute;
}

.f-exhibit-logos .f-list-item .f-list-item-title>a>span:nth-child(1) {
    position: relative;
    padding-right: 4px;

    &::before {
        content: "No. ";
    }
}

.f-exhibit-logos .f-list-item .f-list-item-title>a>span:nth-child(2) {
    color: var(--brand-color-theme-1);
}

.f-exhibit-logos .f-list-item .f-list-item-subtitle>a {
    color: var(--brand-color-theme-3);
    font-size: .9rem;
}

.f-exhibit-logos .f-list-header form {
    display: flex;
    flex-wrap: wrap;
}

.f-exhibit-logos .f-list-header form input,
.f-exhibit-logos .f-list-header form select {
    font-size: .9rem;
    padding: 5px !important;
    min-height: 33.2px;
    border-radius: 0;
    outline: none;
    border: 1px solid #dedede;
}

.f-exhibit-logos .f-list-header {
    background-color: #fafafa;
    padding: 1rem 0;
    border-bottom: 1px solid #dedede;
}

.f-exhibit-logos .f-list-header form input {
    border-right: 0;
}

.f-exhibit-logos .f-list-header form input[type="submit"] {
    background-color: var(--brand-color-theme-2);
    color: white;
    border: 1px solid var(--brand-color-theme-2);
    border-left: 0;
}

.f-reg-steps-boxes .owl-stage {}

.f-reg-steps-boxes .owl-stage::before {
    content: "";
    width: calc(100% - 24.5px);
    height: 4px;
    background: var(--brand-color-theme-1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    visibility: visible;
}

.f-reg-steps-boxes .owl-item {
    padding: 24px 12px 0 12px;
    padding: 0px 12px 0 12px;
}

.f-reg-steps-boxes .owl-item .inner-item {
    background-color: white;
    border-radius: 0 0px 10px 10px;
    padding: 10px;
    border: 1px solid var(--brand-color-theme-1);
    aspect-ratio: 1/.5;
    position: relative;
    /* margin-top: 7.5px; */
}

/* .f-reg-steps-boxes .owl-item .inner-item::before
{
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    z-index: 99;
    left: -.5px;
    top: -30px;
    background-color: var(--brand-color-theme-1);
    border: 1px solid var(--brand-color-theme-1);
    clip-path: polygon(0% 0, 0% 100%, 100% 100%);
} */

.f-reg-steps-boxes .owl-item .inner-item li {
    font-size: .9rem;
}

.f-reg-steps-boxes .owl-item .inner-item li a {
    color: #000;
    text-wrap: wrap;
    font-weight: 300;
}

.f-reg-steps-boxes .owl-item .inner-item h4 {
    margin: 10px 0 10px 0;
    font-size: 1.2rem;
}

/* gallery marathon */

.nav-gallery {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #dedede;
}

.nav-gallery ul.fMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.nav-gallery ul.fMenu li {
    width: fit-content;
    padding: 10px;
}

.nav-gallery ul.fMenu li>a {
    display: inline-block;
    padding: 7px 2rem;
    border: 1px solid var(--brand-color-theme-1);
    color: var(--brand-color-theme-1);
    transition: all .4s;
    align-content: center;
    height: 100%;
    text-align: center;
    width: 100%;

    &:hover {
        background-color: var(--brand-color-theme-1);
        color: white;
    }
}

.f-gallery-container .fGalleryItem {
    padding: 12px;
}

.f-gallery-container .fGalleryItem .ItemfinnerGallery {
    height: 100%;
}

.f-gallery-container .fGalleryItem .ItemfinnerGallery a.fGalleryImage img {
    aspect-ratio: 1/.7;
    object-fit: cover;
}

.f-gallery-container .fGalleryItem .ItemfinnerGallery .fGalleryText {
    position: absolute;
    inset: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.f-gallery-container .fGalleryItem .ItemfinnerGallery:hover .fGalleryText {
    opacity: 1;
    visibility: visible;
}

.f-gallery-container .fGalleryItem .ItemfinnerGallery .fGalleryText>a {
    display: block;
    position: absolute;
    inset: 0;
    align-content: center;
    background-color: #33333371;
}

.f-gallery-container .fGalleryItem .ItemfinnerGallery .fGalleryText>a::after {
    content: "\2b";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "FontAwesome";
    font-size: 2.3rem;
    color: white;
}

/* gallery marathon ends */

/* event exhibitor starts here */

.com-user #f-content-41775 .f-content-node-title,
.com-user #f-content-41776 .f-content-node-title,
.com-user #f-content-41742 .f-content-node-title,
.com-user #f-content-41743 .f-content-node-title {
    display: none;
}

.com-user #f-content-41775 .f-content-node-value>a>span,
.com-user #f-content-41776 .f-content-node-value>a>span,
.com-user #f-content-41742 .f-content-node-value>a>span,
.com-user #f-content-41743 .f-content-node-value>a>span {
    display: none;
}

.com-user #f-content-41775,
.com-user #f-content-41742 {
    display: inline-block;
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.com-user #f-content-41776,
.com-user #f-content-41743 {
    display: inline-block;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.com-user #f-content-41775>*,
.com-user #f-content-41776>*,
.com-user #f-content-41742>*,
.com-user #f-content-41743>* {
    display: inline-block;
}

.com-user #f-content-41775 .f-content-node-value>a,
.com-user #f-content-41776 .f-content-node-value>a,
.com-user #f-content-41742 .f-content-node-value>a,
.com-user #f-content-41743 .f-content-node-value>a {
    display: inline-block;
    position: relative;
}

.com-user #f-content-41775 .f-content-node-value>a::after,
.com-user #f-content-41742 .f-content-node-value>a::after {
    content: "\f0c1";
    font-family: "FontAwesome";
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 500px;
    align-content: center;
    font-size: .9rem;
    background-color: var(--brand-color-theme-1);
    color: white;
    margin-right: 5px;
    margin-bottom: 10px;
}

.com-user #f-content-41776 .f-content-node-value>a::after,
.com-user #f-content-41743 .f-content-node-value>a::after {
    content: "\f39e";
    font-family: "FontAwesome";
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 500px;
    align-content: center;
    font-size: .9rem;
    background-color: var(--brand-color-theme-2);
    color: white;
    margin-right: 5px;
    margin-bottom: 10px;
}

body.com-user.view-view .f-content-item-teaser-image {
    position: relative;
}

body.com-user .f-content-node>.f-content-fields {
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    gap: 12px;
}

body.com-user .f-content-node>.f-content-fields>.f-content-field {
    text-align: center;
    margin-bottom: 12px;
}

body.com-user .f-content-node>.f-content-fields>.f-content-field>div:nth-child(2) {
    border: 1px solid #dedede;
    border-radius: 12px;
    margin-bottom: 12px;
}

body.com-user .f-content-node>.f-content-fields>.f-content-field>div:nth-child(2) img {
    max-height: 85px;
    object-fit: contain;
}

body.com-user .f-content-node>.f-content-fields>.f-content-field.f-content-node-empty {
    display: none;
}

body.com-user .f-content-node>.f-content-fields>.f-content-field>.f-content-node-title {
    display: none;
}

body.com-user .f-content-node>.f-content-fields>.f-content-field>div:nth-child(3) {
    font-size: .85rem;
}

/* event exhibitor ends here */

/* ntre and met inner pages start here */
body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter {
    margin: 2rem 0;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page .fPageTitle,
body.com-user.view-view.f-met-exhibitor-list-special-page .fPageTitle,
body.com-user.view-view.f-ntre-exhibitor-list-all-page .fPageTitle,
body.com-user.view-view.f-met-exhibitor-list-all-page .fPageTitle {
    display: none;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page #f-content-41775,
body.com-user.view-view.f-ntre-exhibitor-list-special-page #f-content-41776,
body.com-user.view-view.f-met-exhibitor-list-special-page #f-content-41742,
body.com-user.view-view.f-met-exhibitor-list-special-page #f-content-41743,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #f-content-41775,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #f-content-41776,
body.com-user.view-view.f-met-exhibitor-list-all-page #f-content-41742,
body.com-user.view-view.f-met-exhibitor-list-all-page #f-content-41743 {
    position: static;
    margin-top: 2rem;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-user-container .f-list-item-content>span:nth-child(1),
body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-user-container .f-list-item-content>span:nth-child(3),
body.com-user.view-view.f-met-exhibitor-list-special-page .f-user-container .f-list-item-content>span:nth-child(1),
body.com-user.view-view.f-met-exhibitor-list-special-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-met-exhibitor-list-special-page .f-user-container .f-list-item-content>span:nth-child(3),
body.com-user.view-view.f-ntre-exhibitor-list-all-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-met-exhibitor-list-all-page .f-user-container .f-list-item-content>span {
    text-align: start;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content {
    background-color: white;
    box-shadow: none;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-content-item-teaser-image,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-content-item-teaser-image,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-content-item-teaser-image,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-content-item-teaser-image {
    text-align: center;
    margin: 0;
    width: 25%;
    height: 100%;
    border: 2px solid var(--brand-color-theme-2);
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-content-item-teaser-image img,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-content-item-teaser-image img,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-content-item-teaser-image img,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-content-item-teaser-image img {
    border-radius: unset;
    box-shadow: unset;
    height: 100%;
    border: 0;
    object-fit: contain;
    aspect-ratio: 1/.8;
    margin: 0;
    border-bottom: 2px solid #dedede;
}

.com-user.f-ntre-exhibitor-list-special-page #f-content-41776 .f-content-node-value>a::after,
.com-user.f-ntre-exhibitor-list-special-page #f-content-41775 .f-content-node-value>a::after,
.com-user.f-met-exhibitor-list-special-page #f-content-41742 .f-content-node-value>a::after,
.com-user.f-met-exhibitor-list-special-page #f-content-41743 .f-content-node-value>a::after,
.com-user.f-ntre-exhibitor-list-all-page #f-content-41776 .f-content-node-value>a::after,
.com-user.f-ntre-exhibitor-list-all-page #f-content-41775 .f-content-node-value>a::after,
.com-user.f-met-exhibitor-list-all-page #f-content-41742 .f-content-node-value>a::after,
.com-user.f-met-exhibitor-list-all-page #f-content-41743 .f-content-node-value>a::after {
    margin-bottom: 0;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content {
    width: 75%;
    margin: 0;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-user-container .f-list-item-content,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content {
    flex-wrap: unset;
    flex-direction: column;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-content-node>.f-content-fields,
body.com-user.view-view.f-met-exhibitor-list-special-page .f-content-node>.f-content-fields,
body.com-user.view-view.f-ntre-exhibitor-list-all-page .f-content-node>.f-content-fields,
body.com-user.view-view.f-met-exhibitor-list-all-page .f-content-node>.f-content-fields {
    grid-template-columns: 1fr 1fr 1fr;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-content-node.f-content-fields,
body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-content-node.f-content-fields,
body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-content-node.f-content-fields,
body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-content-node.f-content-fields {
    padding: 0;
    border-radius: 0;
    background-color: white;
    box-shadow: none;
    color: #000;
    margin-top: 24px;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span,
body.com-user.view-view.f-met-exhibitor-list-all-page .f-user-container .f-list-item-content>span {
    text-align: start;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span:nth-child(2),
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span:nth-child(2),
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span:nth-child(2),
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span:nth-child(2) {
    order: 0;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-44449,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-44444,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-44471,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-44465 {
    order: -2;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-44454,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-44445,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-44474,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-44468 {
    order: -1;
    margin-bottom: 10px;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-41772,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-41772,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-40134,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-40134 {
    width: fit-content;
    position: relative;
    font-size: .9rem;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-41772::before,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-41772::before,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-40134::before,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-40134::before {
    content: "攤位:";
    position: relative;
    margin-right: 5px;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-41772::after,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-41772::after,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-40134::after,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-40134::after {
    content: ", ";
    margin-right: 5px;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-41770,
body.com-user.view-view.f-ntre-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-41770,
body.com-user.view-view.f-met-exhibitor-list-special-activity-page .f-user-container .f-list-item-content>span#f-list-node-40136,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-40136 {
    width: fit-content;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-44453,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>span#f-list-node-44470 {
    text-align: justify;
    margin-top: 10px;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>a.inner-read-more,
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>a.inner-read-more {
    display: block;
    margin-top: 1rem;
    color: var(--brand-color-theme-1);
    text-decoration: underline;
    margin-bottom: 1rem;
}

body.com-user.view-view.f-ntre-exhibitor-list-special-news-page .f-user-container .f-list-item-content>a.inner-read-more[href=""],
body.com-user.view-view.f-met-exhibitor-list-special-news-page .f-user-container .f-list-item-content>a.inner-read-more[href=""] {
    display: none;
}

/* ntre and met inner pages end here */

/* video page starts here */

.f-videos-from-user .f-list-item {
    padding: 12px;
}

.f-videos-from-user .f-list-item .f-list-item-container {
    height: 100%;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-teaser-image {
    position: relative;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.65;
    object-fit: cover;
}


.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-teaser-image>a {
    display: block;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-teaser-image>a::after {
    content: "\f167";
    color: black;
    opacity: .6;
    font-size: 4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .2s;
    font-family: "FontAwesome";
    background-color: white;
    border-radius: 10px;
    padding: 0;
    line-height: 1.2rem;
}

.f-videos-from-user .f-list-item .f-list-item-container:hover .f-list-item-teaser-image>a::after {
    color: red;
    opacity: 1;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-title span#f-list-node-44458,
.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-title span#f-list-node-44481 {
    display: none;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-title span {
    color: var(--brand-color-theme-2);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a {
    display: flex;
    flex-direction: column;
    width: 100%;

    span {
        font-size: .9rem;
        color: var(--brand-color-theme-3);
        text-decoration: underline;
        text-underline-offset: 6px;
        margin-bottom: 2px;
        display: block;
    }
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a span#f-list-node-41772,
.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a span#f-list-node-40134 {
    order: 3;
    position: relative;
    text-decoration: none;
    margin-top: 5px;

    &::before {
        content: "攤位:";
        position: relative;
        margin-right: 5px;
    }
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a span#f-list-node-40134:empty,
.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a span#f-list-node-40134:empty::before,
.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a span#f-list-node-41772:empty,
.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-subtitle a span#f-list-node-41772:empty::before {
    display: none;
}

.f-videos-from-user .f-list-item .f-list-item-container .f-list-item-content-text {
    padding: 12px 0;
}

/* news page starts here */

.f-news-summary .f-list-item {
    padding: 12px;
}

.f-news-summary .f-list-item .f-list-item-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--brand-color-theme-2);
    border-radius: 12px;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-teaser-image {
    height: 200px;
    border: 1px solid #dedede;
    border-radius: 12px;
    overflow: hidden;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    height: 100%;
    object-fit: contain;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text {
    align-content: center;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span {
    display: block;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44449,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44444,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44471,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44465 {
    font-size: 1.2rem;
    color: var(--brand-color-theme-2);
    font-weight: 600;
    margin-bottom: 4px;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44454,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44445,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44474,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44468 {
    font-size: 1rem;
    color: var(--brand-color-theme-1);
    position: relative;
    margin-bottom: 10px;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44454::before,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44445::before,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44474::before,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-title>a>span#f-list-node-44468::before {
    content: "\f133";
    display: inline-block;
    width: 13px;
    margin-right: 5px;
    font-family: "FontAwesome";
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-subtitle>a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-subtitle>a>span#f-list-node-41772,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-subtitle>a>span#f-list-node-40134 {
    order: 2;
    position: relative;
    font-size: .9rem;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-subtitle>a>span#f-list-node-41772::before,
.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-subtitle>a>span#f-list-node-40134::before {
    content: "攤位:";
    position: relative;
    margin-right: 5px;
}

.f-news-summary .f-list-item .f-list-item-container .f-list-item-content-text .f-list-item-subtitle>a>span#f-list-node-40134:empty {
    display: none;
}

.f-news-summary.f-inner-page-users,
.f-videos-from-user.f-inner-page-users {
    display: none;
}

body.f-ntre-exhibitor-list-special-page .f-news-summary.f-inner-page-users,
body.f-ntre-exhibitor-list-special-page .f-videos-from-user.f-inner-page-users,
body.f-met-exhibitor-list-special-page .f-news-summary.f-met-users.f-inner-page-users,
body.f-met-exhibitor-list-special-page .f-videos-from-user.f-met-users.f-inner-page-users {
    display: block;
}

/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/
@media(min-width:1499.99px) {
    .f-main-event {
        margin: auto;
    }
}

@media(min-width:1199.99px) {
    .f-about-event .date-and-venue>div {
        width: 30%;
    }
}

@media(min-width:1299.99px) {
    .f-banner-event-page h3 {
        font-size: 47.36px;
        margin-bottom: 8.96px;
    }


    .f-countdown-event-page .col-count {
        min-width: 90px;
        min-height: 84px;
        margin: 8.96px;
        padding: 7px 12px;
    }

    .f-countdown-event-page .col-count h4 {
        font-size: 25.6px;
    }

    .f-countdown-event-page .col-count p {
        font-size: 14.08px;
    }

    .f-banner-event-page .fGalleryText .fButton {
        padding: 12.8px 32px;
        font-size: 17.92px;
    }

    .f-banner-event-page .bx-wrapper .bx-controls-direction a {
        font-size: 48px;
    }
}

@media(min-width:991.99px) {


    .f-header-logo .fGalleryImage img {
        width: 300px;
    }

    .main-menu .fMenu {
        display: flex;
        justify-content: end;
        font-family: var(--brand-font-family-heading);
        align-items: center;
    }

    .main-menu .fMenu>li {
        padding: 7px 7px;
        position: relative;
    }

    .main-menu .fMenu>li.has-submenu {
        padding-right: 15px;
    }

    .main-menu .fMenu>li>a {
        color: var(--brand-color-theme-3);
        position: relative;
        font-weight: 400;
        font-size: .9rem;
    }

    .main-menu .fMenu>li:last-child {
        padding-right: 0;
    }

    .main-menu .fMenu>li.has-submenu:last-child {
        padding-right: 13px;
    }

    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 3.35rem;
        left: 7px;
        background-color: white;
        visibility: hidden;
        width: 200px;
        opacity: 0;
        z-index: -1;
        box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
        transform-origin: top center;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        padding: 0;
    }

    .main-menu .fMenu>li>ul>li {
        position: relative;
    }

    .main-menu .fMenu>li>ul>li.has-submenu>a::after {
        content: "\f105";
        position: absolute;
        right: .6rem;
        top: 50%;
        transform: translateY(-51%);
        font-family: "FontAwesome";
        color: var(--brand-color-theme-2);
        font-size: .8rem;
    }

    .main-menu .fMenu>li>ul>li.has-submenu>a:hover::after {
        color: white;
    }

    .main-menu .fMenu>li>ul>li>ul {
        position: absolute;
        text-align: left;
        top: 0rem;
        left: 199px;
        background-color: white;
        visibility: hidden;
        width: 200px;
        opacity: 0;
        z-index: -1;
        box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
        transform-origin: top center;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        padding: 0;
    }

    .main-menu .fMenu>li>ul>li>ul>li>a {
        font-size: .85rem;
        line-height: 1.2em;
        color: var(--brand-color-theme-2);
        padding: .7rem 1rem;
        display: block;
        font-weight: 400;
        background-color: #f1f0f0;
        border-bottom: 1px solid #dedede;
        transition: all .4s;

        &:hover {
            color: white;
            background-color: var(--brand-color-theme-2);
        }
    }


    .main-menu .fMenu>li:nth-last-child(1)>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: 2px;
        top: 50%;
        transform: translateY(-50%);
        font-size: .8rem;
    }

    .main-menu .fMenu>li.has-submenu:last-child>a::before {
        right: 0;
    }

    .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,
    .main-menu .fMenu>li>ul>li:hover>ul {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        z-index: 9;
    }



    .main-menu .fMenu>li>ul>li {
        display: block;
        margin: 0 0;
        padding: 0px 0px;
    }

    .main-menu .fMenu>li>ul>li>a {
        font-size: .85rem;
        line-height: 1.2em;
        color: var(--brand-color-theme-2);
        padding: .7rem 1rem;
        display: block;
        font-weight: 400;
        background-color: #f1f0f0;
        border-bottom: 1px solid #dedede;
    }

    .main-menu .fMenu>li>ul>li>a:hover {
        background-color: var(--brand-color-theme-2);
        color: white;
    }

    .main-menu .fMenu>li>ul>li:last-child>a {
        border-bottom: 0;
    }

    header.active .main-menu .fMenu>li>a {
        color: var(--brand-color-theme-2);
        transition: all 0.4s ease 0s;
    }

    header .main-menu {
        width: fit-content;
    }

    footer#fFooter .f-links {
        width: fit-content;
        min-width: 22%;
    }

    footer#fFooter .f-links .fMenu li>a {
        color: white;
    }

    footer#fFooter .f-footer-contact {
        width: fit-content;
        min-width: 22%;
    }
}

/*xl*/

@media (max-width: 1399.99px) {
    html {
        font-size: 16px;
    }
}

@media(max-width:1280.99px) {
    .f-main-event {
        width: 1202.33px;
        max-width: 100%;
    }

    .f-reg-steps-boxes .owl-item .inner-item {
        aspect-ratio: 1/.6;
    }
}


/*lg*/

@media (max-width: 1199.99px) {
    html {
        font-size: 16px;
    }
}

@media(max-width: 991.99px) {
    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: var(--brand-color-theme-2);
    }

    .main-menu {
        position: static !important;
    }

    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 3.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;
    }

    .main-menu nav ul.fMenu>li>a {
        display: block;
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: var(--brand-color-theme-2);
    }

    .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: var(--brand-color-theme-2);
        display: block;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul>li>ul {
        background-color: var(--brand-color-theme-3);
        padding: 7px;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul>li>ul>li>a {
        display: block;
        color: var(--brand-color-theme-2);
        background-color: white;
        padding: 9px 15px;
    }

    .f-header-logo .fGalleryImage img {
        width: 300px;
        max-width: 100%;
    }

    .f-main-event::after {
        content: unset;
    }

    .f-event .fModuleContent {
        width: 100%;
    }

    .f-event-nav {
        padding-bottom: 0 !important;
    }

    .f-event-nav .fModuleTitle h3 {
        text-align: center;
    }

    .f-event-nav .f-module-content {
        display: none;
    }

    .f-main-event {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 1rem;
    }

    .f-event {
        padding-bottom: 0 !important;
    }

    .f-banner .fGalleryText h3 {
        font-size: 2.8rem;
    }

    .f-photo-with-custom-text .fModuleTitle {
        display: block;
    }

    .f-photo-with-custom-text .fModuleContent .fModuleTitle {
        display: none;
    }

    body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
    body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-list-item-content,
    body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content,
    body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-list-item-content {
        width: 100%;
    }

    body.com-user.view-view.f-ntre-exhibitor-list-special-page #fMatter .f-user-container .f-content-item-teaser-image, body.com-user.view-view.f-met-exhibitor-list-special-page #fMatter .f-user-container .f-content-item-teaser-image, body.com-user.view-view.f-ntre-exhibitor-list-all-page #fMatter .f-user-container .f-content-item-teaser-image, body.com-user.view-view.f-met-exhibitor-list-all-page #fMatter .f-user-container .f-content-item-teaser-image{
        width: 220px;
    }

   
}


/*sm*/

@media (max-width: 767.99px) {
    .fModuleTitle h3 span {
        font-size: 2.7rem;
    }

    .f-miles-memory .fGalleryItem {
        display: none;
    }

    .f-miles-memory .fGalleryItem:nth-child(2),
    .f-miles-memory .fGalleryItem:nth-child(3) {
        width: 50%;
        display: block;
    }

    .f-miles-memory .fGalleryItem:first-child {
        width: 100%;
        display: block;
    }

    .f-new-table-design thead {
        display: none;
    }

    .f-new-table-design table {
        box-shadow: none;
        border-radius: 0;
        overflow: unset;

        &:hover {
            box-shadow: unset;
        }
    }

    .f-new-table-design table tbody tr td[table-data="Year"] {
        width: 100%;
    }

    .f-new-table-design table,
    .f-new-table-design table tr td,
    .f-new-table-design table tr,
    .f-new-table-design table tbody {
        display: block;
        width: 100%;
        position: relative;
    }

    .f-new-table-design table tr {
        border: 1px solid #dedede;
        margin-bottom: 1rem;
        border-radius: 7px;
        overflow: hidden;
        transition: all .4s;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

        &:hover {
            box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        }
    }

    .f-new-table-design table tr td::before {
        content: attr(table-data);
        position: relative;
        width: 100%;
        color: white;
        padding: 10px;
        display: inline-block;
        background-color: var(--brand-color-theme-2);
    }

    .f-new-table-design table tr td {
        border-bottom: 0;
        padding: 0;
    }

    .f-new-table-design table tr td div {
        padding: 10px;
    }

    .nav-gallery ul.fMenu li {
        width: 33.33%;
    }


}


/*xs*/

@media (max-width: 574.99px) {
    .fModuleTitle h3 {
        font-size: 1.4rem;
    }

    .fModuleTitle h3 span,
    body.not-home .fModuleTitle h3 span {
        font-size: 2rem;
    }

    .f-banner .fGalleryImage img {
        min-height: 400px;
        max-height: 400px;
    }

    .f-banner .fGalleryText h3 {
        font-size: 2rem;
    }

    .f-banner .fGalleryText p {
        font-size: 1.1rem;
    }

    .f-all-logos .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
        max-width: unset;
        width: 100%;
    }

    .f-miles-memory .fGalleryItem {
        padding: 12px 24px;
    }

    .f-miles-memory .fGalleryItem:nth-child(2),
    .f-miles-memory .fGalleryItem:nth-child(3) {
        width: 100%;
    }

    .f-miles-memory .fGalleryItem:first-child .fGalleryText .social>a {
        height: 50px;
        font-size: 1.75rem;
    }

    .f-banner .bx-wrapper .bx-controls-direction a {
        font-size: 1.75rem;

    }

    .f-banner .bx-wrapper .bx-prev {
        left: 0;
    }

    .f-banner .bx-wrapper .bx-next {
        right: -12px;
    }

    .f-cta-btns .col-6 {
        padding: 6px;
    }

    .f-cta-btns .col-6 a.fButton {
        padding: 10px;
    }

    .f-news-event .owl-nav button,
    .f-services .owl-nav button {
        top: 45%;
    }

    .f-static-full-box .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
        width: 35px;
        height: 35px;
    }

    .f-static-full-box .fGalleryItem .ItemfinnerGallery .fGalleryImage>h3 {
        font-size: 1.15rem;

        span {
            font-size: .85rem;
        }
    }

    .f-banner-event-page .fGalleryImage img {
        height: 600px;
        object-fit: cover;
    }

    .f-banner-event-page h3 {
        font-size: 5.6vw;
    }

    .f-banner-event-page .bx-wrapper .bx-controls-direction a {
        font-size: 7vw;
    }

    .f-banner-event-page .fGalleryText .fButton {
        font-size: 3vw;
    }

    .f-countdown-event-page .col-count h4 {
        font-size: 4vw;
    }

    .f-countdown-event-page .col-count p {
        font-size: 2.7vw;
    }

    .f-countdown-event-page .col-count {
        min-width: 16vw;
        min-height: 13vw;
        margin: 1vw;
    }

    .f-news-event .f-list {
        margin: 0;
    }

    .f-news-event .f-list .f-list-item {
        padding: 12px 7px;
    }

    .nav-gallery ul.fMenu li {
        width: 50%;
    }

    body.com-user .f-content-node>.f-content-fields {
        grid-template-columns: 45% 45%;
        justify-content: center;
    }

    .f-banner-event-page .logos {
        width: 90vw;
        margin-bottom: 2%;
    }

    .f-banner-event-page .date {
        font-size: 6.5vw;
    }

    .f-banner-event-page .date .icons-text {
        width: 8vw;
        height: 8vw;
        font-size: 4vw;
    }

    .f-banner-event-page .venue {
        font-size: 6.5vw;
    }

    .f-about-event table td {
        display: block;
        width: 100% !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    .f-news-summary .f-list-item .f-list-item-container {

        display: block;
    }

    .f-news-summary .f-list-item .f-list-item-container .f-list-item-teaser-image {
        margin-bottom: 1rem;
    }

     body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-content-node>.f-content-fields, body.com-user.view-view.f-met-exhibitor-list-special-page .f-content-node>.f-content-fields, body.com-user.view-view.f-ntre-exhibitor-list-all-page .f-content-node>.f-content-fields, body.com-user.view-view.f-met-exhibitor-list-all-page .f-content-node>.f-content-fields{
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:499.99px) {

    .f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-teaser-image,
    .f-card-from-content-1 .f-list-item .f-list-item-container .f-list-item-content-text {
        width: 100%;
    }

    .f-banner-event-page h3 {
        font-size: 10vw;
    }

    .f-banner-event-page .fGalleryText .fButton {
        font-size: 4vw;
        padding: 3vw 10vw;
    }

    .f-countdown-event-page .col-count {
        min-width: 19vw;
        min-height: 16vw;
        margin: 2vw;
    }

    .f-banner-event-page .bx-wrapper .bx-controls-direction a {
        display: none;
    }

    .f-countdown-event-page .col-count h4 {
        font-size: 6vw;
    }

    .f-countdown-event-page .col-count p {
        font-size: 3.7vw;
    }

    .f-about-event .fModuleContent>div>p {
        text-align: justify;
    }

    .f-exhibit-logos .f-list-header .f-list-header-item {
        padding: 6px 0;
        width: 100%;
    }

    .f-exhibit-logos .f-list-header form input,
    .f-exhibit-logos .f-list-header form select {
        border: 1px solid #dedede;
        width: 100%;
    }

    .f-exhibit-logos .f-list-header form input[types="submit"] {
        width: 100%;
    }
     body.com-user.view-view.f-ntre-exhibitor-list-special-page .f-content-node>.f-content-fields, body.com-user.view-view.f-met-exhibitor-list-special-page .f-content-node>.f-content-fields, body.com-user.view-view.f-ntre-exhibitor-list-all-page .f-content-node>.f-content-fields, body.com-user.view-view.f-met-exhibitor-list-all-page .f-content-node>.f-content-fields{
        grid-template-columns: 1fr;
    }
}