@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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
 --brand-color-theme-1: #f26422;
 --brand-color-theme-2: #fdf0ea;
 --brand-color-theme-3: #838383;
 --brand-color-theme-4: #f4f4f4;
 --brand-font-family-heading: "Tinos", serif;
 --brand-font-family-body: "Montserrat", sans-serif;
}
* {
	-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;
}
.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-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-4-bg {
	background-color: #f4f4f4 !important;
}
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: 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>.row {
	justify-content: space-between;
}
.fRegion {
	display: inline-block;
	width: 100%;
}
.fPageTitle {
	position: relative;
	background-color: black;
	color: white;
	padding: 7rem 12px 3rem 12px;
	text-align: center;
	border-bottom: 5px solid var(--brand-color-theme-2);
}
.fPageTitle h1 {
	font-weight: 700;
}
body.title-off .fPageTitle {
	display: none;
}
.bg-abstract-1 {
	background-color: rgb(240, 178, 22, 0.1);
}
.bg-abstract-1 div.fModuleContent, .bg-abstract-1 div.fModuleTitle {
	position: relative;
	z-index: 9;
}
 .bg-abstract-1 div.fModuleContent::after {
 content: "";
 position: absolute;
 width: 200%;
 height: 200px;
 background-color: var(--brand-color-theme-1);
 opacity: .05;
 left: -20%;
 rotate: 10deg;
 top: 0;
 z-index: -1;
}
.f-photo-with-custom-text .fModuleTitle {
	display: none;
}
.f-photo-with-custom-text .fModuleContent .fModuleTitle {
	display: block;
}
.text-justify {
	text-align: justify;
}
.fModuleTitle h3 {
	color: var(--brand-color-theme-1);
	font-weight: 600;
}
.title-center .fGalleryContainer>h4 {
	text-align: center !important;
}
.fGalleryContainer>h4 {
	font-size: 1.3rem;
	color: var(--brand-color-theme-2);
	font-weight: 600;
}
.fModuleTitle h3 span {
	display: block;
	font-size: 1.1rem;
	color: var(--brand-color-theme-3);
	font-weight: normal;
	font-family: 'Montserrat';
	margin-bottom:10px;
}
.title-white .fModuleTitle h3 {
	color: white;
}
.title-white.bg-abstract-1 .fModuleTitle h3 span {
	color: var(--brand-color-theme-2);
}
.title-white .fModuleTitle h3 span {
	color: white;
}
.title-center .fModuleTitle h3 {
	text-align: center !important;
}
.f-photo-with-custom-text.title-center .fModuleContent .fModuleTitle h3 {
	text-align: start !important;
}
ul.fGalleryImages.fGalleryList {
	position: relative;
	margin-top: 0px;
	list-style: none;
	padding: 0px;
	margin-bottom:0;
}
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;
}
.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;
	justify-content: center;
}
.footer-social a {
	color: white;
	border: 1px solid #fff;
	margin: 20px 5px 20px 5px;
	padding: 5px;
	width: 34px;
	display: flex;
	justify-content: center;
	height: 34px;
	align-items: center;
	border-radius: 5px;
}
.footer-social a ::before {
display: flex;
 align-items: center;
 justify-content: center;
 margin: 15px 0 0;
}
/*** Button ***/

a.fButton, .fForm .buttons input, .fbutton-btn a, .fForm .buttons a {
	background: linear-gradient(to right, rgba(241, 141, 34, 1) 0%, rgba(241, 101, 34, 1) 99% 99%);
	display: inline-block;
	padding: 10px 2rem;
	color: white;
	font-weight: 500;
	border-radius: 30px;
}
a.fButton.smallfButton {
	padding: 6px 1rem;
 font-size: .8rem;
}
/****--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;
	width: 100%;
}
.fForm .form-item-option.checkbox {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fForm .form-item-option.checkbox>label {
	width: fit-content;
	margin-right: 10px;
	position: relative;
}
.fForm .form-item-option.checkbox>label>input {
	position: relative;
	top: 10.2px;
}
 .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 */


/*** Custom CSS ***/

/* banner starts here */
.f-indomax-banner .f-desktop-banner .fGalleryText .div-btn {
	position: absolute;
	left: 11.4%;
	bottom: 12%;
}
.f-desktop-banner a.fButton {
	background-color: var(--brand-color-theme-2);
	border: 1px solid var(--brand-color-theme-2);
	border-radius: 500px;
	font-size: 1.3vw;
 padding: .7vw 2vw;
	color: var(--brand-color-theme-1);
}
.f-mobile-banner .fGalleryText .div-btn {
	position: absolute;
	left: 50%;
	top: 57%;
	transform: translateX(-50%);
}
.f-mobile-banner a.fButton {
	background-color: var(--brand-color-theme-2);
	border: 1px solid var(--brand-color-theme-2);
	border-radius: 500px;
	font-size: 3.5vw;
	padding: 2vw 5vw;
	color: var(--brand-color-theme-1);
}
.f-countdown {
	position: absolute;
	width: 100%;
}
.f-count-down .fModuleContent>.row {
	margin: 0;
}
.f-count-down .fModuleContent>.row>div.col-count {
	width: fit-content;
	min-width: 7vw;
	background-color: rgba(255, 255, 255, 0.171);
	text-align: center;
	padding: 1vw;
	margin-right: 5px;
	border-radius: 10px;
}
.f-count-down .fModuleContent>.row>div.col-count h4 {
	margin: 0;
	color: var(--brand-color-theme-2);
	font-weight: 700;
	font-size: 2vw;
}
.f-count-down .fModuleContent>.row>div.col-count p {
	margin: 0;
	color: white;
	font-size: 1.2vw;
}
/* banner ends here */



/* Home Page Main */

/* Custom Header */

.fHeader {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}
body.not-home .fHeader {
	background-color: var(--brand-color-theme-1);
}
.fHeader.active {
	background-color: var(--brand-color-theme-1);
}
.f-banner-new-design .fGalleryText {
	position: absolute;
	inset: 0;
	align-content: center;
	background-color: #12385dd3;
}
.f-banner-new-design .tag {
	color: var(--brand-color-theme-2);
	font-size: 1.6vw;
	margin-bottom: 0;
}
.f-banner-new-design h3 {
	font-size: 5vw;
	line-height: 1em;
	color: white;
	font-weight: 700;
	margin-left: -1px;
	margin-top: 0
}
.f-banner-new-design h3 span {
	display: block;
}
.f-banner-new-design .theme {
	color: #ffffffcc;
	font-size: 1.7vw;
}
.f-banner-new-design .date-venue {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #ffffffe6;
	font-weight: 600;
	font-size: 1.4vw;
 letter-spacing: .1vw;
	margin-top: 4%;
	margin-bottom: 4%;
 >div {
 position: relative;
}
}
.f-banner-new-design .date-venue .date {
	margin-right: 2vw;
	padding-left: 2.4vw;
}
 .f-banner-new-design .date-venue .date::before {
 content: "";
 width: 2vw;
 height: 2vw;
 position: absolute;
 left: 0;
 background-image: url("https://storage.unitedwebnetwork.com/files/1379/2074fdb48eee88a7971a33d64f40310a.webp");
 background-size: 100%;
 background-position: left center;
 background-repeat: no-repeat;
}
.f-banner-new-design .date-venue .venue {
	padding-left: 2.4vw;
}
 .f-banner-new-design .date-venue .venue::before {
 content: "";
 width: 2vw;
 height: 2vw;
 position: absolute;
 left: 0;
 background-image: url("https://storage.unitedwebnetwork.com/files/1379/01f4f67e9408c3a1180e476b6f76feac.webp");
 background-size: 100%;
 background-position: left center;
 background-repeat: no-repeat;
}
.f-banner-new-design p>a.fButton {
	font-size: 1.3vw;
 padding: .7vw 2.7vw;
}
/* countdown */
.f-countdown-new .row {
	justify-content: center;
}
.f-countdown-new .row .col-count {
	width: fit-content;
	text-align: center;
	min-width: 120px;
	min-height: 100px;
	align-content: center;
	background-color: #ffffff2b;
	margin: 10px;
	border-radius: 7px;
	color: white;
	border: 1px solid var(--brand-color-theme-1);
}
.f-countdown-new .row .col-count h4 {
	margin: 0;
	color: var(--brand-color-theme-1);
	font-weight: 700;
	font-size: 2.2rem;
}
.f-countdown-new .row .col-count p {
	margin-top: 0;
	margin-bottom: 0;
	color: var(--brand-color-theme-1);
}
/* about us */
.f-about-us-home-page div.f-media-image img {
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 10px;
}
.f-about-us-home-page div.col-12 {
	padding: 12px;
}
.f-about-us-home-page div.f-media-text .row .col-auto {
	padding: 12px;
}
.f-about-us-home-page div.f-media-text .row .col-auto img {
	max-height: 60px;
	border-radius: 10px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
/* counterup */

.f-counterup-js {
	background-image: url("https://storage.unitedwebnetwork.com/files/1379/857f0c9725c11ff9981b8d783077c748.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}
.f-counterup-js .fModuleTitle, .f-counterup-js .fModuleContent {
	position: relative;
	z-index: 2;
}
 .f-counterup-js::after {
 content: "";
 position: absolute;
 inset: 0;
 background: #12385dd3;
}
.f-counterup-js .fModuleTitle h3 {
	margin-bottom: 0;
}
.f-counterup-js .counter-box h2 {
	color: var(--brand-color-theme-2);
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 0;
}
.f-counterup-js .counter-box p {
	font-size: 1.1rem;
	color: #ffffffb3;
	margin-top: 0;
}
/* important dates */

.f-dates-design .fModuleContent>div>.row {
	position: relative;
}
 .f-dates-design .fModuleContent>div>.row::after {
 content: "";
 position: absolute;
 top: 12px;
 z-index: -1;
 width: calc(100% - 72px);
 height: 2px;
 background-color: #dae0e7;
}
.f-dates-design .row .col-md-6 {
	padding: 12px;
}
.f-dates-design .row .col-md-6>div.item {
	background-color: #f3f5f7;
	border-radius: 0 0 10px 10px;
	padding: 16px 12px 12px 12px;
}
.f-dates-design .row .col-md-6>div.item .heading {
	font-size: 1rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 1rem;
}
.f-dates-design .row .col-md-6>div.item .date {
	margin-top: 10px;
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-weight: 600;
}
.f-dates-design .row .col-md-6>div.item a.fButton {
	background-color: var(--brand-color-theme-1);
	color: white;
	border-color: var(--brand-color-theme-1);
}
.f-not-home-dates.f-dates-design .row .col-md-6>div.item {
	background-color: #f0b21621;
}
/* footer */

#fFooter {
	background-color: var(--brand-color-theme-1);
	color: #ffffffcc;
}
#fFooter .fModuleTitle h3 {
	color: white;
	font-size: 1.3rem;
	margin-top: 0;
	margin-bottom: 10px;
}
#fFooter .region-footer .fModule {
	padding: 12px;
}
#fFooter .region-footer .footer-cta {
	padding-top: 1rem;
}
#fFooter .footer-cta>.container {
	border: 1.4px solid var(--brand-color-theme-2);
	border-radius: 15px;
	padding: 2rem;
	background-color: #f0b21608;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
#fFooter .footer-cta>.container .fModuleTitle {
	width: fit-content;
}
#fFooter .footer-cta>.container .fModuleContent {
	width: fit-content;
}
#fFooter .footer-cta>.container .fModuleTitle h3 {
	margin-top: 1.25rem;
	font-size: 3rem;
	font-weight: 700;
}
#fFooter p {
	margin-top: 7px;
	margin-bottom: 0;
	color: #ffffffcc;
}
#fFooter .fMenu li {
	margin-bottom: 0;
	margin-top: 7px;
}
#fFooter .fMenu li a {
	color: #ffffffcc;
}
#fFooter p>span {
	color: var(--brand-color-theme-2);
}
#fFooter .footer-logo-media .f-media-image img {
	width: 200px;
	max-width: 100%;
}
#fFooter .footer-logo-media .f-media-text p {
	margin: 1.25rem 0;
}
.region-footer>.row {
	justify-content: space-between;
}
.social-media a {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 7px;
	border: 1px solid #ffffffcc;
	color: #ffffffcc;
	align-content: center;
	text-align: center;
 font-size: .9rem;
	margin-right: 10px;
}
.social-media a:hover {
	border-color: var(--brand-color-theme-2);
	color: var(--brand-color-theme-1);
	background-color: var(--brand-color-theme-2);
}
.f-copyright {
	border-top: 1px solid rgba(240, 178, 22, 0.502);
 font-size: .8rem;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	margin-top: 1.5rem;
	padding: 10px;
}
/* contact us page */
.contact-details div.item {
	text-align: center;
	padding: 1rem;
	border: 1px solid #dedede;
	border-radius: 15px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #f0b21608!important;
}
.contact-details div.item div.img-logo img {
	max-height: 60px;
	width: unset;
	max-width: 300px;
}
.contact-details div.item h3 {
	font-size: 1.4rem;
	color: var(--brand-color-theme-1);
	margin: 0;
	margin-bottom: 10px;
}
.contact-details div.item h2 {
	font-size: 1.1rem;
	color: var(--brand-color-theme-1);
	margin-bottom:10px;
}
.contact-details div.item p {
	margin: 0;
	margin-bottom: 7px;
	font-weight: 500;
}
.contact-details div.item p a {
	color: #333;
}
/*home*/
.navbar-header .container {
	background:var(--brand-color-theme-2);
}
.navbar-header {
	background:var(--brand-color-theme-2);
}
/* banner with countdown starts here */
.col-count.fCountText.fCountSec {
	border-right:none !important;
}
.f-banner .fGalleryText {
	position: absolute;
	inset: 0;
}
.f-banner-home .fGalleryText {
	position: absolute;
	inset: 0;
	padding-top: 13rem;
	background:#00000085;
}
.f-banner-home .fGalleryText .container {
	position: relative;
}
.f-banner-home .fGalleryText h3 {
	font-size: 3vw;
	font-weight: 700;
	color: white;
 span {
 display: block;
}
}
.f-banner-home .fGalleryText h5 {
	font-size: 1.6vw;
	background-color: var(--brand-color-theme-1);
	color: white;
	width: fit-content;
 padding: .2vw 2vw;
 border-radius: .5vw;
	margin:1.4rem auto;
}
.f-banner-home .fGalleryText .date {
	font-size: 1.6vw;
	font-weight: 600;
	color: white;
	position: relative;
	display:inline;
	margin:0 10px;
}
 .f-banner-home .fGalleryText .date ::before {
color:white;
}
.f-banner-home .fGalleryText .venue {
	font-size: 2vw;
	font-weight: 600;
	color: #000;
	position: relative;
}
 .f-banner-home .fGalleryText .venue::before {
 content: "\f3c5";
 font-size: 1.7vw;
 width: 1.9vw;
 display: inline-block;
 font-family: "FontAwesome";
}
.f-banner-home .f-countdown {
	margin-top: 2.3%;
}
.f-banner .f-countdown {
	position: absolute;
	bottom: 8%;
	left: 5%;
}
.f-countdown .fModuleContent>.row {
	left: 20%;
	position: relative;
}
.f-countdown .fModuleContent>.row>div.col-count {
	width: fit-content;
	min-width: 11vw;
	text-align: center;
	padding: 0.5vw;
	margin-right: 5px;
	border-right:1px solid #fff;
}
.f-countdown .fModuleContent>.row>div.col-count h4 {
	margin: 0;
	color: white;
	font-weight: 700;
	font-size: 3.10vw;
}
.f-countdown .fModuleContent>.row>div.col-count p {
	margin: 0;
	color: white;
	font-size: 1.2vw;
}
.indomaex .row {
	display: flex;
	justify-content: center;
	left: auto !important;/* position: relative; */
}
.f-header-logo {
	background: #000;
	padding: 10px 20px;
	background:var(--brand-color-theme-1);
}
.news {
	padding:0 15px 15px;
	overflow:hidden;
 a {
float:right;
color:var(--brand-color-theme-1);
font-weight:500;
}
img {
	border-radius:0 15px 0px 0px;
	height:250px;
	background-size:cover;
	background-position:top;
}
h4 {
	margin:0;
	font-size: 1rem;
	color: var(--brand-color-theme-1);
	font-weight: 600;
	padding-top:10px;
}
.f-list-item-node.f-list-item-title {
	display:none;
}
.f-list-item-node.f-list-item-teaser-content {
	border-radius: 0 0 15px 15px;
	background:var(--brand-color-theme-4) !important;
}
}
.f-card-design-1 {
	text-align:center;
 .container {
width:800px;
}
.ItemfinnerGallery {
	aspect-ratio: 1 / 0.3;
	padding: 20px 20px 0;
	border: 1px solid #cccccc29;
	display: block;
	box-shadow: rgba(99, 99, 99, 0.2) 3px 2px 8px 0px;
	background: white;
	margin: 20px 0px 20px 0;
	height: 100%;
 img {
width:300px;
display:block;
margin:0 auto;
padding-bottom:40px;
}
}
}
.left .col-md-6 {
	padding: 0;

	:hover { /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f18d22+0,f16522+99 */
background: linear-gradient(to right, rgba(241, 141, 34, 1) 0%, rgba(241, 101, 34, 1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
color:white;
 h4 {
color:white;
}
}
}
.news .f-list-item-container {
	position:relative;
}
.tag {
	position: absolute;
	top: 0;
	background:var(--brand-color-theme-1);
	color:white;
	padding:10px 15px;
}
.banner-text {
	display: inline-block;
	background: #0000009c;
	border-radius: 20px;
	padding: 0 20px 20px 20px;
}
.about-section {
	background: var(--brand-color-theme-4) !important;
}
.catagory {
	background: white;
	padding: 10px 15px;
	height: 100%;
	border: 1px solid #cccccc24;
 h4 {
font-size:1.2rem;
color:var(--brand-color-theme-1);
font-weight:600;
}
}
.indonesia-section {
 span {
display:block;
}
}
.footer-section {
	text-align:center;
	padding:20px 0 0;
 img {
width:80px;
}
span {
	display:block;
}
}
p.copyright {
	background: black;
	padding: 10px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
	display:block !important;
}
.owl-nav {
	display:none !important;
}
.owl-theme .owl-dots .owl-dot span {
	width: 50px;
	height: 6px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
 transition: opacity .2s ease;
	border-radius: 40px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background:#f18d22;
}
.owl-theme .owl-dots .owl-dot span {
	background:#f16522;
}
.mobile-banner {
	display: none !important;
}
.media-partners .ItemfinnerGallery {
	text-align:center;
	display:inline-block;
img {
display:block;
width:230px;
margin:0 auto;
}
.fGalleryText {
	position: absolute;
	top: 0;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
 a {
height: 100px;
 display:inline-block;
 color: transparent;
 display:block;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}
}
}
.f-card-design-1 .fGalleryText {
	position: absolute;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	font-size: transparent;
	color: transparent;
 a {
height: 100px;
 display: flex;
 align-items: center;
 font-size: transparent;
 color: transparent;
}
}
.indonesia.row {
	justify-content: center;
}
.f-banner-home .owl-dots {
	position: absolute;
	bottom: 50px;
	width: 100%;
}
/*home*/

/*indomaex*/
.f-indomax-banner .fGalleryText {
	position: absolute;
	inset: 0;
	padding-top: 0rem;
	padding-top: 7%;
	left: 29%;
	background:none;
}
.indomeax-banner.container {
	width: 57%;
}
.f-countdown .indomaex {
	position:inherit;
}
.f-card-design-2 {
	background:url(https://storage.unitedwebnetwork.com/files/1399/0103052faae2d59d6bdbf0791ccf8985.jpg) center center no-repeat;
	background-size:cover;
.ItemfinnerGallery {
display:inline-block;
text-align:center;
a.fGalleryImage {
display:inline-block;
}
h4 {
font-size:1.1rem;
font-weight:600;
}
img {
width:44px;
margin:0 auto;
filter: drop-shadow(0px 1000px 0 red);
 transform: translateY(-1000px);
display:inline-block;
}
}
}
.indomax img {
	height:100%;
	object-fit:cover;
	object-position:top;
}
.f-featured img {
	width: 150px;
	aspect-ratio: auto;
	margin-bottom: 10px;
	height: 33px;
	object-fit: contain;
}
.featured img {
	width: auto;
	height:150px;
	object-fit: cover;
	object-position: top;
}
.f-featured {
li {
margin-bottom:30px !important;
}
.ItemfinnerGallery {
	border: 1px solid black;
	padding: 20px;
	border-radius: 0px 10px 10px;
	height: 100%;
 p {
margin-bottom:60px;
}
}
a.fButton.cat {
	position: absolute;
	bottom: 0;
	background: #000;
	border-radius: 0;
	margin-bottom: 20px;
	padding:8px 15px;
}
p.f-button-indo {
	margin-bottom: 0 !important;
	display: flex;
	justify-content: center;
}
}
.img-border img {
	height:100%;
	object-fit:cover;
	object-postion:top;
	border-radius:0 10px 10px;
}
.media .ItemfinnerGallery {
	aspect-ratio: auto !important;
img {
height:300px;
object-fit:contain;
}
}
.f-logos {
.ItemfinnerGallery {
display:inline-block;
text-align:center;
position:relative;
a.fGalleryImage {
display:inline-block;
}
p {
font-size:0.9rem;
}
img {
width: 100px;
 height: 60px;
 object-fit: contain;
 position: relative;
 bottom: 30p;
 margin-top: 36px;
display:inline-block;
}
h3.logos-title {
 position: absolute;
 top: 0;
 margin: 0;
 width: 100%;
font-size: 1.2rem;
}
}
}
.joint {
li:first-child img {
width:200px;
}
img {
	margin-top:0 !important;
}
h3 {
	font-size: 1.2rem;
	color:black;
}
}
.f-expand {
	background: var(--brand-color-theme-1);
	color:white;
li {
list-style-type:none;
}
h3 {
	color:white;
span {
color:white;
}
}
}
.expand {
	padding: 0 0px 0 20px;
li {
list-style-type:none;
strong {
display:block;
span {
}
}
}
}
.f-venue {
	background:#e7e7e7;
}
.indomaex {
	position:inherit !important;
}
.indomaex .fModuleContent>.row>div.col-count {
	width: fit-content;
	min-width: 11vw;
	text-align: center;
	padding: 0.5vw;
	margin-right: 5px;
	border-right: 1px solid #f18822;
}
.indomaex .fModuleContent>.row>div.col-count h4 {
	color: #f18922;
	font-weight: 700;
	font-size: 3.10vw;
}
.indomaex .fModuleContent>.row>div.col-count p {
	color: black;
}
.f-indomax-banner li {
	padding-top: 40px;
}
a.fButton.border-img {
	border: 1px solid var(--brand-color-theme-1);
	background: transparent;
	color: var(--brand-color-theme-1);
}
.expand-section {
	display:flex;
	display: flex;
	margin-bottom: 10px;
	border-bottom: 1px solid;
 .number {
 span {
background: #fff;
 width: 25px;
 height: 24px;
 display: flex;
 color: #f26422;
 margin: 3px 10px 0 0;
 align-items: center;
 border-radius: 50%;
justify-content: center;
}
}
}
/*indomaex*/
/*iies*/
.iies img {
	width:100%;
	height:150px;
	object-fit:cover;
	object-position:top;
}
/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/
@media(min-width:991.99px) {
 #fFooter .f-footer-menu {
 width: fit-content;
}
}
 @media(min-width:1199.99px) {
 .f-header-logo img {
 width: 60px;
}
 .f-header-logo {
 width: fit-content;
}
 .main-menu .fMenu {
 display: flex;
 justify-content: end;
 align-items: center;
}
 .main-menu .fMenu>li {
 padding: 7px 7px;
 position: relative;
}
 .main-menu .fMenu>li.has-submenu {
 padding-right: 15px;
}
 .main-menu .fMenu>li>a {
 color: black;
 position: relative;
 font-size: 1rem;
 text-transform: uppercase;
 font-family: 'Tinos';
}
 .main-menu .fMenu>li:last-child {
 padding-right: 0;
}
 .main-menu .fMenu>li:last-child>a {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f18d22+0,f16522+99 */
background: linear-gradient(to right, rgba(241, 141, 34, 1) 0%, rgba(241, 101, 34, 1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 display: inline-block;
 padding: 8px 1.2rem;
 color: white;
 border: 1px solid var(--brand-color-theme-1);
 border-radius: 30px;
}
 header.active .main-menu .fMenu>li:last-child>a {
 color: white;
}
 .main-menu .fMenu>li>ul {
 position: absolute;
 text-align: left;
 top: 3.8rem;
 left: 7px;
 background-color: white;
 visibility: hidden;
 min-width: 230px;
 width: -webkit-max-content;
 width: -moz-max-content;
 width: max-content;
 opacity: 0;
 z-index: -1;
 box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
 -webkit-transform: scaleY(0);
 -ms-transform: scaleY(0);
 transform: scaleY(0);
 -webkit-transform-origin: top center;
 -ms-transform-origin: top center;
 transform-origin: top center;
 -webkit-transition: all 0.4s ease 0s;
 transition: all 0.4s ease 0s;
 padding: 0;
}
 .main-menu .fMenu>li.has-submenu>a {
 position: static;
}
 .main-menu .fMenu>li.has-submenu>a::before {
 content: "\f107";
 font-family: "FontAwesome";
 position: absolute;
 right: 0;
 top: 50%;
 transform: translateY(-50%);
 font-size: .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 .5rem;
 display: block;
 border-bottom: 1px solid #dedede;
}
 .main-menu .fMenu>li>ul>li>a:hover {
 background-color: var(--brand-color-theme-2);
 color: white;
}
 .main-menu .fMenu>li>ul>li:last-child>a {
 border-bottom: 0;
}
 header .main-menu {
 width: fit-content;
}
.footer-section {
 img {
 width: 80px;
}
}
}
 @media(min-width:1299.99px) {
 #fFooter .f-contact {
 width: fit-content;
}
 .f-header-logo img {
 width: 60px;
}
 .main-menu .fMenu>li>ul>li>a, .main-menu .fMenu>li>a {
 font-size: .2;
}
 .f-banner-new-design .tag {
 font-size: 1.4rem;
}
 .f-banner-new-design h3 {
 font-size: 4.4rem;
}
 .f-banner-new-design .theme {
 font-size: 1.5rem;
}
 .f-banner-new-design .date-venue .date {
 margin-right: 1.7rem;
 padding-left: 2rem;
}
 .f-banner-new-design .date-venue .venue {
 padding-left: 2rem;
}
 .f-banner-new-design .date-venue {
 font-size: 1.2rem;
 letter-spacing: 1px;
}
 .f-banner-new-design .date-venue .venue::before, .f-banner-new-design .date-venue .date::before {
 width: 1.7rem;
 height: 1.7rem;
}
 .f-banner-new-design p>a.fButton {
 padding: 10px 2rem;
 font-size: 1..2;
}
 .f-banner-new-design .fGalleryImage img {
 max-height: 700px;
 object-fit: cover;
}
 .f-banner-new-design .fGalleryText {
 padding-top: 5rem;
}
 .f-banner-new-design .fGalleryText .f-images-banner {
 text-align: center;
}
 .f-banner-new-design .fGalleryText .f-images-banner img {
 max-width: 450px;
}
 .f-galleryImages .fGalleryItem {
 width: 20%;
}
}

/*xl*/

@media (max-width: 1399.99px) {
 html {
 font-size: 16px;
}
}
 @media(max-width:1299.99px) {
 .fHeader .navbar-header>.container {
 width: 100%;
 max-width: 100%;
}
}

/*lg*/

@media (max-width: 1199.99px) {
 html {
 font-size: 16px;
}
 .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: 3.5em;
 height: fit-content;
 width: 100%;
 background-color: var(--brand-color-theme-2);
 width: 95%;
 padding: 0;
 z-index: 9999999;
}
 .main-menu nav ul {
 margin: 0;
}
 .main-menu nav ul.fMenu>li>a {
 display: block;
 padding: .6rem 1rem;
 color: white;
 border-bottom: 1px solid #dedede4e;
 position: relative;
 background-color: var(--brand-color-theme-1);
}
 .main-menu nav ul.fMenu>li:last-child>a {
 border-bottom: 0;
}
 .main-menu nav ul.fMenu>li.has-submenu>a::after {
 content: "\f107";
 font-family: "FontAwesome";
 position: absolute;
 right: 1rem;
 top: 50%;
 transform: translateY(-50%);
 color: white;
}
 .main-menu nav ul.fMenu>li.has-submenu>ul {
 position: relative;
 padding: 7px;
 background-color: var(--brand-color-theme-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;
}
}
 @media(max-width: 991.99px) {
 html {
 font-size: 15px;
}
 .row.w-100 {
 --bs-gutter-x: 0;
}
 .fHeader .navbar-header {
 margin: 0;
 background:var(--brand-color-theme-1);
}
.f-countdown .fModuleContent>.row>div.col-count p {
font-size:2.2vw;
}
 .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;
}
 .f-photo-with-custom-text .fModuleTitle {
 display: block;
}
 .f-photo-with-custom-text .fModuleContent .fModuleTitle {
 display: block;
}
 .f-welcome-message.f-photo-with-custom-text .fModuleContent .fModuleTitle {
 display: block;
}
 .f-header-logo img {
 width:50px;
}
 .f-welcome-message .f-media-image {
 float: unset;
 padding: 12px;
 margin: 0 auto;
}
 .f-welcome-message.f-photo-with-custom-text .fModuleContent .fModuleTitle h3 {
 text-align: center !important;
 font-size: 1.3rem;
}
 .f-welcome-message.f-photo-with-custom-text .fModuleContent .fModuleTitle span {
 text-align: center;
 display: block;
}
 #fFooter .footer-cta>.container .fModuleTitle h3 {
 font-size: 2rem;
}
 .f-counterup-js .row {
 justify-content: center;
}
 .f-counterup-js .col-6 {
 width: fit-content;
 padding: 12px;
 min-width: 161px;
}
 .f-dates-design .fModuleContent>div>.row::after {
 content: unset;
}
 .f-dates-design .row .col-lg-6.row {
 position: relative;
}
 .f-dates-design .row .col-lg-6.row::after {
 content: "";
 position: absolute;
 top: 12px;
 width: calc(100% - 72px);
 height: 2px;
 background-color: #dae0e7;
}
 .f-dates-design .row .col-lg-6 div.item {
 position: relative;
 z-index: 2;
}
.home-preview-banner {
display:none;
}
.mobile-banner {
display:block !important;
}
.f-banner-home .fGalleryText h3 {
font-size:6vw;
}
.f-banner-home .fGalleryText .date {
display:block;
font-size:2.8vw;
}
.f-countdown .fModuleContent>.row>div.col-count h4 {
font-size:6.1vw;
}
.left .col-md-6 {
margin-bottom:20px;
}
.f-indomax-banner .fGalleryText {
left:0;
}
.f-indomax-banner .fGalleryText a.fButton {
margin-bottom:10px;
}
.indomaex .row {
margin-top:20px;
}
.indomaex {
padding-bottom:20px !important;
}
.f-about {
padding-bottom:30px !important;
}
.expand {
padding:20px 0 0 0;
}
.f-banner-home .owl-dots {
bottom:21px;
}
.f-card-design-1 {
 .container {
width:auto;
}
}
 .f-card-design-1 {
 & .ItemfinnerGallery {
 img {
margin:inherit;
}
 .f-card-design-1 {
 .ItemfinnerGallery {
aspect-ratio: auto;
}
 .news {
margin-bottom:20px;
}
}
.indonesia.row {
justify-content: center;
}
}

/*sm*/

@media (max-width: 767.99px) {
 html {
 font-size: 14px;
}
 .f-banner-new-design .fGalleryText .container {
 width: 100%;
 max-width: 100%;
}
 .f-dates-design .row .col-lg-6.row::after {
 content: unset;
}
 .f-counterup-js .col-6 {
 width: 50%;
}
 .f-counterup-js .col-6 div.counter-box {
 border: 1px solid #f0b21651;
 padding: 12px;
}
.mobile {
display:block !important;
}
.f-indomax-banner {
display:none !important;
}
}
