<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--universal-css-property---------------------------------------------------------------------------------*/
*, *::before, *::after {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	outline: none;
	background: none;
	border: none;
}
/*--common-root-properties---------------------------------------------------------------------------------*/
:root {
	--white: #FFFFFF;
	--black: #000000;
	--silver: #C0C0C0;
	--charcoal-black: #111111;
	--neon-red: #FF073A;
	--neon-green: #39FF14;
	--h1-font: #FFFFFF;
	--h2-font: #FFFFFF;
	--h3-font: #FFFFFF;
	--h4-font: #FFFFFF;
	--para-font: #FFFFFF;
	--com-shadow1: 0 0 1rem rgba(0, 0, 0, 0.25);
	--com-shadow2: 0 0 1rem rgba(255, 255, 255, 0.25);
}
/*--common-css-properties----------------------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
	font-weight: 300;
	letter-spacing: 0.075rem;
	/* 1rem = 10px // ( 10px / 16px ) = 0.625 */
	overflow-x: hidden;
}
body::-webkit-scrollbar {
	width: 1.2rem;
}
body::-webkit-scrollbar-track {
	background: var(--black);
}
body::-webkit-scrollbar-thumb {
	background: linear-gradient(transparent, cyan);
	border-radius: 0.6rem;
}
body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(transparent, var(--neon-red));
}
body {
	background: var(--black);
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	width: 100%;
	font-family: 'Roboto', sans-serif;
	display: block;
}
img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
li {
	font-family: 'Roboto', sans-serif;
}
a, p, span, input, textarea, select, table {
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.075rem;
}
textarea {
    resize: none;
}
button {
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	cursor: pointer;
}
/*--header-properties--------------------------------------------------------------------------------------*/
.header {
	top: 0;
	left: 0;
	z-index: 5;
	position: sticky;
	width: 100%;
	box-shadow: var(--com-shadow1);
}
/*---------------------------------------------------------------------------------------------------------*/
.hdr1 {
	top: 0;
	position: relative;
	width: 100%;
	height: 3.6rem;
	line-height: 3.6rem;
	padding: 0 2.5%;
	background: var(--charcoal-black);
	font-size: 1.2rem;
	color: var(--white);
	display: block;
}
.hdr1 ul {
	margin: 0;
	display: flex;
}
.hdr1 ul li {
	text-align: center;
	text-transform: capitalize;
}
.hdr1 ul span {
	color: #FF9900;
	font-size: 1.4rem;
}
.hdr1 ul a {
	color: var(--white);
	cursor: pointer;
}
.hdr1 ul .notify {
    color: #FF2079;
	text-shadow: 0 0 0.2rem #FF2079, 0 0 0.2rem #FF2079;
}
.hdr1 .partition {
	padding: 0 2rem;
}
.hdr1 .login_tab {
	top: 50%;
	right: 2.5%;
	transform: translateY(-50%);
	position: absolute;
}
/*---------------------------------------------------------------------------------------------------------*/
.navbar {
	top: 0;
	position: relative;
	width: 100%;
	height: 7rem;
	padding: 0 2.5%;
	background: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.navbar .logo {
	position: relative;
	width: 11rem;
	height: 6.6rem;
	overflow: hidden;
}
.logo a {
	cursor: default;
	display: block;
}
.logo img {
	margin: -20% 0 -20%;
}
.navbar .mob_icons {
	position: relative;
	width: 7.5rem;
	height: 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	display: none;
}
.mob_icons .bell {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
}
.bell .count {
	top: 50%;
	left: 100%;
	transform: translate(-50%, -50%);
	position: absolute;
	width: 1.6rem;
	height: 1.6rem;
	line-height: 1.6rem;
	padding: 0 0.2rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	letter-spacing: 0;
	background-color: rgba(255, 0, 0, 0.7);
	border: transparent;
	border-radius: 50%;
	display: block;
}
.mob_icons .burger {
	position: relative;
	width: 2.7rem;
	height: 2.7rem;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	box-shadow: 0.1rem 0.1rem 1rem 0 rgba(0, 0, 0, 0.1),
				-0.1rem -0.1rem 1rem 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
.burger .line {
	width: 1.8rem;
	height: 0.2rem;
	background: var(--charcoal-black);
}
.navbar .navlinks {
	height: 7rem;
	line-height: 7rem;
	display: flex;
}
.navbar .navlinks li {
	margin-left: 0.2rem;
}
.navbar .navlinks li a {
	padding: 1rem 1.5rem;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--charcoal-black);
	text-transform: capitalize;
	border-radius: 0.3rem;
	cursor: pointer;
	transition: 0.25s ease;
}
.navbar .navlinks li a.active,
.navbar .navlinks li a:hover {
	color: var(--white);
	background: var(--charcoal-black);
}
/*---------------------------------------------------------------------------------------------------------*/
.navlinks .dropmenu1 {
	z-index: -1;
	top: 8.5rem;
	position: absolute;
	width: 20rem;
	line-height: 3.2rem;
	background: var(--white);
	box-shadow: var(--com-shadow1);
	display: flex;
	flex-direction: column;
	transition: 0.25s ease;
	opacity: 0;
	visibility: hidden;
}
.navlinks .dropmenu1 li {
	margin: 0;
}
.navlinks .dropmenu1 li a {
	width: 100%;
	font-size: 1.4rem;
	font-weight: 300;
	border-radius: 0;
	display: block;
}
.navlinks .dropmenu1 li a.active {
	color: var(--charcoal-black);
	background: #C0C0C0;
}
.navlinks li:hover .dropmenu1 {
	top: 7rem;
	opacity: 1;
	visibility: visible;
}
/*---------------------------------------------------------------------------------------------------------*/
.navbar .sidebar {
	top: 7rem;
	right: 0;
	position: absolute;
	width: 30rem;
	min-height: calc(100vh - 7rem);
	padding: 1.6rem 3.6rem;
	background: var(--charcoal-black);
	display: flex;
	flex-direction: column;
	-webkit-transition: -webkit-transform 0.5s ease;
			transition: -webkit-transform 0.5s ease;
			transition: 		transform 0.5s ease;
	display: none;
}
.navbar ul.nav-active {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}
.navbar ul.nav-active {
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}
.navbar .sidebar li {
	width: 100%;
	min-height: 4.8rem;
	line-height: 4.8rem;
	background: transparent;
	cursor: pointer;
}
.navbar .sidebar li a {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--white);
	text-transform: capitalize;
	text-decoration: none;
	display: block;
}
.navbar .sidebar li a:hover {
	color: cyan;
	transition: 0.25s ease;
}
.navbar .sidebar li label {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--white);
	text-transform: capitalize;
	text-decoration: none;
	cursor: pointer;
	display: block;
}
.navbar .sidebar li label:hover {
	color: cyan;
	transition: 0.25s ease;
}
.navbar .sidebar li span {
	right: 3.6rem;
	position: absolute;
	width: 1.4rem;
	height: 0.7rem;
}
.navbar .sidebar li img {
	width: 1.4rem;
	height: 0.7rem;
	background: var(--white);
}
.navbar .sidebar li:hover img {
	background: cyan;
	transition: 0.25s ease;
}
.navbar .sidebar input {
	display: none;
}
.navbar .sidebar ul {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--charcoal-black);
	display: block;
	display: none;
}
[id^=smenu]:checked + ul {
	display: block;
}
.navbar .sidebar ul li {
	height: 4.8rem;
	line-height: 4.8rem;
	padding: 0 2.5rem;
	border-bottom: 0.1rem groove #777777;
	display: block;
}
.navbar .sidebar ul li a {
	color: var(--white);
	display: block;
}
.navbar .sidebar ul li a:hover {
	color: cyan;
	transition: 0.25s ease;
}
/*--footer-properties--------------------------------------------------------------------------------------*/
.footer {
	top: 0;
	position: relative;
	width: 100%;
	padding: 5rem 0 0 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
.notifications {
	z-index: 7;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.notifications .notification_page {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.notification_heading {
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	width: 100%;
	font-size: 2.7rem;
	font-weight: 300;
	letter-spacing: 0.3rem;
	text-align: center;
	text-transform: capitalize;
}
.notification_cont {
	margin: 0 auto; 
	position: relative;
	max-width: 93.8rem; 
	min-height: 100%;
	padding: 7.2rem 0;
}
.notification_cont .notification_content {
	margin: 0 7.2rem 7.2rem;
	margin-left: 14.4rem;
	max-width: 79.4rem;
	line-height: 1.6;
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--white);
	text-align: justify;
}
.notification_content .n01 {
    min-height: 9rem;
    padding: 1rem 0;
    border-bottom: 0.1rem solid rgba(204, 204, 204, 0.36);
}
.n01 .nlink {
    color: var(--white);
    display: block;
}
.n01 span {
	font-size: 0.9rem;
}
.notification_content .thumb {
    left: 7.2rem;
    margin-top: 0.5rem;
    position: absolute;
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 0.5rem;
    overflow: hidden;
}
.thumb img {
	width: 100%;
}
.notification_content .viewall {
    position: relative;
    float: right;
    padding-bottom: 0.1rem;
    font-size: 1.5rem;
    color: #C0C0C0;
    text-transform: uppercase;
    border-bottom: 0.1rem dotted #C0C0C0;
}
.close_notification {
	position: absolute;
	z-index: 3;
	top: 0.6rem;
	right: 1.4rem;
	font-size: 3.2rem;
	color: var(--white);
	font-family: times;
	transform: rotate(45deg);
	cursor: pointer;
}
/*---------------------------------------------------------------------------------------------------------*/
.contact_form {
	z-index: 7;
	top: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.contact_form .form_wrap {
	position: relative;
	padding: 5rem 3.6rem 3.6rem 3.6rem;
	background: var(--white);
	border-radius: 1rem;
	box-shadow: var(--com-shadow2);
}
.contact_form .form_wrap .close_contact {
	position: absolute;
	top: 0.6rem;
	right: 1.4rem;
	font-size: 3.2rem;
	font-family: times;
	transform: rotate(45deg);
	cursor: pointer;
}
.contact_form .form_wrap h3 {
	margin-bottom: 3.6rem;
	width: 100%;
	font-size: 2rem;
	font-weight: 400;
	color: var(--charcoal-black);
	text-align: center;
	letter-spacing: 0.1rem;
	text-transform: capitalize;
}
.contact_form .form_wrap h3 span {
	color: var(--neon-red);
}
.contact_form .form_wrap label {
	margin: 2.5rem auto 0;
	width: 27rem;
	text-align: center;
	display: block;
}
.contact_form .form_wrap label:nth-child(3) {
	display: none;
}
.contact_form .form_wrap label span {
	font-size: 1.4rem;
	font-weight: 300;
	color: #505F75;
	text-transform: capitalize;
}
.contact_form .form_wrap input {
	margin: 0.5rem auto;
	position: relative;
	width: 27rem;
	padding-bottom: 0.5rem;
	background-color: var(--white);
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	border-bottom: 0.1rem solid rgba(109, 93, 93, 0.4);
	display: block;
}
.contact_form .form_wrap textarea {
	margin: 0.5rem auto;
	position: relative;
	width: 27rem;
	height: 9rem;
	padding-bottom: 0.5rem;
	background-color: var(--white);
	font-size: 1.4rem;
	font-weight: 400;
	text-align: justify;
	border-bottom: 0.1rem solid rgba(109, 93, 93, 0.4);
	display: block;
}
.contact_form .form_wrap button {
	margin: 2.5rem auto 0;
	width: 27rem;
	height: 3.6rem;
	line-height: 3.6rem;
	background: var(--charcoal-black);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--neon-red);
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	border: 0.1rem solid var(--neon-red);
	border-radius: 1.8rem;
	transition: 0.25s ease;
	display: block;
}
.contact_form .form_wrap button:hover {
	text-shadow: 0 0 0.1rem var(--neon-red), 0 0 0.1rem var(--neon-red);
	box-shadow: 0 0.1rem 0.5rem 0 var(--neon-red) inset, 0 0.1rem 0.5rem 0 var(--neon-red),
				0 -0.1rem 0.5rem 0 var(--neon-red) inset, 0 -0.1rem 0.5rem 0 var(--neon-red);
}
/*---------------------------------------------------------------------------------------------------------*/
.subscriber_form {
	z-index: 7;
	top: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.subscriber_form .form_wrap {
	position: relative;
	padding: 5rem 3.6rem 3.6rem 3.6rem;
	background: var(--white);
	border-radius: 1rem;
	box-shadow: var(--com-shadow2);
}
.subscriber_form .form_wrap .close_subscriber {
	position: absolute;
	top: 0.6rem;
	right: 1.4rem;
	font-size: 3.2rem;
	font-family: times;
	transform: rotate(45deg);
	cursor: pointer;
}
.subscriber_form .form_wrap h3 {
	margin-bottom: 5rem;
	width: 100%;
	font-size: 2rem;
	font-weight: 400;
	color: var(--charcoal-black);
	text-align: center;
	letter-spacing: 0.1rem;
	text-transform: capitalize;
}
.subscriber_form .form_wrap h3 span {
	color: var(--neon-red);
}
.subscriber_form .form_wrap label {
	margin: 2.5rem auto 0;
	width: 27rem;
	text-align: center;
	display: block;
}
.subscriber_form .form_wrap label:nth-child(3) {
	display: none;
}
.subscriber_form .form_wrap label span {
	font-size: 1.4rem;
	font-weight: 300;
	color: #505F75;
	text-transform: capitalize;
}
.subscriber_form .form_wrap input {
	margin: 0.5rem auto;
	position: relative;
	width: 27rem;
	padding-bottom: 0.5rem;
	background-color: var(--white);
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	border-bottom: 0.1rem solid rgba(109, 93, 93, 0.4);
	display: block;
}
.subscriber_form .form_wrap button {
	margin: 2.5rem auto 0;
	width: 27rem;
	height: 3.6rem;
	line-height: 3.6rem;
	background: var(--charcoal-black);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--neon-red);
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	border: 0.1rem solid var(--neon-red);
	border-radius: 1.8rem;
	transition: 0.25s ease;
	display: block;
}
.subscriber_form .form_wrap button:hover {
	text-shadow: 0 0 0.1rem var(--neon-red), 0 0 0.1rem var(--neon-red);
	box-shadow: 0 0.1rem 0.5rem 0 var(--neon-red) inset, 0 0.1rem 0.5rem 0 var(--neon-red),
				0 -0.1rem 0.5rem 0 var(--neon-red) inset, 0 -0.1rem 0.5rem 0 var(--neon-red);
}
/*---------------------------------------------------------------------------------------------------------*/
.ftr1 {
	top: 0;
	position: relative;
	width: 100%;
	padding: 0 2.5% 5rem 2.5%;
	font-size: 1.4rem;
	color: var(--white);
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.row {
	top: 0;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.column1 {
	top: 0;
	width: 30rem;
	font-weight: 300;
}
.column1 p {
	margin-left: 5rem;
	width: 25rem;
	line-height: 1.6;
	text-align: justify;
}
.column1 .bname {
	font-weight: 400;
}
.column1 .phnos {
	line-height: 1.6;
	display: block;
}
.phnos tr td:nth-child(1) {
	width: 10rem;
	padding-left: 2rem;
	text-align: left;
}
.phnos tr td:nth-child(2) {
	width: 20rem;
	text-align: right;
}
.column1 ul {
	margin-left: 5rem;
	width: 23rem;
	font-weight: 300;
}
.column1 ul li {
	margin: 0 0 1.6rem;
}
.column1 ul li a {
	color: var(--white);
	text-transform: capitalize;
	border-bottom: 0.1rem dotted transparent;
}
.column1 ul li a:hover {
	border-bottom: 0.1rem dotted var(--white);
}
.column1 .location_map {
	margin: 3.2rem 0;
	position: relative;
	width: 30rem;
	height: 22.5rem;
	border-radius: 0.5rem;
}
.location_map iframe {
	width: 100%;
	height: 100%;
}
.location {
	margin: 0;
	width: 3.6rem;
	height: 3.6rem;
	float: left;
	border: 0.2rem;
	overflow: hidden;
}
.telephone {
	margin: 0;
	width: 3.6rem;
	height: 3.6rem;
	float: left;
	border: 0.2rem;
	overflow: hidden;
}
.column2 {
	top: 0;
	position: relative;
	width: 23rem;
}
.sm_wrap {
	top: 0;
	position: relative;
	width: 23rem;
	height: 4.8rem;
	display: flex;
	justify-content: space-between;
}
.sm_icons {
	width: 4.8rem;
	height: 4.8rem;
	overflow: hidden;
	border-radius: 50%;
	transition: 0.25s ease;
}
.sm_icons a {
	display: block;
}
.sm_icons img {
	width: 100%;
}
.sm_icons:hover {
	transform: scale(1.1);
}
.subs_btn {
	margin: 7rem auto;
	position: static;
	z-index: 2;
	width: 12rem;
	height: 12rem;
	line-height: 11.8rem;
	background: transparent;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--neon-green);
	letter-spacing: 0.2rem;
	text-align: center;
	text-transform: uppercase;
	border: 0.2rem solid var(--neon-green);
	border-radius: 6rem;
	transition: 0.5s ease;
	overflow: hidden;
	cursor: pointer;
	display: block;
}
.subs_btn:hover {
	text-shadow: 0 0 0.1rem var(--neon-green), 0 0 0.1rem var(--neon-green);
	box-shadow: 0 0.2rem 2.7rem 0 var(--neon-green) inset, 0 0.2rem 3.6rem 0 var(--neon-green),
				0 -0.2rem 2.7rem 0 var(--neon-green) inset, 0 -0.2rem 3.6rem 0 var(--neon-green);
}
/*---------------------------------------------------------------------------------------------------------*/
.sign {
	top: 0;
	width: 100%;
	height: 3.6rem;
	line-height: 3.6rem;
	padding: 0 2.5%;
	font-size: 1rem;
}
.sign span {
	color: #C0C0C0;
	float: right;
}
.sign span a {
	color: #C0C0C0;
	text-transform: uppercase;
}
.sign span a:hover {
	border-bottom: 0.1rem dotted #C0C0C0;
}
/*---------------------------------------------------------------------------------------------------------*/
.ftr2 {
	top: 0;
	position: relative;
	width: 100%;
	height: 3.6rem;
	line-height: 3.6rem;
	background: var(--charcoal-black);
	font-size: 1.2rem;
	font-weight: 100;
}
.ftr2 ul {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 32rem;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.ftr2 ul li {
	text-align: center;
}
.ftr2 ul a {
	color: var(--white);
}
.scrollUp {
	position: fixed;
	bottom: 7.2rem;
	right: 2.5%;
	width: 4rem;
	height: 4rem;
	background: url('../icons27/arrow.png');
	background-size: cover;
	background-position: center center;
	background-color: #777777;
	border-radius: 0.5rem;
	transform: rotate(90deg);
	cursor: pointer;
	transition: 0.25s ease;
	visibility: hidden;
	opacity: 0;
}
.scrollUp:hover {
	background-color: #810000;
}
.scrollUp.active {
	visibility: visible;
	opacity: 0.9;
}
/*--1360px-as-base-screen-size-----------------------------------------------------------------------------*/
/*--common-properties-for-screen-upto-568px-(xs)-----------------------------------------------------------*/
/*@media screen and (max-width: 568px) {
}*/
/*--common-properties-for-screen-upto-768px-(s)------------------------------------------------------------*/
/*@media screen and (max-width: 768px) {
}*/
/*--common-properties-for-screen-upto-1024px-(m)-----------------------------------------------------------*/
@media screen and (max-width: 1024px) {
	html {
		font-size: 50%;
	}
	.hdr1 {
		display: none;
	}
	.navbar {
		padding: 0 5% 0 2.5%;
	}
	.navbar .mob_icons {
		display: flex;
	}
	.navbar .navlinks {
		display: none;
	}
	.navbar .sidebar {
		display: flex;
	}
/*---------------------------------------------------------------------------------------------------------*/
	.ftr1 .row {
		flex-direction: column;
		align-items: center;
	}
	.ftr1 .row .column1 {
		padding: 0 0 3.2rem 0;
	}
	.ftr1 .row .column1 ul {
		margin: 0 auto;
		width: 90%;
		padding: 3.2rem 0;
		text-align: center;
		border-top: 0.1rem groove var(--white);
		border-bottom: 0.1rem groove var(--white);
	}
	.ftr1 .row .column1 ul li:last-child {
		margin: 0;
	}
	.ftr1 .scrollUp {
		right: 5%;
	}
	.sign {
		padding: 0 5% 0 2.5%;
	}
/*---------------------------------------------------------------------------------------------------------*/
	.notification_cont {
		margin: auto;
		padding: 0;
	}
	.notification_cont .notification_content {
		margin: auto;
		margin-left: 7.2rem;
		margin-bottom: 4rem;
		padding: 4rem 2rem;
	}
	.notification_content .thumb {
		left: 2rem;
	}
}
/*--common-properties-for-screen-above-1920px-(2xl)--------------------------------------------------------*/
@media screen and (min-width: 1920px) {
	html {font-size: 88%;}
}
/*--common-properties-for-screen-above-2560px-(3xl)--------------------------------------------------------*/
@media screen and (min-width: 2560px) {
	html {font-size: 118%;}
}
/*--common-properties-for-screen-above-3840px-(x4k)--------------------------------------------------------*/
@media screen and (min-width: 3840px) {
	html {font-size: 176%;}
}
/*---------------------------------------------------------------------------------------------------------*/</pre></body></html>