@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
    --brand-color-theme-1: #F19E25;
    --brand-color-theme-2: #007490;
    --brand-color-theme-3: #fefbc8;
    --brand-color-theme-4: #ffbbab;
    --brand-color-theme-1-light-version: #fcebd2;
    --brand-color-theme-2-light-version: #cae2e8;
    --brand-font-family-heading: "Quicksand", sans-serif;
    --brand-font-family-body: "Inter", sans-serif;
}

.brand-color-theme-1-bg {
    background-color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-2-bg {
    background-color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-3-bg {
    background-color: var(--brand-color-theme-3) !important;
}

.brand-color-theme-4-bg {
    background-color: var(--brand-color-theme-4) !important;
}

.brand-color-theme-1-text {
    color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-2-text {
    color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-3-text {
    color: var(--brand-color-theme-3) !important;
}

.brand-color-theme-4-text {
    color: var(--brand-color-theme-4) !important;
}

.brand-color-theme-1-light-bg {
    background-color: var(--brand-color-theme-1-light-version) !important;
}

.brand-color-theme-2-light-bg {
    background-color: var(--brand-color-theme-2-light-version) !important;
}

.brand-color-theme-1-light-text {
    color: var(--brand-color-theme-1-light-version) !important;
}

.brand-color-theme-2-light-text {
    color: var(--brand-color-theme-2-light-version) !important;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ccc;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #12375d70;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    font-size: 16px;
}

body {
    padding: 0;
    padding-top: 0 !important;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    font-family: var(--brand-font-family-body);
}

p {
    font-size: 1.1rem;
}

a,
span {
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    font-size: 1.1rem;
}

ul,
li,
ol {
    font-size: 1.1rem;
}

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: 1.3rem;
    font-weight: 600;
    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;
    color: white;
    padding: 10rem 0 3rem;
    background-color: var(--brand-color-theme-1);
    border-bottom: 4px solid var(--brand-color-theme-2);
    text-align: center;
}

body.title-off .fPageTitle {
    display: none;
}

.fModuleTitle h3 {
    color: var(--brand-color-theme-2);
    font-weight: 700;
    font-size: 2rem;
}

.fModuleTitle h3 span {
    display: block;
    font-weight: 600;
    color: #000;
}

.text-justify {
    text-align: justify;
}

.f-photo-with-custom-text .fModuleTitle {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle {
    display: block;
}

.brand-color-theme-1-bg .fModuleTitle h3 {
    color: #000;
}

.brand-color-theme-2-bg .fModuleTitle h3 {
    color: white;
}

.brand-color-theme-2-bg .fModuleTitle p {
    color: white;
}

.title-center .fModuleTitle h3 {
    text-align: center !important;
}

.f-photo-with-custom-text.title-center .fModuleContent .fModuleTitle h3 {
    text-align: start !important;
}

.title-with-sub-text .fModuleTitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.title-with-sub-text .fModuleTitle h3 {
    width: 40%;
    max-width: 500px;
    font-size: 2.7rem;
}

.title-with-sub-text .fModuleTitle p {
    width: 60%;
    max-width: 500px;
}

ul.fGalleryImages.fGalleryList {
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
    list-style: none;
    padding: 0px;
}

ul.fGalleryImages.fGalleryList li.fGalleryItem {
    margin: 0px;
    list-style: none;
}

.ItemfinnerGallery {
    position: relative;
}


/* Responsive Homepage */

.fModuleEnd .fModuleTitle {
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
}

@media (min-width: 576px) {
    .fModuleEnd .fModuleTitle {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .fModuleEnd .fModuleTitle {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .fModuleEnd .fModuleTitle {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .fModuleEnd .fModuleTitle {
        width: 1140px;
    }
}

@media (min-width: 1400px) {
    .fModuleEnd .fModuleTitle {
        width: 1320px;
    }
}

.collapse.show {
    display: block !important;
}

.collapse.in {
    display: block !important;
}

.navbar-header .navbar-toggler {
    display: none;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 1rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle .icon-bar {
    position: absolute;
    right: 0;
    height: 3px;
    width: 26px;
    background: #1173ba;
}

.navbar-toggle .icon-bar:nth-child(3) {
    opacity: 0;
}

.navbar-toggle .icon-bar:nth-child(2) {
    transform: rotate(-45deg);
    margin-bottom: 4px;
}

.navbar-toggle .icon-bar:nth-child(1) {
    transform: rotate(45deg);
}

.navbar-toggle.collapsed .icon-bar:nth-child(1),
.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    transform: none;
    /* margin: 0;
    margin: 0; */
}

.navbar-toggle.collapsed .icon-bar:nth-child(1) {
    margin-top: -7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    margin-top: 7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1;
}

.navbar-toggle-container .navbar-toggle {
    z-index: 9999;
}


/* Header */

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 {
    display: inline-block;
    width: fit-content;
    margin-right: 10px;
    padding: .375rem 1rem;
    font-size: 1.1rem;
    align-content: center;
    margin-bottom: 10px;
    border: 1px solid #000;
    color: #000;
    border-radius: 500px;
    transition: all .4s;

    &:hover {
        background-color: #000;
        color: white;
    }

    &::before {
        content: "";
        width: 30px;
        height: 15px;
        position: relative;
        display: inline-block;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 100%;
        margin-right: 10px;
        transition: all .4s;
        background-image: url("https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png");
    }

    &:hover::before {
        filter: invert();
    }
}

a.fButton.fButtonSmall {
    font-size: .9rem;
    padding: 5px 1rem;
}

a.fButton.fButtonSmall {
    &::before {
        width: 15px;
        height: 10px;
    }
}

a.fButtonText {
    color: #000;
    font-size: 1.25rem;
    position: relative;
}

a.fButtonText::before {
    content: "";
    width: 40px;
    height: 20px;
    position: relative;
    top: 3px;
    display: inline-block;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
    transition: all .4s;
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/d9d31f909ad789668b45e2cb6675cc26.png");
}

/****--Form---****/

select {
    word-wrap: normal;
    padding: 0.3rem 10px;
}

.fForm label {
    float: left;
    text-align: left;
    font-size: 16px;
    width: 100%;
}

.fForm .buttons {
    padding: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.fForm .form-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    padding: 0 0 7px;
}

.fForm input,
.fForm select,
.fForm textarea,
.fForm .date {
    padding: 0.85rem 10px;
    width: 100%;
}

.fForm .hint {
    color: #333;
    margin: 11px 0;
}

.fForm .hint a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.fForm .hint a:hover {
    color: var(--brand-color-theme-1);
}

input.form-control,
textarea.form-control {
    display: inline-block;
    margin: 10px 0px;
}

.fForm .form-item-type-checkbox .checkbox label,
.fForm .form-item-type-radio .checkbox label,
.fForm .form-item-type-boolean label {
    display: flex;
    align-items: center;
}

.user-register-group table tr:nth-child(odd) {
    background: #ddd;
}

.listing-header-item-currency {
    width: fit-content;
    display: flex;
    border: 1px solid var(--brand-color-theme-2);
    border-radius: 0.25rem;
    overflow: hidden;

    >* {
        border: 0;
        border-radius: 0;
    }

    input[type="submit"] {
        padding: 0.5rem 0.75rem;
        background: var(--brand-color-theme-2);
        color: #fff;
    }
}


/*----------iconset----------*/

.iconset .fMenu {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.iconset .fMenu li {
    padding: 1rem;
}

.iconset .fMenu a {
    display: block;
    padding: 1rem;
    font-weight: bold;
    color: #000;
    height: 100%;
    background: #f5f5f5;
    transition: 0.3s all ease-in-out;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 30%);
    position: relative;
}

.iconset .fMenu a:hover {
    background: #efefef;
    -webkit-box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 55%);
    -moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 55%);
}

.iconset img {
    width: auto;
    max-width: 45px;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.menu-item-text .action:before {
    display: block;
    content: "";
    height: 1.04rem;
    width: 1.04rem;
    background: red;
    border-radius: 1rem;
    position: absolute;
    left: 10px;
    top: 19%;
    transform: translate(0, -50%);
    animation: blinking 2s infinite;
}


/*----------animation----------*/

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Common CSS */


/* login page starts here */

body.view-login .fForm,
body.view-account-recover .fForm {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem 1rem;
    width: 700px;
    max-width: 100%;
    margin: auto;
}

body.view-account-recover .fForm .form-item-type-fieldset {
    border: 0;
    padding: 0;
}

.fForm .error {
    margin: .5rem 0 0 0;
    font-size: .8rem;
}

.buttons {
    padding-left: 12px !important;
}

body.view-login .fForm .buttons,
body.view-account-recover .fForm .buttons {
    padding-left: 0 !important;
}


/* login page ends here */


/* Programme Table */

tr.session-row-hidden {
    display: none !important;
}

.session-heading {
    text-align: center;
    margin-top: 1.5rem;
    color: #4d4f53;
    font-weight: bold;
    line-height: 1.3;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-color-theme-1);
}

.session-container {
    border-collapse: separate;
    border-spacing: 0 1rem;
}

body .session-container th {
    background: var(--brand-color-theme-1);
    color: #fff !important;
    font-weight: bold;
}

.session-container tr:last-child td {
    border-bottom: 0 none !important;
}

.session-container .session-details {
    vertical-align: top !important;
    position: relative;
}

.session-container td.session-details[colspan="2"] {
    text-align: center;
}

td.session-time,
th.session-time {
    padding: 1rem;
    width: 150px;
    min-width: 150px;
}

.session-time.session-time-show {
    font-size: 0.9rem;
}

td.session-time {
    border-right: 1px solid var(--brand-color-theme-1);
}

.session-time .session-time-start,
.session-time .session-time-end {
    display: inline-block;
    opacity: 1;
}

.session-time .session-time-start:after {
    display: inline-block;
    content: " - ";
    padding-left: 5px;
}

.session-time .session-time-zone {
    font-size: 0.9rem;
    color: #999;
}

.session-time .session-time-date {
    display: none;
}

.session-time .session-time-date.is-different {
    color: #fff;
    display: inline-block;
    background: #aaa;
    border-radius: 2rem;
    font-size: 0.8rem;
    padding: 0.25rem 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.session-container ul li {
    margin: .5em 0 .5em 20px !important;
    list-style: square;
}

.session-sub {
    padding-left: 0;
    list-style: square;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.session-sub-title {
    font-weight: 600;
}

.session-sub .session-people {
    padding-top: 0;
    margin-top: 0;
}

.session-title.session-sub-title {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.75;
    display: inline;
}

.session-title>a {
    text-decoration: underline;
}

.session-venue {
    width: fit-content;
    background: var(--brand-color-theme-1);
    display: inline-block;
    margin-top: .2rem;
    color: #fff;
    font-size: .8rem;
    padding: .2rem .7rem;
}

.session-venue::before {
    content: "\f3c5";
    font-family: "FontAwesome";
    margin-right: 5px;
}

.session-venue a {
    font-size: 0.8rem;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
}

.session-venue a::before {
    display: block;
    content: "";
    height: 1.1rem;
    width: 1.1rem;
    background: #fff;
    border-radius: 2rem;
    position: absolute;
    left: 6px;
    line-height: 1rem;
    top: 50%;
    transform: translate(0, -50%);
    animation: blinking 1.2s infinite;
}

.session-status-3 .session-venue,
.session-status-2 .session-venue {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    background: url('https://img.icons8.com/fluency-systems-regular/48/000000/marker--v1.png') left center no-repeat;
    background-size: 1rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

span.live {
    color: #cc0000 !important;
}

.session-status-3 .session-venue,
.session-status-2 .session-venue {
    background-color: #cc0000;
    display: inline-block;
    position: relative;
    margin-top: 2rem;
}

.session-status-3>.session-title:before,
.session-status-2>.session-title:before {
    position: relative;
    content: "LIVE";
    color: #cc0000;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    animation: blinking 1.2s infinite;
}

.no-user .session-status-3 .session-venue {
    display: none
}

.no-user .session-status-3>.session-title:before {
    display: none
}

.session-status-2 .session-venue,
.session-status-2>.session-title:before {
    display: none;
}

.session-mine.session-status-2>.session-title:before,
.session-mine.session-status-2.session-full:before {
    content: "PRESENTER TO JOIN SESSION";
    color: #FFA500;
    display: block;
    margin-bottom: 0.5rem;
}

.session-mine.session-status-2 .session-venue {
    display: inline-block;
}

.session-people-item {
    display: flex;
    flex-wrap: wrap;
}

.session-people-name {
    font-weight: 600;
    color: var(--brand-color-theme-1);
}

.session-people-role {
    display: inline-block;
    color: var(--brand-color-theme-2);
    text-decoration: underline;
    order: -1;
    padding-right: 5px;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body.com-event.view-session-view .session-full {
    border: 1px solid #dedede;
}

body.com-event.view-session-view .session-full .session-time {
    background-color: var(--brand-color-theme-1);
    text-align: start;
    padding: 10px 12px;
    color: white;
}

body.com-event.view-session-view .session-full .session-item {
    padding: 10px 12px;
    border-bottom: 1px solid #dedede;
}

body.com-event.view-session-view .session-full .session-item:last-child {
    border-bottom: 0;
}

body.com-user.view-view .f-content-item-teaser-image img,
body.view-session-person .f-content-image {
    height: 18rem;
    width: 18rem;
    margin: 1rem auto;
    display: block;

    img {
        border-radius: 100%;
        object-fit: cover;
        border: 5px solid #aaa;
    }
}

body.com-user.view-view #fMatter .f-user-container,
body.event-session-person-hasphoto #fMatter .event-session-person {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

body.com-user.view-view #fMatter .f-user-container .f-content-item-teaser-image,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-image {
    width: 250px;
    height: 250px;
}

body.com-user.view-view #fMatter .f-user-container .f-content-item-teaser-image img,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-image img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 500px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 4px solid var(--brand-color-theme-3);
    object-fit: cover;
}

body.com-user.view-view #fMatter .f-user-container .f-list-item-content,
body.event-session-person-hasphoto #fMatter .event-session-person .f-content-text {
    background-color: #f7f7f7;
    text-align: justify;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

body.com-user.view-view #fMatter .f-user-container .f-content-node.f-content-fields {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: var(--brand-color-theme-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 ***/

/* headerTop starts here */

.fheaderToptwo {
    background-color: var(--brand-color-theme-2);
    padding: 5px 0;
    min-height: 34px;
    align-content: center;
    position: relative;
    z-index: 999999;
}

.fheaderToptwo .region-headertop>.row {
    position: relative;
}

.fheaderToptwo .region-headertop .f-language-button-menu {
    position: absolute;
    left: 0;
    padding-left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--brand-color-theme-2);
    z-index: 9;
    width: fit-content;
    padding-right: 20px;
}

.f-language-button-menu .fMenu li>ul {
    position: absolute;
    background: var(--brand-color-theme-2);
    top: 29px;
    padding: 0px;
    min-width: 150px;
    margin: 0;
}

.f-language-button-menu .fMenu li>ul li {
    margin: 0;
}

.f-language-button-menu .fMenu li>ul li a {
    display: block;
    padding: 4px;
}

.f-language-button-menu .fMenu li a {
    color: white !important;
    font-size: .9rem;

    span {
        font-size: .9rem;
    }
}

.fheaderToptwo .region-headertop .f-top-reg-and-sign-button {
    position: absolute;
    right: 0;
    padding-right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--brand-color-theme-2);
    z-index: 9;
    width: fit-content;
    padding-left: 20px;
}

.fheaderToptwo .region-headertop .f-top-reg-and-sign-button .signup-and-signin a {
    color: white;
    position: relative;
    display: inline-block;
    align-content: center;
    font-size: .9rem;
}

.fheaderToptwo .region-headertop .f-top-reg-and-sign-button .signup-and-signin a.signUp::before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 4px;
    width: 15px;
    height: 15px;
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/9a56dfd87709e33be73a1aa8279b75c8.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    top: 2px;
}

.fheaderToptwo .region-headertop .f-top-reg-and-sign-button .signup-and-signin a.signIn::before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 4px;
    width: 17px;
    height: 15px;
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/5b0d1ceb6c6c55475e91a165b699c833.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    top: 2px;
}

.fheaderToptwo .region-headertop .f-top-reg-and-sign-button .signup-and-signin a.signUp::after {
    content: "|";
    margin-right: 7px;
    margin-left: 7px;
    font-size: .7rem;
}

/* header */

.fHeader {
    transition: all .3s;
    position: relative;
}

.fHeader .region-header>.row {
    justify-content: space-between;
}

.fHeader.active {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: white;
}

/* running ticker */

.ticker-tape-container {
    overflow-x: hidden;
    display: flex;
    align-items: center;
    width: 600px;
    margin: 0 auto;
}

.ticker-tape-container:hover .ticker-tape {
    animation-play-state: paused;
}

.ticker-tape {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.ticker-tape span {
    font-size: .9rem;
    color: white;
    position: relative;

    a {
        color: white;
        font-size: .9rem;
    }
}

.ticker-tape span::after {
    content: "|";
    position: relative;
    display: inline-block;
    margin-left: .8rem;
    margin-right: .8rem;
    font-size: .75rem;
}

@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;
}

/* banner */

.f-hero-section {
    background-color: var(--brand-color-theme-1-light-version);
}

.f-hero-section .fGalleryItem .ItemfinnerGallery {
    padding: 8rem 0 4rem 0;
}

.f-hero-section .fGalleryItem .ItemfinnerGallery .row .fGalleryImage {
    display: block;
    width: 50%;
    align-content: center;
}

/* .f-hero-section .fGalleryItem:nth-child(odd) {
    background-color: var(--brand-color-theme-1-light-version);
}

.f-hero-section .fGalleryItem:nth-child(even) {
    background-color: var(--brand-color-theme-2-light-version);
} */

.f-hero-section .fGalleryItem .ItemfinnerGallery .row .fGalleryText {
    width: 50%;
    align-content: center;
}

.f-hero-section .btn-para a {
    display: block;
    width: fit-content;
    margin-right: 10px;
    padding: .375rem 1rem;
    font-size: 1.1rem;
    align-content: center;
    margin-bottom: 10px;
    border: 1px solid #000;
    color: #000;
    border-radius: 7px;
    transition: all .4s;

    &:hover {
        background-color: #000;
        color: white;
    }
}

.f-hero-section .btn-para a::before {
    content: "";
    width: 30px;
    height: 15px;
    position: relative;
    display: inline-block;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
    transition: all .4s;
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png");

}

.f-hero-section .btn-para a:hover::before {
    filter: brightness(0) invert();
}

/* main courses */

.f-courses-main .owl-nav {
    margin-top: 2rem;
}

.f-courses-main .f-list-item {
    padding: 12px;
}


.f-courses-main .f-list-item .f-list-item-container {
    background-color: var(--brand-color-theme-1-light-version);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    height: 100%;
}

.f-courses-main .f-list-item .f-list-item-container>div {
    width: 100%;
}

.f-courses-main .f-list-item:nth-child(odd) .f-list-item-container {
    background-color: var(--brand-color-theme-2-light-version);
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-teaser-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.6;
    object-fit: cover;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-title {
    border-bottom: 1.2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-title a {
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-teaser-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-fields {
    margin-top: 1rem;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-fields .f-list-item-field {
    display: flex;
    background-color: var(--brand-color-theme-2);
    border-radius: 7px;
    width: fit-content;
    padding: 5px;
    font-size: .9rem;
    color: white;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-fields .f-list-item-field {
    display: none;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-fields .f-list-item-field:nth-child(3) {
    display: flex;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-fields .f-list-item-field .f-item-node-value {
    margin-left: 0px;
    font-weight: 600;
    position: relative;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-fields .f-list-item-field .f-item-node-value::before {
    content: ":";
    position: relative;
    margin-right: 7px;
    margin-left: 3px;
    font-weight: normal;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-teaser-content {
    order: 2;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-button {
    order: 3;
    margin-top: auto;
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-button>a {
    display: block;
    width: fit-content;
    margin-right: 10px;
    padding: .2rem .8rem;
    font-size: .9rem;
    align-content: center;
    border: 1px solid #000;
    color: #000;
    border-radius: 7px;
    transition: all .4s;

    &:hover {
        background-color: #000;
        color: white;
    }
}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-button>a::before {
    content: "";
    width: 15px;
    height: 10px;
    position: relative;
    display: inline-block;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
    transition: all .4s;
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png");

}

.f-courses-main .f-list-item .f-list-item-container .f-list-item-button>a:hover::before {
    filter: brightness(0) invert();
}

/* owl buttons */

.owl-nav {
    text-align: center;
}

.owl-nav button {
    display: inline-block;
}

.owl-nav button:hover {
    background-color: unset !important;
}

.owl-nav button span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    border-radius: 100px;
    border: 1px solid #000;
}

.owl-nav button span.prev {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/6e4d06b7403faff13e300b624a6cb96b.png");
}

.owl-nav button span.next {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png");
}

/* testimonials*/

.f-testimonials-design {
    padding-bottom: 5rem !important;
}

.f-testimonials-design .owl-carousel .owl-stage-outer {
    padding: 5px;
}

.f-testimonials-design .f-list {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.f-testimonials-design .f-list-item {
    padding: 12px;
}

.f-testimonials-design .owl-item:nth-child(odd) .f-list-item .f-list-item-container {
    background-color: var(--brand-color-theme-1-light-version);
}

.f-testimonials-design .f-list-item .f-list-item-container {
    aspect-ratio: 1/.8;
    background-color: var(--brand-color-theme-2-light-version);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 1rem;
    text-align: justify;
}

.f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image {
    order: 2;
    border-top: 1px solid #000;
    padding-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    width: 70px;
    height: 70px;
    border-radius: 500px;
    border: 3px solid var(--brand-color-theme-2);
    scale: 1.4;
    position: relative;
    left: -15px;
    top: -5px;
    z-index: 999;
}

.f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image .name-and-text {
    padding-left: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-color-theme-2);
}

.f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image .name-and-text .f-list-item-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

/* tab section */

.f-nav-blogs ul {
    padding: 7px;
    margin: 1rem auto;
    width: fit-content;
    display: flex;
    background: #f8f9fa;
    flex-wrap: wrap;
    border-radius: 500px;
}

.f-nav-blogs ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.f-nav-blogs ul li>a {
    color: var(--brand-color-theme-2);
    font-weight: 600;
    display: inline-block;
    padding: 5px 1.4rem;
    border-radius: 500px;
}

.f-nav-blogs ul li>a.active {
    background-color: var(--brand-color-theme-2-light-version);
}

.f-designed-tabs .fModuleTitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.f-designed-tabs .fModuleTitle h3 {
    font-size: 1.25rem;
    color: #000;
}

.f-designed-tabs .fModuleTitle p>a {
    color: #000;
    font-size: 1.25rem;
    position: relative;
}

.f-designed-tabs .fModuleTitle p>a::before {
    content: "";
    width: 20px;
    height: 15px;
    position: relative;
    display: inline-block;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
    transition: all .4s;
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png");
}

.f-designed-tabs .f-list {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.f-designed-tabs .f-list-item {
    padding: 12px;
}

.f-designed-tabs .f-list-item-container {
    transition: all .4s;
    position: relative;

    &:hover {
        filter: blur(.5);
        opacity: .7;
    }
}

.f-podcast .f-list-item-container {
    display: flex;
    flex-direction: column;
}

a.fAppleButton,
a.fSpotifyButton {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px;
    position: relative;
}

a.fAppleButton {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/c302f96f4e299484f9137e1bb0c087a9.png");
}

a.fSpotifyButton {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/24632c297fe9d548f76c397d08fc9ef0.png");
}

.f-podcast .f-list-item-container .f-list-item-node.f-list-item-teaser-content {
    order: 2;
}

.f-designed-tabs .f-list-item-container .insta-link-div {
    position: absolute;
    inset: 0;
}

.f-designed-tabs .f-list-item-container .insta-link-div>a {
    display: block;
    position: absolute;
    inset: 0;
}

.f-designed-tabs .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.6;
    object-fit: cover;
}

.f-designed-tabs .f-list-item-container .f-list-item-title {
    margin-top: 1rem;
    margin-bottom: .4rem;
}

.f-designed-tabs .f-list-item-container .f-list-item-title>a,
.f-designed-tabs .f-list-item-container .f-list-item-title {
    color: var(--brand-color-theme-2);
    font-size: 1.4rem;
    font-weight: 700;
}

.f-designed-tabs .f-list-item-container .f-list-item-fields {
    display: flex;
    margin-bottom: .7rem;
    flex-wrap: wrap;
}

.f-designed-tabs .f-list-item-container .f-list-item-fields .f-list-item-field>.f-item-node-title {
    display: none;
}

.f-designed-tabs .f-list-item-container .f-list-item-fields .f-list-item-field .f-item-node-value {
    color: #000;
    font-weight: 400;
    font-size: 1.1rem;
}

.f-designed-tabs .f-list-item-container .f-list-item-fields .f-list-item-field:nth-child(1) .f-item-node-value {
    position: relative;
}

.f-designed-tabs .f-list-item-container .f-list-item-fields .f-list-item-field:nth-child(1) .f-item-node-value::after {
    content: "|";
    position: relative;
    margin-right: 5px;
    margin-left: 5px;
}

.f-designed-tabs .f-list-item-container .f-list-item-button a {
    position: relative;
    color: #000;
    font-size: 1.2rem;

    &::before {
        content: "";
        width: 20px;
        height: 15px;
        position: relative;
        display: inline-block;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 100%;
        margin-right: 10px;
        transition: all .4s;
        background-image: url(https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png);
    }
}

/* footer starts here */

#fFooter {
    background-color: #1a1a1a;
    margin-top: -7px;
    padding-top: 2rem;

    * {
        color: #d7d7d7;
        font-size: .9rem;
    }
}

#fFooter .region-footer .fModule {
    padding: 12px;
}

#fFooter .fModuleTitle h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--brand-color-theme-1);
}

#fFooter .region-footer>.row {
    justify-content: space-between;
}

#fFooter .f-footer-menu {
    width: fit-content;
}

#fFooter .f-footer-menu ul.fMenu li {
    margin-bottom: 10px;
}

#fFooter .social-media a {

    font-size: 1.7rem;

    i {
        font-size: 1.7rem;
        margin-right: 10px;

        &:hover {
            color: var(--brand-color-theme-1);
        }
    }
}

#fFooter .f-contact-footer ul li {
    margin-bottom: 10px;
}

#fFooter .f-contact-footer ul li span {
    font-size: 1rem;
    color: var(--brand-color-theme-1);
}

#fFooter .f-contact-footer ul li span a {
    display: block;
}

#fFooter .f-copyright-text {
    padding: 10px 0;
    margin-top: 1rem;
}

.f-all-logos .fGalleryImages {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.f-all-logos .ItemfinnerGallery {
    padding: 12px;
}

.f-all-logos .ItemfinnerGallery .fGalleryImage img {
    height: 80px;
    object-fit: contain;
}

/* blog inner page */
.content-type-43880 #fContent,
.content-type-43899 #fContent {
    margin: 10px 0;
}

.content-type-43880 #fContent #fMatter,
.content-type-43899 #fContent #fMatter {
    padding: 12px;
    border-right: 1px solid #dedede;
}

.content-type-43880 #fContent #fSidebarRight,
.content-type-43899 #fContent #fSidebarRight {
    padding: 12px;
}

.content-type-43880 #fContent #fSidebarRight .region-sidebar-right,
.content-type-43899 #fContent #fSidebarRight .region-sidebar-right {
    position: sticky;
    top: 120px;
}

.content-type-43880 #fContent #fSidebarRight .fModuleTitle h3,
.content-type-43899 #fContent #fSidebarRight .fModuleTitle h3 {
    margin-top: 0;
    padding-top: 12px;
    margin-bottom: 0px;
    font-size: 1.2rem;
    font-weight: 700;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item,
.content-type-43899 #fContent #fSidebarRight .f-list-item {
    padding: 12px;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container {
    border-bottom: 1px solid #dedede;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container .f-list-item-title a,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container .f-list-item-title a {
    color: #000;
    font-size: .9rem;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields {
    display: flex;
    font-size: .9rem;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields .f-list-item-field,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields .f-list-item-field {
    margin-top: 7px;
    margin-bottom: 7px;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields .f-list-item-field:nth-child(1) .f-item-node-value::after,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields .f-list-item-field:nth-child(1) .f-item-node-value::after {
    content: ",";
    position: relative;
    margin-right: 7px;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields .f-list-item-field .f-item-node-title,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container .f-list-item-fields .f-list-item-field .f-item-node-title {
    display: none;

}

.content-type-43880 .f-content-text .image-inner-page-row>div {
    padding: 12px;
}

.content-type-43880 .f-content-text .image-inner-page-row img {
    aspect-ratio: 1/.7;
    max-height: 600px;
    object-fit: cover;
}

.content-type-43880 .f-content-text #share-buttons {
    position: relative;
    align-content: center;
    border-bottom: 1px solid #dedede;
    padding-bottom: 10px;
    padding-top: 10px;
}

.content-type-43880 .f-content-text #share-buttons a {
    color: var(--brand-color-theme-2);
    display: inline-block;
    font-size: 1.3rem;
    margin-right: 5px;
}

.content-type-43880 .f-content-text #share-buttons::before {
    content: "Share Via : ";
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-right: 10px;
}

.content-type-43880 .f-content-text .text-justify {
    text-align: justify;
}

.content-type-43880 .f-content-text ul li,
.content-type-43880 .f-content-text ol li {
    margin-left: 17px;
}

.content-type-43880 .f-content-text h2,
.content-type-43880 .f-content-text h3 {
    font-weight: 700;
    color: var(--brand-color-theme-1);
}

.content-type-43880 .f-content-text h5 {
    color: var(--brand-color-theme-2);
    font-weight: 700;
}

.content-type-43880 #fContent #fSidebarRight .f-list-item-container .f-list-item-button a,
.content-type-43899 #fContent #fSidebarRight .f-list-item-container .f-list-item-button a {
    color: var(--brand-color-theme-1);
    text-decoration: underline;
    font-size: .9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.content-type-43899 #fContent .f-content-text iframe {
    width: 600px;
    height: 300px;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

/* about us starts here */

.f-about-us .f-media>div {
    padding: 12px;
}

.f-about-us .f-media-image img {
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
}

.f-meet-academic-guides .f-media-image {
    width: 230px;
}

.f-meet-academic-guides .f-media-image img {
    border-radius: 10px;
    float: left;
    aspect-ratio: 1/1;
    margin: 0px 20px 20px 0;
}

.f-meet-academic-guides .f-media-text h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.f-learner-stories .f-list {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.f-learner-stories .f-list .f-list-item {
    padding: 12px;
}

.f-learner-stories .f-list .f-list-item .f-list-item-container {
    background-color: white;
    padding: 1rem;
    border-radius: 15px;
}


.f-learner-stories .f-list .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    aspect-ratio: 1/.7;
    object-fit: cover;
}

.f-learner-stories .f-list .f-list-item .f-list-item-container .f-list-item-title a {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.f-learner-stories .f-list .f-list-item .f-list-item-container .f-list-item-button a {
    color: var(--brand-color-theme-1);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
}

/* ===== Flip Container ===== */

.f-think-alike .fGalleryItem {
    padding: 12px;
}

.f-think-alike .ItemfinnerGallery {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

/* ===== Inner wrapper for flip ===== */
.f-think-alike .ItemfinnerGallery>a,
.f-think-alike .ItemfinnerGallery>.fGalleryText {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 10px;
    overflow: hidden;
}

/* ===== Front Side ===== */
.f-think-alike .fGalleryImage {
    display: block;
    transform: rotateY(0deg);
    z-index: 2;
}

.f-think-alike .fGalleryImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
}

/* ===== Back Side ===== */

.f-think-alike .fGalleryItem:nth-child(odd) .fGalleryText {
    background-color: var(--brand-color-theme-2);
}

.f-think-alike .fGalleryText {
    background: var(--brand-color-theme-1);
    color: #fff;
    padding: 20px 10px 20px 20px;
    transform: rotateY(180deg);
    overflow-y: auto;
}

.f-think-alike .fGalleryText ul {
    padding-left: 0;
    text-align: justify;
    margin: 0;
    max-height: 280px;
    overflow: auto;
    padding-right: 10px;
}

.f-think-alike .fGalleryText ul li {
    margin-left: 13px;
    list-style: disc;
    font-size: .9rem;
}

/* ===== Hover Flip Effect ===== */
.f-think-alike .ItemfinnerGallery:hover .fGalleryImage {
    transform: rotateY(180deg);
}

.f-think-alike .ItemfinnerGallery:hover .fGalleryText {
    transform: rotateY(0deg);
}

/* ===== Fix height for demo ===== */
.f-think-alike .fGalleryItem {
    height: 350px;
}

/* video inner page starts here */

.content-type-43899 #fContentPost {
    background-color: #f8f9fa !important;
    border: 1px solid #dedede;
    margin-top: -10px;
}

.content-type-43899 #fContentPost .f-designed-tabs .fModuleTitle h3 {
    width: 100%;
    font-size: 2rem;
    color: var(--brand-color-theme-2);
    font-weight: 600;
    text-align: center;
}

.f-list-filter {
    text-align: center;
    margin-top: 1rem;
}

.f-list-filter a {
    display: inline-block;
    padding: 0 10px;
    margin: 10px;
    align-content: center;
    text-align: center;
    color: white;
    min-width: 40px;
    border-radius: 5px;
    height: 40px;
    background-color: var(--brand-color-theme-2);
}

.f-list-filter a.selected {
    background-color: var(--brand-color-theme-1);
}

/* blog page */

.blogs-page #fContent {
    margin-bottom: 8px;
}

.blogs-page #fMatter {
    border-right: 1px solid #dedede;
    padding: 12px;
}

.blogs-page #fSidebarRight {
    padding: 12px;
}

.blogs-page #fSidebarRight .fModuleTitle h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blogs-page #fSidebarRight .fRegion {
    position: sticky;
    top: 130px;
    background-color: #fefbc85e;
    padding: 12px;
    width: 290px;
    max-width: 100%;
    border-radius: 5px;
}

.blogs-page #fSidebarRight .fMenu {}

.blogs-page #fSidebarRight .fMenu li>a {
    display: block;
    text-wrap: wrap;
    font-size: 1rem;
    color: #000;
    position: relative;
    padding: 8px 8px;
    font-weight: 500;
    transition: all .4s;
    border-bottom: .2px solid #dedede;

    span {
        font-size: 1rem;
    }

    &:hover {
        background-color: #fff;
    }
}

.blogs-page #fSidebarRight .fMenu li:last-child>a {
    border-bottom: 0;
}

.blogs-page #fSidebarRight .fMenu li>a::before {
    content: "\f02b";
    font-family: "FontAwesome";
    position: relative;
    margin-right: 5px;
    display: inline-block;
    top: 3px;
    transform: rotateY(180deg);
    color: var(--brand-color-theme-1);
}

.blogs-page .f-designed-tabs .f-list-item-container {
    &:hover {
        opacity: 1;
    }
}

/* course page starts here */
.f-courses-on-page .f-list-item .filter-labels .f-list-item-field .f-item-node-title {
    display: none;
}

.f-courses-on-page .f-list-item .f-list-item-fields .f-list-item-field .f-item-node-title {
    display: none;
}

.f-three-boxes .fGalleryItem {
    padding: 12px;
}

.f-three-boxes .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    border: 1px solid #dedede;
    border-radius: 2px;
    padding: 1rem;
    text-align: center;
    background-color: rgba(202, 226, 232, 0.37);
    transition: all .4s;

    &:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transform: translateY(-10px);
    }
}

.f-three-boxes .fGalleryItem:nth-child(2) .ItemfinnerGallery {
    background-color: rgb(252, 235, 210, 0.37);
}

.f-three-boxes .fGalleryItem .ItemfinnerGallery .fGalleryImage {
    display: inline-block;
    width: 55px;
    height: 55px;
    align-content: center;
    text-align: center;
    background-color: var(--brand-color-theme-1-light-version);
    border-radius: 7px;
}

.f-three-boxes .fGalleryItem:nth-child(2) .ItemfinnerGallery a.fGalleryImage {
    background-color: var(--brand-color-theme-2-light-version);
}

.f-three-boxes .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.f-three-boxes .fGalleryItem .ItemfinnerGallery h3>a {
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
}

.f-three-boxes .fGalleryItem .ItemfinnerGallery p {
    font-size: 1rem;
}

.f-course-page-main {
    border-bottom: 1px solid #dedede;
}

.f-course-page-main .f-nav-filters {
    border-right: 1px solid #dedede;
}

.f-course-page-main>.title-center {
    border-bottom: 1px solid #dedede;

    .fModuleTitle h3 {
        margin-top: 0;
    }
}

.f-nav-filters {
    position: static;
    overflow: unset !important;
}

.f-nav-filters .filter-sticky {
    position: sticky;
    top: 150px;
}

.f-nav-filters,
.f-courses-on-page {
    padding-top: 2rem !important;
}

.f-nav-filters .fModuleTitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.f-nav-filters .fModuleTitle h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--brand-color-theme-1);
    margin-bottom: 0;
}

.f-nav-filters .fModuleTitle button {
    border: 0;
    outline: none;
    height: 30px;
    width: 80px;
    color: white;
    background-color: red;
}

.f-nav-filters .filter-group ul {
    padding-left: 0;
    margin: 0;
    padding-right: 10px;
}

.f-nav-filters .filter-group ul li {
    list-style: none;
    margin: 0;
    margin-bottom: 7px;
}

.f-nav-filters .filter-group ul li div.filter-inner-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.f-nav-filters .filter-group ul li div.filter-inner-item label {
    font-size: .9rem;
    padding-left: 7px;
}

.f-nav-filters .filter-group h4 {
    font-family: var(--brand-font-family-body);
    font-size: 1.2rem;
    margin: 10px 0;
}

.f-courses-on-page .f-list-item {
    padding: 0 12px 24px 12px;
}

.f-courses-on-page .f-list-item-container {
    height: 100%;
    border: 1px solid #dedede;
    padding: 1rem;
    border-radius: 2px;
    transition: all .4s;
    background-color: #fafafa;
}

.f-courses-on-page .f-list-item-container:hover {
    transform: translateY(-10px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.f-courses-on-page .f-list-item-container .filter-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: .2rem;
}

.f-courses-on-page .f-list-item-container .filter-labels .f-item-node-value {
    background-color: var(--brand-color-theme-2);
    color: white;
    width: fit-content;
    padding: 4px 1rem;
    border-radius: 20px;
    margin-right: 10px;
    font-size: .85rem;
    margin-bottom: 10px;
}

.f-courses-on-page .f-list-item-container .f-list-item-title a {
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
}

.f-courses-on-page .f-list-item-container .f-list-item-teaser-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
    margin-bottom: 10px;

    p {
        margin: 0;
    }
}

.f-courses-on-page .f-list-item-container .f-instructor {
    color: var(--brand-color-theme-1);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    width: 100%;
}

.f-courses-on-page .f-list-item-container .f-instructor .f-item-node-value {
    position: relative;
    align-content: center;

    &::before {
        content: "\f007";
        font-family: "FontAwesome";
        position: relative;
        width: 25px;
        height: 25px;
        top: -2px;
        margin-right: 7px;
        display: inline-block;
        border-radius: 500px;
        border: 1px solid var(--brand-color-theme-1);
        text-align: center;
        font-size: .9rem;
    }
}

.f-courses-on-page .f-list-item-container .f-list-item-fields {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.f-courses-on-page .f-list-item-container .f-address {
    width: 100%;
}

.filters-scroll {
    max-height: 600px;
    overflow: auto;
    padding: 0rem 1rem 1rem 0;
    margin-top: 20px;
}

.f-price .f-item-node-value {
    position: relative;
    color: var(--brand-color-theme-2);
}

.f-price .f-item-node-value::before {
    content: "MYR: ";
    position: relative;
    margin-right: 5px;
    display: inline-block;
}

.f-price .f-item-node-value::after {
    content: ",";
    position: relative;
    color: #000;
}

.f-date .f-item-node-value {
    position: relative;
    color: #000;
    padding-left: 5px;
}

.f-date .f-item-node-value::before {
    content: "\f133";
    position: relative;
    font-family: "FontAwesome";
    margin-right: 5px;
}

.f-address .f-item-node-value {
    position: relative;
    margin-top: 5px;
}

.f-address .f-item-node-value::before {
    content: "\f3c5";
    margin-right: 7px;
    font-family: "FontAwesome";
}

.f-courses-on-page .f-list-item-button a {
    color: #000;
    font-size: .9rem;
    text-decoration: underline;
}

.f-faq-main-section .accordion-header {
    margin: 0;
}

.f-faq-main-section .accordion-header button {
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: none;
    color: var(--brand-color-theme-1);
}

.f-faq-main-section .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--brand-color-theme-1);
    border-bottom: 1px solid #dedede;
    color: white;
}

.content-type-43875 .course-banner {
    background-color: var(--brand-color-theme-1);
    margin-bottom: 1rem;
    margin-top: 8rem;
    border-radius: 15px;
    padding: 2rem 0;
}

.content-type-43875 .course-banner div.col-12 {
    padding: 12px;
}

.content-type-43875 .fHeader {
    border-bottom: 1px solid var(--brand-color-theme-2);
}

.content-type-43875 .course-banner .col-12>.item>span {
    background-color: var(--brand-color-theme-2);
    color: white;
    padding: 4px .7rem;
    border-radius: 5px;
}

.content-type-43875 .course-banner .col-12>.item h3 {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.2em;
    text-align: justify;
    color: #333;
    text-align: start;
    span {
        font-size: 1.3rem;
        display: block;
    }
}

.content-type-43875 .course-banner .col-12>.item p {
    font-size: 1rem;
    text-align: justify;
    color: #333;
}

.content-type-43875 .course-banner .col-12>.item .boxes-members {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 7px;
    border-radius: 10px;
}

.content-type-43875 .course-banner .col-12>.item .boxes-members>div {
    width: 50%;
    padding: 1rem 12px;
    text-align: center;
    border-radius: 10px;
}

.content-type-43875 .course-banner .col-12>.item .boxes-members>div h3 {
    color: #000;
    margin-top: 10px;
    text-align: center;
}

.content-type-43875 .course-banner .col-12>.item .boxes-members>div.box-2 {
    background-color: #dedede;
}

.content-type-43875 .course-banner .col-12:nth-child(2)>.item p {
    text-align: center;
}

.content-type-43875 .course-banner .col-12:nth-child(2)>.item a.fButtonNew {
    display: inline-block;
    padding: 7px 1rem;
    text-align: center;
    background-color: var(--brand-color-theme-2);
    color: white;
    border-radius: 500px;
    min-width: 250px;
    max-width: 100%;
    text-decoration: none;
}

.content-type-43875 .course-banner .col-12:nth-child(2)>.item p>a {
    color: #000;
    text-decoration: underline;
}

.content-type-43875 #fSidebarRight {
    border-left: 1px solid #dedede;
}

.content-type-43875 #fSidebarRight .region-sidebar-right {
    margin-top: 8rem;
    position: sticky;
    top: 8rem;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .fModuleTitle h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-list-item-fields .f-list-item-field {
    display: none;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-list-item-fields .f-list-item-field:nth-child(3) {
    display: block;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item-teaser-content {
    display: none;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-list-item-fields .f-list-item-field:nth-child(3) .f-item-node-title {
    display: none;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item {
    padding: 0 12px 12px 12px;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item .f-list-item-container {
    height: 100%;
    border-bottom: 1px solid #dedede;
    padding-bottom: 12px;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item .f-list-item-container .f-list-item-title a {
    color: #000;
    font-size: .9rem;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item .f-list-item-container .f-list-item-field {
    font-size: .9rem;
}

.content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item .f-list-item-container .f-list-item-button a {
    font-size: .9rem;
    display: inline-block;
    text-decoration: underline;
    margin-top: 7px;
    color: var(--brand-color-theme-1);
}

.content-type-43875 #fContentPost {
    border-top: 1px solid #dedede;
    background-color: #fafafa;
}

.content-type-43875 .box-info h2,
.content-type-43875 .box-info h3,
.content-type-43875 .box-info h4 {
    color: var(--brand-color-theme-1);
    font-weight: 700;
}

.f-instructor .f-media-image {
    width: 250px;
    margin-right: 10px;
    margin-bottom: 10px;
    float: left;
    border-radius: 10px;
    overflow: hidden;
}

.f-courses-testimonials .f-list .f-list-item {
    padding: 12px;
}

.f-courses-testimonials .f-list .f-list-item .f-list-item-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #dedede;
    padding: 1rem;
    transition: all .4s;
    border-radius: 20px;

    &:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transform: translateY(-10px);
    }
}

.f-courses-testimonials .f-list-item-container .f-list-item-fields {
    order: -1;
}

.f-courses-testimonials .f-list-item-container .f-list-item-fields .f-item-node-title {
    display: none;
}

.f-courses-testimonials .f-list-item-container .f-list-item-fields .f-item-node-value img {
    width: 20px;
    display: inline-block;
}

.f-courses-testimonials .f-list-item-container .f-list-item-teaser-image {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.f-courses-testimonials .f-list-item-container .f-list-item-teaser-image img {
    width: 70px;
    height: 70px;
    border-radius: 500px;
    margin-right: 10px;
}

.content-type-43875 .title-with-sub-text .fModuleTitle h3 {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    max-width: unset;
}

.f-dashboard-side-bar {
    order: -1;
    margin-bottom: 8px;
}

.f-dashboard-side-bar .region-sidebar-right {
    height: 100%;
    background-color: #fafafa;
    padding-right: 16px;
}

.f-dashboard-side-bar .region-sidebar-right .fModuleTitle h3 {
    font-size: 1.6rem;
}

.f-dashboard-side-bar .region-sidebar-right .f-side-dashboard ul.fMenu {
    display: flex;
    flex-wrap: wrap;
}

.f-dashboard-side-bar .region-sidebar-right .f-side-dashboard ul.fMenu li a {
    display: block;
    padding: 10px 1rem;
    color: #000;
    background-color: var(--brand-color-theme-2-light-version);
    border-left: 4px solid var(--brand-color-theme-2);
    border-bottom: 1px solid white;
    transition: all .4s;

    &:hover {
        background-color: var(--brand-color-theme-1-light-version);
        border-color: var(--brand-color-theme-1);
        border-bottom: white;
    }
}

.f-dashboard-side-bar .region-sidebar-right .f-side-dashboard ul.fMenu li.selected a {
    background-color: var(--brand-color-theme-1-light-version);
    border-color: var(--brand-color-theme-1);
    border-bottom: white;
}

/* curve css starts here */

.f-white-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/309eabaacb3c4e89571f25c7fd3f08a3.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.f-orange-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/8a89cd12bd4e835962a8cdcc76c69bc5.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.f-skin-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/1d86611e2f39f6a89f6de828ca11e7b9.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.f-light-yellow-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/55ce463324dfa97d742a157f8fb8fd9c.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.f-light-orange-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/d259a3612185cdedd76c8dccf626fb77.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.f-light-blue-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/76148f45818b7d2b3f3921066bb61b72.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.f-blue-curve {
    background-image: url("https://storage.unitedwebnetwork.com/files/1380/7d1c2ead0dccb586c91f11bac67cc69e.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/

@media(min-width:991.9px) {

    .f-header-logo {
        width: fit-content;
        opacity: 0;
        visibility: hidden;
        transition: all .4s;
    }

    header.active .f-header-logo {
        opacity: 1;
        visibility: visible;
    }

    .f-header-logo .fGalleryImage img {
        width: 130px;
    }

    .main-menu .fMenu {
        display: flex;
        justify-content: end;
        font-family: var(--brand-font-family-heading);
        align-items: center;
    }

    .main-menu .fMenu>li {
        padding: 7px 7px;
        position: relative;
    }

    .main-menu .fMenu>li.has-submenu {
        padding-right: 20px;
    }

    .main-menu .fMenu>li>a {
        color: #000;
        position: relative;
        font-weight: 500;
        font-size: 1rem;

        span {
            font-size: 1rem;
        }
    }

    .main-menu .fMenu>li:last-child {
        padding-right: 0;
    }

    .main-menu .fMenu>li.has-submenu:last-child {
        padding-right: 20px;
    }

    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 3.8rem;
        left: 7px;
        background-color: white;
        visibility: hidden;
        width: 230px;
        opacity: 0;
        z-index: -1;
        box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
        transform: scaleY(0);
        transform-origin: top center;
        transition: all 0.4s ease 0s;
        padding: 0;
    }

    .main-menu .fMenu>li:last-child>ul {
        left: unset;
        right: 0;
    }

    .main-menu .fMenu>li.has-submenu>a {
        position: static;
    }

    .main-menu .fMenu>li.has-submenu>a::before {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 5px;
        top: 51%;
        transform: translateY(-50%);
        font-size: .8rem;
    }

    .main-menu .fMenu>li>ul::before {
        content: "";
        position: absolute;
        left: 0;
        height: 2.3rem;
        width: 100%;
        top: -2rem;
        background-color: transparent;
    }

    .main-menu .fMenu>li:hover>ul {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        z-index: 9;
    }

    .main-menu .fMenu>li>ul>li {
        display: block;
        margin: 0 0;
        padding: 0px 0px;
    }

    .main-menu .fMenu>li>ul>li>a {
        font-size: .9rem;
        line-height: 1.2em;
        color: var(--brand-color-theme-2);
        padding: .7rem 1rem;
        display: block;
        border-bottom: 1px solid #dedede;

        span {
            font-size: .9rem;
        }
    }

    .main-menu .fMenu>li>ul>li>a:hover {
        background-color: var(--brand-color-theme-2);
        color: white;
    }

    .main-menu .fMenu>li>ul>li:last-child>a {
        border-bottom: 0;
    }

    header.active .main-menu .fMenu>li>a {
        color: var(--brand-color-theme-2);
        transition: all 0.4s ease 0s;
    }

    header .main-menu {
        width: fit-content;
    }

    .header-main {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99991;
    }

    .not-home header {
        background-color: white;
    }

    .not-home header .f-header-logo {
        visibility: visible;
        opacity: 1;
    }
}

@media(min-width:1199.99px) {
    .blogs-page #fMatter {
        width: 70%;
    }

    .blogs-page #fSidebarRight {
        width: 30%;
    }
}

@media(min-width:1279.9px) {
    .f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image img {
        width: 60px;
        height: 60px;
    }

    .f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image .name-and-text
    {
        width: 80%;
        text-align: start;
    }
}

@media(min-width:1422.22px) {
    .f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image img {
        width: 70px;
        height: 70px;
    }

    .f-testimonials-design .f-list-item .f-list-item-container .f-list-item-teaser-image .name-and-text
    {
        width: auto;
    }
}

/*xl*/

@media (max-width: 1299.9px) {
    html {
        font-size: 16px;
    }

    .f-courses-on-page .f-list-item-container .f-list-item-title a {
        font-size: 1.2rem;
    }

}


/*lg*/

@media (max-width: 1199.99px) {
    html {
        font-size: 16px;
    }

    .content-type-43880 #fContent #fMatter,
    .content-type-43899 #fContent #fMatter {
        border-right: 0;
        border-bottom: 1px solid #dedede;
    }

    .content-type-43880 #fContent #fSidebarRight,
    .content-type-43899 #fContent #fSidebarRight {
        padding: 0;
        position: static;
    }

    .blogs-page #fMatter {
        border-right: 0;
        border-top: 1px solid #dedede;
    }

    .blogs-page #fSidebarRight {
        order: -1;
        padding: 12px 0;
    }

    .blogs-page #fSidebarRight .fRegion {
        width: 100%;
    }

    .blogs-page #fSidebarRight .fModuleTitle h3 {
        text-align: center;
    }

    .blogs-page #fSidebarRight ul.fMenu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }

    .blogs-page #fSidebarRight ul.fMenu li {
        padding: 12px;
    }

    .blogs-page #fSidebarRight ul.fMenu li>a,
    .blogs-page #fSidebarRight ul.fMenu li:last-child>a {
        border: 1px solid #dedede;
    }

    .f-dashboard-side-bar .region-sidebar-right {
        padding-left: 12px;
        padding-right: 12px;
    }

}

@media(max-width: 991.99px) {
    html {
        font-size: 15px;
    }

    .row.w-100 {
        --bs-gutter-x: 0;
    }

    .fHeader .navbar-header {
        margin: 0;
    }

    .fHeader .navbar-header .row.row-0 {
        margin: 0 15px;
    }

    .navbar-header .navbar-toggler {
        display: block;
    }

    .navbar-collapse.collapse.show {
        display: block;
    }

    .region-header,
    .region-headertop {
        display: inline-block;
        width: 100%;
    }

    .region-header .fModule,
    .region-headertop .fModule {
        display: block;
    }

    .row.w-100 {
        --bs-gutter-x: 0;
    }

    /*** Programme ***/
    .session-container th {
        font-size: 0px;
    }

    .session-container th select {
        font-size: 1rem;
    }

    tr.session-row {
        border: 1px solid var(--brand-color-theme-1);
        margin-top: 1.5rem;
    }

    tr.session-row-hidden {
        border: 0 none;
        margin-top: 0;
    }

    .session-time-zone {
        display: inline-block;
        padding-left: 0.5rem;
    }

    .session-time-zone::before,
    .session-time-zone::after {
        position: relative;
        content: " ";
        display: inline;
    }

    .session-time-zone::before {
        content: "(";
    }

    .session-time-zone::after {
        content: ")";
    }

    tr.session-row,
    tr.session-row td,
    td.session-time {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    tr.session-row td {
        border: 0px none;
    }

    th.session-time {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .session-time .session-time-date.is-different {
        margin-left: 0;
    }

    .session-container tr:hover td.session-time,
    table.fTable tr:nth-child(odd) td.session-time,
    table.fTable tr:nth-child(even) td.session-time {
        display: block;
        text-align: left;
        background: var(--brand-color-theme-1);
        color: #fff;
    }

    .session-container th:last-child {
        display: none;
    }

    .session-container {
        border: 0;
    }

    body .session-container th {
        display: none;
    }

    .navbar-toggle .icon-bar {
        background-color: var(--brand-color-theme-2);
    }

    .main-menu {
        position: static !important;
    }

    .main-menu nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 6.2em;
        height: fit-content;
        width: 100%;
        background-color: var(--brand-color-theme-2);
        width: 95%;
        padding: 0;
        z-index: 9999999;
    }

    .main-menu nav ul {
        margin: 0;
    }

    .main-menu nav ul.fMenu>li>a {
        display: block;
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: var(--brand-color-theme-2);
    }

    .main-menu nav ul.fMenu>li:last-child>a {
        border-bottom: 0;
    }

    .main-menu nav ul.fMenu>li.has-submenu>a::after {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: white;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul {
        position: relative;
        padding: 7px;
        background-color: var(--brand-color-theme-1);
        display: none;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul>li>a {
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: var(--brand-color-theme-2);
        display: block;
    }

    .f-header-logo .ItemfinnerGallery img {
        width: 150px;
    }

    .fheaderToptwo .region-headertop .f-language-button-menu {
        position: static;
        padding-left: 0;
        transform: unset;
        margin-bottom: 4px;
    }

    .f-language-button-menu .fMenu li>ul {
        top: 60px;
    }

    .fheaderToptwo .region-headertop .f-top-reg-and-sign-button {
        position: static;
        padding-right: 0;
        transform: unset;
        margin-bottom: 4px;
    }

    .fheaderToptwo .region-headertop>.row {
        justify-content: space-between;
    }

    .ticker-tape-container {
        width: 100%;
    }

    .f-ticker-main-container {
        order: -1;
        margin-bottom: 10px;
    }

    .title-with-sub-text .fModuleTitle {
        text-align: center;
    }

    .title-with-sub-text .fModuleTitle p {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .title-with-sub-text .fModuleTitle h3 {
        width: 100%;
        text-align: center;
        max-width: 100%;
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .f-designed-tabs .fModuleTitle h3 {
        font-size: 2rem;
        color: var(--brand-color-theme-1);
        width: 100%;
        text-align: center;
    }

    .f-designed-tabs div.fModuleContent>p {
        text-align: center;

        a {
            display: inline-block;
            width: fit-content;
            margin-right: 10px;
            padding: .375rem 1rem;
            font-size: 1.1rem;
            align-content: center;
            margin-bottom: 10px;
            border: 1px solid #000;
            color: #000;
            border-radius: 500px;
            transition: all .4s;
            text-decoration: none !important;

            &:hover {
                background-color: #000;
                color: white;
            }
        }
    }

    .f-designed-tabs div.fModuleContent>p a::before {
        content: "";
        width: 30px;
        height: 15px;
        position: relative;
        display: inline-block;
        top: 3px;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 100%;
        margin-right: 10px;
        transition: all .4s;
        background-image: url("https://storage.unitedwebnetwork.com/files/1380/4580b26d083f25ef12cb43abda8f777d.png");
    }

    .f-designed-tabs div.fModuleContent>p a:hover::before {
        filter: invert();
    }

    .header-main {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 99991;
    }

    header.active {
        box-shadow: none !important;
        background-color: transparent !important;
    }

    header.mobile-active-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99991;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
        background-color: white !important;
    }

    header .f-header-logo {
        opacity: 0;
        visibility: hidden;
        transition: all .4s;
    }

    header.mobile-active-header .f-header-logo {
        opacity: 1;
        visibility: visible;
    }

    .f-hero-section .fGalleryItem .ItemfinnerGallery {
        padding: 12rem 0 6rem 0;
    }

    .not-home header {
        background-color: white;
    }

    .not-home header.active {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
        background-color: white !important;
    }

    .not-home header .f-header-logo {
        visibility: visible;
        opacity: 1;
    }

    .fPageTitle {
        padding: 15rem 0 3rem;
    }

    .f-photo-with-custom-text .fModuleTitle {
        display: block;
    }

    .f-photo-with-custom-text .fModuleContent .fModuleTitle {
        display: none;
    }

    .f-meet-academic-guides .f-media-image {
        text-align: center;
        width: 100%;
    }

    .f-meet-academic-guides .f-media-image img {
        float: none;
        display: inline-block;
        margin: 0 0 10px 0;
        width: 230px;
    }

    .f-meet-academic-guides p.brand-color-theme-1-text {
        text-align: center;
    }

    .f-nav-filters .filter-sticky {
        position: static;
    }

    .f-course-page-main .f-nav-filters {
        border-right: unset;
    }

    .f-nav-filters .filter-group {
        width: 100%;
    }

    .f-nav-filters .filter-group ul {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .f-nav-filters .filter-group ul li {
        padding: 0 10px 10px 0;
    }

    .filters-scroll {
        display: flex;
        flex-wrap: wrap;
    }

    .f-course-page-main .f-nav-filters {
        padding-bottom: 0 !important;
    }

    .content-type-43875 .course-banner {
        margin-top: 12rem;
    }

    .content-type-43875 .box-info {
        border-radius: 15px;
    }

    .content-type-43875 #fSidebarRight {
        border-left: 0;
    }

    .content-type-43875 #fSidebarRight .region-sidebar-right {
        margin-top: 2rem;
        position: static;
    }

    .content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item {
        padding: 12px;
    }

    .content-type-43875 #fSidebarRight .region-sidebar-right .f-course-side-bar .f-list-item .f-list-item-container {
        border: 1px solid #dedede;
        padding: 12px;
        border-radius: 12px;
    }

    .content-type-43875 #fSidebarRight .region-sidebar-right .fModuleTitle h3 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .f-instructor .f-media-image {
        float: unset;
        margin: 10px auto;
    }

    .f-instructor .f-media-text>p.brand-color-theme-1-text.fs-5.mt-0 {
        text-align: center;
    }

    .f-ticker-main-container {
        border-bottom: 1px solid #dedede;
        padding-bottom: 7px !important;
    }



}


/*sm*/

@media (max-width: 767.99px) {
    html {
        font-size: 14px;
    }

    .f-hero-section .fGalleryItem .ItemfinnerGallery .row .fGalleryImage {
        width: 100%;
    }

    .f-hero-section .fGalleryItem .ItemfinnerGallery .row .fGalleryText {
        width: 100%;
    }

    .f-hero-section .fGalleryItem .ItemfinnerGallery {
        padding: 8rem 0 4rem 0;
    }
}


/*xs*/

@media (max-width: 574.99px) {
    html {
        font-size: 14px;
    }

    .f-courses-main .f-list-item .f-list-item-container {
        padding: 1rem;
    }

    .f-courses-main .f-list,
    .f-testimonials-design .f-list,
    .f-designed-tabs .f-list {
        margin: 0;
    }

    .f-courses-main .f-list-item {
        padding: 12px 0;
    }

    .f-testimonials-design .f-list .f-list-item,
    .f-designed-tabs .f-list-item {
        padding: 0;
    }

    .title-with-sub-text .fModuleTitle h3,
    .f-designed-tabs .fModuleTitle h3 {
        font-size: 1.7rem;
    }

    .f-nav-blogs ul {
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }

    .f-nav-blogs ul li {
        width: 50%;
        padding: 7px 12px;
    }

    .f-nav-blogs ul li a {
        width: 100%;
        text-align: center;
        border: 1px solid var(--brand-color-theme-2);
    }

    #nav-up {
        right: 7px;
        bottom: 3px;
    }

    .f-all-logos .fGalleryImages {
        margin: 0;
    }

    .blogs-page #fSidebarRight ul.fMenu li {
        width: 50%;
    }

    .blogs-page #fSidebarRight ul.fMenu li>a {
        display: block;
        align-content: center;
        height: 100%;
        text-align: center;
    }

    .content-type-43899 #fContent #fMatter {
        padding: 0;
    }

    .navbar-toggle-container .navbar-toggle {
        bottom: 20px;
        transition: all .3s;
    }

    header.mobile-active-header .navbar-toggle-container .navbar-toggle {
        bottom: unset;
    }
}