@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway: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: #1F3667;
    --brand-color-theme-2: #809EB3;
    --brand-color-theme-3: #1F3667;
    --brand-color-theme-4: #23376E;
    --brand-color-theme-5: #A8BFE2;
    --brand-color-theme-6: #114D85;
    --brand-font-family-heading: "Montserrat", sans-serif;
    --brand-font-family-body: "Montserrat", sans-serif;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 1100px;
    max-width: 100%;
}

.bg-radial {
    background-image: radial-gradient( circle farthest-corner at 10% 20%, var(--brand-color-theme-1) 15.6%, var(--brand-color-theme-6) 51.9%, var(--brand-color-theme-6) 81%);
    /* background-image: radial-gradient( circle at 50% 50%, var(--brand-color-theme-1) 0%, var(--brand-color-theme-2) 32.48291015625%, var(--brand-color-theme-1) 62.78076171875%, var(--brand-color-theme-1) 100%); */
}

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);
}

.brand-color-theme-1-bg {
    background-color: var(--brand-color-theme-1);
}

.brand-color-theme-2-bg {
    background-color: var(--brand-color-theme-2);
}

.brand-color-theme-3-bg {
    background-color: var(--brand-color-theme-3);
}

.brand-color-theme-4-bg {
    background-color: var(--brand-color-theme-4);
}

.brand-color-theme-5-bg {
    background-color: var(--brand-color-theme-5);
}

.brand-color-theme-1-text {
    color: var(--brand-color-theme-1);
}

.brand-color-theme-2-text {
    color: var(--brand-color-theme-2);
}

.brand-color-theme-3-text {
    color: var(--brand-color-theme-3);
}

.brand-color-theme-4-text {
    color: var(--brand-color-theme-4);
}

.brand-color-theme-5-text {
    color: var(--brand-color-theme-5);
}

p,
ul,
ul li {
    font-size: 1.063rem;
}

a,
span {
    font-size: 1.063rem;
}

a {
    font-size: 1.063rem;
    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: 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 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fRegion {
    display: inline-block;
    width: 100%;
}

.fPageTitle {
    position: relative;
    background-color: var(--brand-color-theme-1);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    h1 {
        font-size: 1.75rem;
        span.heading-small {
            font-size: 1rem;
            display: block;
            font-weight: 400;
        }
    }
}

body.title-off .fPageTitle {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
    text-align: start!important;
    label {
        margin: 0 0 .6rem 0;
    }
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle {
    display: block;
}

.f-photo-with-custom-text .fModuleTitle {
    display: none;
}

.fModuleTitle h3 {
    color: var(--brand-color-theme-3);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: .4px;
    span {
        font-size: 1.1rem;
        display: block;
        margin-top: .2rem;
        color: var(--brand-color-theme-1);
        font-weight: 500;
        letter-spacing: normal;
    }
    label {
        background-color: var(--brand-color-theme-1);
        color: white;
        font-size: 1rem;
        letter-spacing: .4px;
        display: block;
        width: fit-content;
        padding: 4px 10px;
        border-radius: 3px;
        margin-bottom: .6rem;
    }
}

.f-speakers .fModuleTitle h3 {
    margin-top: 0;
    color: var(--brand-color-theme-1);
}

.f-speakers .fModuleTitle h3,
footer .fModuleTitle h3 {
    font-size: 1.45rem;
}

.title-white .fModuleTitle h3 {
    color: white;
    span {
        color: white;
    }
    label {
        background-color: white;
        color: var(--brand-color-theme-1);
    }
}

.title-label-white .fModuleTitle h3 {
    label {
        background-color: white;
        color: var(--brand-color-theme-1);
    }
}

.title-dark .fModuleTitle h3 {
    color: #000;
    span {
        color: #000;
    }
}

.title-center .fModuleTitle h3 {
    text-align: center !important;
    label {
        margin: 0 auto .6rem auto;
    }
}

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, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
}

@media (min-width: 576px) {
    .fModuleEnd .fModuleTitle {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .fModuleEnd .fModuleTitle {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .fModuleEnd .fModuleTitle {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .fModuleEnd .fModuleTitle {
        width: 1140px;
    }
}

@media (min-width: 1400px) {
    .fModuleEnd .fModuleTitle {
        width: 1320px;
    }
}

.collapse.show {
    display: block !important;
}

.collapse.in {
    display: block !important;
}

.navbar-header .navbar-toggler {
    display: none;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 1rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle .icon-bar {
    position: absolute;
    right: 0;
    height: 3px;
    width: 26px;
    background: #1173ba;
}

.navbar-toggle .icon-bar:nth-child(3) {
    opacity: 0;
}

.navbar-toggle .icon-bar:nth-child(2) {
    transform: rotate(-45deg);
    margin-bottom: 4px;
}

.navbar-toggle .icon-bar:nth-child(1) {
    transform: rotate(45deg);
}

.navbar-toggle.collapsed .icon-bar:nth-child(1),
.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    transform: none;
    /* margin: 0;
margin: 0; */
}

.navbar-toggle.collapsed .icon-bar:nth-child(1) {
    margin-top: -7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    margin-top: 7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1;
}

.navbar-toggle-container .navbar-toggle {
    z-index: 9999;
}


/* Header */

header .fModule.fLogo {
    padding-left: 0;
    padding-right: 0;
}

header .fModule {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.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-6);
    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-6);
}


/****--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.3);
    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: 0.5rem 0 0 0;
    font-size: 0.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: 0.5em 0 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: 0.2rem;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.2rem 0.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 {
    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;
    height: 100%;
    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 ***/


/* gradient background starts here */

.f-gradient-banner {
    background-color: var(--brand-color-theme-2);
    background-image: url("https://storage.unitedwebnetwork.com/files/1316/30ae75477a423c064b2fa03303e92bc7.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* gradient background ends here */


/* umsc top section starts here */

.f-umsc-section-top .f-media {
    border-radius: 1.5rem;
}

.f-umsc-section-top .f-media .f-media-image img {
    height: 100%;
    object-fit: cover;
}


/* umsc top section ends here */


/* why should attend starts here */

.f-should-attend .fGalleryItem {
    padding: 12px;
}

.f-should-attend .fGalleryItem .ItemfinnerGallery {
    background-color: #f8f9fa;
    height: 100%;
    text-align: center;
    padding: 2rem;
    border-radius: 1.3rem;
    transition: all .3s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    * {
        transition: all .3s;
    }
    p {
        margin-bottom: 0;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--brand-color-theme-1);
    }
    &:hover {
        color: white;
        background-color: var(--brand-color-theme-3);
        scale: 1.03;
        p {
            color: white;
        }
    }
}

.f-should-attend .fGalleryItem:nth-child(2) .ItemfinnerGallery {
    background-color: var(--brand-color-theme-4);
    scale: 1.03;
    * {
        color: white;
    }
    p {
        color: white;
    }
    img {
        filter: invert();
    }
}

.f-should-attend .fGalleryItem .ItemfinnerGallery img {
    width: 64px;
}

.f-should-attend .fGalleryItem .ItemfinnerGallery:hover img {
    filter: invert();
}


/* why should attend ends here */


/* about main starts here */

.f-about-main {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}


/* about main ends here */


/* speakers starts here */

.f-speakers .f-list-item {
    padding: 12px;
}

.f-speakers .owl-item .f-list-item {
    padding: 6px;
}

.f-speakers .f-list-item .f-list-item-container {
    padding-bottom: .7rem;
    height: 100%;
    text-align: center;
}

.f-speakers .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    width: 150px;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0.00px 0.00px 14px 0px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    display: inline-block;
    border-radius: 500px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.f-speakers .f-list-item .f-list-item-container .f-list-item-title,
.f-speakers .f-list-item .f-list-item-container .f-list-item-subtitle {
    padding: 0px 10px;
}

.f-speakers .f-list-item .f-list-item-container .f-list-item-teaser-image {
    overflow: hidden;
    margin-bottom: .7rem;
}

.f-speakers .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
    max-height: 250px;
}

.f-speakers .f-list-item .f-list-item-container .f-list-item-title,
.f-speakers .f-list-item .f-list-item-container .f-list-item-title a,
.f-speakers .f-list-item .f-list-item-container .f-list-item-title a span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.f-speakers .f-list-item .f-list-item-container .f-list-item-subtitle,
.f-speakers .f-list-item .f-list-item-container .f-list-item-subtitle a,
.f-speakers .f-list-item .f-list-item-container .f-list-item-teaser-content,
.f-speakers .f-list-item .f-list-item-container .f-list-item-teaser-content a {
    font-size: 0.9rem;
    color: white;
    font-weight: 300;
    span {
        font-size: .95rem;
    }
}


/* speakers ends here */


/* heighlights starts here */

.f-highlights .f-media-image img {
    max-height: 350px;
    object-fit: cover;
}


/* venue starts here */

.f-venue {
    /* background-image: url("https://storage.unitedwebnetwork.com/files/1316/25c9d1ce7f52b16006db3c2d441e0163.png"); */
    background-image: url("https://storage.unitedwebnetwork.com/files/1316/25c9d1ce7f52b16006db3c2d441e0163.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-attachment: fixed;
}


/* .f-venue::after {
    content: "";
    width: 52%;
    background-color: white;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
} */

.f-venue .fModuleContent,
.f-venue .fModuleTitle {
    position: relative;
    z-index: 9;
}

.f-venue .col-12 {
    padding-left: 5%;
    text-align: justify;
}


/* venue ends here */


/* footer starts here */

footer {
    border-top: 4px solid var(--brand-color-theme-1);
    margin-top: -7px;
    background-color: var(--brand-color-theme-4);
}

.f-social-media {
    position: fixed;
    top: 50%;
    right: 0px;
    width: fit-content;
    padding: 0;
    z-index: 99999999;
    transform: translateY(-50%);
    a {
        display: block;
        width: 35px;
        height: 35px;
        margin-bottom: .2rem;
        margin-top: .2rem;
        font-size: 1.1rem;
        align-content: center;
        padding-top: 3px;
        text-align: center;
        background-color: var(--brand-color-theme-1);
        border: 1px solid white;
        z-index: 999999999999;
        position: relative;
        color: white;
    }
    a:nth-child(2) {
        background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    }
    a:nth-child(3) {
        background-color: #000;
    }
    a:nth-child(4) {
        background-color: var(--brand-color-theme-6);
    }
}


/* footer ends here */


/* running ticker starts here */

.ticker-tape-container {
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.ticker-tape {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.ticker-tape span {
    font-size: 1.3rem;
    color: var(--brand-color-theme-3);
    position: relative;
}

.ticker-tape span::after {
    content: "|";
    position: relative;
    display: inline-block;
    margin-left: 1rem;
    margin-right: 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-tape {
    animation-name: marquee;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-direction: normal;
}

.ticker-tape-container img {
    width: 40px;
    margin-right: 5px;
    position: relative;
    bottom: 4px;
    border: 1px solid #dedede;
}


/* running ticker ends here */


/* about us starts here */

.f-about-us-image .bx-wrapper .bx-viewport {
    background-color: transparent!important;
}

.f-about-us-image .fGalleryImage img {
    height: 650px;
    object-fit: cover;
}


/* about us ends here */


/* why attend starts here */

.f-why-attend-section .fGalleryItem {
    padding: 12px;
}

.f-why-attend-section .ItemfinnerGallery {
    border: 1px solid #dedede;
    text-align: center;
    padding: 2rem;
    min-height: 244px;
    position: relative;
    transition: all .5s;
    &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background-color: #f7f7f7;
        width: 100%;
        height: 100%;
        scale: .95;
        transition: all .5s;
    }
    &::after {
        content: "";
        width: 100%;
        height: 0%;
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: var(--brand-color-theme-3);
        z-index: 1;
        transition: all .5s;
    }
    * {
        position: relative;
        z-index: 99;
        transition: all .5s;
    }
}

.f-why-attend-section .ItemfinnerGallery:hover::before {
    scale: 0;
}

.f-why-attend-section .ItemfinnerGallery:hover::after {
    height: 100%;
}

.f-why-attend-section .ItemfinnerGallery img {
    width: 74px;
    display: inline-block;
}

.f-why-attend-section .ItemfinnerGallery:hover img {
    filter: invert();
}

.f-why-attend-section .ItemfinnerGallery p {
    font-size: 1.3rem;
    color: var(--brand-color-theme-3);
    font-weight: 600;
}

.f-why-attend-section .ItemfinnerGallery:hover p {
    color: white;
}


/* why attend ends here */


/* programme starts here */

.f-programme-table table.table td {
    padding: 1.2rem;
}

.f-programme-table table.table td h6.session-title {
    font-size: 1.15rem;
    font-weight: 600;
}

.f-programme-table table.table td.session-time-table {
    font-size: 1.15rem;
    font-weight: 600;
}

.f-programme-table table.table td div.session-speakers .speakers-name {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
}

.f-programme-table table.table td div.session-speakers .speakers-role {
    font-size: 1rem;
    font-style: italic;
}


/* programme ends here */


/* countdown starts here */

.f-countdwon-timer .container>div.row {
    align-items: center;
    /* border: 1px solid #dedede7e;
    border-top: 0;
    margin: 0; */
}

.f-countdwon-timer .container>.row>div {
    width: fit-content;
}

.f-countdwon-timer .container div.row {
    .col-count {
        width: 100px;
        text-align: center;
        h4 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 0;
        }
        p {
            margin-top: 7px;
        }
    }
}

.f-countdwon-timer .fButton {
    background-color: var(--brand-color-theme-2);
}

.f-countdown {
    text-align: center;
}

.f-countdown .row {
    justify-content: center;
}

.f-countdown .row .col-count {
    width: fit-content;
    padding: 12px;
    position: relative;
}

.f-countdown .row .col-count h4 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.282);
    text-align: center;
    align-content: center;
    margin-bottom: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.f-countdown .row .col-count h4::after {
    content: ":";
    position: absolute;
    right: -4.5px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 1.75rem;
}

.f-countdown .row .col-count:last-child h4::after {
    content: unset;
}

.f-countdown .row .col-count p {
    padding-left: 2px;
}


/* countdown ends here */


/***************************************************************************
            RESPONSIVE MEDIA QUERY
****************************************************************************/


/*xl*/

@media (min-width: 991.9px) {
    header {
        position: sticky;
        top: 0;
        z-index: 99999999999999999;
        background-color: var(--brand-color-theme-1);
    }
    header.active {
        background-color: var(--brand-color-theme-1);
        transition: all 0.4s ease 0s;
        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: center;
    }
    .main-menu .fMenu {
        display: flex;
        justify-content: center;
        font-family: var(--brand-font-family-heading);
        align-items: center;
    }
    .main-menu .fMenu>li {
        padding: 7px 12px;
        position: relative;
    }
    .main-menu .fMenu>li.has-submenu {
        padding-right: 25px;
    }
    .main-menu .fMenu>li>a {
        color: white;
        position: relative;
        font-weight: 500;
        font-size: 1rem;
    }
    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 4rem;
        left: 22px;
        background-color: white;
        visibility: hidden;
        min-width: 230px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        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.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: 0.9rem;
    }
    .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: 1rem;
        line-height: 1.2em;
        color: var(--brand-color-theme-2);
        padding: 0.7rem 1rem;
        display: block;
        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;
    }
}

@media (max-width: 1399.9px) {
    .f-about-us-image .fGalleryImage img {
        height: 650px;
    }
}


/*lg*/

@media (max-width: 1199px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 991.9px) {
    html {
        font-size: 15px;
    }
    .row.w-100 {
        --bs-gutter-x: 0;
    }
    .fHeader .navbar-header {
        margin: 0;
    }
    .fHeader .navbar-header .row.row-0 {
        margin: 0 15px;
    }
    .navbar-header .navbar-toggler {
        display: block;
    }
    .navbar-collapse.collapse.show {
        display: block;
    }
    .region-header,
    .region-headertop {
        display: inline-block;
        width: 100%;
    }
    .region-header .fModule,
    .region-headertop .fModule {
        display: block;
    }
    .row.w-100 {
        --bs-gutter-x: 0;
    }
    /*** Programme ***/
    .session-container th {
        font-size: 0px;
    }
    .session-container th select {
        font-size: 1rem;
    }
    tr.session-row {
        border: 1px solid var(--brand-color-theme-1);
        margin-top: 1.5rem;
    }
    tr.session-row-hidden {
        border: 0 none;
        margin-top: 0;
    }
    .session-time-zone {
        display: inline-block;
        padding-left: 0.5rem;
    }
    .session-time-zone::before,
    .session-time-zone::after {
        position: relative;
        content: " ";
        display: inline;
    }
    .session-time-zone::before {
        content: "(";
    }
    .session-time-zone::after {
        content: ")";
    }
    tr.session-row,
    tr.session-row td,
    td.session-time {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    tr.session-row td {
        border: 0px none;
    }
    th.session-time {
        width: 100%;
        max-width: 100%;
        display: block;
    }
    .session-time .session-time-date.is-different {
        margin-left: 0;
    }
    .session-container tr:hover td.session-time,
    table.fTable tr:nth-child(odd) td.session-time,
    table.fTable tr:nth-child(even) td.session-time {
        display: block;
        text-align: left;
        background: var(--brand-color-theme-1);
        color: #fff;
    }
    .session-container th:last-child {
        display: none;
    }
    .session-container {
        border: 0;
    }
    body .session-container th {
        display: none;
    }
    .f-photo-with-custom-text .fModuleContent .fModuleTitle {
        display: none;
    }
    .f-photo-with-custom-text .fModuleTitle {
        display: block;
    }
    .navbar-toggle .icon-bar {
        background-color: var(--brand-color-theme-3);
    }
    .fHeader {
        position: sticky;
        top: 0;
        z-index: 99999;
        background-color: white;
    }
    .fHeader.active {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .main-menu {
        position: static!important;
    }
    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 3em;
        height: fit-content;
        width: 100%;
        background-color: var(--brand-color-theme-3);
        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-3);
    }
    .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-3);
        display: block;
    }
    .f-venue {
        background-size: cover;
        background-position: right center;
    }
    .f-venue::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        background-color: #ffffffb8;
    }
    .f-venue .fModuleContent,
    .f-venue .fModuleTitle {
        position: relative;
        z-index: 999;
    }
    .f-programme-table table.table tr {
        display: flex;
        flex-wrap: wrap;
        border: 1px solid #dedede;
        margin-bottom: 1rem;
    }
    .f-programme-table table.table tr td {
        display: block;
        width: 100%;
        border: 0;
    }
    .f-programme-table table.table tr td.session-time-table {
        border-bottom: 1px solid #dedede;
    }
}

@media(max-width:850.9px) {
    .f-countdwon-timer .container>div.row {
        justify-content: center!important;
        padding-bottom: 1rem;
        padding-top: 1rem;
        text-align: center;
        border: 0;
    }
    .f-countdwon-timer .container>div.row>div {
        width: 100%;
    }
    .f-countdwon-timer .container>div.row .f-module-content .row {
        justify-content: center;
    }
    .f-countdwon-timer .container .fModuleTitle h3 {
        margin-top: 0;
        margin-bottom: 0px;
    }
    .f-countdwon-timer .container .col-count h4 {
        font-size: 1.75rem!important;
        margin-top: 10px;
    }
}


/*sm*/

@media (max-width: 767.9px) {}


/*xs*/

@media (max-width: 575px) {
    .f-speakers .f-list-item .f-list-item-container .f-list-item-teaser-image img {
        max-height: 350px;
    }
    .ticker-tape span {
        font-size: 1rem;
    }
    .ticker-tape-container img {
        width: 30px;
    }
    .f-about-us-image .fGalleryImage img {
        height: 400px;
    }
    .fModuleTitle h3 {
        font-size: 1.5rem;
    }
    .f-speakers .fModuleTitle h3,
    footer .fModuleTitle h3 {
        font-size: 1.25rem;
    }
    .f-umsc-section-top {
        padding-top: 1.5rem!important;
    }
    .f-countdwon-timer .container {
        padding: 0;
    }
    .f-countdwon-timer .container div.row {
        padding-bottom: 0;
        .col-count {
            width: 80px;
            h4 {
                font-size: 1.25rem!important;
            }
            p {
                font-size: .9rem;
            }
        }
    }
    .f-countdown .row .col-count h4 {
        margin-top: 0;
    }
    .f-countdown .row .col-count:nth-child(2) h4::after {
        content: unset;
    }
    .f-countdown .row .col-count p {
        margin-bottom: 0;
    }
}