* {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* ----------------------------------------------------------------
   Core Color System
-----------------------------------------------------------------*/
:root {
	/* Typography & Theme -------------------------------------------------- */
	--cnvs-primary-font: "DM Sans", sans-serif;

	/* Brand palette ------------------------------------------------------- */
	--bs-primary: #150958;
	--bs-primary-rgb: 21, 9, 88;
	--bs-secondary: #BB9F55;
	--bs-secondary-rgb: 187, 159, 85;

	/* Semantic aliases ---------------------------------------------------- */
	--cnvs-themecolor: var(--bs-primary);
	--cnvs-themecolor-rgb: var(--bs-primary-rgb);

	/* Extended palette ---------------------------------------------------- */
	--color-white: #ffffff;
	--color-white-rgb: 255, 255, 255;
	--color-black-rgb: 0, 0, 0;
	--color-grey-050: #efefef;
	--color-grey-100: #eeeeee;
	--color-grey-200: #aaaaaa;

	--color-shadow: 0, 0, 0; /* use via rgba(var(--color-shadow), <alpha>) */

	/* UI state variants --------------------------------------------------- */
	--color-primary-hover: #0b5ed7;
	--color-primary-hover-border: #0a58ca;
	--color-primary-active-border: #0a53be;
	--color-disabled-bg: #150958;

	/* Component-specific --------------------------------------------------- */
	--color-promo-layer1: #bccce7;
	--color-promo-layer2: #e6ecf7;
	--color-bullet-bg: rgba(204, 204, 204, 0.5);
	--color-bullet-selected-bg: rgba(204, 204, 204, 1);
	--color-trust-badge-bg: #0D1A80;
	--color-emergency-stroke: #750000;
}

/* --- Utility text colours ---------------------------------------------- */
.gold-color,.text-gold {
	color: var(--bs-secondary) !important;
}

.bg-primary {background-color: var(--bs-primary) !important}
.color {
	color: var(--bs-primary) !important;
}

/* --- Intro Page Text Image Overlays ------------------------------------ */
.cs-op-back {
	background-color: rgba(var(--color-black-rgb), 0.4);
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 1rem;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 4px 12px rgba(var(--color-shadow), 0.3);
	color: rgba(var(--color-white-rgb), 0.9) !important;
}

/* --- Testimonials ------------------------------------------------------- */
.block-testimonials-3,
.block-testimonials-3 h1,
.block-testimonials-3 h2,
.block-testimonials-3 h3,
.block-testimonials-3 h4,
.block-testimonials-3 h5,
.block-testimonials-3 h6,
.block-testimonials-3 p,
.block-testimonials-3 a {
	font-family: "Inter", sans-serif !important;
}

.block-testimonials-3 .swiper-slide {
	width: 400px;
	padding: 15px;
}

.block-testimonials-3 .testimonial-col {
	border: 1px solid var(--color-grey-100);
	border-radius: 4px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 10px 0 rgba(var(--color-shadow), 0.05);
}

.block-testimonials-3 .testimonial-col p {
	font-size: 16px;
	line-height: 26px !important;
	margin-bottom: 20px;
}

.block-testimonials-3 .swiper-horizontal > .swiper-scrollbar {
	width: 75%;
	max-width: 700px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(var(--color-shadow), 0.06);
}

.block-testimonials-3 .swiper,
.block-testimonials-3 .swiper-wrapper {
	cursor: ew-resize !important;
}

/* --- What we Do section Home ------------------------------------------- */
.promo-users {
	opacity: 0.1;
	--cnvs-promo-users-img-pos-x: 0;
	--cnvs-promo-users-img-pos-y: 0;
}

.promo-users img {
	position: absolute;
	top: var(--cnvs-promo-users-img-pos-y);
	left: var(--cnvs-promo-users-img-pos-x);
	bottom: var(--cnvs-promo-users-img-pos-y);
	right: var(--cnvs-promo-users-img-pos-x);
}

.promo-users img:nth-child(1) {
	--cnvs-promo-users-img-pos-x: 13%;
	--cnvs-promo-users-img-pos-y: -6%;
}

.promo-users img:nth-child(2) {
	--cnvs-promo-users-img-pos-x: 4%;
	--cnvs-promo-users-img-pos-y: 49%;
}

.promo-users img:nth-child(3) {
	left: auto;
	--cnvs-promo-users-img-pos-x: 2%;
	--cnvs-promo-users-img-pos-y: 0%;
}

.promo-users img:nth-child(4) {
	left: auto;
	top: auto;
	--cnvs-promo-users-img-pos-x: 0;
	--cnvs-promo-users-img-pos-y: 3%;
}

.promo-users img:nth-child(5) {
	top: auto;
	--cnvs-promo-users-img-pos-x: 17%;
	--cnvs-promo-users-img-pos-y: 3%;
}

@media (min-width: 768px) {
	.promo-users {
		opacity: 1;
	}
}

/*--- Revo Slider Home Page ---------------------------------------------- */
.tiny_bullet_slider .tp-bullet:before {
	content: " ";
	position: absolute;
	width: 100%;
	height: 25px;
	top: -12px;
	left: 0;
	background: transparent;
}

.bullet-bar.tp-bullets:before {
	content: " ";
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	padding: 10px;
	margin-left: -10px;
	margin-top: -10px;
	box-sizing: content-box;
}

.bullet-bar .tp-bullet {
	width: 60px;
	height: 3px;
	position: absolute;
	background: var(--color-bullet-bg);
	cursor: pointer;
	box-sizing: content-box;
}

.bullet-bar .tp-bullet:hover,
.bullet-bar .tp-bullet.selected {
	background: var(--color-bullet-selected-bg);
}

.page-menu-item.current > a,
.text-gold {
	color: var(--bs-secondary) !important;
}

.page-menu-item:hover > a,
.page-menu-item.current > a {
	background-color: rgba(var(--color-white-rgb), 0.15);
}

/* --- Buttons ------------------------------------------------------------ */
.btn-primary {
	--bs-btn-color: var(--color-white);
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: var(--color-white);
	--bs-btn-hover-bg: var(--color-primary-hover);
	--bs-btn-hover-border-color: var(--color-primary-hover-border);
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: var(--color-white);
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--color-primary-active-border);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(var(--color-shadow), 0.125);
	--bs-btn-disabled-color: var(--color-white);
	--bs-btn-disabled-bg: var(--color-disabled-bg);
	--bs-btn-disabled-border-color: var(--color-disabled-bg);
}

.btn-outline-primary {
	--bs-btn-color: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: var(--color-white);
	--bs-btn-hover-bg: var(--bs-primary);
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-focus-shadow-rgb: 13, 110, 253;
	--bs-btn-active-color: var(--color-white);
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--bs-primary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(var(--color-shadow), 0.125);
	--bs-btn-disabled-color: var(--bs-primary);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--bs-primary);
	--bs-gradient: none;
}

.btn-white {
	--bs-btn-color: var(--color-white);
	--bs-btn-bg: var(--color-white);
	--bs-btn-border-color: var(--color-white);
	--bs-btn-hover-color: var(--bs-primary);
	--bs-btn-hover-bg: var(--color-grey-050);
	--bs-btn-hover-border-color: var(--color-white);
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: var(--bs-primary);
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--bs-primary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(var(--color-shadow), 0.125);
	--bs-btn-disabled-color: var(--color-white);
	--bs-btn-disabled-bg: var(--color-disabled-bg);
	--bs-btn-disabled-border-color: var(--color-disabled-bg);
}

/* --- Promo Card --------------------------------------------------------- */
.promo-card {
	--promo-card-gap: 15px;
	transform: translateX(calc(var(--promo-card-gap) * 2)) translateY(calc(var(--promo-card-gap) * -2));
	width: calc(100% - calc(var(--promo-card-gap) * 2));
}

.promo-card div:nth-child(1) {
	position: relative;
	padding: 60px 90px;
	z-index: 3;
}

.promo-card > div:nth-child(2),
.promo-card > div:nth-child(3) {
	position: absolute;
	top: var(--promo-card-gap);
	left: calc(-1 * var(--promo-card-gap));
	width: 100%;
	height: 100%;
	background-color: var(--color-promo-layer1);
	z-index: 1;
}

.promo-card > div:nth-child(3) {
	top: calc(2 * var(--promo-card-gap));
	left: calc(-2 * var(--promo-card-gap));
	background-color: var(--color-promo-layer2);
	z-index: 0;
}

.price-unit-label {
	vertical-align: bottom;
	font-size: 0.25em;
}

/* --- Hero features ------------------------------------------------------ */
.hero-features {
	transform: translateY(-20%);
	padding: 25px;
	border-radius: 6px;
}

.hero-features i {
	font-size: 24px;
	line-height: 1.4;
}

.hero-features h5 {
	font-size: 15px;
	line-height: 1.6;
}

@media (min-width: 992px) {
	.hero-features {
		transform: translateY(-50%);
		padding: 40px 30px;
		max-width: 80%;
		margin-left: auto;
		border-left: 4px solid rgba(var(--color-shadow), 0.2);
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

	.img-hover-in:hover img,
	.product:hover .product-image img {
		transform: scale(1.15);
	}

	.img-hover-in:hover,
	.product:hover .product-image {
		transform: scale(0.95);
		border-radius: 10px;
	}

	.img-overlap img {
		width: calc(100% + 30%);
		max-width: none;
	}

	.img-overlap + div {
		border-radius: 0.3rem;
		padding: 60px;
	}
}

/* --- Badges ------------------------------------------------------------- */
.badge {
	padding: 8px;
	font-size: 12px;
	margin-bottom: 15px;
	border-radius: 2px;
	font-weight: 500;
	line-height: 0.8;
}

.badge.badge-default {
	border: 1px solid var(--cnvs-themecolor);
	color: var(--cnvs-themecolor);
}

/* --- Feature block ------------------------------------------------------ */
.feature-text {
	display: flex;
	align-items: center;
	border-bottom: 1px dashed rgba(var(--color-shadow), 0.15);
	padding-bottom: 10px;
}

.fbox-text {
	font-size: 58px;
	line-height: 1;
	font-weight: 700;
}

.feature-text h3 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 0;
	margin-left: 15px;
	font-weight: 800;
}

.feature-text + p {
	color: #777;
	margin-top: 10px;
	margin-bottom: 0;
}

/* --- Sections ----------------------------------------------------------- */
.section,
.bg-color-light {
	padding: 80px 0;
	background-color: rgba(var(--cnvs-themecolor-rgb), 0.07);
	border-top: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.08);
	border-bottom: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.1);
}

.fbox-dark.fbox-outline .fbox-icon i,
.fbox-dark.fbox-outline .fbox-icon img {
	background-color: var(--cnvs-themecolor);
}

.fbox-gold.fbox-outline .fbox-icon i,
.fbox-gold.fbox-outline .fbox-icon img {
	background-color: var(--bs-secondary);
}

.fbox-dark.fbox-outline .fbox-icon i.selected,
.fbox-dark.fbox-outline .fbox-icon img {
	color: var(--bs-secondary);
}

.fbox-gold.fbox-outline .fbox-icon a {
	border: var(--cnvs-featured-box-outline-border) solid var(--bs-secondary);	
}

.img-overlap + div {
	padding: 40px;
}

/* --- Carousel Tabs ------------------------------------------------------ */
#carousel-tabs.tabs,
#carousel-tabs .tab-content {
	--cnvs-tab-padding-width: 0;
	--bs-nav-link-padding-y: .5rem;
	--bs-nav-link-font-size: 1rem;
	--bs-nav-link-font-weight: 400;
	--bs-nav-tabs-border-width: 0;
	--bs-nav-link-color: var(--cnvs-contrast-1000);
	--bs-nav-link-hover-color: var(--cnvs-contrast-900);
	--bs-nav-tabs-link-active-bg: rgba(var(--bs-primary-rgb), 0.1);
	--bs-nav-tabs-link-active-color: var(--bs-secondary);
	--cnvs-tabs-bg-color: rgba(var(--cnvs-contrast-rgb), 0.04);
}

.dark #carousel-tabs.tabs,
.dark #carousel-tabs .tab-content {
	--bs-nav-tabs-link-active-bg: rgba(var(--bs-secondary-rgb), 1);
	--bs-nav-tabs-link-active-color: var(--bs-primary);
}

#carousel-tabs .nav-link:not(.active) {
	background-color: rgba(var(--cnvs-contrast-rgb), 0.04);
}

#carousel-tabs .nav-link {
	border-radius: var(--bs-border-radius);
	font-weight: 500;
}

#carousel-tabs .nav-link.active {
	font-weight: 600;
	border: 2px solid var(--bs-primary);
}

/* --- Carousel blur helpers --------------------------------------------- */
.carousel-blur-left::before,
.carousel-blur-right::after {
	--cnvs-carousel-blur-size: 70px;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	width: var(--cnvs-carousel-blur-size);
	height: 100%;
	z-index: 1;
	background: linear-gradient(to right, var(--cnvs-body-bg) 50%, transparent);
}

.carousel-blur-right::after {
	left: auto;
	right: 0;
	background: linear-gradient(to left, var(--cnvs-body-bg) 50%, transparent);
}

/* --- Trust badge -------------------------------------------------------- */
.trust-badge {
	background-color: var(--color-trust-badge-bg);
	color: var(--color-white);
	font-size: 0.75rem;
	padding: 0.4em 0.7em;
	border-radius: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
}

/* --- Utility min-heights ------------------------------------------------ */
.min-h-700 {
	min-height: 700px !important;
}

.min-h-400 {
	min-height: 400px !important;
}

/* --- Typography helpers ------------------------------------------------- */

.orbitron-bold {
	font-family: "Orbitron", sans-serif !important;
	font-optical-sizing: auto !important;
	font-weight: bold !important;
	font-style: normal !important;
}
.orbitron-500 {
	font-family: "Orbitron", sans-serif !important;
	font-optical-sizing: auto !important;
	font-weight: 500 !important;
	font-style: normal !important;
}

.conthrax, .roboto{
	font-family: "Roboto", sans-serif !important;	
}

.dm-sans-bold {
	font-family: "DM Sans", sans-serif !important;
	font-optical-sizing: auto !important;
	font-weight: bold !important;
	font-style: normal !important;
}
.dm-sans-semibold {
	font-family: "DM Sans", sans-serif !important;
	font-optical-sizing: auto !important;
	font-weight: 600 !important;
	font-style: normal !important;
}
.dm-sans-regular {
	font-family: "DM Sans", sans-serif !important;
	font-optical-sizing: auto !important;
	font-weight: 400 !important;
	font-style: normal !important;
}

/* --- Nostos buttons & headers ------------------------------------------ */
.ns-btn {
	white-space: nowrap;
	letter-spacing: 2px;
	cursor: pointer;
	border-radius: 10px;
	font-size: 20px;
	line-height: 50px;
}

.ns-btn-menu{
	font-size: 15px;
	line-height: 30px;
	border-radius:5px;
	padding: 0px 10px;
	text-transform: uppercase;
	
}
.ns-btn-gold, .btn-secondary {
	color: var(--color-white);
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
}

.ns-btn-primary, .btn-primary {
	color: var(--color-white);
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.ns-btn-light {
	color: var(--bs-primary);
	background-color: var(--color-white);
}
.ns-btn-light-outline {
	color: var(--bs-primary);
	background-color: var(--color-white);
	border: 2px solid var(--bs-secondary);
}
.ns-btn-light:hover  {
	background-color: var(--bs-primary)!important;
	color: var(--color-white)!important;
}
.ns-btn-light-gold {
	color: var(--bs-secondary);
	background-color: var(--color-white);
}
.ns-btn-light-gold:hover,.ns-btn-light-outline:hover {
	background-color: var(--bs-secondary)!important;
	color: var(--color-white)!important;
}
.btn-secondary:hover {
	background-color: var(--bs-secondary)!important;
	color: var(--bs-primary)!important;
	border-color: var(--bs-secondary);
}

.ns-btn-primary:hover,.btn-primary:hover {
	color: var(--bs-secondary) !important;
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary);
}

.ns-intro-p {
	min-width: 400px;
	max-width: 800px;
	white-space: normal;
	font-size: 20px;
	line-height: 25px;
	color: var(--color-white);
	letter-spacing: 0;
	padding: 0;
}

.ns-intro-header {
	min-width: 600px;
	max-width: 600px;
	white-space: nowrap;
	font-size: 100px;
	line-height: 100px;
	font-weight: 700;
	color: var(--color-white) !important;
	font-family: "Orbitron", sans-serif;
}

.ns-primary-stroke {
	-webkit-text-stroke: 2px var(--bs-primary);
	text-stroke: 2px var(--bs-primary);
}

.ns-primary-stroke-mini {
	-webkit-text-stroke: 1px var(--bs-primary);
	text-stroke: 1px var(--bs-primary);
}
.ns-secondary-stroke-mini {
	-webkit-text-stroke: 1px var(--bs-secondary);
	text-stroke: 1px var(--bs-secondary);
}
.ns-emergency-stroke {
	-webkit-text-stroke: 3px var(--color-emergency-stroke);
	text-stroke: 3px var(--color-emergency-stroke);
	text-shadow: 3px 3px 5px var(--color-emergency-stroke);
}

.ns-sign-in-back{
	top:-120px;
}


.ns-home-header{
	white-space: nowrap;
	font-size: 90px;
	line-height: 90px; 
	color: #ffffff;	
	font-weight:600!important;
	padding:0px;
}
.ns-home-subheader{
	white-space: nowrap;
	font-size: 60px;
	line-height: 60px;
	font-weight: 500!important;
	color: var(--bs-secondary);
	padding:0px;
}
.ns-home-subline{
	white-space: nowrap; 
	font-size: 40px; 
	line-height: 40px;
	font-weight: 500!important; 
	color: #ffffff;
	padding:10px 50px;
	background-color: rgba(var(--bs-secondary-rgb), 0.6);
	border-radius:5px;
}

.ns-flipcard-front-primary{
	background-color: #F9F9F9;
	background-image: url('/assets/images/working/arrow1.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 60%;
}
.ns-flipcard-front-secondary{
	background-color: #F9F9F9;
	background-image: url('/assets/images/working/arrow2.png');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 60%;
}
.flip-card-front h3{height:60px!important;margin-top:40px!important}
.flip-card-front p{height:180px!important}

.ns-feature-box{	
	min-height:150px;
	padding:15px;
	background-color: rgba(var(--color-black-rgb), 0.4);
	border-radius:5px;	
}
.ns-feature-box-darker{	
	min-height:150px;
	padding:1.15rem;
	background-color: rgba(var(--color-black-rgb), 0.7);
	border-radius:5px;	
}
.ns-feature-box.no-height{
	min-height:unset!important;
}
.border-primary{
	border-color: var(--bs-primary);
}
.border-secondary{
	color: var(--bs-secondary);
}

.ns-bg-secondary{
	background-color: rgba(var(--bs-secondary-rgb), 0.2);
}
.ns-bg-primary{
	background-color: rgba(var(--bs-primary-rgb), 0.2);
}
.price-unit{
	vertical-align: unset!important;
	color:var(--bs-primary);
	font-size: 1.24rem!important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: var(--bs-nav-pills-link-active-color);
	background-color: var(--bs-primary);	
	font-family: var(--cnvs-primary-font), "sans-serif";
	font-weight: bold;
}

.select-contact-active{
	color:var(--bs-secondary)
}

.bg-top-left {
	position: absolute;
	top: -10vw;
	left: -5vw;
	z-index: 0;
	width: 40vw;
	max-width: none;
}

.bg-bottom-right {
	position: absolute;
	bottom: -10vh;
	right: -5vw;
	z-index: 0;
	width: 40vw;
	max-width: none;
}

.form-widget {
	position: relative;
	z-index: 1;
}

.block-contact-1,
.block-contact-1 h1,
.block-contact-1 h2,
.block-contact-1 h3,
.block-contact-1 h4,
.block-contact-1 h5,
.block-contact-1 h6,
.block-contact-1 p,
.block-contact-1 label,
.block-contact-1 input {
	font-family: 'Inter', sans-serif;
}

.block-contact-1 .form-control {
	padding: 12px 2px;
	background-color: transparent !important;
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0;
	border-bottom-width: 2px;
	border-radius: 0;
	font-weight: 500;
	font-size: 18px;
}

.block-contact-1 .form-control::-moz-placeholder {
	color: #CCC;
	font-weight: 400;
	font-size: 15px;
}
.block-contact-1 .form-control:-ms-input-placeholder {
	color: #CCC;
	font-weight: 400;
	font-size: 15px;
}
.block-contact-1 .form-control::-webkit-input-placeholder {
	color: #CCC;
	font-weight: 400;
	font-size: 15px;
}

.block-contact-1 textarea.form-control {
	resize: none;
	overflow: hidden;
	word-wrap: break-word;
}

.block-contact-1 label:not(.custom-control-label) {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
	color: #777;
	margin-bottom: 3px;
	font-size: 14px;
}

.block-contact-1 .custom-control-label::before,
.block-contact-1 .custom-control-label::after { top: 0.0875rem; }

.block-contact-1 .form-control:active,
.block-contact-1 .form-control:focus {
	border-color: #3D1144;
}

.custom-control-input:checked ~ .custom-control-label::before {
	border-color: #3D1144;
	background-color: #3D1144;
}

.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: 0 0 0 0.2rem #3D114415;
}

.block-contact-1 .social-icon {
	background-color: rgba(0,0,0,0.2);
	font-size: 16px;
}

.ns-form-checkbox{
	width: 25px; 
	height: 25px;
	border-color: var(--bs-primary);
}
.ns-form-checkbox-small{
	width: 20px;
	height: 20px;
	border-color: var(--bs-primary);
}
.show-error-msg + label.error, input[type=checkbox]:not(:checked) + label.error, label.error {
	display: none !important;
}
.ns-form-checkbox.required-check.error{	
	border-color: var(--bs-danger)!important;
}
.form-check-input:checked {
	background-color: var(--bs-secondary)!important;
	border-color: var(--bs-secondary)!important;
}