/*--------------
All Contents - Cleaned Version
--------------*/

/*----- Color Variables -----*/
:root {
  --primary-dark: #111111;
  --secondary-dark: #2a2a2a;
  --primary-light: #F2F2F2;
  --secondary-light: #D2D2D2;
  --white: #FFFFFF;
  --black: #000000;
  --transparent: transparent;

  /* Text on LIGHT backgrounds (#fff / #f7f7f7) */
  --text-heading: #111111;  /* headings */
  --text-body: #555555;     /* paragraphs, list items */
  --text-muted: #888888;    /* labels, meta, footer links */

  /* Text on DARK backgrounds (#000 / #111 / #1a1a1a) */
  --text-on-dark: #FFFFFF;        /* headings, key text */
  --text-on-dark-muted: #999999;  /* subtitles, descriptions, fine print */

  /* Accent */
  --accent-star: #E6B800;   /* rating stars */
}

/*-----------------
1. Reset.css
2. Helper Classes
3. Navbar Styling
4. Hero Section
5. Services Styling
6. Features Split
7. Feature Big
8. Testimonial Styling
9. Counter Section
10. Footer Section
------------------*/

/*----- 1. Reset.css -----*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-weight:400;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	font-family:"Open Sans",sans-serif;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1 {
  font-size: 16px;
}

/*----- Helper Classes -----*/
.navbar-fixed-top {
	top: 0;
	border-width: 0 0 1px;
	position: fixed;
	display: block;
	width: 100%;
	left: 0;
}

html * {
	text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
    color: #fff;
    background: var(--secondary-light);
}

::selection {
    color:#fff;
    background: var(--secondary-light);
}

/* ------ Navbar Styling ----- */
.navbar {
	font-size: 14px;
	font-weight: 500;
	padding-top: 25px;
	letter-spacing: 1px;
	height: 80px;
	z-index: 99;
}

.navbar-default {
  transition: all 0.6s ease;
	border-color: var(--transparent);
  background-color: var(--transparent);
}

.navbar-default .navbar-toggle {
  border-radius: 0px;
  border-color: transparent;
}

.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #111111;
}

.navbar-default .navbar-brand {
	padding: 0 0;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.navbar-default .navbar-brand:hover {
  transition: 1s;
}

.navbar-default .navbar-nav > li > a {
  color: var(--white) !important;
  font-weight:700;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5;
  transition: all 0.5s;
}

.navbar-default .navbar-nav > li > a:hover,
.nav-link:hover {
  color: var(--secondary-light) !important;
}

.navbar-default .navbar-nav > .active > a {
  background: transparent;
  color: #FFFFFF;
}

.navbar-default .navbar-nav > .active > a:hover {
    background: transparent;
    color: #FFFFFF;
}

.navbar-default .navbar-nav > .active > a:focus {
	background: transparent;
  color: #FFFFFF;
}

.navbar-default .navbar-collapse {
	border-color: transparent;
  background-color: transparent;
}

/*---------- Media Queries ---------*/
@media only screen and (max-width: 991px) {
	.navbar {
		padding-top: 0;
		height: 60px;
	}

	/* Brand on the left, hamburger on the right, vertically centred */
	.navbar > .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 60px;
		flex-wrap: nowrap;
	}

  .navbar-default {
    border: 0px;
    background-color: transparent;
  }

	.navbar-default .navbar-collapse {
		text-align: center;
		border-color: transparent;
	  background-color: #000000;
		padding: 20px;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		z-index: 1000;
		display: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: none !important;
	}
	
	.navbar-default .navbar-collapse.show {
		display: flex !important;
	}
	
	.navbar-close {
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		color: white;
		font-size: 30px;
		cursor: pointer;
		display: none;
	}
	

	
	.navbar-collapse.show .navbar-close {
		display: block;
	}
	
	.navbar-collapse.show .navbar-nav {
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

  .navbar-default .navbar-collapse {
    border: 0;
    border-color: transparent;
  }

  .navbar-default .navbar-nav > li> a {
    color: #FFFFFF;
		margin-top: 10px;
  }

	.navbar-default .navbar-nav > li> a:hover {
		color: var(--secondary-light);
	}
  
  .navbar-default .navbar-brand {
    color: #FFFFFF;
		padding: 8px 8px !important;
  }
  
  .navbar-default .navbar-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: none;
    background: transparent;
    margin: 0;
    padding: 8px;
    cursor: pointer;
  }

  .navbar-default .navbar-toggle:focus {
    outline: none;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #FFFFFF;
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 2px;
    margin: 0;
  }

  /* Menu items stacked and centred inside the full-screen overlay */
  .navbar-nav {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: auto;
  }

  .navbar-default .navbar-nav > li > a {
    font-size: 18px;
    padding: 12px 16px;
    margin-top: 0;
  }

  /* Auth buttons: real selectors are .btn-light and .btn-nav-cta */
  .nav-button {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 0 !important;
    margin-top: 8px;
  }

  .nav-button:first-of-type {
    margin-top: 20px;
  }

  .navbar .nav-button .btn-light,
  .navbar .nav-button .btn-nav-cta {
    display: block;
    width: 200px;
    padding: 12px 24px;
    font-size: 15px;
    margin: 6px auto;
    border-radius: 6px;
  }
}

@media only screen and (min-width: 240px) {
.navbar.past-main {
  transition: all 0.6s ease;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.95);
}

.navbar.past-main {
	font-size: 14px;
	padding-top: 5px;
	height: 60px;
	-webkit-box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.3);
	-moz-box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.3);
	box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.3);
	-webkit-transition: height 0.6s;
	transition: height 0.6s;
}

.navbar-default.past-main .navbar-brand {
	padding: 8px 0;
}

.navbar-default.past-main .navbar-toggle .icon-bar {
	background-color: #FFFFFF;
}

.navbar-default.past-main .navbar-nav > li > a {
  color: var(--white);
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.navbar-default.past-main .navbar-nav > li > a:hover {
  color: var(--secondary-light);
}

.navbar-default.past-main .navbar-nav > .active > a {
  background: transparent;
  color: #22007c;
}

.navbar-default.past-main .navbar-nav > .active > a:hover {
    background: transparent;
    color: #22007c;
}

.navbar-default.past-main .navbar-nav > .active > a:focus {
	background: transparent;
  color: #22007c;
}
}

#main {
  height: 100%;
}

/* ----- Hero Section ----- */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero {
    position: relative;
    background: #000;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-light {
	background: var(--primary-light);
	color: var(--primary-dark);
	border: none;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	outline: none;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.btn-light:hover, .btn-light:focus {
	background: var(--secondary-light);
	color: var(--primary-dark);
	text-decoration: none;
	outline: none;
}

.btn-dark {
	background: var(--primary-dark);
	color: var(--primary-light);
	border: none;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	outline: none;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.btn-dark:hover, .btn-dark:focus {
	background: var(--secondary-dark);
	color: var(--primary-light);
	text-decoration: none;
	outline: none;
}

.navbar .btn-light {
	background: var(--primary-light);
	color: var(--primary-dark);
	border: none;
	padding: 8px 20px;
	font-size: 12px;
	height: auto;
	line-height: 1.2;
	margin: 0;
	border-radius: 4px;
	font-weight: 600;
	outline: none;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.navbar .btn-light:hover, .navbar .btn-light:focus {
	background: var(--secondary-light);
	color: var(--primary-dark);
	text-decoration: none;
	outline: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ----- Services Section ----- */
.services-section {
	/* background set inline */
}

.services-content {
	padding-top: 100px;
	padding-bottom: 75px;
}

.services-content h1 {
	font-size: 24px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.4;
	margin-bottom: 10px;
}

.services-content p {
	font-size: 14px;
	color: #CCCCCC;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.4;
	margin-top: 0px;
}

.services {
	overflow: hidden;
	padding-top: 50px;
	padding-bottom: 50px;
}

.services .services-icon {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid;
	border-color: transparent;
	background: var(--primary-light);
	margin: 0 auto;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.services .services-description {
	margin-bottom: 50px;
}

.services .services-description h1 {
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.4;
	margin-top: 20px;
	margin-bottom: 20px;
}

.services .services-description p {
	font-size: 14px;
	color: #CCCCCC;
	letter-spacing: 1px;
	line-height: 1.5;
	margin-top: 0;
}

.services .services-description h3 {
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.4;
	margin-top: 0;
	margin-bottom: 15px;
}

.btn-link {
	color: var(--primary-light);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.btn-link:hover {
	color: var(--secondary-light);
	text-decoration: none;
}

.btn-link i {
	font-size: 12px;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.btn-link:hover i {
	transform: translateX(3px);
}

/* ----- Features Split ----- */
.flex-features {
	background: #FFFFFF;
	padding-top: 0;
	padding-bottom: 50px;
}

.flex-split {
	padding-top: 50px;
	padding-bottom: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.flex-split .f-left {
	flex: 1 0 50%;
	padding: 10px;
}

.flex-split .f-left img {
	margin-top: 30px;
	margin: 0 auto;
}

.flex-split .f-right {
	flex: 1 0 50%;
	padding: 30px 20px 20px 20px;
}

.flex-split .f-right h2 {
	font-size: 28px;
	color: #212529;
	font-weight: 600;
	line-height: 1.6;
}

.flex-split .f-right p {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	letter-spacing: 1px;
	margin: 20px 0 20px 0;
}

.flex-split .f-right ul {
	margin-bottom: 20px;
}

.flex-split .f-right ul i {
	margin-right: 10px;
}

.flex-split .f-right li {
	font-size: 14px;
	color: #666666;
	line-height: 2;
}



/* ----- Contact Form ----- */
.contact-form {
	background: var(--primary-light);
	border-radius: 8px;
	padding: 30px;
}

.contact-form .form-group {
	margin-bottom: 20px;
}

.contact-form label {
	color: var(--primary-dark);
	font-size: 14px;
	margin-bottom: 6px;
	display: block;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #333;
	border-radius: 3px;
	background: var(--secondary-light);
	font-size: 16px;
	outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--black);
}

.contact-form textarea {
	height: 112px;
	resize: vertical;
}

.contact-form .btn-light {
	background: var(--primary-dark);
	color: var(--primary-light);
}

.contact-form .btn-light:hover,
.contact-form .btn-light:focus {
	background: var(--secondary-dark);
	color: var(--primary-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--secondary-dark);
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
	color: var(--secondary-dark);
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
	color: var(--secondary-dark);
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
	color: var(--secondary-dark);
}

.right-content h2 {
	color: var(--white);
	font-size: 48px;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 24px;
}

.right-content p {
	color: #ccc;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 40px;
}

.right-content ul li {
	color: #ccc;
	margin-bottom: 12px;
}

.right-content ul li i {
	color: var(--white);
	margin-right: 12px;
}

/* ----- Contact Content ----- */
.flex-split .f-right .contact-content h2 {
	color: var(--primary-light) !important;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 24px;
}

.flex-split .f-right .contact-content p {
	color: var(--primary-light) !important;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 40px;
}

.flex-split .f-right .contact-content ul li {
	color: var(--primary-light) !important;
	margin-bottom: 12px;
}

.flex-split .f-right .contact-content ul li i {
	color: var(--primary-light) !important;
	margin-right: 12px;
}

/* ----- Privacy Policy Content ----- */
.contact-content h1:not(.flex-split .f-right .contact-content h1) {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 30px;
}

.contact-content h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
	margin-top: 20px;
}

.contact-content p:not(.flex-split .f-right .contact-content p) {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}

/* ----- Feature Big ----- */
.feature_huge {
	padding-top: 100px;
	padding-bottom: 100px;
	background: var(--primary-light);
}

.feature_huge img {
	margin: 0 auto;
}

.feature_huge .feature_list {
	margin: 0 auto;
	margin-top: 30px;
}

.feature_huge .feature_list h1 {
  font-size: 18px;
  font-weight: 600;
  padding: 0.5em;
  color: #212529;
}

.feature_huge .feature_list p {
  font-size: 12px;
  font-weight: 400;
  padding: 0.5em;
	color: #666666;
	letter-spacing: 1px;
	line-height: 1.3;
	margin-bottom: 20px;
}

/* ----- Testimonials ----- */
.testimonial-section {
   background: #000000;
	 padding-top: 50px;
}

.testimonials {
  margin-top: 4em;
  width: 100%;
  margin-bottom: 4em;
}

.testimonial-text p {
  font-size: 14px;
  padding: 20px 10px 20px 10px;
	letter-spacing: 1px;
	line-height: 1.5;
  color: #FFFFFF;
}

/* ----- Counter Section ----- */
.counter-section {
 width: 100%;
 padding-top: 100px;
 padding-bottom: 50px;
 background: #FFFFFF;
}

.counter-section h3  {
	font-size: 28px;
	font-weight: 400;
	color: #212529;
}

.counter-icon {
  padding: 15px;
}

.counter-icon i {
  font-size: 42px;
  color: var(--primary-light);
}

.counter-icon2 {
	padding: 15px;
}
  
.counter-icon2 i {
	font-size: 72px;
	color: var(--primary-dark);
}

.counter-text {
	margin-top: 10px;
  margin-bottom: 20px;
}

.counter-text h4 {
  font-size: 16px;
  font-weight: 400;
  padding: 0.5em;
  color: #212529;
}

/* ----- Footer ----- */
.footer {
  background-color: #000000;
  width: 100%;
  height: 100%;
	overflow: hidden;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer img {
	margin-bottom: 20px;
}

.footer-menu ul {
	list-style-type: none;
}

.footer-menu li {
	display: inline;
	line-height: 2;
	font-size: 14px;
	padding-right: 15px;
	text-transform: uppercase;
}

.footer-menu li a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer-text p {
	font-size: 14px;
	color: #FFFFFF;
	line-height: 2;
	letter-spacing: 1px;
	margin-top: 10px;
}

.footer-logo {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-bottom: 20px;
}

.footer-logo img {
	vertical-align: middle !important;
	margin-bottom: 0 !important;
	height: 40px;
	width: auto;
	max-width: 150px;
	margin-right: 12px;
}

.footer-logo span {
	vertical-align: middle !important;
	line-height: 1 !important;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
}

/* Logo Styling */
.navbar-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.navbar-brand img {
	height: 40px;
	width: auto;
	max-width: 150px;
	margin-right: 12px;
}

.navbar-brand span {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
}

/* Section Background */
.bg-primary-dark {
	background: var(--primary-dark);
}

/* Privacy Policy Specific */
.privacy-content {
	color: #ffffff;
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
	padding: 60px 20px;
}

.privacy-content p {
	margin-bottom: 30px;
}

.privacy-content h3 {
	margin-top: 30px;
}

/* ----- Media Queries ----- */
.nav-button {
  padding-left: 6px !important;
}

@media only screen and (min-width: 992px) {
  .navbar-close {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .nav-button .btn-light,
  .nav-button .btn-nav-cta {
    margin: 0;
    display: inline-block;
    width: auto;
  }
}

@media only screen and (min-width: 992px) {
	.hero-content {
		width: 100%;
	}

	.hero-content h1 {
		font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
		margin-top: 0;
		letter-spacing: -2px;
    margin-bottom: 25px;
	}

	.hero-content p {
		font-size: 14px;
	}

	.btn-action {
		font-weight: 500;
	  height: 42px;
	  padding: 0 24px;
	}

	.btn-fill {
		height: 38px;
	}

	.services-content h1 {
		font-size: 28px;
		line-height: 1.4;
	}

	.services-content p {
		font-size: 14px;
	}

	.services .services-description {
		margin-bottom: 75px;
	}

	.flex-features {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.flex-split {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.flex-split .f-right {
		padding: 50px 20px 20px 20px;
	}

	.counter-section h3  {
		font-size: 34px;
	}

	.counter-text h4 {
	  font-size: 18px;
	}

	.feature_huge .feature_list h1 {
	  font-size: 18px;
	  font-weight: 600;
	  padding: 0.5em;
	  color: #212529;
	}

	.feature_huge .feature_list p {
	  font-size: 14px;
	}
}

@media only screen and (min-width: 769px) {
	.flex-split {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	
	.flex-split .f-right h2 {
		font-size: 34px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.flex-split .f-left img {
		margin-top: 30px;
	}
	.flex-split .f-right {
		padding: 10px 20px 20px 20px;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1180px) {
	.flex-split .f-left img {
		margin-top: 50px;
	}
}

@media only screen and (min-width: 1024px) {
	.flex-split .f-left {
		padding: 30px 10px 10px 10px;
	}

	.flex-split .f-right {
		padding: 40px 50px 50px 50px;
	}
}

/* ----- DataTables Pagination Styling ----- */
.dt-paging .dt-paging-button {
    background-color: #2a2a2a !important;
    color: #ffffff !important;
    border: 1px solid #444444 !important;
    padding: 8px 12px !important;
    margin: 0 2px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.dt-paging .dt-paging-button:hover:not(.disabled) {
    background-color: #F2F2F2 !important;
    color: #111111 !important;
    border-color: #F2F2F2 !important;
}

.dt-paging .dt-paging-button.current {
    background-color: #F2F2F2 !important;
    color: #111111 !important;
    border-color: #F2F2F2 !important;
    font-weight: 600 !important;
}

.dt-paging .dt-paging-button.disabled {
    background-color: #1a1a1a !important;
    color: #666666 !important;
    border-color: #333333 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.dt-paging .dt-paging-button.disabled:hover {
    background-color: #1a1a1a !important;
    color: #666666 !important;
    border-color: #333333 !important;
}