@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --brand-color-theme-yellow: #ffc764;
    --brand-color-theme-purple-2: #7700ff;
    --brand-color-theme-orange-2: #ff4f15;
    --brand-color-theme-yellow-2: #ffbb30;
    --brand-color-theme-purple: #8631ff;
    --brand-color-theme-orange: #ff6b43;
    /* --brand-font-family-body: "Gothic A1", sans-serif; */
    --brand-font-family-body: "Poppins", sans-serif;
    --brand-font-family-body-poppins: "Poppins", sans-serif;
}

* {
    -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); */
    font-family: var(--brand-font-family-body);
}

.brand-color-theme-yellow-text {
    color: var(--brand-color-theme-yellow) !important;
}

.brand-color-theme-purple-2-text {
    color: var(--brand-color-theme-purple-2) !important;
}

.brand-color-theme-orange-2-text {
    color: var(--brand-color-theme-orange-2) !important;
}

.brand-color-theme-yellow-2-text {
    color: var(--brand-color-theme-yellow-2) !important;
}

.brand-color-theme-blue-text {
    color: var(--brand-color-theme-purple) !important;
}

.brand-color-theme-yellow-bg {
    background-color: var(--brand-color-theme-yellow) !important;
}

.brand-color-theme-purple-2-bg {
    background-color: var(--brand-color-theme-purple-2) !important;
}

.brand-color-theme-orange-2-bg {
    background-color: var(--brand-color-theme-orange-2) !important;
}

.brand-color-theme-yellow-2-bg {
    background-color: var(--brand-color-theme-yellow-2) !important;
}

.brand-color-theme-blue-bg {
    background-color: var(--brand-color-theme-purple) !important;
}

p {}

a,
span {}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
}

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: rgb(122, 0, 0);
    position: fixed;
    top: 0rem;
    width: 100% !important;
    left: 0;
    color: white;
    z-index: 9999999;
}

#f-messages .item {
    background-color: rgb(122, 0, 0);
}

@-webkit-keyframes animate__backOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

@keyframes animate__backOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.animate__backOutUp {
    -webkit-animation-name: animate__backOutUp;
    animation-name: animate__backOutUp;
}

#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-orange);
    color: white;
    cursor: pointer;
    width: 48px;
    outline: none;
    border-width: 1px;
    border-style: solid;
    border-color: var(--brand-color-theme-orange);
    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-orange);
}


/*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;
    color: #fff;
    text-align: center;
    padding: 1rem 0 1rem;
    background-size: cover;
    min-height: 200px;
    height: 100%;
    margin-bottom: 2rem;
    background-color: var(--brand-color-theme-yellow);
    display: grid;
    place-items: center;
    /*     background-image: url("https://storage.unitedwebnetwork.com/files/1291/48825c056dd3d44d89e18d0a7091b694.webp"); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body.title-off .fPageTitle {
    display: none;
}

.fModuleTitle h3 {
    color: var(--brand-color-theme-purple);
    font-weight: 600;
    font-size: 2rem;

    span {
        display: block;
        font-size: 1.2rem;
        color: #333;
        margin-top: .3rem;
        margin-bottom: .3rem;
    }
}

.f-photo-with-custom-text .fModuleTitle {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle {
    display: block;
}

.f-photo-with-custom-text.title-center .fModuleContent .fModuleTitle h3 {
    text-align: start;
}

.title-center .fModuleTitle h3 {
    text-align: center;
}

.title-white .fModuleTitle h3 {
    color: white;

    span {
        color: white;
    }
}

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: var(--brand-color-theme-purple);
}

.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-orange-2);
    display: inline-block;
    padding: 10px 2rem;
    color: white;
    font-weight: 500;
}


/****--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 fieldset {
    border-top: 0;
}

.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-yellow);
}

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;
}

.listing-header-item-currency {
    width: fit-content;
    display: flex;
    border: 1px solid var(--brand-color-theme-purple-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-purple-2);
        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;
    right: 10px;
    top: 19%;
    transform: translate(0, -50%);
    animation: blinking 2s infinite;
}

.iconset .fMenu ul {
    margin-left: 20px;
    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;
    }
}


/*----------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;
    margin-bottom: 2rem;
}

body.view-account-recover .fForm .form-item-type-fieldset {
    border: 0;
    padding: 0;
}

.fForm .error {
    margin: .5rem 0 0 0;
    font-size: .8rem;
}

.buttons {
    padding-left: 12px !important;
}

body.view-login .fForm .buttons,
body.view-account-recover .fForm .buttons {
    padding-left: 0 !important;
}


/* login page ends here */


/* Programme Table */

tr.session-row-hidden {
    display: none !important;
}

.session-heading {
    text-align: center;
    margin-top: 1.5rem;
    color: #4d4f53;
    font-weight: bold;
    line-height: 1.3;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-color-theme-purple);
}

.session-container {
    border-collapse: separate;
    border-spacing: 0 1rem;
}

body .session-container th {
    background: var(--brand-color-theme-purple);
    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-purple);
}

.session-time .session-time-start,
.session-time .session-time-end {
    display: inline-block;
    opacity: 1;
}

.session-time .session-time-start:after {
    display: inline-block;
    content: " - ";
    padding-left: 5px;
}

.session-time .session-time-zone {
    font-size: 0.9rem;
    color: #999;
}

.session-time .session-time-date {
    display: none;
}

.session-time .session-time-date.is-different {
    color: #fff;
    display: inline-block;
    background: #aaa;
    border-radius: 2rem;
    font-size: 0.8rem;
    padding: 0.25rem 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.session-container ul li {
    margin: .5em 0 .5em 20px !important;
    list-style: square;
}

.session-sub {
    padding-left: 0;
    list-style: square;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.session-sub-title {
    font-weight: 600;
}

.session-sub .session-people {
    padding-top: 0;
    margin-top: 0;
}

.session-title.session-sub-title {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.75;
    display: inline;
}

.session-title>a {
    text-decoration: underline;
}

.session-venue {
    width: fit-content;
    background: var(--brand-color-theme-purple);
    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-purple);
}

.session-people-role {
    display: inline-block;
    color: var(--brand-color-theme-purple-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-purple);
    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-orange-2);
    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-purple-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%;
}


/* modifying program table */

.f-day-3-container td.session-time,
.f-day-3-container th.session-time {
    display: none !important;
}

.f-day-3-container th,
.f-day-4-container th {
    text-align: center;
}

#session-sub-item-39601 .session-time-inline {
    display: none;
}

.f-day-3-container .session-container {
    background-color: white;
}


/*** 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-purple-2);
    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 */

.fheaderToptwo {
    background-color: var(--brand-color-theme-yellow);
}

.fheaderToptwo .fRegion>.row {
    margin: 0;
    justify-content: space-between;
}

.fheaderToptwo .fRegion>.row .f-email {
    width: fit-content;
}

.fheaderToptwo .fRegion>.row .f-email a {
    color: white;
    display: inline-block;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu {
    width: fit-content;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu {
    display: flex;
    justify-content: end;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li {
    padding: 8px 5px;
    align-content: center;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li:last-child {
    padding-right: 0;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.social a {
    width: 30px;
    height: 30px;
    display: inline-block;
    align-content: center;
    text-align: center;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li a {
    color: white;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.dash a {
    position: relative;
    padding: 0 5px;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.dash a i {
    display: inline-block;
    margin-right: 5px;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.dash a::after {
    content: "|";
    color: white;
    position: relative;
    margin-left: 12px;
    margin-right: 0;
}

.f-logo-header .ItemfinnerGallery img {
    width: 200px;
}


/* .f-slide-menu .navbar-toggle.collapsed .icon-bar:nth-child(2) {
    margin-top: 5px;
} */

.f-slide-menu nav {
    position: fixed;
    top: -4vh;
    width: 250px;
    right: -400px;
    height: 105vh !important;
    transition: all .4s;
    visibility: hidden !important;
    z-index: 999;
    padding-top: 5rem;
    display: block !important;
    background-color: var(--brand-color-theme-purple);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.f-slide-menu .collapse,
.f-slide-menu .collapse.show {
    display: block !important;
    height: 105vh !important;
    right: -1.4rem;
}

.f-slide-menu nav.show {
    visibility: visible !important;
    transition: all .4s;
}

.f-slide-menu {
    width: fit-content !important;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.f-slide-menu nav .fMenu {
    display: block;
}

.f-slide-menu nav .fMenu>li>a {
    border-bottom: 1px solid #dededea4;
    color: white;
    display: block;
    padding: .5rem 1rem;
    position: relative;
}

.f-slide-menu nav .fMenu>li.has-submenu>a::after {
    content: "\f107";
    font-family: "FontAwesome";
    color: white;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.f-slide-menu nav .fMenu>li:last-child>a {
    border-bottom: 0;
}

.f-slide-menu nav .fMenu>li>ul {
    margin: 0;
    padding: 12px 12px 12px 12px;
}

.f-slide-menu nav .fMenu>li>ul>li>a {
    background-color: white;
    display: block;
    border-bottom: 1px solid #dededea4;
    color: var(--brand-color-theme-purple);
    display: block;
    padding: .5rem 1rem;
    transition: all .5s;
    border-bottom: 1px solid #dedede;

    &:hover {
        background-color: var(--brand-color-theme-orange-2);
        color: white;
    }
}

.f-slide-menu nav .fMenu>li>ul>li:last-child>a {
    border-bottom: 0;
}

.fHeader {
    position: sticky;
    top: 0;
    z-index: 999999999;
}

.fHeader>.navbar-header>.container>.region-header>.row {
    margin: 0 auto;
}


/* header ends here */


/* banner starts here */

.f-banner .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 2rem;
    z-index: 99;
    width: 100%;
    left: 0;
}

.f-banner .bx-wrapper {
    margin: 0;
}

.f-banner .bx-wrapper .bx-pager.bx-default-pager a {
    background-color: var(--brand-color-theme-orange-2);
}

.f-banner .bx-wrapper .bx-pager.bx-default-pager a.active,
.f-banner .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background-color: var(--brand-color-theme-purple);
}

.f-banner .ItemfinnerGallery .fGalleryImage img {
    object-fit: cover;
    object-position: left center;
}

.f-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
}

.f-banner .fGalleryText>.container {
    padding: 0 12px;
}

.f-banner .fGalleryText h3 {
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;

    /*     text-shadow: 0 0 2px #fff; */
    span {
        display: block;
    }

    span.sub-span {
        font-size: 1.6rem;
        padding-left: 5px;
        color: white;
    }
}

.f-banner .fGalleryText h4 {
    margin-top: .7rem;
    padding-left: 4px;
    font-weight: 600;
    color: var(--brand-color-theme-yellow-2);
    font-size: 1.7rem;
}

.f-banner .fGalleryText h4 span {
    display: block;
}

.f-banner .fGalleryText div.date,
.f-banner .fGalleryText div.venue {
    width: fit-content;
    margin-bottom: .5rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding-left: 5px;
    color: #fff;
}

.f-banner .fGalleryText div.date {
    padding-top: .5rem;
    border-top: 1px solid var(--brand-color-theme-yellow);
    padding-left: 0;
    margin-left: 5px;
}


/* banner ends here */


/* important dates starts here */

.f-important-dates {
    background-color: var(--brand-color-theme-purple-2);
    padding-top: 3rem !important;
    padding-bottom: 4rem !important;
}

.f-important-dates .fModuleContent .row .col-12 {
    padding: 12px;
}

.f-important-dates .dates-box {
    color: white;
    padding: 14px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    height: 100%;
    align-content: center;
    background-color: var(--brand-color-theme-purple-2);
}

.f-important-dates .fModuleTitle h3 {
    margin: 0;
    font-size: 1.45rem;

    span {
        font-weight: normal;
    }
}


/* important dates ends here */


/* welcome message starts here */

.f-welcome-message-nav {
    padding-bottom: 0 !important;
}

.f-welcome-message-nav ul.nav-tabs-main>li {
    list-style: none;
    margin: 0;
    padding: 0 .8rem;
}

.f-welcome-message-nav ul.nav-tabs-main {
    margin: 0;
}

.f-welcome-message-nav ul.nav-tabs-main>li:first-child {
    padding-left: 0;
}

.f-welcome-message-nav ul.nav-tabs-main>li>a {
    background-color: white;
    display: block;
    padding: 1rem;
    border: 1px solid var(--brand-color-theme-purple);
    border-bottom: 4px solid var(--brand-color-theme-purple);
    margin-bottom: 1rem;
    position: relative;
    background-color: var(--brand-color-theme-purple);
    color: white;
    text-decoration: none;
}

.f-welcome-message-nav ul.nav-tabs-main>li>a::after {
    content: "";
    width: 20px;
    height: 10px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-color-theme-purple);
}

.f-welcome-message-nav ul.nav-tabs-main>li>a.inactive::after {
    content: unset;
}

.f-welcome-message-nav ul.nav-tabs-main>li>a.inactive {
    background-color: white;
    color: var(--brand-color-theme-orange-2);
    border-color: var(--brand-color-theme-orange-2);
    border-bottom: 4px solid var(--brand-color-theme-orange-2);
}

.f-welcome-message {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.f-welcome-message {
    background-image: url(https://storage.unitedwebnetwork.com/files/1284/5b5f0a99d7d96c76070281d235cb9d58.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-top: 1px solid var(--brand-color-theme-purple);
}

.f-welcome-message .f-media-text {
    text-align: justify;
}

.f-welcome-message .f-media-image .f-media-image-link {
    display: block;
    width: 250px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}


/* welcome message ends here */


/* about us starts here */

.f-about-section .f-media-image {
    padding-right: 4rem;
    position: relative;
    display: block;
}

.f-about-section .f-media-image img {
    height: 355px;
    object-fit: cover;
}

.f-countdown {
    width: auto;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: linear-gradient(60deg, var(--brand-color-theme-yellow) 50%, #ffbb30 42%, #ffbb30 100%);
    height: fit-content;
    border-radius: 0px 30px 0px 30px;
}

.f-countdown .fModuleTitle h3 {
    font-size: 1rem;
    text-align: center !important;
}

.f-countdown .fModuleContent .row {
    display: block;
    margin: 0;
}

.f-countdown .col-count {
    width: 100px;

    * {
        color: white;
        text-align: center;
    }
}

.f-countdown .col-count h4,
.f-countdown .col-count p {
    margin: 5px;
}

.f-countdown .col-count p {
    font-size: .9rem;
}

.f-welcome-about .div-video-text .text {}

.f-be-part .div-video-text .f-side-video {
    width: 350px;
    float: left;
    margin-right: 1rem;
}

.f-welcome-about .div-video-text .f-side-video {
    width: 350px;
    float: right;
    margin-left: 1rem;
}

.f-welcome-about .div-video-text .f-side-video video,
.f-be-part .div-video-text .f-side-video video {
    width: 100%;
}

.f-programme-highlights .fModuleContent .row>div {
    align-content: center;
}

.f-programme-highlights .fModuleContent .row>div img {
    width: 70px;
    max-width: 100%;
    margin: 1rem auto;
    display: block;
}

.f-programme-highlights .fModuleContent .row>div.col-12:nth-child(3)div.d-flex img {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.f-programme-highlights .fModuleContent ul {
    margin: 0;
    padding-left: 0;

    li {
        margin: 1rem 0;
        list-style: none;
    }
}


/* about us ends here */


/* partners starts here */

.f-partners-logo li.fGalleryItem {
    padding: 12px;
}

.f-partners-logo li.fGalleryItem .ItemfinnerGallery {
    height: 100%;
    border: 1px solid #dedede;
    padding: 10px;
    text-align: center;
}

.f-partners-logo .fGalleryImage img {
    height: 70px;
    max-width: 150px;
    object-fit: contain;
    display: inline-block;
}

.fGalleryContainer>h4 {
    text-align: center;
    color: var(--brand-color-theme-purple);
    font-weight: 600;
    font-size: 2rem;
}


/* partners ends here */


/* footer starts here */

footer {
    background-color: var(--brand-color-theme-yellow);
    padding-top: 1rem;
}

footer .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

footer .footer-menu ul li {
    width: fit-content;
}

footer .footer-menu ul li {
    padding: 7px;

    a {
        color: #000;
        position: relative;
    }

    a::after {
        content: "|";
        color: #000;
        position: relative;
        margin-right: 5px;
        margin-left: 5px;
    }
}

footer .footer-menu ul li:last-child {
    a::after {
        content: none;
    }
}

footer .fMenu {
    display: flex;
    flex-wrap: wrap;
}

footer#fFooter .fMenu li {
    width: fit-content;
    padding: 1rem 7px;
}

footer .fMenu li a {
    display: block;
    width: 40px;
    height: 40px;
    color: black;
    border: 2px dotted black;
    text-align: center;
    align-content: center;
    border-radius: 500px;
}


/* footer ends here */


/* speakers starts here */

.f-speaker-section .f-list {
    padding: 12px;
}

.f-speaker-section .f-list .f-list-item-container {
    height: 100%;
    text-align: center;
    position: relative;
}

.f-speaker-section .f-list .f-list-item-container .f-list-item-teaser-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    max-height: max-content;
    border-radius: 500px;
    display: inline-block;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 1rem;
    padding: 10px;

    img {
        object-fit: cover;
        border-radius: 500px;
        object-position: top center;
    }
}

.f-speaker-section.bg-white .f-list .f-list-item-container .f-list-item-teaser-image {
    border: 4px solid white;
}

.f-speaker-section .f-list .f-list-item-container .f-list-item-title {
    a {
        font-size: 1.2rem;
        color: #000;
        font-weight: 600;
        letter-spacing: .7px;
    }
}

.f-speaker-section .f-list .f-list-item-container .f-list-item-title a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.f-speaker-section .f-list .f-list-item-container .f-list-item-subtitle {
    a {
        color: var(--brand-color-theme-purple);
    }
}


/* speakers ends here */


/* abstract submission starts here */

.f-important-date .col-main-div h2 {
    font-weight: 800;
    font-family: var(--brand-heading-font);
    line-height: 140%;
}

.f-important-date .col-main-div h3 {
    margin-bottom: 0;
    font-weight: 800;
    color: var(--bs-blue);
    font-size: 1.5rem;
}

.f-important-date .col-main-div table.table {
    margin-top: 15px;
    margin-bottom: 15px;
    border-color: #8d8d8d;
}

.f-important-date .col-main-div ol ul,
.f-important-dates .col-main-div ul ul {
    padding-left: 0;
}

.f-important-date .feature-box {
    height: 100%;
    text-align: center;
    background-color: white;
    padding: 45px 10px 10px 10px;
    position: relative;
}

.f-important-date .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-orange-2);
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
}

.f-important-date .feature-box .fbox-icon img {
    height: 100%;
    width: 40px;
    object-fit: contain;
}

.f-important-date .feature-box:hover .fbox-icon img {
    filter: brightness(0) invert(1);
    border-radius: 500px;
}

.f-important-date .feature-box:hover .fbox-icon {
    background-color: var(--brand-color-theme-orange-2);
}

.f-important-date#fModule-51085 .row .col-12 {
    padding: 40px 15px 15px 15px;
}


/* abstract submission ends here */


/* video starts here */

.video iframe {
    width: 100%;
}


/* video ends here */


/* highlights starts here */

.f-highlights .fGalleryItem {
    padding-bottom: 24px;
}

.f-highlights .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    padding: 20px;
}

.f-highlights .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    aspect-ratio: 1/1;
    height: 250px;
    object-fit: cover;
}

.f-highlights .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--brand-color-theme-purple);
}

.f-highlights .fGalleryItem .ItemfinnerGallery .fGalleryText p {
    margin-top: 0;
}


/* highlights ends here */


/* getting around starts here */

.f-getting-around .fGalleryItem {
    padding: 12px;
}

.f-getting-around .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    background-color: white;
    padding: 10px;
    border: 1px solid #dedede;
    border-bottom: 4px solid var(--brand-color-theme-orange-2);

    .fGalleryImage img {
        width: 64px;
        height: 64px;
        border: 1px solid #dededec6;
    }
}

.f-getting-around .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
    font-size: 1.2rem;
    color: var(--brand-color-theme-purple);
    font-weight: 600;
    margin-bottom: .5rem;
}


/* getting around ends here */


/* useful information starts here */

.f-useful-information li.fGalleryItem {
    padding: 12px;

    .ItemfinnerGallery {
        height: 100%;
        display: flex;
        flex-wrap: wrap;
    }
}

.f-useful-information li.fGalleryItem .fGalleryImage {
    display: block;
    width: 15%;
}

.f-useful-information li.fGalleryItem .fGalleryImage img {
    width: 55px;
    max-width: 100%;
    border: 1px solid #dedede;
}

.f-useful-information li.fGalleryItem .fGalleryText {
    width: 85%;
}

.f-useful-information li.fGalleryItem .fGalleryText h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--brand-color-theme-orange-2);
}

.f-useful-information li.fGalleryItem .fGalleryText ul {
    margin-top: 0;
}

.f-useful-information li.fGalleryItem .fGalleryText ul li {
    list-style: square;
}


/* useful information ends here */


/* announcement starts here */

.f-announcement-slider {
    background-color: #ffc6646e;
    padding-top: 1rem !important;
}

.f-announcement-slider>.container {
    position: relative;
}

.f-announcement-slider>.container::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 90%;
    right: 8%;
    bottom: -2%;
    background-color: white;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 40px 20px;
}

.f-announcement-slider>.container .fModuleContent {
    position: relative;
    z-index: 99;
}

.f-announcement-slider>.container .fModuleContent>div.text-center {
    padding-left: 20%;
}

.f-announcement .f-list-item-container {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.f-announcement .f-list-item-container,
.f-announcement-slider .f-list-item-container {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    background-color: #efefef;
    justify-content: center;
}

.f-announcement-slider .f-list-item-container {
    background-color: transparent;
}

.f-announcement .f-list-item-container .f-list-item-teaser-image,
.f-announcement-slider .f-list-item-container .f-list-item-teaser-image {
    padding: 12px;
}

.f-announcement-slider .f-list-item-container .f-list-item-teaser-image img {
    border-radius: 20px;
}

.f-announcement .f-list-item-container .f-announcement-container-text,
.f-announcement-slider .f-list-item-container .f-announcement-container-text {
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
}

.f-announcement-slider .f-list-item-container .f-announcement-container-text {
    max-height: 400px;
    overflow: auto;
}

.f-announcement .f-list-item-container .f-announcement-container-text>div,
.f-announcement-slider .f-list-item-container .f-announcement-container-text>div {
    width: 100%;
}

.f-announcement .f-list-item-container .f-announcement-container-text>div.f-list-item-subtitle,
.f-announcement-slider .f-list-item-container .f-announcement-container-text>div.f-list-item-subtitle {
    order: -1;
    width: fit-content;
    background-color: var(--brand-color-theme-purple-2);
    color: white;
    font-weight: 500;
    padding: 5px 12px;
    font-weight: 700;
    margin-bottom: .8rem;
}

.f-announcement .f-list-item-container .f-announcement-container-text>div.f-list-item-title,
.f-announcement-slider .f-list-item-container .f-announcement-container-text>div.f-list-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-color-theme-orange-2);
}

.f-list-filter {
    text-align: center;
}

.f-list-filter>a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--brand-color-theme-orange-2);
    text-align: center;
    align-content: center;
    color: white;
}

.f-list-filter>a.selected {
    background-color: var(--brand-color-theme-purple-2);
    margin: .2rem;
}


/* announcement ends here */


/* subscribe form starts here */

.f-be-key-partner .fForm .form-item>label {
    display: none;
}

.f-be-key-partner .fForm input,
.f-be-key-partner .fForm select,
.f-be-key-partner .fForm textarea,
.f-be-key-partner .fForm .date {
    padding: 0.5rem 10px;
    width: 100%;
    border-radius: 5px;
}

.f-be-key-partner .fForm .buttons input {
    width: fit-content;
}

.f-be-key-partner-image .ItemfinnerGallery {
    text-align: center;
}

.f-be-key-partner-image .ItemfinnerGallery img {
    width: 450px;
    max-width: 100%;
}


/* subscribe form ends here */


/* programme starts here */


/* day - 1 */

.session-container tr:hover,
.session-container tr {
    background-color: #fff !important;
}

.session-container tr>td {
    background-color: white !important;
}

.session-item-container {
    border-radius: 10px;
}

#session-row-39592 {
    padding: 1rem;

    .session-item-container {
        background-color: #d7d7d7;
        padding: 10px;

        a {
            color: var(--brand-color-theme-purple-2) !important;
            text-decoration: underline;
        }
    }
}

#session-row-39593 {
    padding: 1rem;

    .session-item-container {
        background-color: #000;
        padding: 10px;
        color: white;

        a {
            text-decoration: underline;
        }
    }
}


/* day - 2 */

#fModule-51881 .session-row .session-details {
    background-color: #f8c75b !important;
    padding: 1rem;

    .session-item-container {
        background-color: white;
        padding: 10px;
        color: #000;
        height: 100%;

        a {
            color: var(--brand-color-theme-purple-2) !important;
            text-decoration: underline;
        }
    }
}

#session-item-39595 .session-time,
#session-item-39596 .session-time,
#session-item-39597 .session-time,
#session-item-39598 .session-time {
    border-bottom: 0;

    >div {
        visibility: hidden;
        border-top: 0;
    }
}


/* day - 3 */

#fModule-51882 .session-details {
    /* background-color: var(--brand-color-theme-purple-2)!important; */
    background-color: white;
    text-align: center;
}

#fModule-51882 .session-venue {
    background-color: #9a999c52 !important;
    color: #000 !important;
}

#fModule-51882 #session-row-39599 {
    /* background-color: #000!important; */
    padding: 1rem;
    /* color: white; */
    color: black
}

#fModule-51882 .session-time-inline {
    color: #000 !important;
}

#session-row-41072 .session-title,
#session-row-40954 .session-title,
#session-row-41076 .session-title {
    color: var(--brand-color-theme-orange) !important;
}

#session-row-39600 .session-intro {
    text-align: left;
}

#session-row-41073 .session-title,
#session-row-40955 .session-title,
#session-row-41077 .session-title {
    color: var(--brand-color-theme-yellow-2) !important;
}

#session-sub-item-39601 .session-title {
    font-weight: bold !important;
    text-align: center !important;
}

#session-sub-item-39601 .session-people-item {
    justify-content: left;
}

#session-sub-item-39601 .session-people-name {
    color: #000 !important;
}

#session-row-39662 .session-intro {
    text-align: left !important;
}

#session-row-41075,
#session-row-40952 {
    background-color: #9a999c52 !important;
}

#fModule-51882 .session-details .session-title {
    color: var(--brand-color-theme-purple);

    a {
        color: white;
        font-size: 1.1rem;
        text-align: center;
        display: block;
    }
}

#fModule-51882 .session-details .session-title.session-sub-title {
    color: #000;
    font-weight: bold;
}

#fModule-51882 .session-details .session-title.session-sub-title::before {
    color: #000;
    content: ".";
    margin-right: 0.5em;
    display: inline-block;
    font-size: 1.2em !important;
    font-weight: bolder !important;
}

#fModule-51882 .session-details .session-sub {
    padding: 0;
}

#fModule-51882 .session-details .session-sub li {
    margin: 5px 0 !important;
    list-style-type: none;
    text-align: left !important;
    background-color: white;
    padding: 10px;
}

#fModule-51882 .session-details .session-sub li .session-sub-title span {
    display: block;
    font-weight: normal;
    font-size: .9rem;
}

#fModule-51882 .session-details#session-row-39662 .session-sub {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

#fModule-51882 .session-details#session-row-39662 .session-sub li {
    margin: 5px 0 0 0 !important;
}

#session-sub-item-39601 .session-people-name {
    font-weight: normal !important;
}

.session-details .session-sub li {
    text-align: left !important;
}

#session-row-41053 .session-title,
#session-row-41050 .session-title,
#session-row-39679 .session-title,
#session-row-41061 .session-title,
#session-row-39684 .session-title,
#session-row-41065 .session-title,
#session-row-41067 .session-title {
    color: var(--brand-color-theme-orange) !important;
}

#session-row-41054 .session-title,
#session-row-39690 .session-title,
#session-row-41051 .session-title,
#session-row-41062 .session-title,
#session-row-39693 .session-title,
#session-row-41066 .session-title,
#session-row-41068 .session-title {
    color: var(--brand-color-theme-yellow-2) !important;
}

.f-day-4-container .session-title {
    color: var(--brand-color-theme-purple) !important;
}

#session-row-41052,
#session-row-41053,
#session-row-41054 {
    text-align: center !important;
}


/* day - 4 */

#fModule-51883 .session-details {
    /* background-color: var(--brand-color-theme-orange-2)!important;*/
    background-color: white;
}

#fModule-51883 .session-details .session-title {
    color: white;

    a {
        color: white;
        font-size: 1.1rem;
        text-align: center;
        display: block;
    }
}

#fModule-51883 .session-details .session-title.session-sub-title {
    color: #212529;
}

#fModule-51883 .session-details .session-sub {
    padding: 0;
}

#fModule-51883 .session-details .session-sub li {
    margin: 5px 0 !important;
    list-style-type: none;
    text-align: center;
    background-color: white;
    padding: 10px;
}

#fModule-51883 .session-details .session-sub li .session-sub-title span {
    display: block;
    font-weight: normal;
    font-size: .9rem;
}

#fModule-51883 .session-details#session-row-39662 .session-sub {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

#fModule-51883 .session-details#session-row-39662 .session-sub li {
    margin: 5px 0 0 0 !important;
}

.f-day-4-container td.session-time,
.f-day-4-container th.session-time {
    display: none !important;
}

.f-day-4-container .session-time-inline {
    color: #000 !important;
}

.f-day-4-container .session-venue {
    background-color: #9a999c52 !important;
    color: #000 !important;
}


/* lunch , closing evening dinner */

#session-row-39699,
#session-row-39701,
#session-row-41063 {
    background-color: #9a999c52 !important;
}

#session-item-39673 .session-sub .session-time-inline {
    display: none !important;
}

#session-item-39673 .session-sub .session-sub-title {
    color: #000 !important;
}

#session-item-39673 .session-sub .session-sub-title::before {
    content: "•";
    /* Bullet character */
    color: #000;
    /* Bullet color */
    margin-right: 0.5em;
    /* Space between bullet and text */
    display: inline-block;
}


/* programme ends here */


/* be part starts here */

.f-bepart .fModuleTitle h3 {
    margin-bottom: 10px;
}

.f-bepart .row-cards-be-part {
    justify-content: center;
}

.f-bepart .row-cards-be-part .col-12 {
    padding: 12px;
}

.f-bepart .row-cards-be-part .col-12 .item {
    background-color: #fff;
    padding: 10px;
    border-radius: 30px;
}

.f-bepart .row-cards-be-part .col-12 .item .head {
    padding-bottom: .7rem;
    border-bottom: 2px dotted;
    margin-bottom: .5rem;
}

.f-bepart .row-cards-be-part .col-12 .item .head h4 {
    margin: 0;
    text-align: center;
    font-weight: 600;

    span {
        display: block;
        font-size: 1.05rem;
        color: #666;
        font-weight: normal;
        margin-top: .3rem;
    }
}

.f-bepart .row-cards-be-part .col-12:nth-child(odd) .item {
    border: 1.5px solid var(--brand-color-theme-purple-2);
}

.f-bepart .row-cards-be-part .col-12:nth-child(odd) .item .head {
    border-color: var(--brand-color-theme-purple-2);
}

.f-bepart .row-cards-be-part .col-12:nth-child(odd) .item .head h4 {
    color: var(--brand-color-theme-purple-2);
}

.f-bepart .row-cards-be-part .col-12:nth-child(even) .item {
    border: 1.5px solid var(--brand-color-theme-orange-2);
}

.f-bepart .row-cards-be-part .col-12:nth-child(even) .item .head {
    border-color: var(--brand-color-theme-orange);
}

.f-bepart .row-cards-be-part .col-12:nth-child(even) .item .head h4 {
    color: var(--brand-color-theme-orange);
}

.f-bepart .row-cards-be-part .col-12 .item ul {
    padding-left: 0;
}

.f-bepart .row-cards-be-part .col-12 .item .text span.tags {
    background-color: var(--brand-color-theme-purple-2);
    text-align: center;
    padding: 2px;
    font-size: 1.2rem;
    text-align: center;
    color: white;
    margin-top: 1rem;
    display: block;
}

.f-bepart .row-cards-be-part .col-12:nth-child(even) .item .text span.tags {
    background-color: var(--brand-color-theme-orange-2);
}


/* be part ends here */


/* yes taiwan starts here */

.f-yestaiwan {
    background-image: url("https://storage.unitedwebnetwork.com/files/1291/98f58d5999e1eeb7396509a48248a31a.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.f-yestaiwan .fModuleContent {
    background-color: #ffffffe0;
    width: 700px;
    padding: 1rem;
    border-radius: 0 50px 0 50px;
    max-width: 100%;
}


/* yes taiwan ends here */

/* speakers starts here */

.f-speakers-main-div {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.f-speakers-text>.f-module-content>div p>label {
    letter-spacing: 1px;
    font-weight: 500;
    padding: 3px 7px;
    color: white;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: var(--brand-color-theme-1);
    font-size: 0.9rem;
}

.f-speakers-text h3 {
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
}

.f-speakers-main-div>.container-fluid {
    padding: 0 4%;
}

.f-speakers-main-div>.container-fluid>.row {
    background-color: #e9ebf9;
    border-radius: 10px 10px 10px 10px;
    padding: 3rem 3rem 0 3rem;
}

.f-speakers-text .fButton-arrow {
    background-color: white;
}

/* speakers new starts here */

.f-speakers-new .f-list-item {
    padding: 12px;
}

.f-speakers-new .f-list-item .f-list-item-container {
    height: 100%;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #dedede;
    min-height: 300px;

    * {
        text-align: center;
    }
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-title a {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;

    span {
        font-size: unset
    }
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-title {
    padding: 12px 12px 0 12px;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-subtitle {
    padding: 0px 12px 12px 12px;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-subtitle a {
    color: var(--brand-color-theme-orange-2);
    font-weight: 600;
    font-size: 1rem;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-teaser-content a {
    font-size: .9rem;
    font-weight: 500;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-teaser-image {
    border-bottom: 1px solid #f2f2f2;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/1;
    display: inline-block;
    border-radius: 15px;
    border: 6px solid var(--brand-color-theme-yellow-2) !important;

}

.event-session-person-hasphoto .f-content-image img {
    width: 100%;
    height: 100%;
    object-position: top center;
}

.event-session-person-hasphoto .fPageTitle {
    background-color: white;
    padding: 2rem 0rem;
    margin-bottom: 0;
}

.event-session-person-hasphoto .fPageTitle>.container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    background-color: #f1f1f1;
    padding: 3rem 1rem;
    border-radius: 1rem;
}

.event-session-person-hasphoto .fPageTitle h1#heading {
    color: #666;
    font-size: 1rem;
    text-align: start;
}

.event-session-person-hasphoto .f-content-fields>.f-content-field {
    display: none;
}

.event-session-person-hasphoto .fPageTitle h1#heading span {
    display: block;
}

.event-session-person-hasphoto .fPageTitle h1#heading span.session-people-title-fullname {
    color: var(--brand-color-theme-1);
    font-size: 1.2rem;
    font-weight: 600;
}

.event-session-person-hasphoto .fPageTitle h1#heading span:nth-child(2) {
    margin-bottom: .2rem;
    color: var(--brand-color-theme-2);
    font-weight: 600;
}

.event-session-person-hasphoto .fPageTitle h1#heading span:nth-child(3) {
    color: var(--brand-color-theme-3);
    margin-bottom: 1rem;
    font-size: .8rem;
    text-transform: uppercase;
}

.event-session-person-hasphoto .fPageTitle h1#heading span:nth-last-child(-n+2) {
    padding: 1rem;
    background-color: white;
    margin-top: 1rem;
    border-radius: 10px;
    font-size: .9rem;
}

.event-session-person-hasphoto .fPageTitle h1#heading span:nth-last-child(-n+2)::before {
    content: "Achievements";
    position: relative;
    display: block;
    color: var(--brand-color-theme-3);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.event-session-person-hasphoto .fPageTitle h1#heading span.heading-small {
    background-color: transparent;
    padding: 0;
}

.event-session-person-hasphoto .fPageTitle h1#heading span.heading-small::before {
    content: none;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-teaser-image {
    border-bottom: 1px solid #f2f2f2;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.f-speakers-new .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    height: 180px;
    width: 180px;
    object-fit: cover;

}

/* speakers ends here */
/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/

@media (min-width: 768px) {
    .f-imporatant-dates-container .border-md-end-sm-bottom {
        border-right: 3px solid #000 !important;
        border-bottom: none !important;
    }
}


/*xl*/

@media(min-width:991.9px) {
    header.active {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        background-color: white;
    }

    .main-menu .fMenu {
        display: flex;
        justify-content: end;
    }

    .main-menu .fMenu>li {
        padding: 7px 12px;
        position: relative;
    }

    .main-menu .fMenu>li:last-child {
        padding-right: 0;
    }

    .main-menu .fMenu>li.has-submenu {
        padding-right: 25px;
    }

    .main-menu .fMenu>li>a {
        color: var(--brand-color-theme-yellow);
        position: relative;
        font-weight: 500;
        letter-spacing: .2px;
        font-size: 1rem;
    }

    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 3rem;
        left: 7px;
        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: .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-purple);
        padding: .7rem 1rem;
        display: block;
        border-bottom: 1px solid #dedede;
    }

    .main-menu .fMenu>li>ul>li>a:hover {
        background-color: var(--brand-color-theme-purple);
        color: white;
    }

    .main-menu .fMenu>li>ul>li:last-child>a {
        border-bottom: 0;
    }

    .f-announcement .f-list-item-container .f-announcement-container-text,
    .f-announcement .f-list-item-container .f-list-item-teaser-image,
    .f-announcement-slider .f-list-item-container .f-announcement-container-text,
    .f-announcement-slider .f-list-item-container .f-list-item-teaser-image {
        width: 50%;
    }

    .f-announcement-slider>.container::before {
        width: 90%;
        right: 0;
    }

    #fModule-51882 .session-details#session-row-39662 .session-sub li {
        width: 33.33%;
    }
}

@media(min-width:1199.9px) {
    .f-announcement-slider .f-list-item-container .f-list-item-teaser-image {
        width: 33.33%;
    }

    .f-announcement-slider>.container::before {
        width: 70%;
        right: 8%;
    }
}

@media (max-width: 1399px) {
    html {
        font-size: 16px;
    }

    .f-leader-marker-reg-page .f-register-button button {
        padding: 10px !important;
    }
}


/*lg*/

@media (max-width: 1199px) {
    html {
        font-size: 16px;
    }

    .f-main-wrapper-container {
        flex-direction: column;
    }

    .f-main-wrapper-container .f-circular-leader-container {
        width: 100% !important;
    }
}

@media(max-width:1145px) {

    .f-be-part .div-video-text .f-side-video,
    .f-welcome-about .div-video-text .f-side-video {
        float: unset;
        margin: 0 1.5rem;
        max-width: 100%;
    }
}

@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-purple);
        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-purple) !important;
        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 {
        display: block;
    }

    .f-photo-with-custom-text .fModuleContent .fModuleTitle {
        display: none;
    }

    .f-about-section .f-media-image {
        padding-right: 12px;
    }

    .f-photo-with-custom-text .f-countdown .fModuleTitle {
        display: block;
    }

    .fHeader {
        background-color: white;
    }

    .main-menu {
        position: static !important;
    }

    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 5em;
        height: fit-content;
        width: 100%;
        background-color: var(--brand-color-theme-purple);
        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-purple);
    }

    .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-orange-2);
        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-purple);
        display: block;
    }

    .f-announcement-slider>.container::before {
        content: unset;
    }

    .f-announcement-slider .f-list-item-container .f-announcement-container-text {
        max-height: unset;
    }

    .f-announcement-slider>.container .fModuleContent>div.text-center {
        padding-left: 0;
    }

    #fModule-51882 .session-details#session-row-39662 .session-sub li {
        width: 100%;
    }

    .f-leader-marker-reg-page .f-register-button button {
        padding: 5px 10px !important;
    }
}


/*sm*/

@media (max-width: 767.98px) {
    .f-imporatant-dates-container .border-md-end-sm-bottom {
        border-right: none !important;
        border-bottom: 2px solid #000 !important;
        width: 80%;
        /* Smaller width */
        margin: 0 auto 1rem auto;
        /* Center it */
        padding: 0px !important;
    }

    .f-important-dates {
        padding: 2rem !important;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .f-register-button {
        gap: 5px !important;
    }

    .f-register-button p2 {
        padding: 0px !important;
    }

    #fMenu-51251 {
        display: flex;
        flex-wrap: nowrap;
    }

    .f-module-pages-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .f-module-pages-menu .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .f-module-pages-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .f-module-pages-menu .fMenu {
        flex-wrap: nowrap !important;
        width: 100% !important;
        /* border: 2px solid green;            */
    }

    .quick-links .fMenu li a {
        font-size: 0.7rem !important;
        padding: 12px 15px !important;
    }

    .quick-links .fMenu li a:hover {
        letter-spacing: 0px !important;
    }

    .quick-links {
        padding-bottom: 0px !important;
    }

    /* .f-module-pages-menu .fMenu .menu-item {
        width: 0% !important;
    } */
}

@media(max-width: 550.9px) {
    .f-leader-marker-reg-page .f-register-button-mobile {
        width: 100%;
        display: flex !important;
        justify-content: center;
        margin-bottom: 15px;
    }

    .f-register-button {
        display: none !important;
    }

    /* hrader language and button */
}

@media (max-width: 520px) {
    .quick-links .fMenu li a {
        padding: 12px 10px;
        font-size: 0.7rem !important;
    }

    .f-module-pages-menu .quick-links .fMenu li a:hover {
        letter-spacing: 0px !important;
    }

    .quick-links {
        padding-bottom: 0px !important;
    }

    .f-circular-info .f-media {
        padding: 0px !important;
    }
}

@media (max-width: 425px) {
    .f-leader-marker-reg-page .f-register-button button {
        display: block !important;
    }

    .f-leader-marker-reg-page .f-early-bird-container,
    .f-regular-container {
        display: block !important;
    }

    .f-leader-marker-reg-page .f-early-bird-container .f-early-bird-1,
    .f-early-bird-2,
    .f-regular-1,
    .f-regular-2 {
        width: 100% !important;
    }
}

@media (max-width: 480.9px) {
    .quick-links .fMenu {
        flex-direction: row !important;
    }

    .p-2 {
        padding: 0px;
    }

    .quick-links {
        padding-bottom: 0px !important;
    }
}

@media (max-width: 432.9px) {
    .quick-links .fMenu {
        flex-direction: row !important;
    }

    .quick-links .fMenu li a {
        letter-spacing: 0px;
        padding: 12px 0px;
        white-space: nowrap;
        font-weight: 600;
    }

    .p-2 {
        padding: 0px !important;
    }

    /* .container{
        padding: 0px !important;
        margin: 0px !important;
     } */
    .f-circular-info .f-media {
        padding: 0px !important;
    }
}


/*xs*/

html {
    font-size: 14px;
}

.f-countdown .col-count {
    width: 90px;
}

.fheaderToptwo .fRegion>.row {
    justify-content: center;
}

.fheaderToptwo .fRegion>.row .f-email {
    width: 100%;
    padding-left: 12px;
    padding-top: 12px;
    text-align: center;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu {
    width: 100%;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu {
    justify-content: center;
}

.f-slide-menu {
    top: 1.4rem;
}

.f-header-top-menu {
    padding-top: .5rem !important;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.dash a::before {
    content: unset;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.dash a {
    padding: 0;
}

.fheaderToptwo .fRegion>.row .f-header-top-menu .fMenu>li.social a {
    width: 20px;
}

.f-welcome-message .f-media-image .f-media-image-link {
    float: unset;
    margin: 1.5rem auto;
}

.fModuleTitle h3,
.fGalleryContainer>h4 {
    font-size: 1.5rem;
}

.f-banner .fGalleryText h4 {
    font-size: 1.5rem;
}

.f-leader-marker-reg-page .f-register-button button {
    padding: 10px !important;
}

.f-register-button p {
    display: none;
}

@media (max-width: 550px) {
    .f-pass-container {
        display: block !important;
    }

    .f-main-wrapper-container .f-pass-container .f-pass {
        width: 100% !important;
        margin-bottom: 10px;
    }
}


/* Progress bar ".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: bold;
}

.menu-timeline li::before {
    height: 2px;
    width: 100%;
    left: -50%;
    top: 1rem;
    position: absolute;
    background: var(--brand-color-theme-orange-2);
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
}

.menu-timeline li a {
    color: var(--brand-color-theme-orange-2);
}

.menu-timeline .menu-item-text big {
    clear: both;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--brand-color-theme-orange-2);
    color: #fff;
    font-weight: bold;
}

.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;
}


/* registration  */

.f-main-wrapper-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px
}

.f-main-wrapper-container .f-circular-leader-container,
.f-impact-maker-container {
    width: 50%;
}

.f-main-wrapper-container .f-pass-container .f-pass {
    border: 2px solid #8531ff;
    border-radius: 20px;
    width: 50%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.f-main-wrapper-container .f-pass-container .f-pass h4,
.f-main-wrapper-container .f-pass-container .f-pass h3,
.f-main-wrapper-container .f-pass-container .f-pass ul {
    height: fit-content;
}

.f-main-wrapper-container .f-pass-container .f-pass ul {
    padding-left: 0;
    margin: 0;
}

.f-main-wrapper-container .f-pass-container .f-pass p.text-center {
    display: flex;
    align-self: flex-end;
    width: 100%;
    justify-content: center;
}

.f-main-wrapper-container .f-pass-container .f-pass h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.f-leader-marker-reg-page .f-heading h3,
.f-leader-marker-reg-page .f-heading h6 {
    text-align: center;
}

.f-pass-container {
    display: flex;
    justify-content: space-around;
    gap: 10px
}

.f-register-button {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-content: center;
    margin-top: 5px;
}

.f-leader-marker-reg-page .f-register-button .dots {
    font-size: 25px;
    color: #8531ff;
}


/* f-early-bird-container */

.f-leader-marker-reg-page .f-early-bird-container,
.f-regular-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.f-leader-marker-reg-page .f-early-bird-container .f-early-bird-1,
.f-early-bird-2,
.f-regular-1,
.f-regular-2 {
    width: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    margin: 7px;
    padding: 15px 0px;
}

.f-leader-marker-reg-page .f-early-bird-container .f-early-bird-1,
.f-early-bird-2 {
    background-color: #8531ff;
}

.f-leader-marker-reg-page .f-regular-1,
.f-regular-2 {
    background-color: #a5a5a5;
}

.f-leader-marker-reg-page .f-early-bird-container .f-early-bird-1,
.f-early-bird-2 {
    background-color: #8531ff;
}

.f-leader-marker-reg-page .f-early-bird-container .f-early-bird-impact-maker {
    background-color: #eb744c;
}


/* css added for reducing margin and padding*/

.f-leader-marker-reg-page p,
h2 {
    margin: 0px !important;
    margin-bottom: .5rem !important;
}


/* partner page starts here */

.f-quote-section .fModuleContent {
    width: 400px;
    margin: 0 auto;
    display: flex;
    position: relative;
    max-width: 100%;
}

.f-quote-section .fModuleContent::before {
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 3.4rem;
    color: var(--brand-color-theme-orange-2);
    position: relative;
    bottom: 10px;
}

.f-quote-section .fModuleContent .lines {
    padding-left: 1.5rem;
    font-size: 1.7rem;
}

.f-thanku-texts .row .col-with-icon .item {
    position: relative;
    border-left: 1px solid var(--brand-color-theme-orange-2);
    padding: 2rem;
    background-color: white;
}

.f-thanku-texts .row .col-12 .item p,
.f-thanku-texts .row .col-12 .item ul li {
    font-size: 1.1rem;
}

.f-thanku-texts .row .col-with-icon .item::before {
    content: "";
    width: 20%;
    height: 2px;
    display: block;
    border-bottom: 1px solid var(--brand-color-theme-orange-2);
    position: absolute;
    left: 0;
    bottom: 0;
}

.f-thanku-texts .row .col-with-icon .item::after {
    content: "";
    width: 20%;
    height: 30%;
    border-top: 1px solid var(--brand-color-theme-orange-2);
    border-right: 1px solid var(--brand-color-theme-orange-2);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}


/* about partner starts here */

.f-about-partners p {
    font-size: 1.1rem;
}

.f-about-partners .f-media-image img {
    height: 350px;
    object-fit: cover;
}


/* How can I get involved starts */

.f-get-involved .col-12 {
    padding: 12px;
}

.f-get-involved .col-12 .item {
    height: 100%;
    background-color: white;
    border: 3px solid var(--brand-color-theme-orange-2);
    border-radius: 20px;
    position: relative;
    padding: 12px;
    padding-top: 3rem;
}

.f-get-involved .col-12 .item span.number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--brand-color-theme-orange-2);
    position: absolute;
    width: 80px;
    height: 46px;
    left: -10px;
    top: -19px;
    background-color: white;
}

.f-get-involved .col-12 .item p {
    font-size: 1.5rem;
    font-weight: 300;
}

.fButton-arrow {
    display: inline-flex;
    position: relative;
    padding: 5px;
    background-color: #e7e7e7;
    border-radius: 5px;
    color: #000 !important;
}

.fButton-arrow span {
    margin: 0 0 0 1rem;
    display: inline-block;
}

.fButton-arrow span::after {
    content: "\f178";
    font-family: "FontAwesome";
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    align-content: center;
    text-align: center;
    margin-left: 1rem;
    color: white;
    background-color: var(--brand-color-theme-purple-2);
    display: inline-block;
}

.f-module-circular-impact .heading-and-buttons {
    text-align: center;

    h4 {
        font-size: 1.7rem;

        span {
            color: #666;
        }
    }
}

.f-module-circular-impact .circular-boxes,
.f-module-circular-impact .impact-boxes {
    margin-top: 10px;

    .boxes-item {
        margin-top: 1rem;
        border-radius: 15px;
        border: 2px solid;
        padding: 10px;
        min-height: 310px;
        display: flex;
        flex-wrap: wrap;

        * {
            width: 100%;
        }

        ul {
            padding-left: 0;
            height: fit-content;
            margin: 0;

            li {
                margin-left: 12px;
            }
        }

        h5 {
            font-size: 1.5rem;
            text-align: center;
            margin: 0;
            height: fit-content;
        }

        a {
            align-self: self-end;
            text-align: center;
        }
    }
}

.f-module-circular-impact .color-boxes,
.f-module-circular-impact .color-boxes-2 {
    border: 1px solid;
    margin-top: 24px;
    border-radius: 15px;
    padding: 10px;
    text-align: center;

    div.border-bottom {
        margin-left: auto;
        margin-right: auto;
    }
}

.f-module-circular-impact .circular-boxes {
    .boxes-item {
        border-color: var(--brand-color-theme-purple-2);
    }

    h5 {
        color: var(--brand-color-theme-purple-2);
    }

    .color-boxes {
        background-color: var(--brand-color-theme-purple-2);
        border-color: var(--brand-color-theme-purple-2);

        * {
            color: white;
        }
    }

    .color-boxes-2 {
        background-color: #a5a5a5;
        border-color: #a5a5a5;

        * {
            color: white;
        }
    }
}

.f-module-circular-impact .impact-boxes {
    .boxes-item {
        border-color: var(--brand-color-theme-orange-2);
    }

    h5 {
        color: var(--brand-color-theme-orange-2);
    }

    .color-boxes {
        background-color: var(--brand-color-theme-orange-2);
        border-color: var(--brand-color-theme-orange-2);

        * {
            color: white;
        }
    }

    .color-boxes-2 {
        background-color: #a5a5a5;
        border-color: #a5a5a5;

        * {
            color: white;
        }
    }
}

@media(max-width:767.9px) {
    .f-pass-container {
        flex-wrap: wrap;
    }

    .f-main-wrapper-container .f-pass-container .f-pass {
        width: 100%;
    }

    .f-main-wrapper-container .f-pass-container .f-pass>* {
        width: 100%;
    }
}