@import url('https://fonts.googleapis.com/css2?family=Delius&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Delius&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Delius&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
	--brand-color-theme-1: #000;
	--brand-color-theme-2: #a07c2b;
	--brand-color-theme-3: #000000cf;
	--brand-color-theme-4: #3c3c3c;
	--brand-color-theme-5: #002365;
	--brand-color-theme-6: #331709;
	--brand-color-theme-7: #d9a126;
	--brand-font-family-heading: "Nunito Sans", sans-serif;
	--brand-font-family-body: "Nunito Sans", sans-serif;
}

.brand-color-theme-1-bg {
	background-color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-2-bg {
	background-color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-3-bg {
	background-color: var(--brand-color-theme-3) !important;
}

.brand-color-theme-4-bg {
	background-color: var(--brand-color-theme-4) !important;
}

.brand-color-theme-5-bg {
	background-color: var(--brand-color-theme-5) !important;
}

.brand-color-theme-6-bg {
	background-color: var(--brand-color-theme-6) !important;
}

.brand-color-theme-7-bg {
	background-color: var(--brand-color-theme-7) !important;
}


.brand-color-theme-1-text {
	color: var(--brand-color-theme-1) !important;
}

.brand-color-theme-2-text {
	color: var(--brand-color-theme-2) !important;
}

.brand-color-theme-3-text {
	color: var(--brand-color-theme-3) !important;
}

.brand-color-theme-4-text {
	color: var(--brand-color-theme-4) !important;
}

.brand-color-theme-5-text {
	color: var(--brand-color-theme-5) !important;
}

.brand-color-theme-6-text {
	color: var(--brand-color-theme-6) !important;
}

.brand-color-theme-7-text {
	color: var(--brand-color-theme-7) !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: "Playfair Display", serif;
}

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: 2rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 1.25rem 0;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	margin: 1.25rem 0;
}

h5 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	margin: 1rem 0;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.no-spacing {
	padding: 0 !important;
	margin: 0 !important;
}

.bg-none {
	background: transparent !important;
}

.container {
	min-width: 320px;
}

body.width-full #fContent>.container {
	width: 100%;
	padding: 0;
	min-width: 100%;
}

body.width-full #fMatter {
	padding: 0;
}

#f-messages {
	margin: 0;
	background-color: var(--brand-color-theme-1);
	position: fixed;
	top: 0rem;
	width: 100% !important;
	left: 0;
	color: white;
	z-index: 9999999;
}

#f-messages .item {
	background-color: var(--brand-color-theme-1);
}

@-webkit-keyframes fadeOutmessage {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		display: none;
	}
}

@keyframes fadeOutmessage {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		display: none;
	}
}

.fadeOutmessage {
	-webkit-animation-name: fadeOutmessage;
	animation-name: fadeOutmessage;
}

#fPageTitle {
	display: block;
}

#nav-up {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99999;
	font-size: 18px;
	background-color: var(--brand-color-theme-1);
	color: white;
	cursor: pointer;
	width: 48px;
	outline: none;
	border-width: 1px;
	border-style: solid;
	border-color: var(--brand-color-theme-1);
	border-image: initial;
	padding: 10px 5px;
	border-radius: 50%;
	box-shadow: 0 2px 4px 0 rgb(37 34 25);
	visibility: visible !important;
}

#nav-up:hover {
	background-color: rgb(255, 255, 255);
	color: var(--brand-color-theme-1);
}

/*Module*/

.fModule .fModuleTitle,
.fModule .fModuleContent {
	width: 100%;
}

.fModuleEnd .fModuleTitle,
.fModuleEnd .fModuleContent,
.fModuleBoxed {
	margin: 0 auto;
}

#fMatter .fModule,
#fSidebarRight .fModule,
#fContentPre .fModule,
#fContentPost .fModule {
	padding-top: 0rem;
	padding-bottom: 3rem;
	overflow: hidden;
}

.fRegion.region-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.fRegion {
	display: inline-block;
	width: 100%;
}

.fPageTitle {
	background-color: var(--brand-color-theme-5);
	color: white;
	text-align: center;
	padding: 3rem 1rem;
	margin-bottom: 2rem;
}

body.title-off .fPageTitle {
	display: none;
}

.fModuleTitle h3 {
	color: var(--brand-color-theme-1);
	font-weight: 600;
}

.title-center .fModuleTitle h3 {
	text-align: center !important;
}

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: 767.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 */

header .fModule.fLogo {
	padding-left: 0;
	padding-right: 0;
}

/*header .fModule {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}*/

.region-header,
.region-headertop {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;

	.row {
		margin: 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;
}

.fheaderToptwo a {
	font-size: .9rem;
	align-content: center;
}

.Ftop-header-logo li.fGalleryItem {
	width: 42%;
}

/*** Footer ***/

footer#fFooter ul,
footer#fFooter ul li {
	margin: 10px 0 0 0;
	list-style: none;
	padding: 0px;
}

/*** Button ***/

a.fButton,
.fForm .buttons input,
.fbutton-btn a,
.fForm .buttons a {
	display: inline-block;
	padding: 10px 2rem;
	color: var(--brand-color-theme-2);
	font-weight: 500;
	border: 1px solid var(--brand-color-theme-2);
}

a.fButton:hover,
.fForm .buttons input:hover,
.fbutton-btn a:hover,
.fForm .buttons a:hover {
	background-color: var(--brand-color-theme-5);
	color: white;
	border-color: none;
}

/****--Form---****/

select {
	word-wrap: normal;
	padding: 0.3rem 10px;
}

.fForm label {
	float: left;
	text-align: left;
	font-size: 16px;
	width: 100%;
}

.fForm .buttons {
	padding: 0;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.fForm .form-heading {
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 0;
	padding: 0 0 7px;
}

.fForm input,
.fForm select,
.fForm textarea,
.fForm .date {
	padding: 0.85rem 10px;
	width: 100%;
}

.fForm .hint {
	color: #333;
	margin: 11px 0;
}

.fForm .hint a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.fForm .hint a:hover {
	color: var(--brand-color-theme-1);
}

input.form-control,
textarea.form-control {
	display: inline-block;
	margin: 10px 0px;
}

.fForm .form-item-type-checkbox .checkbox label,
.fForm .form-item-type-radio .checkbox label,
.fForm .form-item-type-boolean label {
	display: flex;
	align-items: center;
}

.user-register-group table tr:nth-child(odd) {
	background: #ddd;
}

.listing-header-item-currency {
	width: fit-content;
	display: flex;
	border: 1px solid var(--brand-color-theme-2);
	border-radius: 0.25rem;
	overflow: hidden;

	>* {
		border: 0;
		border-radius: 0;
	}

	input[type="submit"] {
		padding: 0.5rem 0.75rem;
		background: var(--brand-color-theme-2);
		color: #fff;
	}
}

/*----------iconset----------*/

.iconset .fMenu {
	justify-content: center;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
}

.iconset .fMenu li {
	padding: 1rem;
}

.iconset .fMenu a {
	display: block;
	padding: 1rem;
	font-weight: bold;
	color: #000;
	height: 100%;
	background: #f5f5f5;
	transition: 0.3s all ease-in-out;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 30%);
	-moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 30%);
	position: relative;
}

.iconset .fMenu a:hover {
	background: #efefef;
	-webkit-box-shadow: 0px 0px 10px -4px rgb(0 0 0 / 55%);
	-moz-box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.55);
	box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 55%);
}

.iconset img {
	width: auto;
	max-width: 45px;
	display: block;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.menu-item-text .action:before {
	display: block;
	content: "";
	height: 1.04rem;
	width: 1.04rem;
	background: red;
	border-radius: 1rem;
	position: absolute;
	left: 10px;
	top: 19%;
	transform: translate(0, -50%);
	animation: blinking 2s infinite;
}


/*----------animation----------*/

@keyframes blinking {
	0% {
		opacity: 1;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* Common CSS */


/* login page starts here */

body.view-login .fForm,
body.view-account-recover .fForm {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	padding: 2rem 1rem;
	width: 700px;
	max-width: 100%;
	margin: auto;
}

body.view-account-recover .fForm .form-item-type-fieldset {
	border: 0;
	padding: 0;
}

.fForm .error {
	margin: .5rem 0 0 0;
	font-size: .8rem;
}

.buttons {
	padding-left: 12px !important;
}

body.view-login .fForm .buttons,
body.view-account-recover .fForm .buttons {
	padding-left: 0 !important;
}

/* login page ends here */


/*homepage*/

.logo img {
	width: 100px;
	padding-top: 15px;
}

.navbar-header ::before {
	margin: 0 5px 0 0;
}

.logo h3 a {
	display: none;
}

.headertop {
	padding: 0;
}

.video .banner-home {
	position: absolute;
	inset: 0;
	align-content: center;
}

.banner-home,
.banner-home p {
	color: white;
}

.video {
	padding-bottom: 0 !important;
}

.banner-home h3 {
	font-family: "Nunito Sans", sans-serif;
	margin: 0;
	color: var(--brand-color-theme-2);
}

.banner-home h4 {
	margin: 0;
	font-size: 2.6rem;
}

.video-js {
	min-height: 465px;
	object-fit: cover;
}

.catagory-img .fGalleryText h3 a {
	font-family: "Nunito Sans", sans-serif;
	color: #011a1b;
	border: 1px solid #011a1b;
	font-size: 0.8rem;
	text-transform: uppercase;
	padding: 5px 25px;
}

.catagory-img .fGalleryText h3 a:hover {
	background: var(--brand-color-theme-5);
	border-color: var(--brand-color-theme-5);
	color: white;
}

.catagory-img .fGalleryText {
	text-align: center;
}

.catagory-shop .f-list-item-node.f-list-item-title {
	display: none;
}

.ring img {
	height: 350px;
	object-fit: cover;
	position: relative;
}

.ring .fGalleryImage {
	position: relative;
}

.ring .fGalleryText {
	position: absolute;
	top: 0;
	width: 92%;
	height: 89%;
	background: #000000cc;
	margin: 20px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	text-align: center;
}

.ring .fGalleryText:hover {
	opacity: 1;
	transition: opacity 0.2s linear;
	cursor: pointer;
}

.ring h3 {
	font-size: 1.4rem;
}

.collection span {
	font-family: "Playfair Display", serif;
	font-style: italic;
	margin: 0;
	color: var(--brand-color-theme-7);
}

.collection p {
	margin: 0;
}

/*.ring { background:var(--brand-color-theme-3);}*/
.catagory h3 {}


.catagory span {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	line-height: 41px;
}

.catagory {
	text-align: center;
	padding-bottom: 1rem !important;
}

.catagory .f-list-item-container {
	background: #fffbfb;
	padding: 0px;
	text-align: center;
	padding-bottom: 10px;
}

.catagory .f-list-item-container p {
	margin: 0;
}

.catagory .f-list-filter {
	display: flex;
	justify-content: right;
	margin-top: 10px;
}

.catagory p {
	width: 1100px;
	display: inline-block;
	max-width: 100%;
}

.catagory .f-list-filter a {
	margin: 0 0px 0 5px;
	font-size: 1.1rem;
	width: 29px;
	height: 25px;
	text-align: center;
	padding-bottom: 10px;
	background: white;
	color: black;
	border: 1px solid #CCCCCC;
}

.cat-img .f-list-item-node.f-list-item-title a {
	display: none;
}

.cat-img h3 {
	font-family: "Nunito Sans", sans-serif;
	font-size: 0.7rem;
	color: var(--brand-color-theme-4);
	display: inline-block;
	padding: 7px 30px;
	border: 1px solid var(--brand-color-theme-4);
	text-transform: uppercase;
}

.cat-img img {
	height: 300px;
	object-fit: cover;
}

.cat-img .f-list-filter {
	display: none;
}

.cat-img .f-list-item-container {
	text-align: center;
}

.quality {
	padding: 30px 60px 0 60px !important;
	background: var(--brand-color-theme-5);
	color: white;
}

.quality p,
.quality-images p {
	font-size: .9rem;
}

.inset-0 {
	inset: 0;
	display: block;
}

a.fButton.about {
	background: var(--brand-color-theme-7);
	color: #fff;
}

.quality {
	position: sticky;
	top: 84.6px;
	height: fit-content;
}

.quality-images .ItemfinnerGallery .fGalleryImage img {
	object-fit: cover;
}

.quality img {
	height: auto !important;
}

.quality-images h3 {
	color: var(--brand-color-theme-7);
	margin: 0;
}

.quality-images .fGalleryText {
	text-align: center;
	padding: 20px 80px 20px 80px;
}

.quality-images {
	padding: 0 0 0 0 !important;
}

.quality-images ul {
	background: #F5F5F5;
	margin-bottom: 0;
}

.f-event-objective {
	background: var(--brand-color-theme-5);
	color: white;
	overflow: inherit !important;
	padding-top: 10px !important;
}

.f-event-objective h3 {
	color: white;
	text-align: center;
}

.f-event-objective img {
	width: 60px !important;
	height: 60px;
	border-radius: 50%;
	display: none !important;
}

.f-event-objective-carousel {
	width: 80%;
	margin: 0 auto !important;
}

.f-event-objective .fGalleryItem {
	padding: 12px;
}

.f-event-objective .ItemfinnerGallery {
	border: 1px solid #2156b9;
	border-radius: 5px;
	height: 100%;
	margin: 0 0px 0 0;
	padding: 15px;
}

.f-event-objective .ItemfinnerGallery p {
	margin: 5px 0 5px 0;
}

.owl-theme .owl-dots .owl-dot span {
	border-radius: 1px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--brand-color-theme-7) !important;
}

.f-event-objective h4 {
	margin: 0;
}

.f-event-objective.work.birth .ItemfinnerGallery img {
	width: 100% !important;
	height: 150px !important;
	aspect-ratio: 1/1;
	object-fit: contain;
	margin: 0 auto;
	border: 1px solid #dedede;
}

.insta {
	text-align: center;
	background: #f4e6c3;
}

.insta p {
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

a.fButton.follow {
	font-family: "Nunito Sans", sans-serif;
	font-size: 0.7rem;
	color: var(--brand-color-theme-4);
	display: inline-block;
	padding: 7px 30px;
	border: 1px solid var(--brand-color-theme-4);
	text-transform: uppercase;
}

a.fButton.follow:hover {
	color: #fff;
}

p.instagram {
	margin-top: 30px;
	font-size: 0.8rem;
	margin-bottom: 5px;
}

.collection {
	text-align: center;
}

.fRegion.region-footer .ItemfinnerGallery {
	text-align: center;
	padding: 30px;
}

.fRegion.region-footer p {
	margin: 0;
}

.opening ul {
	display: flex;
}

.opening ul li ::before {
	background: #000;
	padding: 10px 10px;
	color: #d8a323;
	margin-top: 30px;
}

.fRegion.region-footer img {
	width: 150px;
}

.fRegion.region-footer .fGalleryText h3 a {
	display: none;
}

footer#fFooter {
	background: black;
	color: white;
	padding: 20px 0 20px 0;
	border-bottom: 30px solid #101010;
}

footer#fFooter h3 {
	color: var(--brand-color-theme-7);
	font-size: 1.3rem;
	margin-bottom: 0.8rem;
}

.copyright p {
	position: absolute;
	width: 100%;
	text-align: center;
	margin: 24px 0 0 0 !important;
	color: white;
}

.copyright p a {
	color: #fff !important;
	font-size: 0.8rem;
}

/*homepage*/

/*our-work*/
.work {
	background: white;
}

.work img {
	display: block !important;
	width: auto !important;
	height: auto !important;
	border-radius: 0;
}

.f-event-objective-carousel.work {
	width: 100% !important;
}

.f-event-objective .work .ItemfinnerGallery {
	height: 100% !important;
}

.f-event-objective.work h3 {
	font-family: "Playfair Display", serif;
	color: #222222 !important;
}

.work-cont {
	background: var(--brand-color-theme-5);
	color: white;
	padding: 40px 0 20px 0;
}

.work-cont h3 {
	color: var(--brand-color-theme-7);
	font-size: 1.8rem;
}

.fModule f-module .f-module-gallery-list {
	position: relative;
	padding-bottom: 0 !important;
}

.our-work .fGalleryText h3 a {
	display: none;
}

.founder {
	text-align: center;
	background: #f8f8f8;
	padding: 30px;
	margin: 0;
}

.founder p {
	margin: 0;
	padding-bottom: 0px;
}

.founder img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin-top: 30px;
}

.founder h3 {
	font-size: 1.8rem;
}

/*our-work*/

/*about-us*/

.f-boxes-container-carousel .item {
	padding: 12px;
}

.boxes-philosophy {
	background: white;
	box-shadow: 0 3px 6px rgb(133 125 199 / 16%), 0 3px 6px rgb(89 119 172 / 23%);
	padding: 20px 15px;
	height: 100%;
	border-radius: 10px;
	text-align: center;
	border: 1px solid #ccc;
	min-height: 265px;
}

.boxes-philosophy h4 {
	color: var(--brand-color-theme-7);
}

.boxes-philosophy img {
	height: 50px;
	width: 100px;
	object-fit: contain;
	opacity: 0.7;
}

/*about-us*/

li#fModule--fGalleryItem-327575 h3 a {
	display: none;
}

/*gia certification*/
.birthstone-content h5 {
	color: var(--brand-color-theme-7);
	font-size: 1.3rem;
}

.birthstone-content p {
	color: black;
}

.birthstone-content {
	text-align: center;
}

/*tab*/
.active-tabs {
	padding: 10px;
	position: relative;
	margin: 20px auto;
}

.active-tabs input {
	opacity: 0;
	display: none;
	visibility: hidden;
}

.btn {
	background: #1babbb;
	color: #fff;
	cursor: pointer;
	display: block;
	float: left;
	font-family: "open sans";
	font-size: 13px;
	height: 40px;
	line-height: 35px;
	margin-right: 1px;
	text-align: center;
	width: 100px;
	opacity: 0.8;
	transition: all 0.4s;
}

.btn:hover {
	opacity: 1;
}

.active-tabs input:checked+label {
	background: #fff;
	opacity: 1;
	color: #000;
	font-size: 1rem;
	padding: 5px 25px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	font-weight: bold;
}

.tabs-container {
	width: 100%;
	position: relative;
	float: left;
	top: -5px;
	background: #fff;
	padding: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tabs-container td {
	font-size: 0.9rem;
}

table.table.table-bordered.table-hover {
	background: white;
}

table.table.table-bordered.table-hover.table-responsive {
	display: block;
	overflow: scroll;
}

.active-tabs .btn {
	cursor: pointer;
	display: block;
	float: left;
	font-size: 1rem;
	height: 50px;
	line-height: 35px;
	margin-right: 1px;
	text-align: center;
	opacity: 1;
	width: 150px;
	transition: all 0.4s;
	color: white;
	border-radius: 5px 5px 0 0px;
	background: var(--brand-color-theme-5);
}

thead.thead-dark th {
	background: #d7d6d65c;
	color: #fff;
	font-size: 0.9rem;
	padding: 15px 10px;
	border: none !important;
	color: black;
	text-transform: uppercase;
}

.tab-1,
.tab-2,
.tab-3,
.tab-4,
.tab-5,
.tab-6,
.tab-7 {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	/*overflow:scroll;*/
}

tbody,
td,
tfoot,
th,
thead,
tr {
	border-width: initial;
}

.tab-2,
.tab-4,
.tab-6 {
	height: 300px;
}

.tab-1 p,
.tab-2 p,
.tab-3 p,
.tab-4 p,
.tab-5 p,
.tab-6 p,
.tab-7 p {
	font-size: 1.6rem;
	text-align: left;
	margin: 0;
	font-weight: 600;
	color: var(--brand-color-theme-5);
}

.tab-2 p,
.tab-4 p,
.tab-6 p {
	line-height: auto;
}

.btn-1:checked~.tabs-container .tab-1,
.btn-2:checked~.tabs-container .tab-2,
.btn-3:checked~.tabs-container .tab-3,
.btn-4:checked~.tabs-container .tab-4,
.btn-5:checked~.tabs-container .tab-5,
.btn-6:checked~.tabs-container .tab-6,
.btn-7:checked~.tabs-container .tab-7 {
	position: relative;
	visibility: visible;
	top: 0;
	left: 0;
	opacity: 1;
	border-radius: 5px;
}

.contact.us p a {
	color: black;
}

.contact.us div.col-12 {
	padding: 0px 12px 24px 12px;

	div {
		border: 1px solid #dedede;
		height: 100%;
		align-content: center;
		padding: 1.2rem;
	}
}

.contact.us p {
	margin: 0;
}

.contact.us h4 {
	display: inline-block;
	margin: 0;
	color: var(--brand-color-theme-2);
}

.fBanner {
	position: relative;
}

.fHeader {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 9999;
	background: white;
}

.inner-banner .fGalleryText {
	position: absolute;
	inset: 0;
	align-content: center;
	filter: drop-shadow(1px 1px 1px #000);
}

.inner-banner#fModule-56154 .fGalleryText {
	align-content: start;
	padding-top: 3rem;
}

.inner-banner .banner-home h4 {
	font-size: 3vw;
}

.inner-banner .banner-home h3 {
	font-size: 2.5vw;
}

.inner-banner .banner-home p {
	font-size: 1.3vw;
}

/*gia certification*/

/* blog starts here */

.f-blogs .f-list-item {
	padding: 12px;
}

.f-blogs .f-list-item .f-list-item-container {
	height: 100%;
	border: 1px solid #dedede;
	padding: 12px;
	text-align: justify;
	background-color: white;
	position: relative;
}

.f-blogs .f-list-item .f-list-item-container .f-list-item-fields {
	display: none;
}

.f-blogs .f-list-item .f-list-item-container .f-list-item-teaser-image {
	margin-bottom: 10px;
}

.f-blogs .f-list-item .f-list-item-container .f-list-item-teaser-image img {
	border: 1px solid #dedede;
}

.f-blogs .f-list-item .f-list-item-container .f-list-item-title {
	text-align: start;
	margin-bottom: 5px;
}

.f-blogs .f-list-item .f-list-item-container .f-list-item-title a {
	color: var(--brand-color-theme-2);
	font-size: 1.1rem;
	font-weight: 700;
}

.f-blogs .f-list-item .f-list-item-container .f-list-item-title a::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	z-index: 9;
}

.content-type-42291 .fPageTitle h1>span.heading-small {
	display: none;
}

.content-type-42291 .f-content-text {
	text-align: justify;
}

.content-type-42291 .f-content-text .date-and-author>div>span {
	position: relative;
	display: inline-block;
	align-content: center;

	>strong {
		color: var(--brand-color-theme-2);
	}
}

.content-type-42291 .f-content-text .date-and-author>div>span::after {
	content: "|";
	position: relative;
	margin-left: 4px;
	margin-right: 4px;
}

.content-type-42291 .f-content-text .date-and-author>div>span:last-child::after {
	content: unset;
}
.content-type-42291 .f-content-text ul,
.content-type-42291 .f-content-text ol{
	margin-left: 0;
	padding-left: 0;
}


.content-type-42291 .f-content-text h3,
.content-type-42291 .f-content-text h2{
	font-size: 1.5rem;
	color: var(--brand-color-theme-2);
}

.content-type-42291 .f-content-text a{
	color: var(--brand-color-theme-7);
	text-decoration: underline;
	font-weight: 600;
}

.content-type-42291 .f-content-text h4{
	color: var(--brand-color-theme-5);
	font-size: 1.2rem;
}

.content-type-42291 .f-content-text h5{
	font-size: 1.1rem;
}
.content-type-42291 #fSidebarRight {
	height: fit-content;
	background-color: #f3f3f3;
	position: sticky;
	top: 90px;
	padding-top: 1rem;
	margin-bottom: 1rem;
}

.f-recent-blog .fModuleTitle h3 {
	font-size: 1.4rem;
	border-bottom: 1px solid var(--brand-color-theme-2);
	padding-bottom: 15px;
	margin-bottom: 0;
	color: var(--brand-color-theme-5);
	margin-top: 0;
}

.f-recent-blog .f-list-item {
	padding: 12px 12px 12px 12px;
}

.f-recent-blog .f-list-item:last-child .f-list-item-container {
	border-bottom: 0;
}

.f-recent-blog .f-list-item .f-list-item-container .f-list-item-title a {
	color: var(--brand-color-theme-2);
	font-weight: 700;
	font-size: 1.05rem;
}

.f-recent-blog .f-list-item .f-list-item-container .f-list-item-subtitle {
	font-size: .9rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.f-recent-blog .f-list-item .f-list-item-container .f-list-item-button a {
	color: var(--brand-color-theme-5);
	text-decoration: underline;
	font-weight: 600;
	font-size: .9rem;
}

.f-recent-blog .f-list-item .f-list-item-container {
	height: 100%;
	border-bottom: 1px solid #dedede;
	padding-bottom: 12px;
}

.f-blogs .loadMoreBtn {
	display: block;
	width: fit-content;
	outline: none;
	border: 0;
	margin: 10px auto;
	padding: 10px 2rem;
	color: var(--brand-color-theme-2);
	font-weight: 500;
	border: 1px solid var(--brand-color-theme-2);
	background-color: var(--brand-color-theme-2);
	color: white;
}

/* blog ends here */

/***************************************************************************
                        RESPONSIVE MEDIA QUERY
****************************************************************************/

@media(min-width: 991.9px) {
	header.active {
		background-color: white;
		transition: all 0.4s ease 0s;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}

	header .f-logo-header {
		width: fit-content;
	}

	header .f-logo-header img {
		width: 300px;
	}

	header .region-header>.row {
		margin: 0;
		align-items: center;
		align-content: center;
		justify-content: space-between;
	}

	.main-menu .fMenu {
		display: flex;
		justify-content: end;
		font-family: var(--brand-font-family-heading);
		align-items: center;
	}

	.main-menu .fMenu>li {
		padding: 7px 7px;
		position: relative;
	}

	.main-menu .fMenu>li.has-submenu {
		padding-right: 25px;
	}

	.main-menu .fMenu>li>a {
		color: var(--brand-color-theme-2);
		position: relative;
		font-weight: 500;
		font-size: .9rem;
	}

	.main-menu .fMenu>li>ul {
		position: absolute;
		text-align: left;
		top: 3.8rem;
		left: 7px;
		background-color: white;
		visibility: hidden;
		width: 230px;
		opacity: 0;
		z-index: -1;
		box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
		-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: 5px;
		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 1rem;
		display: block;
		border-bottom: 1px solid #dedede;
	}

	.main-menu .fMenu>li>ul>li>a:hover {
		background-color: var(--brand-color-theme-2);
		color: white;
	}

	.main-menu .fMenu>li>ul>li:last-child>a {
		border-bottom: 0;
	}

	header.active .main-menu .fMenu>li>a {
		color: var(--brand-color-theme-2);
		transition: all 0.4s ease 0s;
	}

	header .main-menu {
		width: fit-content;
	}

}

/*xl*/

@media (max-width: 1399px) {
	html {
		font-size: 16px;
	}
}



/*lg*/

@media (max-width: 1199px) {
	html {
		font-size: 16px;
	}
}

@media(max-width: 991.9px) {
	html {
		font-size: 15px;
	}

	.navbar-header .navbar-toggler {
		display: block;
	}

	.navbar-collapse.collapse.show {
		display: block;
	}

	.main-menu {
		position: static !important;
	}

	.main-menu nav {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 6rem;
		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;
		pointer-events: auto;
	}

	.main-menu nav ul.fMenu>li.has-submenu>ul {
		position: relative;
		padding: 7px;
		background-color: var(--brand-color-theme-4);
		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;
		text-transform: uppercase;
	}

	header .navbar-toggle .icon-bar {
		display: block;
		background-color: var(--brand-color-theme-2);
	}

	.video .banner-home h3 {
		font-family: "Playfair Display", serif;
		font-size: 1.7rem;
		margin-bottom: 10px;
	}

	.video .banner-home h4 {
		font-size: 1.4rem;
	}

	.video .banner-home {
		filter: drop-shadow(1px 1px 1px #000);
		align-content: end;
	}

	.video .banner-home a.fButton {
		background-color: var(--brand-color-theme-2);
		color: white;
	}

	.quality {
		position: relative;
		top: 0;
	}
}

/*sm*/



@media (max-width:800px) {

	.fRegion.region-footer .ItemfinnerGallery {
		text-align: left;
		padding: 0;
	}
}

@media(max-width:767.9px) {
	.inner-banner .fGalleryText {
		align-content: start;
		top: 3rem;
	}

	.inner-banner .banner-home h3 {
		font-size: 1.7rem;

	}

	.inner-banner .banner-home h4 {
		font-size: 2rem;
	}

	.inner-banner .banner-home p {
		font-size: 1rem;
	}

	.boxes-philosophy {
		min-height: 220px;
	}
}

/*xs*/

@media (max-width: 575px) {
	html {
		font-size: 14px;
	}

	.active-tabs .btn {
		width: auto;
	}

	.ring .fGalleryText {
		width: unset;
		height: unset;
		top: unset;
		left: unset;
		inset: 24px;
		padding: 12px;
		margin: 0;
	}
}