@import url('https://fonts.googleapis.com/css2?family=Questrial&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=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

:root {
    --brand-color-theme-1: #f16821;
    --brand-color-theme-2: #d14f12;
    /* --brand-color-theme-1: #a74082;
    --brand-color-theme-1: #282828;
    --brand-color-theme-1: #3b3b3b; */
    --brand-font-family-heading: "Questrial", sans-serif;
    --brand-font-family-body: "Questrial", sans-serif;
    /* --brand-font-family-heading: "Roboto", sans-serif;
    --brand-font-family-body: "Roboto", sans-serif; */
    --brand-bg-light-gradient: linear-gradient(120deg, #fffaf5, #ffefe2);
}

.brand-color-theme-1-bg {
    background-color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-1-text {
    color: var(--brand-color-theme-1) !important;
}

.brand-bg-light-gradient {
    background-image: var(--brand-bg-light-gradient) !important;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
}

body {
    padding: 0;
    padding-top: 0 !important;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    font-family: var(--brand-font-family-body);
}

p {}

a,
span {}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--brand-font-family-heading);
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin: 1.25rem 0;
    line-height: 1.5;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.25rem 0;
    line-height: 1.5;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 1.25rem 0;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 1.25rem 0;
}

h5 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 1rem 0;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.no-spacing {
    padding: 0 !important;
    margin: 0 !important;
}

.bg-none {
    background: transparent !important;
}

.container {
    min-width: 320px;
}

body.width-full #fContent>.container {
    width: 100%;
    padding: 0;
    min-width: 100%;
}

body.width-full #fMatter {
    padding: 0;
}

#f-messages {
    margin: 0;
    background-color: var(--brand-color-theme-1);
    position: fixed;
    top: 0rem;
    width: 100% !important;
    left: 0;
    color: white;
    z-index: 9999999;
}

#f-messages .item {
    background-color: var(--brand-color-theme-1);
}

@-webkit-keyframes fadeOutmessage {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

@keyframes fadeOutmessage {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.fadeOutmessage {
    -webkit-animation-name: fadeOutmessage;
    animation-name: fadeOutmessage;
}

#fPageTitle {
    display: block;
}

#nav-up {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99999;
    font-size: 18px;
    background-color: white;
    color: var(--brand-color-theme-1);
    cursor: pointer;
    width: 48px;
    height: 48px;
    outline: none;
    border: 4px solid var(--brand-color-theme-1);
    border-image: initial;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgb(37 34 25);
    visibility: visible !important;
}

#nav-up:hover {
    background-color: rgb(255, 255, 255);
    color: var(--brand-color-theme-1);
}


/*Module*/

.fModule .fModuleTitle,
.fModule .fModuleContent {
    width: 100%;
}

.fModuleEnd .fModuleTitle,
.fModuleEnd .fModuleContent,
.fModuleBoxed {
    margin: 0 auto;
}

#fMatter .fModule,
#fSidebarRight .fModule,
#fContentPre .fModule,
#fContentPost .fModule {
    padding-top: 0rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

.fRegion.region-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fRegion.region-header>.row {
    margin: 0;
}

.fRegion {
    display: inline-block;
    width: 100%;
}

.fPageTitle {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    background-color: var(--brand-color-theme-1);
}

.fPageTitle h1 {
    font-size: 2rem;
}

body.title-off .fPageTitle {
    display: none;
}

.fModuleTitle h3 {
    color: var(--brand-color-theme-1);
    font-weight: 600;
    font-size: 1.85rem;

    >p {
        color: #666;
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.1em;
    }
}

.fModuleTitle h3 span {
    display: block;
    width: fit-content;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--brand-color-theme-1);
    text-transform: uppercase;
    font-size: .9rem;
    margin-bottom: .4rem;
    position: relative;
}

.fModuleTitle h3 span::before {
    content: "//";
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.f-folders-name .fGalleryContainer>h4 {
    color: var(--brand-color-theme-1);
    font-size: 1.75rem;
    font-weight: 600;
}

.title-white .fModuleTitle h3 {
    color: white;
}

.title-center .fModuleTitle h3 span::before {
    content: unset;
}

.title-center .fModuleTitle h3,
.f-folders-name.title-center .fGalleryContainer>h4 {
    text-align: center;
}

.title-center .fModuleTitle h3 span {
    margin: auto;
    margin-bottom: .4rem;
}

.f-photo-with-custom-text .fModuleTitle h3 {
    display: none;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
    text-align: start;
    display: block;
}

.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 span {
    margin: 0 0 .4rem 0;
}

ul.fGalleryImages.fGalleryList {
    position: relative;
    margin: 0px;
    list-style: none;
    padding: 0px;
}

ul.fGalleryImages.fGalleryList li.fGalleryItem {
    margin: 0px;
    list-style: none;
}

.ItemfinnerGallery {
    position: relative;
}


/* Responsive Homepage */

.fModuleEnd .fModuleTitle {
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
}

@media (min-width: 576px) {
    .fModuleEnd .fModuleTitle {
        width: 540px;
    }
}

@media (min-width: 768.9px) {
    .fModuleEnd .fModuleTitle {
        width: 720px;
    }

}

@media (min-width: 992px) {
    .fModuleEnd .fModuleTitle {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .fModuleEnd .fModuleTitle {
        width: 1140px;
    }
}

@media (min-width: 1400px) {
    .fModuleEnd .fModuleTitle {
        width: 1320px;
    }
}

.collapse.show {
    display: block !important;
}

.collapse.in {
    display: block !important;
}

.navbar-header .navbar-toggler {
    display: none;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 1rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle .icon-bar {
    position: absolute;
    right: 0;
    height: 3px;
    width: 26px;
    background: #1173ba;
}

.navbar-toggle .icon-bar:nth-child(3) {
    opacity: 0;
}

.navbar-toggle .icon-bar:nth-child(2) {
    transform: rotate(-45deg);
    margin-bottom: 4px;
}

.navbar-toggle .icon-bar:nth-child(1) {
    transform: rotate(45deg);
}

.navbar-toggle.collapsed .icon-bar:nth-child(1),
.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    transform: none;
    /* margin: 0;
    margin: 0; */
}

.navbar-toggle.collapsed .icon-bar:nth-child(1) {
    margin-top: -7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    margin-top: 7px;
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1;
}

.navbar-toggle-container .navbar-toggle {
    z-index: 9999;
}


/* Header */

.region-header,
.region-headertop {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.region-header .fModule,
.region-headertop .fModule {
    display: flex;
    align-items: center;
    align-self: center;
}

.region-headertop .fModule {
    padding: 0;
}

header ul,
ul.fMenu,
header ul li,
ul.fMenu li {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

.headertop ul li {
    display: inline-block;
    align-items: center;
    padding: 0 0.7em 0 0;
    position: relative;
}

.headertop ul li ul {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    display: none;
}

.headertop ul li ul li {
    border: none;
    display: block;
}

.Ftop-header-logo li.fGalleryItem {
    width: 42%;
}



/*** Button ***/

a.fButton,
.fForm .buttons input,
.fbutton-btn a,
.fForm .buttons a {
    background-color: var(--brand-color-theme-1);
    display: inline-block;
    padding: 10px 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--brand-color-theme-1);
    border-radius: 500px;
    box-shadow: 0 8px 20px rgba(241, 106, 33, 0.18);
    transition: transform .15s ease, box-shadow .15s ease;
    margin-right: 10px;
}

a.fButton:hover,
.fForm .buttons input:hover,
.fbutton-btn a:hover,
.fForm .buttons a:hover {
    background-color: var(--brand-color-theme-2);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

a.fButton2 {
    background-color: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 10px 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 500px;
    box-shadow: 0 8px 20px rgba(241, 106, 33, 0.18);
    transition: transform .15s ease, box-shadow .15s ease;
}

a.fButton2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/****--Form---****/

select {
    word-wrap: normal;
    padding: 0.3rem 10px;
}

.fForm label {
    float: left;
    text-align: left;
    font-size: 16px;
    width: 100%;
}

.fForm .buttons {
    padding: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.fForm .form-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    padding: 0 0 7px;
}

.fForm input,
.fForm select,
.fForm textarea,
.fForm .date {
    padding: 0.85rem 10px;
    width: 100%;
}

.fForm .hint {
    color: #333;
    margin: 11px 0;
}

.fForm .hint a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.fForm .hint a:hover {
    color: var(--brand-color-theme-1);
}

input.form-control,
textarea.form-control {
    display: inline-block;
    margin: 10px 0px;
}

.fForm .form-item-type-checkbox .checkbox label,
.fForm .form-item-type-radio .checkbox label,
.fForm .form-item-type-boolean label {
    display: flex;
    align-items: center;
}

.user-register-group table tr:nth-child(odd) {
    background: #ddd;
}

.listing-header-item-currency {
    width: fit-content;
    display: flex;
    border: 1px solid var(--brand-color-theme-1);
    border-radius: 0.25rem;
    overflow: hidden;

    >* {
        border: 0;
        border-radius: 0;
    }

    input[type="submit"] {
        padding: 0.5rem 0.75rem;
        background: var(--brand-color-theme-1);
        color: #fff;
    }
}


/*----------iconset----------*/

.iconset .fMenu {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.iconset .fMenu>li {
    list-style: none;
    margin: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    transition: 0.5s all;
    position: relative;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.iconset .fMenu>li:hover {
    background: #fff;
    box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
}

.iconset .fMenu>li>a {
    display: block;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}

.iconset img {
    width: auto;
    max-width: 64px;
    display: block;
    margin-bottom: 0.5rem;
}

.menu-item-text .action:before {
    display: block;
    content: "";
    height: 1.04rem;
    width: 1.04rem;
    background: red;
    border-radius: 1rem;
    position: absolute;
    left: 10px;
    top: 19%;
    transform: translate(0, -50%);
    animation: blinking 2s infinite;
}

.iconset .fMenu ul {
    margin-left: 4px;
    margin-top: 0.5rem;
}

.iconset .fMenu ul,
.iconset .fMenu ul li {
    list-style: square;
}

.iconset .fMenu ul a {
    font-weight: 500;
}


/*----------animation----------*/

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Menu Timeline */

.menu-timeline ul.fMenu {
    display: flex;
    margin-bottom: 1rem;
}

.menu-timeline li {
    flex: 1 1 0;
    letter-spacing: -0.5px;
    text-align: center;
    position: relative;
}

.menu-timeline li.selected {
    font-weight: 700;
}

.menu-timeline li::before {
    height: 2px;
    width: 100%;
    left: -50%;
    top: 1rem;
    position: absolute;
    background: var(--brand-color-theme-1);
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
}

.menu-timeline .menu-item-text big {
    clear: both;
    display: block;
    width: fit-content;
    padding: 0.5rem 1rem;
    margin: 0 auto 0.5rem;
    background: var(--brand-color-theme-1);
    color: #fff;
    font-weight: 700;
}

.menu-timeline .menu-item-text span {
    display: block;
}

.menu-timeline li.future::before {
    display: none;
}

.menu-timeline li.future {
    opacity: 0.25;
}

.menu-timeline li.future a {
    pointer-events: none;
}


/* login page starts here */

body.view-login .fForm,
body.view-account-recover .fForm {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem 1rem;
    width: 700px;
    max-width: 90%;
    margin: 2rem auto;
}

body.view-account-recover .fForm .form-item-type-fieldset {
    border: 0;
    padding: 0;
}

.fForm .error {
    margin: .5rem 0 0 0;
    font-size: .8rem;
}

.buttons {
    padding-left: 12px !important;
}

body.view-login .fForm .buttons,
body.view-account-recover .fForm .buttons {
    padding-left: 0 !important;
}

body.view-account-recover #fMatterPre #fModule-51211 {
    display: none;
}


/* login page ends here */


/* Programme Table */

tr.session-row-hidden {
    display: none !important;
}

.session-heading {
    text-align: center;
    margin-top: .5rem;
    color: #4d4f53;
    font-weight: bold;
    line-height: 1.3;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-color-theme-1);
}

.session-container {
    border-collapse: separate;
    border-spacing: 0 1rem;
}

body .session-container th {
    background: var(--brand-color-theme-1);
    color: #fff !important;
    font-weight: bold;
}

.session-container tr:last-child td {
    border-bottom: 0 none !important;
}

.session-container .session-details {
    vertical-align: top !important;
    position: relative;
}

.session-container td.session-details[colspan="2"] {
    text-align: center;
}

td.session-time,
th.session-time {
    padding: 1rem;
    width: 150px;
    min-width: 150px;
}

.session-time.session-time-show {
    font-size: 0.9rem;
}

td.session-time {
    border-right: 1px solid var(--brand-color-theme-1);
}

.session-time .session-time-start,
.session-time .session-time-end {
    display: inline-block;
    opacity: 1;
}

.session-time .session-time-start:after {
    display: inline-block;
    content: " - ";
    padding-left: 5px;
}

.session-time .session-time-zone {
    font-size: 0.9rem;
    color: #999;
}

.session-time .session-time-date {
    display: none;
}

.session-time .session-time-date.is-different {
    color: #fff;
    display: inline-block;
    background: #aaa;
    border-radius: 2rem;
    font-size: 0.8rem;
    padding: 0.25rem 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.session-container ul li {
    margin: .5em 0 .5em 20px !important;
    list-style: square;
}

.session-sub {
    padding-left: 0;
    list-style: square;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.session-sub-title {
    font-weight: 600;
}

.session-sub .session-people {
    padding-top: 0;
    margin-top: 0;
}

.session-title.session-sub-title {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.75;
    display: inline;
}

.session-title>a {
    text-decoration: none;
    color: var(--brand-color-theme-1);

    &:hover {
        text-decoration: underline;
    }
}

.session-venue {
    width: fit-content;
    background: var(--brand-color-theme-1);
    display: inline-block;
    margin-top: .2rem;
    color: #fff;
    font-size: .8rem;
    padding: .2rem .7rem;
}

.session-venue::before {
    content: "\f3c5";
    font-family: "FontAwesome";
    margin-right: 5px;
}

.session-venue a {
    font-size: 0.8rem;
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
}

.session-venue a::before {
    display: block;
    content: "";
    height: 1.1rem;
    width: 1.1rem;
    background: #fff;
    border-radius: 2rem;
    position: absolute;
    left: 6px;
    line-height: 1rem;
    top: 50%;
    transform: translate(0, -50%);
    animation: blinking 1.2s infinite;
}

.session-status-3 .session-venue,
.session-status-2 .session-venue {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    background: url('https://img.icons8.com/fluency-systems-regular/48/000000/marker--v1.png') left center no-repeat;
    background-size: 1rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

span.live {
    color: #cc0000 !important;
}

.session-status-3 .session-venue,
.session-status-2 .session-venue {
    background-color: #cc0000;
    display: inline-block;
    position: relative;
    margin-top: 2rem;
}

.session-status-3>.session-title:before,
.session-status-2>.session-title:before {
    position: relative;
    content: "LIVE";
    color: #cc0000;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    animation: blinking 1.2s infinite;
}

.no-user .session-status-3 .session-venue {
    display: none
}

.no-user .session-status-3>.session-title:before {
    display: none
}

.session-status-2 .session-venue,
.session-status-2>.session-title:before {
    display: none;
}

.session-mine.session-status-2>.session-title:before,
.session-mine.session-status-2.session-full:before {
    content: "PRESENTER TO JOIN SESSION";
    color: #FFA500;
    display: block;
    margin-bottom: 0.5rem;
}

.session-mine.session-status-2 .session-venue {
    display: inline-block;
}

.session-people-item {
    display: flex;
    flex-wrap: wrap;
}

.session-people-name {
    font-weight: 600;
    color: var(--brand-color-theme-1);
}

.session-people-role {
    display: inline-block;
    color: var(--brand-color-theme-1);
    text-decoration: underline;
    order: -1;
    padding-right: 5px;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body.com-event.view-session-view .session-full {
    border: 1px solid #dedede;
}

body.com-event.view-session-view .session-full .session-time {
    background-color: var(--brand-color-theme-1);
    text-align: start;
    padding: 10px 12px;
    color: white;
}

body.com-event.view-session-view .session-full .session-item {
    padding: 10px 12px;
    border-bottom: 1px solid #dedede;
}

body.com-event.view-session-view .session-full .session-item:last-child {
    border-bottom: 0;
}

body.com-user.view-view .f-content-item-teaser-image img,
body.view-session-person .f-content-image {
    height: 18rem;
    width: 18rem;
    margin: 1rem auto;
    display: block;

    img {
        border-radius: 100%;
        object-fit: cover;
        border: 5px solid #aaa;
    }
}

body.com-user.view-view #fMatter .f-user-container,
body.event-session-person-hasphoto #fMatter .event-session-person {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

body.com-user.view-view #fMatter .f-user-container .f-content-item-teaser-image,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-image {
    width: 250px;
    height: 250px;
}

body.com-user.view-view #fMatter .f-user-container .f-content-item-teaser-image img,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-image img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 500px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 4px solid var(--brand-color-theme-1);
    object-fit: cover;
}

body.com-user.view-view #fMatter .f-user-container .f-list-item-content,
body.event-session-person-hasphoto #fMatter .event-session-person .f-content-text {
    background-color: #f7f7f7;
    text-align: justify;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

body.com-user.view-view #fMatter .f-user-container .f-content-node.f-content-fields {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: var(--brand-color-theme-1);
    color: white;
    padding: 2rem 1rem;
    border-radius: 15px;
}

body.com-user.view-view #fMatter .f-user-container .f-module-event-session,
body.event-session-person-hasphoto #fMatter .event-session-person .event-session-person-session {
    width: 100%;
}


/*** Programme table end ***/


/*** Custom CSS ***/


/* banner starts here */
.f-banner .fGalleryImage img {
    max-height: 550px;
    object-fit: cover;
}

.f-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
}

.f-banner .fGalleryText h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 1px 1px 1px #00000075;
    width: 600px;
    max-width: 100%;
}

.f-banner .fGalleryText h3 span {
    display: block;
    font-size: 1.3rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* banner ends here */


/* who we are starts here */

.f-who-we-are {
    padding-top: 3rem !important;
}

.f-who-we-are .f-module-content {
    background-color: #eee;
    border-radius: 20px;
    overflow: hidden;
}

.f-who-we-are .f-module-content .f-media-text {
    padding-left: 3rem;
    text-align: justify;
}

.f-who-we-are .f-module-content .f-media-image img {
    height: 100%;
    object-fit: cover;
}


/* who we are ends here */


/* mission vision starts here */

.f-vision-mission {
    .fGalleryItem {
        padding: 12px;

        .ItemfinnerGallery {
            height: 100%;
            padding: 12px;

            .fGalleryImage {
                display: flex;
                align-items: center;

                img {
                    width: 50px;
                    height: 50px;
                    object-fit: contain;
                }

                h3 {
                    margin: 0;
                    padding-left: 1rem;
                    color: #000;
                    font-weight: 500;
                }
            }
        }
    }

    .fGalleryItem:nth-child(1) .ItemfinnerGallery {
        border-right: 1px solid #dedede;
    }
}


/* mission ends here */


/* three boxes starts here */

.f-three-boxes {
    padding-top: 3rem !important;
    padding-left: 20%;
    padding-right: 0;

    .fGalleryItem {
        padding: 0;

        >.ItemfinnerGallery {
            overflow: hidden;
            position: relative;

            a.fGalleryImage {
                img {
                    height: 400px;
                    object-fit: cover;
                }
            }

            .fGalleryText {
                position: absolute;
                inset: 0;
                background-color: #00000093;
                align-content: end;
                text-align: center;
                padding-bottom: 1rem;

                h3 {
                    color: white;
                    margin-bottom: 0;
                    font-size: 1.2rem;
                }

                p {
                    color: white;
                    font-size: .85rem;

                    span {
                        display: block;
                    }
                }
            }
        }
    }
}

.f-three-boxes .fModuleTitle h3 {
    position: absolute;
    left: 5%;
    top: 2.5rem;
}

.f-three-boxes .ItemfinnerGallery .fGalleryText {
    padding: 10px;
}

.f-three-boxes .ItemfinnerGallery p {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    margin-bottom: 0;
}

.f-three-boxes .ItemfinnerGallery:hover p {
    height: 135px;
    opacity: 1;
    visibility: visible;
}

/* three boxes ends here */


/* area of experties starts here */

.f-area-of-expertise .f-media-image img {
    height: 100%;
    object-fit: cover;
}

.f-area-of-expertise .f-media-text ul {
    padding-left: 0;
}

.f-area-of-expertise .f-media-text ul li {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
}

.f-area-of-expertise .f-media-text ul li img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    padding-right: 10px;
    position: relative;
    top: 10px;
}

.f-area-of-expertise .f-media-text ul li div {
    width: 85%;
}


/* area of experties ends here */


/* our team starts here */

.f-team {
    background-image: url("https://storage.unitedwebnetwork.com/files/1302/f00c160d439119473c6c67b22dbddf19.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative !important;
}

.f-team::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-color: #ffffffee;
}

.f-team .fModuleContent,
.f-team .fModuleTitle {
    position: relative;
    z-index: 9;
}

.f-team .fGalleryItem {
    padding: 12px 10px;
}

.f-team .fGalleryItem .ItemfinnerGallery {
    height: 100%;
    text-align: center;
}

.f-team .fGalleryItem .ItemfinnerGallery .fGalleryText h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.f-team .fGalleryItem .ItemfinnerGallery .fGalleryImage {
    display: block;

    img {
        aspect-ratio: 1/1;
        width: 192px;
        max-width: 100%;
        border-radius: 500px;
        box-shadow: rgba(0, 0, 0, 0.068) 5px 5px 0px;
    }
}


/* our team ends here */


/* call to action starts here */
.f-call-to-action {
    margin-bottom: -8px;
}

.f-call-to-action .ItemfinnerGallery .fGalleryImage img {
    filter: grayscale(1);
    height: 300px;
    object-fit: cover;
}

.f-call-to-action .ItemfinnerGallery .fGalleryText {
    position: absolute;
    inset: 0;
    background-color: #8a8a8a69;
    text-align: center;
    align-content: center;
    color: white;
}

.f-call-to-action .ItemfinnerGallery .fGalleryText h3 {
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 1px #000;
}

.f-call-to-action .ItemfinnerGallery .fGalleryText h3 span {
    font-size: 1.75rem;
    font-weight: normal;
    display: block;
}


/* call to action ends here */
.f-clientele-text {
    margin-top: -3rem;
}

.f-clientele .fGalleryItem {
    padding: 7px;
}

.f-clientele .fGalleryImage img {
    height: 80px;
    object-fit: contain;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 15px;
}


/* footer starts here */

footer {
    padding-top: 2rem;
    background-color: #333;

    p,
    a {
        color: white;
    }

    li>a {
        color: white !important;
    }
}

footer .fModuleTitle h3 {
    font-size: 1.35rem;
    color: white;
}

footer .f-newsletter .fForm .form-item-type-text label {
    display: none;
}

footer#fFooter .f-quick-link-footer {
    width: auto;
}

/* footer#fFooter .f-quick-link-footer li {
    margin-bottom: 1rem;
} */

#fFooter .region-footer>.row {
    align-items: center;
    padding-bottom: 10px;
    justify-content: space-between;
}


footer#fFooter ul,
footer#fFooter ul li {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

footer#fFooter .row {
    align-items: center;
}

.f-footer-logo .ItemfinnerGallery .fGalleryImage img {
    width: 200px;
    max-width: 200px;
}

.f-quick-link-footer .f-module-content ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.f-lets-chat .f-module-content p a {
    display: flex;
    gap: 10px;
    align-items: center;

}

/* footer ends here */


/* map starts here */

.f-map-address .row-address {
    justify-content: center;

    .col-12 {
        padding: 12px;

        .item {
            height: 100%;
            text-align: center;
            border-right: 1px solid #dedede;
            padding-right: 24px;

            .icon {
                img {
                    width: 40px;
                    height: 40px;
                    object-fit: contain;
                    margin-bottom: .8rem;
                }
            }

            .text {
                width: 300px;
                display: inline-block;
                color: #000;

                a {
                    display: block;
                    color: #000;
                }
            }
        }
    }

    .col-12:last-child {
        .item {
            border-right: 0;
        }
    }
}

.f-map-address {
    position: static !important;
}

.f-map-address .anchor-tab {
    display: inline-block;
    position: absolute;
    color: transparent;
}

.f-map-address .anchor-tab.active::before {
    width: 25px;
    height: 25px;
    border-radius: 500px;
    content: "";
    position: absolute;
    right: 0;
    top: 0%;
    transform: translateY(-50%);
    background-color: var(--brand-color-theme-1);
    transition: all 1s linear;
    animation: blinking infinite linear 1s;
}

@keyframes blinking {
    0% {
        scale: 1;
    }

    50% {
        scale: .5;
        opacity: .5;
    }

    100% {
        scale: 1;
        opacity: 1;
    }
}

.f-map-address .anchor-tab.anchor-tab-uk {
    width: 159px;
    height: 50px;
    left: 34%;
    top: 26%;
    align-content: center;
    text-align: center;
}

.f-map-address .anchor-tab.anchor-tab-hong-kong {
    right: 13%;
    top: 41%;
    font-size: 1.3rem;
    align-content: center;
    text-align: center;
    height: 40px;
}

.f-map-address .anchor-tab.anchor-tab-hong-kong.active::before {
    right: unset;
    left: 15%;
}

.f-map-address .anchor-tab.anchor-tab-china {
    right: 22%;
    top: 34%;
    font-size: 1.4rem;
    align-content: center;
    text-align: center;
    height: 40px;
}

.f-map-address .anchor-tab.anchor-tab-dubai {
    right: 38.5%;
    font-size: 1.4rem;
    top: 39%;
    align-content: center;
    text-align: center;
    height: 40px;
}


/* map ends here */


/* why choose us starts here */

.f-why-choose-us {
    background-image: url("https://storage.unitedwebnetwork.com/files/1302/68b0914416b65ab413bd6388f9193318.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 3rem !important;
    backdrop-filter: var(--brand-color-theme-1);
}

/* .f-why-choose-us::after {
    content: "";
    width: 250px;
    height: 250px;
    left: -5%;
    position: absolute;
    bottom: -70px;
    background-image: url("https://storage.unitedwebnetwork.com/files/1302/d92654903f469ebec280ee266c365af3.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    rotate: -142deg;
    opacity: .4;
} */

.f-why-choose-us .fModuleTitle {
    display: none;
}

.col-heading-why-choose-us .item {
    position: relative;
}

.col-heading-why-choose-us .item .item-heading {
    position: relative;
    text-align: center;
}

.col-heading-why-choose-us .item .item-heading img {
    width: 330px;
    max-width: 100%;
    margin-bottom: .3rem;
}

.col-heading-why-choose-us .item .item-heading h3 {
    position: absolute;
    top: 36%;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    color: var(--brand-color-theme-1);
}

.f-why-choose-us .col-12 .item {
    height: 100%;
    position: relative;
}

.f-why-choose-us .col-12:nth-child(5) .item {
    text-align: center;
}

.f-why-choose-us .col-12 .item .icon {
    width: 180px;
    display: inline-block;
    position: relative;
}

.f-why-choose-us .col-12 .item .icon img:nth-child(2) {
    width: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.f-why-choose-us .col-12 .item .text .inner-text {
    width: 300px;
    display: inline-block;
}

.f-why-choose-us .col-12 .item .text .inner-text h4 {
    margin-bottom: 7px;
}

.f-why-choose-us .col-12 .item .text .inner-text p {
    font-size: .85rem;
    margin-top: 0;
}

.f-why-choose-us .col-12:nth-child(5) .item .inner-text {
    display: inline-block;
    width: 270px;
    max-width: 100%;
}

.f-why-choose-us .col-12:nth-child(6) .item .icon {
    position: absolute;
    left: -156px;
    top: -64px;
    rotate: -40deg;
}

.f-why-choose-us .col-12:nth-child(6) .item .icon img:nth-child(2) {
    rotate: 40deg;
    left: 22%;
    top: 64%;
}

.f-why-choose-us .col-12:nth-child(6) .item .inner-text {
    padding-left: 2rem;
    padding-top: 1rem;
}

.f-why-choose-us .col-12:nth-child(4) .item .icon {
    position: absolute;
    right: -152px;
    top: -59px;
    rotate: 38deg;
}

.f-why-choose-us .col-12:nth-child(4) .item .icon img:nth-child(2) {
    rotate: -40deg;
    top: 15%;
    left: 59%;
}

.f-why-choose-us .col-12:nth-child(4) .item .text {
    text-align: end;
}

.f-why-choose-us .col-12:nth-child(4) .item .inner-text {
    text-align: end;
    position: relative;
    top: 1.5rem;
    right: 2.2rem;
}

.f-why-choose-us .col-12:nth-child(3) .icon {
    position: absolute;
    bottom: 68px;
    left: -68px;
    rotate: -78deg;
}

.f-why-choose-us .col-12:nth-child(3) .icon img:nth-child(2) {
    rotate: 78deg;
    left: -4%;
    top: 57%;
}

.f-why-choose-us .col-12:nth-child(3) .item .text .inner-text {
    position: absolute;
    right: -7%;
    top: 56%;
    transform: translateY(-50%);
}

.f-why-choose-us .col-12:nth-child(1) .item .icon {
    position: absolute;
    right: -14.5%;
    top: 40%;
    rotate: 78deg;
}

.f-why-choose-us .col-12:nth-child(1) .item .inner-text {
    position: absolute;
    top: 62%;
    right: 35%;
    text-align: end;
    transform: translateY(-50%);
}


/* why choose us ends here */

/* at a glance starts here */

.glance-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* .glance-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: #f16821;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
} */

.glance-section .item {
    padding: 1rem 12px;
}

.glance-section h2 {
    font-weight: 800;
    font-size: 3rem;
    color: #f16821;
    margin-bottom: 60px;
    z-index: 1;
    position: relative;
}

.glance-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.glance-icon {
    width: 70px;
    height: 70px;
    background: #f16821;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(241, 104, 33, 0.4);
}

.glance-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.glance-card p {
    font-size: 15px;
    color: #555;
}

/* at a glance ends here */

/* news starts here */

.f-news-container .f-list-item {
    padding: 12px;
}

.f-news-container .f-list-item .f-list-item-container {
    display: flex;
    flex-wrap: wrap;
}

.f-news-container .f-list-item .f-list-item-container .f-list-item-subtitle {
    order: -1;
    color: var(--brand-color-theme-1);

    >a {
        color: var(--brand-color-theme-1);
        text-decoration: none;
    }
}

.f-news-container .f-list-item .f-list-item-container .f-list-item-title {
    font-size: 1.1rem;

    a> {
        font-size: 1.1rem;
    }
}

/* news ends here */

/* footer cta banner starts here */
.footer-cta-banner {
    margin-bottom: 2rem;
}

.footer-cta-banner .ItemfinnerGallery {
    border-radius: 20px;
    overflow: hidden;
}

.footer-cta-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
}

/* footer cta banner ends here */

/* about us page starts here */

.f-about-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    text-align: center;
    background-image: linear-gradient(180deg, rgb(0 0 0 / 82%) 0%, rgba(0, 0, 0, 0.674) 100%);
    color: white;
    text-shadow: 1px 1px 1px #0000005f;
}

.f-about-banner .fGalleryText h1.hero-title {
    font-size: 2.5rem;
    margin-top: 0;
}

.f-about-banner .fGalleryText p {
    width: 700px;
    max-width: 100%;
    margin: 0 auto 1rem auto;
}

.f-about-banner .fGalleryImage img {
    max-height: 400px;
    object-fit: cover;
}

.f-about-banner .fGalleryText .fButton,
.f-about-banner .fGalleryText .fButton2 {
    >i {
        margin-right: 4px
    }
}


/* who we are */

.f-who-we-are-page .f-media-image img {
    max-height: 400px;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}

/* STATS */

.stats {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 18px;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 160px;
    background: linear-gradient(180deg, rgba(241, 104, 33, 0.06), rgba(241, 104, 33, 0.02));
    padding: 18px;
    border-radius: 10px;
    text-align: left;
}

.stat .num {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

.stat .label {
    font-size: 13px;
    margin-top: 6px;
}

/* WHY GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
    text-align: center;
    transition: transform .18s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(241, 104, 33, 0.12), rgba(241, 104, 33, 0.06));
    color: var(--brand-color-theme-1);
    font-size: 22px;
    margin-bottom: 12px;
}

.why-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.why-desc {
    font-size: 14px;
}

.f-business-model-image .f-media-image img {
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.f-business-model-image>.fModuleContent {
    height: 100%;
}

.f-business-model-image .f-media {
    background-color: #f1f1f1;
    border-radius: 20px 20px;
    overflow: hidden;
    height: 100%;
}

.f-business-model-image .f-media-text {
    padding: 1rem;
}

.f-business-model-image .f-media-text h3 {
    font-size: 1.1rem;
    color: var(--brand-color-theme-1);
}

.f-business-model-image .f-media-text a.fButton {
    padding: 7px 10px;
}

.f-business-model-image .f-media-text a.fButton>i {
    margin-right: 5px;
}

.f-global-presence .tab-pane {
    position: relative;
}

.f-global-presence .tab-pane::after {
    content: "";
    position: absolute;
    inset: 0 0 8px 0;
    margin: 0;
    align-content: center;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    background-image: linear-gradient(to top, #0000004c, #000000a6);
    border-radius: 20px;
    z-index: 1;
    transition: all .4s;
}

.f-global-presence .tab-pane:hover::after {
    content: unset;
}

.f-global-presence .nav-tabs {
    position: absolute;
    left: 0rem;
    top: 0rem;
    margin: 0;
    padding: 1rem 2rem;
    width: 100%;
    border-bottom: 0;
    gap: 10px;
    z-index: 999;
    border-radius: 20px 20px 0 0;
}

.f-global-presence .nav-tabs>li {
    padding: 0;
    margin: 0;
}

.f-global-presence .nav-tabs>li>button {
    background-color: white;
    font-size: .8rem;
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.07);
    border: 0;
    color: #000;
}

.f-global-presence .nav-tabs>li>button.active {
    background-color: var(--brand-color-theme-1);
    color: white;
}

.f-global-presence .tab-content {
    border-radius: 20px;
    overflow: hidden;
}

.f-global-presence .tab-content .text img,
.f-global-presence .tab-content .text iframe {
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}

.f-global-presence .tab-content .text h4 {
    position: absolute;
    inset: 0;
    margin: 0;
    align-content: center;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    background-image: linear-gradient(to top, #0000004c, #000000a6);
    border-radius: 20px;
    color: white;
}

.f-why-clients-choose-us .why-card {
    background-image: var(--brand-bg-light-gradient);

    .why-title {
        color: var(--brand-color-theme-1);
    }

}

.cta-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 36px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(241, 104, 33, 0.06), #f1f1f1);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    margin-top: 18px;
}

.cta-hero h3 {
    margin: 0;
    font-size: 18px;
    color: var(--brand-color-theme-1);
}

.cta-hero p {
    margin: 0;
}

/* about us page ends here */

/* award section starts here */

.f-awards .ItemfinnerGallery img {
    height: 150px;
    object-fit: contain;
}

.f-awards .ItemfinnerGallery .fGalleryText h3 {
    font-size: .8rem;
    text-align: center;
    font-weight: normal;
}

/* awrad section ends here */
/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/


/*xl*/

@media(min-width:1199.9px) {
    .f-team .fGalleryItem {
        width: 20%;
    }
}

@media(min-width:991.9px) {
    header {
        position: sticky;
        top: 0;
        width: 100%;
        background-color: white;
        z-index: 9999999;
    }

    header.active {

        transition: all 0.4s ease 0s;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    header .f-logo-header {
        img {
            padding-top: 5px;
            padding-bottom: 5px;
        }
    }

    header .region-header>.row {
        margin: 0;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .main-menu .fMenu {
        display: flex;
        justify-content: end;
        font-family: var(--brand-font-family-heading);
    }

    .main-menu .fMenu>li {
        padding: 7px 12px;
        position: relative;
    }

    .main-menu .fMenu>li.has-submenu {
        padding-right: 25px;
    }

    .main-menu .fMenu>li>a {
        color: #000;
        position: relative;
        font-weight: 400;
        font-size: 1rem;
    }

    header.active .main-menu .fMenu>li>a {
        color: var(--brand-color-theme-1);
    }

    .main-menu .fMenu>li>ul {
        position: absolute;
        text-align: left;
        top: 4rem;
        left: 22px;
        background-color: white;
        visibility: hidden;
        min-width: 230px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        opacity: 0;
        z-index: -1;
        box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
        transform-origin: top center;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        padding: 0;
    }

    .main-menu .fMenu>li.has-submenu>a {
        position: static;
    }

    .main-menu .fMenu>li.has-submenu>a::before {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: .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-1);
        padding: .7rem 1rem;
        display: block;
        border-bottom: 1px solid #dedede;
    }

    .main-menu .fMenu>li>ul>li>a:hover {
        background-color: var(--brand-color-theme-1);
        color: white;
    }

    .main-menu .fMenu>li>ul>li:last-child>a {
        border-bottom: 0;
    }

    header.active .main-menu .fMenu>li>a {
        color: #000;
        transition: all 0.4s ease 0s;
    }
}

@media (max-width: 1399.9px) {
    .f-why-choose-us .col-12 .item .icon {
        width: 130px;
    }

    .f-why-choose-us .col-12 .item .icon img:nth-child(2) {
        width: 90px;
    }

    .f-why-choose-us .col-12:nth-child(6) .item .icon {
        left: -131px;
        top: -49px;
    }

    .f-why-choose-us .col-12:nth-child(3) .icon {
        bottom: 53px;
        left: -60px;
        rotate: -74deg;
    }

    .f-why-choose-us .col-12:nth-child(3) .icon img:nth-child(2) {
        rotate: 71deg;
        left: -2%;
        top: 63%;
    }

    .f-why-choose-us .col-12:nth-child(3) .item .text .inner-text {
        right: -14%;
        top: 68%;
    }

    .f-why-choose-us .col-12:nth-child(4) .item .icon {
        right: -132px;
        top: -38px;
        rotate: 35deg;
    }

    .f-why-choose-us .col-12:nth-child(1) .item .icon {
        right: -17%;
        top: 51%;
        rotate: 75deg;
    }

    .f-why-choose-us .col-12:nth-child(1) .item .inner-text {
        top: 72%;
        right: 29%;
    }

    .col-heading-why-choose-us .item .item-heading img {
        width: 280px;
    }

    .f-map-address .anchor-tab.anchor-tab-dubai {
        font-size: 1.1rem;
        height: 20px;
        top: 38%;
    }

    .f-map-address .anchor-tab.anchor-tab-china {
        font-size: 1.25rem;
        height: 30px;
        right: 22%;
        top: 32.5%;
    }

    .f-map-address .anchor-tab.anchor-tab-hong-kong {
        height: 20px;
        font-size: 1.1rem;
        right: 13.5%;
        top: 39.5%;
    }

    .f-map-address .anchor-tab.anchor-tab-uk {
        width: fit-content;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media(max-width:1299.9px) {}


/*lg*/

@media (max-width: 1199.9px) {
    .f-why-choose-us .col-12 .item .icon {
        width: 100px;
    }

    .f-why-choose-us .col-12 .item .icon img:nth-child(2) {
        width: 75px;
    }

    .f-why-choose-us .col-12:nth-child(6) .item .icon {
        left: -118px;
        top: -35px;
        rotate: -36deg;
    }

    .f-why-choose-us .col-12:nth-child(4) .item .icon {
        right: -113px;
        top: -31px;
        rotate: 39deg;
    }

    .col-heading-why-choose-us .item .item-heading img {
        width: 230px;
    }

    .col-heading-why-choose-us .item .item-heading h3 {
        font-size: 1.1rem;
        top: 41%;
        margin: 0;
    }

    .f-why-choose-us .col-12:nth-child(3) .icon {
        bottom: 39px;
        left: -55px;
    }

    .f-why-choose-us .col-12:nth-child(1) .item .icon {
        right: -18%;
        top: 52%;
        rotate: 73deg;
    }

    .f-why-choose-us .col-12:nth-child(3) .item .text .inner-text {
        right: -14%;
    }

    .f-why-choose-us .col-12 .item .text .inner-text h4 {
        font-size: 1.25rem;
    }

    .f-why-choose-us::after {
        width: 170px;
        height: 170px;
    }

    .f-why-choose-us .col-12 .item .text .inner-text {
        width: 250px;
    }

    .f-map-address .row-address .col-12 .item .text {
        width: 250px;
        display: inline-block;
        color: #000;
    }

    .f-map-address .anchor-tab.anchor-tab-uk {
        font-size: .9rem;
        top: 24%;
    }

    .f-map-address .anchor-tab.anchor-tab-dubai {
        font-size: 1rem;
        top: 35%;
        height: 30px;
    }

    .f-map-address .anchor-tab.anchor-tab-china {
        font-size: 1rem;
        height: 30px;
        top: 30.5%;
        right: 22.5%;
    }

    .f-map-address .anchor-tab.anchor-tab-hong-kong {
        font-size: .95rem;
        right: 13.7%;
        top: 36.5%;
        height: 30px;
    }

    .f-map-address .anchor-tab.active::before {
        width: 18px;
        height: 18px;
    }
}

@media(max-width: 991.9px) {
    .fHeader .navbar-header {
        margin: 0;
    }

    .fHeader .navbar-header .row.row-0 {
        margin: 0 15px;
    }

    .navbar-header .navbar-toggler {
        display: block;
    }

    .navbar-collapse.collapse.show {
        display: block;
    }

    .region-header,
    .region-headertop {
        display: inline-block;
        width: 100%;
    }

    .region-header .fModule,
    .region-headertop .fModule {
        display: block;
    }

    /*** Programme ***/
    .session-container th {
        font-size: 0px;
    }

    .session-container th select {
        font-size: 1rem;
    }

    tr.session-row {
        border: 1px solid var(--brand-color-theme-1);
        margin-top: 1.5rem;
    }

    tr.session-row-hidden {
        border: 0 none;
        margin-top: 0;
    }

    .session-time-zone {
        display: inline-block;
        padding-left: 0.5rem;
    }

    .session-time-zone::before,
    .session-time-zone::after {
        position: relative;
        content: " ";
        display: inline;
    }

    .session-time-zone::before {
        content: "(";
    }

    .session-time-zone::after {
        content: ")";
    }

    tr.session-row,
    tr.session-row td,
    td.session-time {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    tr.session-row td {
        border: 0px none;
    }

    th.session-time {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .session-time .session-time-date.is-different {
        margin-left: 0;
    }

    .session-container tr:hover td.session-time,
    table.fTable tr:nth-child(odd) td.session-time,
    table.fTable tr:nth-child(even) td.session-time {
        display: block;
        text-align: left;
        background: var(--brand-color-theme-1);
        color: #fff;
    }

    .session-container th:last-child {
        display: none;
    }

    .session-container {
        border: 0;
    }

    body .session-container th {
        display: none;
    }

    .f-photo-with-custom-text .fModuleTitle h3 {
        display: block;
    }

    .f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
        display: none;
    }

    .f-logo-header .f-media-image img {
        width: 200px;
        max-width: 100%;
    }

    .navbar-toggle .icon-bar {
        background-color: var(--brand-color-theme-1);
    }

    .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-1);
        width: 95%;
        padding: 0;
        z-index: 9999999;
    }

    .main-menu nav ul {
        margin: 0;
    }

    .main-menu nav ul.fMenu>li>a {
        display: block;
        padding: .6rem 1rem;
        color: white;
        border-bottom: 1px solid #dedede4e;
        position: relative;
        background-color: var(--brand-color-theme-1);
    }

    .main-menu nav ul.fMenu>li:last-child>a {
        border-bottom: 0;
    }

    .main-menu nav ul.fMenu>li.has-submenu>a::after {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: white;
    }

    .main-menu nav ul.fMenu>li.has-submenu>ul {
        position: relative;
        padding: 7px;
        background-color: var(--brand-color-theme-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-1);
        display: block;
    }

    .f-why-choose-us .col-12:nth-child(3) .item {
        * {
            position: static !important;
        }
    }

    .f-why-choose-us .col-12 .item .icon {
        display: block;
        margin: 0 auto;
        rotate: unset !important;
        position: relative !important;
        left: 0 !important;
        bottom: unset !important;
        right: unset !important;
        top: 0 !important;

        * {
            rotate: unset !important;
        }

        img:nth-child(2) {
            position: absolute !important;
            left: 50% !important;
            top: 50% !important;
        }
    }

    .col-heading-why-choose-us {
        display: none;
    }

    .f-why-choose-us .col-12:nth-child(3) .item .text .inner-text {
        transform: unset;
    }

    .f-why-choose-us .col-12 .item .text .inner-text {
        width: 100% !important;
        position: static !important;
        transform: unset !important;
        text-align: center;
    }

    .f-why-choose-us .col-12:nth-child(6) .item .inner-text {
        padding: 0;
    }

    .f-why-choose-us .fModuleContent>div>.row {
        justify-content: center;
    }

    .f-why-choose-us .fModuleTitle {
        display: block;
    }

    .f-logo-header-white#fModule-51910 {
        display: none;
    }

    .f-logo-header img {
        width: 170px;
        padding: 10px 0;
    }

    .fHeader {
        position: sticky;
        top: 0;
        z-index: 99999;
        background-color: white;
    }

    .f-banner .fGalleryImage img {
        height: 481.9px;
        object-fit: cover;
    }

    .f-banner .fGalleryText h3 {
        font-size: 2.6rem;
    }

    .f-who-we-are .f-module-content .f-media-image img {
        height: auto;
    }

    .f-who-we-are .f-module-content .f-media-text {
        padding: 1rem 2rem;
    }

    .f-vision-mission .fGalleryItem .ItemfinnerGallery {
        padding: 0;
    }

    .f-vision-mission .fGalleryItem:nth-child(1) .ItemfinnerGallery {
        border-right: 0;
    }

    .f-quick-link-footer {
        order: 2;
    }

    .f-map-image {
        display: none;
    }

    .f-map-address {
        padding-top: 2rem !important;
    }

    .f-map-address .tabs-anchor {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 1rem;
        justify-content: space-between;
    }

    .f-map-address .anchor-tab {
        position: static;
        color: var(--brand-color-theme-1);
        font-size: 1rem !important;
        width: 23% !important;
        height: 50px !important;
        display: block;
        border: 1px solid var(--brand-color-theme-1);
        padding: 5px;
    }

    .f-map-address .anchor-tab.active {
        border-color: var(--brand-color-theme-1);
        color: var(--brand-color-theme-1);
    }

    .f-map-address .anchor-tab.active::before {
        content: unset;
    }

    .f-map-address .row-address .col-12 .item {
        border-right: 0;
        padding-right: 0;
    }

    .f-map-address .row-address .col-12 .item .text {
        width: 100%;
    }

    .f-clientele-text .fModuleTitle h3 {
        text-align: center;
    }

    .f-three-boxes {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .f-three-boxes .fModuleTitle h3 {
        font-size: 1.85rem;
        rotate: unset;
        writing-mode: unset;
        position: static;
        text-align: center;
    }

}


/*sm*/

@media (max-width: 768.9px) {
    html {
        font-size: 14px;
    }

    .f-why-choose-us::after {
        display: none;
    }

    .f-newsletter {
        order: -1;
    }

    .f-map-address .anchor-tab {
        width: 48% !important;
        margin-bottom: 1rem;
    }

}


/*xs*/

@media (max-width: 575px) {}