@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
    --brand-color-theme-1: #356cb4;
    --brand-color-theme-2: #eeea39;
    --brand-color-theme-3: #000;
    --brand-font-family-heading: "Montserrat", sans-serif;
    --brand-font-family-body: "Montserrat", sans-serif;
}

.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;
}

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: white;
    color: var(--brand-color-theme-2);
    cursor: pointer;
    width: 48px;
    height: 48px;
    outline: none;
    border: 4px solid var(--brand-color-theme-2);
    border-image: initial;
    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 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fRegion.region-header>.row {
    margin: 0;
}

.fRegion {
    display: inline-block;
    width: 100%;
}

.fPageTitle {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    background-color: var(--brand-color-theme-1);
    background-image: url("https://storage.unitedwebnetwork.com/files/1285/be8c59114f06f23648d6ceeb4bc284de.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fPageTitle h1 {
    font-size: 2rem;
}

body.title-off .fPageTitle {
    display: none;
}

.fModuleTitle h3 {
    color: var(--brand-color-theme-1);
    font-weight: 600;
}

.fModuleTitle h3 span {
    display: block;
    width: fit-content;
    letter-spacing: 1px;
    font-weight: 500;
    background-color: var(--brand-color-theme-2);
    padding: 3px 7px;
    color: var(--brand-color-theme-3);
    text-transform: uppercase;
    border-radius: 3px;
    font-size: .9rem;
    margin-bottom: .4rem;
}

.f-folders-name .fGalleryContainer>h4 {
    color: var(--brand-color-theme-1);
    font-size: 1.75rem;
    font-weight: 600;
}

.title-white .fModuleTitle h3 {
    color: white;
}

.title-center .fModuleTitle h3,
.f-folders-name.title-center .fGalleryContainer>h4 {
    text-align: center;
}

.title-center .fModuleTitle h3 span {
    margin: auto;
    margin-bottom: .4rem;
}

.f-photo-with-custom-text .fModuleTitle h3 {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
    text-align: start;
    display: block;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 span {
    margin: 0 0 .4rem 0;
}

ul.fGalleryImages.fGalleryList {
    position: relative;
    margin: 0px;
    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 */

.region-header,
.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-1);
}


/****--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-1);
    border-radius: 0.25rem;
    overflow: hidden;

    >* {
        border: 0;
        border-radius: 0;
    }

    input[type="submit"] {
        padding: 0.5rem 0.75rem;
        background: var(--brand-color-theme-1);
        color: #fff;
    }
}


/*----------iconset----------*/

.iconset .fMenu {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.iconset .fMenu>li {
    list-style: none;
    margin: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    transition: 0.5s all;
    position: relative;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.iconset .fMenu>li:hover {
    background: #fff;
    box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
}

.iconset .fMenu>li>a {
    display: block;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}

.iconset img {
    width: auto;
    max-width: 64px;
    display: block;
    margin-bottom: 0.5rem;
}

.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;
}

.iconset .fMenu ul {
    margin-left: 4px;
    margin-top: 0.5rem;
}

.iconset .fMenu ul,
.iconset .fMenu ul li {
    list-style: square;
}

.iconset .fMenu ul a {
    font-weight: 500;
}


/*----------animation----------*/

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Menu Timeline */

.menu-timeline ul.fMenu {
    display: flex;
    margin-bottom: 1rem;
}

.menu-timeline li {
    flex: 1 1 0;
    letter-spacing: -0.5px;
    text-align: center;
    position: relative;
}

.menu-timeline li.selected {
    font-weight: 700;
}

.menu-timeline li::before {
    height: 2px;
    width: 100%;
    left: -50%;
    top: 1rem;
    position: absolute;
    background: var(--brand-color-theme-1);
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
}

.menu-timeline .menu-item-text big {
    clear: both;
    display: block;
    width: fit-content;
    padding: 0.5rem 1rem;
    margin: 0 auto 0.5rem;
    background: var(--brand-color-theme-1);
    color: #fff;
    font-weight: 700;
}

.menu-timeline .menu-item-text span {
    display: block;
}

.menu-timeline li.future::before {
    display: none;
}

.menu-timeline li.future {
    opacity: 0.25;
}

.menu-timeline li.future a {
    pointer-events: none;
}


/* 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: 90%;
    margin: 2rem 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;
}

body.view-account-recover #fMatterPre #fModule-51211 {
    display: none;
}


/* login page ends here */


/* Programme Table */

tr.session-row-hidden {
    display: none !important;
}

.session-heading {
    text-align: center;
    margin-top: .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: none;
    color: var(--brand-color-theme-1);

    &:hover {
        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-1);
    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 {
    height: 18rem;
    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-1);
    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 ***/


/* registration starts here */

.f-registration-and-abstract .box {
    padding: 1rem;
    background-color: #f1f1f1;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.f-registration-and-abstract h4 {
    color: var(--brand-color-theme-1);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.f-registration-and-abstract .box ul li {
    list-style: none;
    margin-left: 1.5rem;
}

.f-registration-and-abstract .box ul li::before {
    content: "\f0a9";
    font-family: "FontAwesome";
    margin-left: -1.5rem;
    margin-right: 0.5rem;
}


/* registration ends here */


/* header starts here */

.f-logo-header .ItemfinnerGallery img {
    width: 130px;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 9999999999;
}

header.active {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


/* header ends here */


/* banner start here */

.f-banner .ItemfinnerGallery .fGalleryImage img {
    height: 600px;
    object-fit: cover;
}

.f-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    overflow: hidden;
    /* background-color: transparent;
    background-image: linear-gradient(165deg, rgba(0, 0, 0, 0.461) 20%, rgba(35, 48, 124, 0.763) 100%); */
    color: white;
}

.f-banner .fGalleryText .item {
    z-index: 9999;
    position: relative;
}

.f-banner .fGalleryText .item .address-and-icon {
    display: flex;
    flex-wrap: wrap;
}

.f-banner .fGalleryText .item .address-and-icon .icon {
    padding-right: 10px;
    font-weight: 600;
    font-family: var(--brand-heading-font);
    font-size: 17px;
    text-transform: uppercase;
    position: relative
}

.f-banner .fGalleryText .item .address-and-icon .icon.date::after {
    content: "|";
    position: absolute;
    right: -2.5px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
}

.f-banner .fGalleryText .item .address-and-icon .icon i {
    font-size: 13.5px;
    width: 20px;
    color: var(--brand-color-theme-2);
}

.f-banner .fGalleryText .item .address-and-icon .icon.address {
    padding-left: 10px;
}

.f-banner .fGalleryText .item h2 {
    max-width: 100%;
    font-weight: 700;
    font-size: 2.8rem;
    font-family: var(--brand-heading-font);
    line-height: 1.3em;

    span {
        display: block;
    }
}

.f-banner .fGalleryText .item p {
    font-size: clamp(1rem, 0.9022rem + 0.4348vw, 1.25rem);
    color: white;
    margin-bottom: 30px;
    max-width: 100%;
}

/* countdown starts here */

.f-counter-desktop>.container {
    border: 1px solid #dedede;
    border-top: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.f-counter-desktop>.container .fModuleTitle {
    width: 35%;

    h3 {
        font-size: 1.4rem;
        font-weight: 700;
    }
}

.f-counter-desktop>.container .fModuleContent {
    width: 65%;
}

.f-counter-desktop>.container .col-count {
    text-align: center;
    width: 25%;
}

.f-counter-desktop>.container .fModuleContent .row {
    justify-content: space-between;
}

.f-counter-desktop>.container .fModuleContent h4 {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.4rem;
}

.f-counter-desktop>.container .fModuleContent p {
    margin-top: 0;
    font-size: 1rem;
}

/* countdown ends here */

/* banner ends here */


/* countdown starts here */

.f-countdown>.container {
    border-bottom: 1px solid #dedede;
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.f-countdown>.container div.f-module-title {
    width: 33.33%;
}

.f-countdown>.container div.f-module-title h3 {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.1em;
}

.f-countdown>.container .f-module-content {
    width: 66.66%;
}

.f-countdown>.container .f-module-content>.row {
    margin: 0;
    align-items: center;
    justify-content: end;
}

.f-countdown>.container .f-module-content .col-count {
    width: 25%;
    text-align: center;
    padding-left: 5%;
    padding-right: 0;
}

.f-countdown>.container .f-module-content .col-count h4 {
    margin: 0;
    color: var(--brand-color-theme-3);
    font-size: 3rem;
    font-weight: 600;
    font-family: var(--brand-heading-font);
}

.f-countdown>.container .f-module-content .col-count p {
    margin: 0;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}


/* countdown ends here */


/* welcome message starts here */

.f-welcome-message .f-media-text {
    text-align: justify;
}

.f-welcome-message .f-media-text .fModuleTitle {
    display: inline-block;
    width: fit-content;

    h3 {
        margin: 0;
    }
}

.f-welcome-message .f-media-image {
    width: 250px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}


/* welcome message ends here */


/* venue starts here */

.f-venue .f-media-image .f-media-image-link {
    display: block;
    height: 100%;
}

.f-venue .f-media-image .f-media-image-link img {
    height: 100%;
    object-fit: cover;
}


/* venue ends here */


/* highlights starts here */

.f-highlights {
    background-image: url("https://storage.unitedwebnetwork.com/files/1285/fc6767a280f7e4c5bd387efd54812777.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.f-highlights .fModuleTitle h3 {
    margin-top: 0;
}

.f-highlights .f-media-image a.f-media-image-link {
    display: block;
    height: 100%;

    img {
        height: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }
}

.boxes-double .col-12 {
    padding-bottom: 24px;
}

.boxes-double .col-12:nth-child(2) .item,
.boxes-double .col-12:nth-child(3) .item {
    background-color: #f4f4f4;
}

.boxes-double .col-12 .item {
    padding: 1rem .7rem;
    background-color: var(--brand-color-theme-2);
    text-align: center;
    height: 100%;
}

.boxes-double .col-12 .item h4 {
    color: var(--brand-color-theme-1);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-family: var(--brand-font-family-body);
}

.boxes-double .col-12 .item p {
    margin-top: .5rem;
    margin-bottom: 0;
    font-size: .9rem;
}


/* highlights ends here */


/* all logos starts here */

.f-all-logos .fGalleryItem {
    padding: 2px;
}

.f-all-logos .fGalleryItem .ItemfinnerGallery {
    height: 100%;
}

.f-all-logos .fGalleryItem .ItemfinnerGallery a.fGalleryImage {
    display: block;
    padding: 10px;
    height: 120px;
    max-width: 200px;

    img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
}


/* all logos ends here */


/* user list starts here */

.f-user-list-module-1 .f-list-item {
    padding: 12px;
}

.f-user-list-module-1 .f-list-item .f-list-item-container {
    height: 100%;
    text-align: center;
    position: relative;
}

.f-user-list-module-1 .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    width: 200px;
    max-width: 100%;
    border-radius: 500px;
    border: 5px solid #dedede;
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
}

.f-user-list-module-1 .f-list-item .f-list-item-container .f-list-item-title a {
    color: var(--brand-color-theme-1);
    font-size: 1rem;
    font-weight: 600;
}

.f-user-list-module-1 .f-list-item .f-list-item-container .f-list-item-title a::after {
    content: "";
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1;
}

.f-user-list-module-1 .f-list-item .f-list-item-container .f-list-item-subtitle a {
    font-size: .9rem;
    color: var(--brand-color-theme-3);
}


/* user list ends here */

footer {
    background-color: var(--brand-color-theme-1);
    padding-top: 2rem;

    .fModuleTitle h3 {
        color: var(--brand-color-theme-2);
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: .4rem;
    }
}

footer #fModule-51275 img {
    width: 200px;
}

footer .region-footer .row {
    justify-content: space-between;
    margin: 0;
}

footer ul li>a {
    display: flex;
    color: white !important;
    align-content: center;

    i {
        width: 25px;
        height: 25px;
        background-color: var(--brand-color-theme-2);
        text-align: center;
        align-content: center;
        margin-right: 5px;
        position: relative;
        font-size: .85rem;
        color: #000;
    }
}

footer ul li {
    margin-bottom: .5rem !important;
    align-content: center;
}

footer .f-links ul li:nth-child(1)>a {
    i {
        top: 4px;
    }
}


/* logo with content starts here */

.f-logo-with-content .fGalleryItem {
    padding: 12px;
}

.f-logo-with-content .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    background-color: #356cb421;
    padding: 2rem;
    border-radius: 1rem;
}

.f-logo-with-content .fGalleryItem .ItemfinnerGallery a.fGalleryImage {
    display: block;
    width: 100%;
    text-align: center;
}

.f-logo-with-content .fGalleryItem .ItemfinnerGallery a.fGalleryImage img {
    width: 250px;
    height: 180px;
    padding: 10px;
    object-fit: contain;
    box-shadow: 0 0 8px 0 #ddd;
    border-radius: 25px;
    border-left: 8px solid var(--brand-color-theme-1);
    border-top: 8px solid var(--brand-color-theme-1);
    border-right: 2px solid var(--brand-color-theme-2);
    border-bottom: 2px solid var(--brand-color-theme-2);
}


/* logo with content ends here */


/* box div starts here */

.box-div {
    background-color: #356cb421;
    padding: 2rem;
    border-radius: 1rem;
    text-align: justify;
}

.text-box-div {
    box-shadow: 0 0 8px 0 #ddd;
    padding: 5px;
    text-align: center;
}


/* box ends here */


/* local committee starts here  */

.f-committee .f-list-item {
    padding-bottom: 12px;
    padding-top: 12px;
}

.f-committee .f-list-item-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid var(--brand-color-theme-2);
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.f-committee .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
}

.f-committee .f-list-item-container .f-committee-container-text {
    padding-top: .75rem;
}

.f-committee .f-list-item-container .f-committee-container-text .f-list-item-title {
    color: var(--brand-color-theme-1);
    font-size: 1.2rem;
    font-weight: 600;

    a {
        color: var(--brand-color-theme-1);
    }
}

.f-committee .f-list-item-container .f-committee-container-text .f-list-item-subtitle {
    color: var(--brand-color-theme-3);
    font-size: .85rem;

    a {
        color: var(--brand-color-theme-3);
    }
}


/* local committee ends here  */


/* abstract submission info */

.f-abstract-submission-info {
    padding-bottom: 0 !important;
    padding-top: 20px !important;
}

.f-abstract-submission-info .col-main-div {
    background-color: #e9ebf9;
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.f-abstract-submission-info .col-main-div h2 {
    font-weight: 800;
    font-family: var(--brand-heading-font);
    line-height: 140%;
}

.f-abstract-submission-info .col-main-div h4,
.f-abstract-submission-info .col-main-div h3 {
    margin-bottom: 0;
    font-weight: 800;
    font-family: var(--brand-heading-font);
}

.f-abstract-submission-info .col-main-div table.table {
    margin-top: 15px;
    margin-bottom: 15px;
    border-color: #8d8d8d;
}

.f-abstract-submission-info .col-main-div ol ul,
.f-abstract-submission-info .col-main-div ul ul {
    padding-left: 0;
}

.f-abstract-submission-info .feature-box {
    height: 100%;
    text-align: center;
    background-color: white;
    padding: 30px 10px 10px 10px;
    position: relative;
}

.f-abstract-submission-info .feature-box .fbox-icon {
    width: 70px;
    height: 70px;
    padding: 3px;
    border-radius: 500px;
    display: inline-flex;
    justify-content: center;
    place-items: center;
    border: 2px solid var(--brand-color-theme-1);
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
}

.f-abstract-submission-info .feature-box .fbox-icon i {
    display: inline-flex;
    justify-content: center;
    place-items: center;
    justify-content: center;
    font-size: 20px;
    height: 100%;
    width: 100%;
    color: var(--brand-color-theme-1);
}

.f-abstract-submission-info {
    text-align: center;
}

.f-abstract-submission-info h2 {
    margin-bottom: 0;
}

.f-abstract-submission-info h4 {
    margin-top: 0;
}

.f-abstract-submission-info .row .col-12 {
    padding: 40px 15px 15px 15px;
}

.f-abstract-submission-info .feature-box:hover .fbox-icon i {
    background-color: var(--brand-color-theme-1);
    color: white;
    border-radius: 500px;
}

.f-abstract-submission-info .feature-box a {
    background-image: linear-gradient(165deg, var(--brand-color-theme-1) 20%, var(--brand-color-theme-2) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7px 15px;
    color: white;
}


/* ternative talks starts here */

.f-tentative-icons .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    background-color: #f4f4f4;
    padding: 1rem;
}

.f-tentative-icons .fGalleryItem .ItemfinnerGallery .fGalleryImage {
    display: inline-block;
    width: 80px;
    background-color: var(--brand-color-theme-1);
    height: 80px;
    text-align: center;
    align-content: center;
    margin-bottom: 1rem;

    img {
        filter: invert();
        width: 45px;
        height: 45px;
    }
}

.f-tentative-icons .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
    margin-top: 0;
    font-weight: 600;
    color: var(--brand-color-theme-3);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.f-tentative-icons .fGalleryItem .ItemfinnerGallery .fGalleryText p {
    margin-top: .5rem;
}


/* ternative talks ends here */


/* Programme Page start here */

.f-programme-nav ul.fMenu {
    display: flex;
    justify-content: center;
}

.f-programme-nav ul.fMenu li {
    padding: 10px;
}

.f-programme-nav ul.fMenu li a {
    display: inline-flex;
    place-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    width: fit-content;
    padding: 0.5rem 1rem !important;
    border-radius: 1rem;
    background: var(--brand-color-theme-3) !important;
}

.f-programme-nav ul.fMenu li.selected a {
    background: var(--brand-color-theme-1) !important;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.f-programme-nav {
    z-index: 999;
}


/* Programme Page end here */


/* contact page starts here */

.accordion-item {
    padding: 0;

    .accordion-header {
        margin-top: 0;

        button.collapsed {
            box-shadow: none;
            background-color: white;
            color: var(--brand-color-theme-1);
        }

        button {
            background-color: var(--brand-color-theme-1);
            color: white;
            box-shadow: none;
            font-weight: 600;
        }

        .accordion-button::after {
            content: "\f068";
            font-family: "FontAwesome";
            background-image: none;
            transform: unset;
        }

        .accordion-button:not(.collapsed)::after {
            content: "\2b";
        }
    }
}


/* contact page ends here */


/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/


/*xl*/

@media(min-width:991.9px) {
    header.active {
        background-color: white;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    header .region-header>.row {
        margin: 0;
        align-items: center;
        align-content: center;
        justify-content: space-between;
    }

    .f-logo-header {
        width: fit-content;
    }

    .main-menu {
        width: fit-content;
    }

    .main-menu .fMenu {
        display: flex;
        justify-content: end;
        font-family: var(--brand-font-family-heading);
    }

    .main-menu .fMenu>li {
        padding: 7px 10px;
        position: relative;
    }

    .main-menu .fMenu>li.has-submenu {
        padding-right: 20px;
    }

    .main-menu .fMenu>li>a {
        color: var(--brand-color-theme-1);
        position: relative;
        font-weight: 500;
        font-size: .9rem;
    }

    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 4rem;
        left: 12px;
        background-color: white;
        visibility: hidden;
        min-width: 230px;
        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:last-child.has-submenu>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: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: .8rem;
    }

    .main-menu .fMenu>li>ul::before {
        content: "";
        position: absolute;
        left: 0;
        height: 2.5rem;
        width: 100%;
        top: -2rem;
        background-color: transparent;
    }

    .main-menu .fMenu>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: .9rem;
        line-height: 1.2em;
        color: var(--brand-color-theme-1);
        padding: .7rem 1rem;
        display: block;
        border-bottom: 1px solid #dedede;
    }

    .main-menu .fMenu>li>ul>li>a:hover {
        background-color: var(--brand-color-theme-1);
        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-1);
        transition: all 0.4s ease 0s;
    }

    footer #fModule-51275,
    footer .f-quick-links {
        width: fit-content;
    }
}

@media (max-width: 1399px) {
    html {
        font-size: 16px;
    }
}


/*lg*/

@media (max-width: 1199.9px) {
    html {
        font-size: 16px;
    }

    .f-countdown>.container div.f-module-title {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .f-countdown>.container .f-module-content {
        width: 100%;
    }

    .f-countdown>.container .f-module-content .col-count {
        padding-left: 12px;
        padding-right: 12px;
    }

    .f-countdown>.container .f-module-content .col-count h4 {
        font-size: 2rem;
    }

    .f-highlights.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
        display: none;
    }

    .f-highlights.f-photo-with-custom-text .fModuleTitle h3 {
        display: block;
    }

    .f-highlights.f-photo-with-custom-text .fModuleTitle h3 span {
        width: 100%;
        background-color: transparent;
        padding: 0;
        color: white;
    }
}

@media(max-width:1150.9px) {
    .f-logo-header .ItemfinnerGallery img {
        width: 100px;
    }

    .main-menu .fMenu>li {
        padding: 7px;
    }

    .main-menu .fMenu>li.has-submenu {
        padding-right: 14px;
    }

    .main-menu .fMenu>li.has-submenu>a::before {
        font-size: .6rem;
    }

    .main-menu .fMenu>li>a {
        font-size: .8rem;
    }
}

@media(max-width: 991.9px) {
    html {
        font-size: 15px;
    }

    .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;
    }

    /*** 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;
    }

    .f-photo-with-custom-text .fModuleTitle h3 {
        display: block;
    }

    .f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
        display: none;
    }

    .f-banner .fGalleryText .item .address-and-icon .icon.address {
        padding-left: 0;
    }

    .f-banner .fGalleryText .item .address-and-icon .icon.date::after {
        content: unset;
    }

    .f-banner .fGalleryText .item h2 {
        font-size: 2rem;

        span {
            display: inline;
        }
    }

    .f-welcome-message .f-media-image {
        float: unset;
        margin: 0 auto;
    }

    .fModuleTitle h3 span {
        width: 100%;
        background-color: transparent;
        color: var(--brand-color-theme-3);
        padding: 0;
    }

    .main-menu {
        position: static !important;
    }

    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 5.9em;
        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-1);
    }

    .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-2);
        display: none;
    }

    .main-menu nav ul.fMenu>li.has-submenu {
        padding: 0;
    }

    .main-menu nav ul.fMenu>li {
        padding: 0;
    }

    .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-1);
        display: block;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul>li>a {
        font-size: .8rem;
    }

    .f-counter-desktop>.container .fModuleTitle {
        width: 100%;
    }

    .f-counter-desktop>.container .fModuleContent {
        width: 100%;
    }
}


/*sm*/

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
}


/*xs*/

@media (max-width: 575px) {
    .f-banner .fGalleryText .item .address-and-icon .icon {
        font-size: 1rem;
    }

    .f-all-logos .fGalleryItem {
        padding: 7px;
        width: 50% !important;
    }

    .f-all-logos .fGalleryItem .ItemfinnerGallery a.fGalleryImage {
        width: 100%;
        height: 100px;
        border: 1px solid #dedede;
    }

    .f-countdown>.container div.f-module-title h3 {
        font-size: 1.4rem;
    }

    .f-countdown>.container .f-module-content .col-count h4 {
        font-size: 1.7rem;
    }

    footer .fModuleTitle h3 {
        margin-top: 1rem;
    }

    .fPageTitle {
        background-position: right center;
    }
}