:root {
	--font-primary: "Quicksand", Arial, sans-serif;
	--font-secondary: "Montserrat", sans-serif;
	--font-tertiary: "Playfair Display", Georgia, serif;


	--input-border: #3a456a;
	--btn-bg-color: #f1f2fc;
	--btn-hover-bg: #d5d9f6;
	--btn-color: #1e2641;
}

/* General styling for the select dropdown */
#theme-selector {
    display: flex;                   /* Ensure the dropdown fills the container width */
    width: 100%;                      /* Make the select element full width */
    padding: 8px 16px;                /* Padding for better text visibility and click area */
    margin: 10px 10px  0;                   /* Add some margin around the select to separate it from other elements */
    font-size: 16px;                  /* Increase the font size for better readability */
    line-height: 1.5;                 /* Line height for better text alignment */
    border: 2px solid #ccc;           /* Subtle border color */
    border-radius: 8px;               /* Rounded corners */
    background-color: #fff;           /* White background for the dropdown */
    color: #333;                      /* Dark color for text for better readability */
    appearance: none;                 /* Remove default system styling */
    cursor: pointer;                  /* Cursor pointer to indicate it's selectable */
}

/* Style the dropdown arrow using a background image (you can use a custom arrow image) */
#theme-selector {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5H7z%22%20fill%3D%22%23333%22%3E%3C/path%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;  /* Position the arrow to the right */
    background-size: 24px 24px;             /* Size of the arrow */
}

/* Optional: style for hover state */
#theme-selector:hover {
    border-color: #888;                     /* Darker border on hover for visual feedback */
}

/* Focus styles to improve accessibility */
#theme-selector:focus {
    border-color: #0056b3;                  /* Blue border on focus for visibility */
    outline: none;                          /* Remove default focus outline */
}

/* Disable state styling, if needed */
#theme-selector:disabled {
    background-color: #eee;                 /* Gray out when disabled */
    color: #666;                            /* Lighten text color when disabled */
}


@font-face {
	font-family: "icomoon";
	src: url("../fonts/icomoon/icomoon.eot?srf3rx");
	src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"),
		url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"),
		url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"),
		url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
}

* {
	box-sizing: border-box;
}

.dark-mode {
	--primary-color: #e07a5f;
	--secondary-color: #3d405b;
	--tertiary-color: #81b29a;
	--dark-color: #3d405b;
	--light-color: #f4f1de;
	--background-dark: #81b29a;
	--background-light: #f2cc8f;
	--error-color: #e63946;
	--success-color: #2a9d8f;
	--warning-color: #e9c46a;
	--info-color: #2a9d8f;

	
	--text-color: var(--primary-color);
	--Title-color: var(--secondary-color);
	--color: var(--background-dark);
	--color-smooth: var(--background-dark);

	background-color: var(--background-dark);
	color: var(--text-color);
}

/* =======================================================
*
* 	Template Style 
*	Edit this section
*
* ======================================================= */
body {
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.8;
	color: black;
}

@media screen and (max-width: 992px) {
	body {
		font-size: 16px;
	}

	h2,
	h4 {
		text-align: center;
	}
}

a {
	color: var(--primary-color);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus {
	color: var(--primary-color);
	outline: none;
	text-decoration: none !important;
}

highlightedText {
	color: var(--primary-color); 
}

p {
	color: var(--text-color);
	margin-bottom: 1.5em;
	font-family: var(--font-secondary);
}

x {
	margin-bottom: 1.5em;
	background-color: darkkhaki;
	backface-visibility: visible;
}

h1,
h5,
h6 {
	font-family: var(--font-tertiary);
	font-weight: 400;
	margin: 0 0 30px 0;
	color: var(--Title-color);
}

h2 {
	font-family: var(--font-secondary);
	font-weight: 200;
	margin: 0 0 20px 0;
}

h3 {
	font-family: var(--font-tertiary);
	font-weight: 500;
	margin: 0 0 30px 0;
}

h4 {
	font-family: var(--font-secondary);
	font-weight: 300;
	font-size: 15px;
	margin: 0 0 30px 0;
}

figure {
	margin-bottom: 2.5em;
	float: left;
	width: 100%;
}

figure figcaption {
	font-size: 16px;
	width: 80%;
	margin: 20px auto 0px auto;
	color: #b3b3b3;
	font-style: italic;
	font-family: var(--font-primary);
}

@media screen and (max-width: 480px) {
	figure figcaption {
		width: 100%;
	}
}

::-webkit-selection {
	color: var(--light-color);
	background: var(--primary-color);
}

::-moz-selection {
	color: var(--light-color);
	background: var(--primary-color);
}

::selection {
	color: var(--light-color);
	background: var(--primary-color);
}

#colorlib-page {
	width: 100%;
	overflow: hidden;
	position: relative;
}

#colorlib-aside {
	padding-top: 3em;
	padding-bottom: 1px;
	float: left;
	width: 300px;
	position: fixed;
	z-index: 1001;
	background-color: var(--background-light);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

@media screen and (max-width: 768px) {
	#colorlib-aside {
		width: 300px;
		-moz-transform: translateX(-300px);
		-webkit-transform: translateX(-300px);
		-ms-transform: translateX(-300px);
		-o-transform: translateX(-300px);
		transform: translateX(-300px);
		padding-top: 4em;
		background-color: var(--background-light);
		height: auto;
	}

	.resume-content img {
		display: none;
	}
}

.resume-content img {
	margin: 0 10px;
	width: 100%;
	max-width: 150px;
	max-height: 100px;
	height: auto;
	justify-content: center;
}

#colorlib-aside .author-img {
	width: 150px;
	height: 150px;
	margin: 0 auto;
	margin-bottom: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	/* border: 3px solid white; */
}

#colorlib-aside .author-img img {
	height: 100%;
	object-fit: contain;
	padding: 0px;
}

#colorlib-aside h1 {
	font-family: "Raleway", sans-serif;
}

#colorlib-aside .position {
	display: block;
	margin-bottom: 2em;
	font-size: 12px;
	text-transform: uppercase;
}

#colorlib-aside #colorlib-logo {
	text-align: right;
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 0.5em;
	display: block;
	width: 100%;
}

#colorlib-aside #colorlib-logo a {
	display: block;
	text-align: center;
	color: var(--background-dark);
	padding-right: 0.3em;
}

#colorlib-aside #colorlib-main-menu {
	display: flex;
    align-items: center;
    flex-direction: column;
	width: 100%;
}

#colorlib-aside #colorlib-main-menu .collapse {
	display: block !important;
}

#colorlib-aside #colorlib-main-menu ul {
	text-align: center;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 768px) {
	#colorlib-aside #colorlib-main-menu ul {
		margin: 0 0 2em 0;
	}
}

#colorlib-aside #colorlib-main-menu ul li {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#colorlib-aside #colorlib-main-menu ul li a {
	color: rgba(0, 0, 0, 0.7);
	text-decoration: none;
	position: relative;
	padding: 10px 0;
	font-family: var(--font-secondary);
	;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

#colorlib-aside #colorlib-main-menu ul li a:after {
	content: "";
	position: absolute;
	height: 1px;
	bottom: 7px;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	visibility: hidden;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#colorlib-aside #colorlib-main-menu ul li a:hover {
	text-decoration: none;
	color: black;
}

#colorlib-aside #colorlib-main-menu ul li a:hover:after {
	visibility: visible;
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}

#colorlib-aside #colorlib-main-menu ul li.active a {
	font-size: 15px;
	font-weight: 600;
}

#colorlib-aside #colorlib-main-menu ul li.active a:after {
	visibility: visible;
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}

#colorlib-aside .colorlib-footer {
	font-size: 20px;
	text-align: center;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5);
	padding: 0 20px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	#colorlib-aside .colorlib-footer {
		position: fixed;
		height: auto;
	}
}

#colorlib-aside .colorlib-footer span {
	display: block;
}

#colorlib-aside .colorlib-footer ul {
	padding: 0 20px;
	margin: 0 0 10px 0;
}

#colorlib-aside .colorlib-footer ul li {
	padding: 0 20px;
	margin: 0 0 10px 0;
	display: inline;
	list-style: none;
}

#colorlib-aside .colorlib-footer h3 {
	font-family: inherit;
	padding: 4px;
}

#colorlib-aside .colorlib-footer h3 a {
	color: #ff722c;
	font-size: 18px;
}

#rcorners2 {
	border-radius: 15px;
	background: black;
	padding: 20px;
	width: 50%;
	height: 40px;
}

#colorlib-aside .colorlib-footer ul li a {
	color: rgba(255, 255, 255, 0.3);
	padding: 4px;
}

#colorlib-aside .colorlib-footer ul li a:hover,
#colorlib-aside .colorlib-footer ul li a:active,
#colorlib-aside .colorlib-footer ul li a:focus {
	text-decoration: none;
	outline: none;
	color: black;
}

.container-wrap {
	max-width: 1170px;
	margin: 0 auto;
}

#colorlib-main {
	width: calc(100% - 300px);
	float: right;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

@media screen and (max-width: 768px) {
	#colorlib-main {
		width: 100%;
		padding: 0 1em;
	}
}

#colorlib-hero {
	min-height: 500px;
	background: var(--light-color) url(../images/loader.gif) no-repeat center center;
	width: 100%;
	float: left;
	margin-bottom: 10em;
	clear: both;
}

#colorlib-hero .flexslider {
	border: none;
	z-index: 1;
	margin-bottom: 0;
}

#colorlib-hero .flexslider .slides {
	position: relative;
	overflow: visible;
}

#colorlib-hero .flexslider .slides li {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	min-height: 400px;
	position: relative;
}

#colorlib-hero .flexslider .flex-control-nav {
	bottom: 20px;
	z-index: 1000;
	left: 20px;
	float: left;
	width: auto;
}

@media screen and (max-width: 768px) {
	#colorlib-hero .flexslider .flex-control-nav {
		right: 20px;
		top: 100px;
	}
}

#colorlib-hero .flexslider .flex-control-nav li {
	display: block;
	margin-bottom: 10px;
}

#colorlib-hero .flexslider .flex-control-nav li a {
	background: rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 12px;
	height: 12px;
	cursor: pointer;
}

#colorlib-hero .flexslider .flex-control-nav li a.flex-active {
	cursor: pointer;
	background: transparent;
	border: 2px solid var(--primary-color);
}

#colorlib-hero .flexslider .flex-direction-nav {
	display: none;
}

#colorlib-hero .flexslider .slider-text {
	display: table;
	opacity: 0;
	min-height: 500px;
	z-index: 9;
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner {
	display: table-cell;
	vertical-align: middle;
	min-height: 700px;
	padding: 2.5em;
	position: relative;
}

@media screen and (max-width: 768px) {
	#colorlib-hero .flexslider .slider-text>.slider-text-inner {
		text-align: center;
	}
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner h1,
#colorlib-hero .flexslider .slider-text>.slider-text-inner h2 {
	margin: 0;
	padding: 0;
	color: black;
	font-family: var(--font-tertiary);
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner h1 {
	margin-bottom: 20px;
	font-size: 60px;
	line-height: 1.3;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	#colorlib-hero .flexslider .slider-text>.slider-text-inner h1 {
		font-size: 28px;
	}
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner h2 {
	font-size: 10px;
	line-height: 1.5;
	margin-bottom: 30px;
	font-weight: 300;
	font-family: var(--font-primary);
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner h2 a {
	color: rgba(44, 152, 240, 0.8);
	border-bottom: 1px solid rgba(44, 152, 240, 0.7);
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner .heading-section {
	font-size: 50px;
}

@media screen and (max-width: 768px) {
	#colorlib-hero .flexslider .slider-text>.slider-text-inner .heading-section {
		font-size: 30px;
	}
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner s .colorlib-lead {
	font-size: 20px;
	color: var(--light-color);
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner p {
	margin-bottom: 0;
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner .btn {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 15px !important;
	border: none;
	font-weight: 400;
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner .btn.btn-learn {
	border: 1px solid var(--background-dark);
	background: transparent !important;
}

#colorlib-hero .flexslider .slider-text>.slider-text-inner .btn.btn-learn:hover {
	background: transparent !important;
	border: 1px solid var(--background-dark) !important;
}

@media screen and (max-width: 768px) {
	#colorlib-hero .flexslider .slider-text>.slider-text-inner .btn {
		width: 100%;
	}
}

body.offcanvas {
	overflow-x: hidden;
}

body.offcanvas #colorlib-aside {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	width: 372px;
	background-color: var(--background-light);
	z-index: 999;
	position: fixed;
}

body.offcanvas #colorlib-main,
body.offcanvas .colorlib-nav-toggle {
	top: 0;
	-moz-transform: translateX(300px);
	-webkit-transform: translateX(300px);
	-ms-transform: translateX(300px);
	-o-transform: translateX(300px);
	transform: translateX(300px);
}

.colorlib-narrow-content {
	padding: 0 4.5em;
}

@media screen and (max-width: 878px) {
	.colorlib-narrow-content {
		width: 100%;
		padding: 0 1em;
	}
}

.no-gutters {
	margin: 0;
	padding: 0;
}

.colorlib-experience,
.colorlib-languages,
.colorlib-profile,
.colorlib-certifications,
.colorlib-education,
.colorlib-blogs,
.colorlib-work,
.colorlib-about,
.colorlib-installation,
.colorlib-services,
.colorlib-footer,
.colorlib-contact {
	padding-top: 3em;
	padding-bottom: 0em;
	clear: both;
	width: 100%;
	display: block;
}


@media screen and (max-width: 768px) {

	.colorlib-experience,
	.colorlib-languages,
	.colorlib-profile,
	.colorlib-certifications,
	.colorlib-education,
	.colorlib-work,
	.colorlib-about,
	.colorlib-installation,
	.colorlib-services,
	.colorlib-contact {
		padding-top: 2em;
		padding-bottom: 0em;
	}

	.colorlib-blogs {
		display: none;
	}

	.profile-cards {
		display: flex;
		flex-direction: row;
		justify-content: center;

	}
}

#colorlib-footer2 {
	background: black;
	width: 100%;
	padding-bottom: 3em;
	padding-top: 2em;
	padding-right: 2em;
}

#colorlib-footer2 .h2 {
	color: red;
	text-align: center;
}

.author-img {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

.colorlib-heading {
	font-size: 18px;
	margin-bottom: 2em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 1.8;
	position: relative;
}

.colorlib-heading span {
	display: block;
}

@media screen and (max-width: 768px) {
	.colorlib-heading {
		margin-bottom: 2em;
	}
}

.heading-meta {
	margin-bottom: 15px;
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	color: #999999;
	font-weight: 500;
	letter-spacing: 5px;
}

.about-img {
	width: 100%;
	height: 600px;
	margin-bottom: 10px;
	margin-left: 10px;
}

.about-desc h3 {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 500;
}

.about-desc h1 {
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 38px;
	font-weight: 600;
	font-family: "Montserrat", Georgia, serif;
}
.about-desc p {
	margin-left: 20px;
	font-size: 16px;
	font-weight: 300;
}

.hire {
	padding: 2em;
	background: var(--background-light);
	color: var(--background-dark);
	border-radius: 4px;
}

.hire h2 {
	line-height: 1.5;
}

.hire .btn-hire {
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid var(--background-dark);
	padding: 2px 10px;
}

.fancy-collapse-panel .panel-default>.panel-heading {
	padding: 0;
}

<!-----projectcss------------>#certifications {
	padding: 50px 15px;
	border-bottom: 1px solid #dcd9d9;
	text-align: center;
}

#certifications h2 {
	color: #374054;
	margin-bottom: 50px;
}

.project {
	position: relative;
	max-width: 900px;
	margin: 0 auto 30px auto;
	overflow: hidden;
	background: var(--light-color);
	border-radius: 4px;
}

.project-image {
	float: left;
}

.certifications-card {
	height: auto;

}

.project-info {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 300px;
	padding: 15px;
}

.project-info h3 {
	font-size: 1.5em;
	font-weight: 300;
	color: #374054;
	margin: 0 0 15px 0;
}

.project-info p {
	color: #74808a;
	margin: 0 0 15px 0;
	font-size: 0.9em;
}

.no-image .project-info {
	position: relative;
	margin: 0;
	padding: 30px 15px;
	transform: none;
}

#more-certifications {
	display: none;
}

.panel-heading a {
	padding: 20px 25px;
	display: block;
	width: 100%;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: var(--font-primary);
	background-color: var(--primary-color);
	color: var(--light-color);
	position: relative;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-ms-box-shadow: none !important;
	-o-box-shadow: none !important;
	box-shadow: none !important;
}

.panel {
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-ms-box-shadow: none !important;
	-o-box-shadow: none !important;
	box-shadow: none !important;
	border: none;
}

.panel-heading a:after {
	font-family: "icomoon";
	content: "\e115";
	position: absolute;
	right: 20px;
	font-size: 14px;
	font-weight: 400;
	top: 50%;
	line-height: 1;
	margin-top: -7px;
}

.panel-heading a.collapsed:after {
	content: "\e114";
}

.panel-heading a.collapsed {
	background: #f2f3f7;
	border: 1px solid #e6e6e6 !important;
	color: var(--dark-color);
}

.panel-body {
	padding: 1.5em;
	margin-top: 5px;
	border: 1px solid #e6e6e6 !important;
}

.timeline-centered {
	position: relative;
	margin-bottom: 5px;
}

.timeline-centered:before,
.timeline-centered:after {
	content: " ";
	display: table;
}

.timeline-centered:after {
	clear: both;
}

.timeline-centered:before,
.timeline-centered:after {
	content: " ";
	display: table;
}

.timeline-centered:after {
	clear: both;
}

.timeline-centered:before {
	content: "";
	position: absolute;
	display: block;
	width: 4px;
	background: var(--background-light);
	top: 20px;
	bottom: 20px;
	margin-left: 9px;
}

.timeline-centered .timeline-entry {
	position: relative;
	margin-top: 5px;
	margin-left: 10px;
	margin-bottom: 10px;
	clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner {
	position: relative;
	margin-left: -20px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
	display: block;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	-moz-box-shadow: 0 0 0 5px #f2f3f7;
	-webkit-box-shadow: 0 0 0 5px #f2f3f7;
	box-shadow: 0 0 0 5px #f2f3f7;
	line-height: 40px;
	float: left;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.color-2 {
	background: var(--secondary-color);
	;
	color: white;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.color-3 {
	background: var(--background-light);
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.color-4 {
	background: #a84cb8;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.color-5 {
	background: #2fa499;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.color-none {
	background: var(--light-color);
	width: 20px;
	height: 20px;
	margin-left: 10px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
	position: relative;
	background: var(--background-light);
	color: var(--background-dark);
	padding: 1.5em;
	margin-left: 60px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	border-radius: 4px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 9px 9px 0;
	border-color: transparent #f2f3f7 transparent transparent;
	left: 0;
	top: 10px;
	margin-left: -9px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p+p {
	margin-top: 0px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 {
	
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 500;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-sublabel {
	font-weight: 600;
	margin: 0 0px 5px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-text {
	margin-bottom: 0px;
	font-size: 13px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label div {
	margin-top: 5px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 span {
	-webkit-opacity: 0.9;
	-moz-opacity: 0.9;
	opacity: 0.9;
	-ms-filter: alpha(opacity=40);
	filter: alpha(opacity=40);
	font-size: 16px;
}

.services {
	margin-bottom: 30px;
	padding: 1.5em;
	-webkit-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
	-moz-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
	-ms-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
	-o-box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
	box-shadow: 0px 0px 56px -8px rgba(0, 0, 0, 0.17);
	border-bottom: 2px solid var(--primary-color);
}

.services .icon2 {
	display: block;
	margin-bottom: 20px;
}

.services .icon2 i {
	font-size: 30px;
	color: var(--primary-color);
}

.services h3 {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 500;
}

.services.color-2 {
	border-bottom: 2px solid #ec5453;
}

.services.color-2 .icon2 i {
	color: #ec5453;
}

.services.color-3 {
	border-bottom: 2px solid var(--background-light);
}

.services.color-3 .icon2 i {
	color: var(--background-light);
}

.services.color-4 {
	border-bottom: 2px solid #a84cb8;
}

.services.color-4 .icon2 i {
	color: #a84cb8;
}

.services.color-5 {
	border-bottom: 2px solid #2fa499;
}

.services.color-5 .icon2 i {
	color: #2fa499;
}

.services.color-6 {
	border-bottom: 2px solid #4054b2;
}

.services.color-6 .icon2 i {
	color: #4054b2;
}

.services {
	margin-bottom: 80px;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 768px) {
	.services {
		margin-bottom: 4em;
	}
}

.services .icon {
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	width: 100px;
	height: 50px;
	display: table;
	margin: 0 auto;
	background: var(--primary-color);
}

.services .icon:before,
.services .icon:after {
	position: absolute;
	left: 0;
	right: 0;
	content: "";
}

.services .icon:before {
	top: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 50px 30px 50px;
	border-color: transparent transparent var(--primary-color) transparent;
}

.services .icon:after {
	bottom: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 50px 0 50px;
	border-color: var(--primary-color) transparent transparent transparent;
}

.services .icon i {
	font-size: 30px;
	color: var(--light-color);
	z-index: 1;
	display: table-cell;
	vertical-align: middle;
}

.services .desc {
	margin-top: 60px;
}

.services .desc h3 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.services.color-2 .icon {
	background: #ec5453;
}

.services.color-2 .icon:before {
	border-color: transparent transparent #ec5453 transparent;
}

.services.color-2 .icon:after {
	border-color: #ec5453 transparent transparent transparent;
}

.services.color-3 .icon {
	background: var(--background-light);
}

.services.color-3 .icon:before {
	border-color: transparent transparent var(--background-light) transparent;
}

.services.color-3 .icon:after {
	border-color: var(--background-light) transparent transparent transparent;
}

.services.color-4 .icon {
	background: #a84cb8;
}

.services.color-4 .icon:before {
	border-color: transparent transparent #a84cb8 transparent;
}

.services.color-4 .icon:after {
	border-color: #a84cb8 transparent transparent transparent;
}

.services.color-5 .icon {
	background: #2fa499;
}

.services.color-5 .icon:before {
	border-color: transparent transparent #2fa499 transparent;
}

.services.color-5 .icon:after {
	border-color: #2fa499 transparent transparent transparent;
}

.services.color-6 .icon {
	background: #4054b2;
}

.services.color-6 .icon:before {
	border-color: transparent transparent #4054b2 transparent;
}

.services.color-6 .icon:after {
	border-color: #4054b2 transparent transparent transparent;
}

.progress-wrap h3 {
	font-size: 16px;
	font-family: var(--font-primary);
	margin-bottom: 10px;
	color: var(--primary-color)

}

.progress {
	height: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: #f2f3f7;
	overflow: visible;
}

.progress-bar {
	background: var(--primary-color);
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 600;
	text-align: right;
	position: relative;
	overflow: visible;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
}

.progress-bar:after {
	position: absolute;
	top: -2px;
	right: 0;
	width: 10px;
	height: 10px;
	content: "";
	background: var(--primary-color);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.progress-bar span {
	position: absolute;
	top: -22px;
	right: -32px;
}

.progress-bar.color-1 {
	background: var(--primary-color);
}

.progress-bar.color-1:after {
	background: var(--primary-color);
}

.progress-bar.color-1 span {
	color: var(--primary-color);
}

.progress-bar.color-2 {
	background: #ec5453;
}

.progress-bar.color-2:after {
	background: #ec5453;
}

.progress-bar.color-2 span {
	color: #ec5453;
	padding-top: 2px;
}

.progress-bar.color-3 {
	background: var(--background-light);
}

.progress-bar.color-3:after {
	background: var(--background-light);
}

.progress-bar.color-3 span {
	color: var(--background-light);
}

.progress-bar.color-4 {
	background: #a84cb8;
}

.progress-bar.color-4:after {
	background: #a84cb8;
}

.progress-bar.color-4 span {
	color: #a84cb8;
}

.progress-bar.color-5 {
	background: #2fa499;
}

.progress-bar.color-5:after {
	background: #2fa499;
}

.progress-bar.color-5 span {
	color: #2fa499;
}

.progress-bar.color-6 {
	background: #4054b2;
}

.progress-bar.color-6:after {
	background: #4054b2;
}

.progress-bar.color-6 span {
	color: #4054b2;
}

.progress-bar.color-7 {
	background: #ec5453;
}

.progress-bar.color-7:after {
	background: #ec5453;
}

.progress-bar.color-7 span {
	color: #ec5453;
}

.progress-bar.color-8 {
	background: var(--background-light);
}

.progress-bar.color-8:after {
	background: var(--background-light);
}

.progress-bar.color-8 span {
	color: var(--background-light);
}

.progress-bar.color-9 {
	background: #a84cb8;
}

.progress-bar.color-9:after {
	background: #a84cb8;
}

.progress-bar.color-9 span {
	color: #a84cb8;
}

.progress-wrap h3 {
	padding-bottom: 2px;
}

.colorlib-feature {
	text-align: left;
	width: 100%;
	float: left;
	margin-bottom: 20px;
	position: relative;
}

.colorlib-feature .colorlib-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	display: table;
	text-align: center;
	background: #f2f3f7;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	border-radius: 2px;
}

.colorlib-feature .colorlib-icon i {
	display: table-cell;
	vertical-align: middle;
	color: var(--primary-color);
	font-size: 20px;
	height: 50px;
}

@media screen and (max-width: 1200px) {
	.colorlib-feature .colorlib-icon i {
		font-size: 20px;
	}
}

.colorlib-feature .colorlib-text {
	padding-left: 60px;
	width: 100%;
}

.colorlib-feature .colorlib-text h2,
.colorlib-feature .colorlib-text h3 {
	margin: 0;
	padding: 0;
}

.colorlib-feature .colorlib-text h3 {
	font-weight: 500;
	margin-bottom: 20px;
	color: rgba(0, 0, 0, 0.7);
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.colorlib-feature.colorlib-feature-sm .colorlib-text {
	margin-top: 10px;
}

.colorlib-feature.colorlib-feature-sm .colorlib-icon i {
	color: var(--primary-color);
	font-size: 20px;
}

@media screen and (max-width: 1200px) {
	.colorlib-feature.colorlib-feature-sm .colorlib-icon i {
		font-size: 28px;
	}
}

.blog-entry {
	width: 100%;
	float: left;
	background: var(--light-color);
	margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
	.blog-entry {
		margin-bottom: 3em;
	}
}

.blog-entry .blog-img {
	width: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
}

.blog-entry .blog-img img {
	position: relative;
	max-width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.blog-entry .desc h3 {
	font-size: 16px;
	margin-bottom: 25px;
	line-height: auto;
	font-weight: 500;
	letter-spacing: 0.5px;
	font-family: var(--font-primary);
}

.blog-entry .desc h3 a {
	text-decoration: none;
}

.blog-entry .desc span {
	display: block;
	margin-bottom: 20px;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.4) !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
}

.blog-entry .desc span small i {
	color: #999999;
}

.blog-entry .desc .lead {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.blog-entry:hover .blog-img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.work-menu span {
	margin-left: 10px;
}

.work-menu span:first-child {
	margin-left: 0;
}

.work-menu span a.active {
	color: var(--primary-color);
}

.project {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	height: 300px;
	width: 100%;
	display: block;
	margin-bottom: 30px;
}

.project .desc {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.project .desc .con {
	padding: 20px;
	display: block;
	position: relative;
	height: 300px;
}

.project .desc .con .icon {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
}

.project .desc .con .icon span {
	display: inline;
	padding-right: 5px;
}

.project .desc .con .icon span a {
	color: var(--dark-color);
	padding: 5px;
	background: rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

.project .desc .con .icon i {
	font-size: 16px;
	color: var(--dark-color);
}

.project .desc h3 {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translate3d(0, -15px, 0);
	transform: translate3d(0, -15px, 0);
	margin-bottom: 15px;
}

.project .desc h3 a {
	color: var(--light-color);
}

.project .desc span {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
}

.project .desc span a {
	color: var(--background-dark);
}

@media screen and (max-width: 768px) {
	.project .desc {
		opacity: 1;
		background: rgba(0, 0, 0, 0.4);
	}

	.project .desc h3 {
		font-style: 28px;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		color: var(--background-dark);
	}

	.project .desc span {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.project:hover .desc {
	opacity: 1;
}

.project:hover .desc h3 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.project:hover .desc span {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.btn-load-more {
	width: 100%;
}

#colorlib-counter {
	position: relative;
	clear: both;
	margin-bottom: 5em;
}

.colorlib-counters {
	padding: 3em 0;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	align-items: stretch;
}

.colorlib-counters .overlay {
	z-index: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.4);
}

.colorlib-counters .icon {
	width: 100px;
	height: 100px;
	display: table;
	margin: 0 auto;
	margin-bottom: 20px;
}

.colorlib-counters .icon i {
	display: table-cell;
	vertical-align: middle;
	width: 100px;
	height: 100px;
	font-size: 50px;
	color: var(--primary-color);
	background: var(--light-color);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.colorlib-counters .counter-wrap {
	border: 1px solid red !important;
}

.colorlib-counters .colorlib-counter {
	font-size: 40px;
	display: block;
	color: white;
	font-family: var(--font-primary);
	width: 100%;
	font-weight: 700;
	margin-bottom: 0.3em;
}

.colorlib-counters .colorlib-counter-label {
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 5px;
	margin-bottom: 2em;
	display: block;
}

.colorlib-social {
	padding: 0;
	margin: 0;
	text-align: center;
}

.colorlib-social li {
	padding: 0;
	margin: 0;
	list-style: none;
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.colorlib-social li a {
	font-size: 22px;
	padding: 10px;
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	border-radius: 7px;
}

@media screen and (max-width: 768px) {
	.colorlib-social li a {
		padding: 10px 8px;
	}
}

.colorlib-social li a:hover {
	color: var(--primary-color);
}

.colorlib-social li a:hover,
.colorlib-social li a:active,
.colorlib-social li a:focus {
	outline: none;
	text-decoration: none;
	color: var(--primary-color);
}

@media screen and (max-width: 768px) {
	.submenu a {
		padding: 0px;
		padding-left: 0px;
	}
}

.colorlib-bg-color {
	background: #fafafa;
	position: relative;
}

.btn {
	margin-right: 4px;
	margin-bottom: 4px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	padding: 8px 15px !important;
}

.btn.btn-sm {
	padding: 4px 15px !important;
}

.btn.btn-md {
	padding: 8px 20px !important;
}

.btn.btn-lg {
	padding: 18px 36px !important;
}

.btn:hover,
.btn:active,
.btn:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
}

.btn-primary {
	background: var(--primary-color);
	color: var(--light-color);
	border: 2px solid var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background: #44a4f2 !important;
	border-color: #44a4f2 !important;
}

.btn-primary.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
	background: var(--primary-color);
	color: var(--light-color);
}

.btn-success {
	background: var(--success-color);
	color: var(--light-color);
	border: 2px solid var(--success-color);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
	background: #4cae4c !important;
	border-color: #4cae4c !important;
}

.btn-success.btn-outline {
	background: transparent;
	color: var(--success-color);
	border: 2px solid var(--success-color);
}

.btn-success.btn-outline:hover,
.btn-success.btn-outline:focus,
.btn-success.btn-outline:active {
	background: var(--success-color);
	color: var(--light-color);
}

.btn-info {
	background: var(--info-color);
	color: var(--light-color);
	border: 2px solid var(--info-color);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
	background: #46b8da !important;
	border-color: #46b8da !important;
}

.btn-info.btn-outline {
	background: transparent;
	color: var(--info-color);
	border: 2px solid var(--info-color);
}

.btn-info.btn-outline:hover,
.btn-info.btn-outline:focus,
.btn-info.btn-outline:active {
	background: var(--info-color);
	color: var(--light-color);
}

.btn-warning {
	background: var(--warning-color);
	color: var(--light-color);
	border: 2px solid var(--warning-color);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
	background: #eea236 !important;
	border-color: #eea236 !important;
}

.btn-warning.btn-outline {
	background: transparent;
	color: var(--warning-color);
	border: 2px solid var(--warning-color);
}

.btn-warning.btn-outline:hover,
.btn-warning.btn-outline:focus,
.btn-warning.btn-outline:active {
	background: var(--warning-color);
	color: var(--light-color);
}

.btn-danger {
	background: var(--error-color);
	color: var(--light-color);
	border: 2px solid var(--error-color);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
	background: #d43f3a !important;
	border-color: #d43f3a !important;
}

.btn-danger.btn-outline {
	background: transparent;
	color: var(--error-color);
	border: 2px solid var(--error-color);
}

.btn-danger.btn-outline:hover,
.btn-danger.btn-outline:focus,
.btn-danger.btn-outline:active {
	background: var(--error-color);
	color: var(--light-color);
}

.btn-outline {
	background: none;
	border: 2px solid gray;
	font-size: 16px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	border: transparent;
	background: #f2f3f7;
	height: 54px;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
}

.form-control:active,
.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: transparent;
	background: #f0f0f0;
}

#message {
	height: 130px;
}

.colorlib-nav-toggle {
	cursor: pointer;
	text-decoration: none;
}

.colorlib-nav-toggle.active i::before,
.colorlib-nav-toggle.active i::after {
	background: var(--background-dark);
}

.colorlib-nav-toggle.dark.active i::before,
.colorlib-nav-toggle.dark.active i::after {
	background: var(--background-dark);
}

.colorlib-nav-toggle:hover,
.colorlib-nav-toggle:focus,
.colorlib-nav-toggle:active {
	outline: none;
	border-bottom: none !important;
}

.colorlib-nav-toggle i {
	position: relative;
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;
	width: 30px;
	height: 2px;
	background-color: var(--background-dark);
	font: bold 14px/0.4 Helvetica;
	text-transform: uppercase;
	text-indent: -55px;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.colorlib-nav-toggle i::before,
.colorlib-nav-toggle i::after {
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--background-dark);
	position: absolute;
	left: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.colorlib-nav-toggle.dark i {
	position: relative;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.colorlib-nav-toggle.dark i::before,
.colorlib-nav-toggle.dark i::after {
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.colorlib-nav-toggle i::before {
	top: -7px;
}

.colorlib-nav-toggle i::after {
	bottom: -7px;
}

.colorlib-nav-toggle:hover i::before {
	top: -10px;
}

.colorlib-nav-toggle:hover i::after {
	bottom: -10px;
}

.colorlib-nav-toggle.active i {
	background: transparent;
}

.colorlib-nav-toggle.active i::before {
	top: 0;
	-webkit-transform: rotateZ(45deg);
	-moz-transform: rotateZ(45deg);
	-ms-transform: rotateZ(45deg);
	-o-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.colorlib-nav-toggle.active i::after {
	bottom: 0;
	-webkit-transform: rotateZ(-45deg);
	-moz-transform: rotateZ(-45deg);
	-ms-transform: rotateZ(-45deg);
	-o-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}

.colorlib-nav-toggle {
	position: fixed;
	left: -5px;
	top: 0px;
	z-index: 9999;
	cursor: pointer;
	opacity: 1;
	visibility: hidden;
	padding: 20px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

@media screen and (max-width: 768px) {
	.colorlib-nav-toggle {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 480px) {
	.col-xxs-12 {
		float: none;
		width: 100%;
	}
}

.row-bottom-padded-lg {
	padding-bottom: 7em;
}

@media screen and (max-width: 768px) {
	.row-bottom-padded-lg {
		padding-bottom: 1em;
	}
}

.row-bottom-padded-md {
	padding-bottom: 3em;
}

@media screen and (max-width: 768px) {
	.row-bottom-padded-md {
		padding-bottom: 1em;
	}
}

.row-bottom-padded-sm {
	padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
	.row-bottom-padded-sm {
		padding-bottom: 1em;
	}
}

.row-pt-md {
	padding-top: 3em;
}

.col-padding {
	padding: 10px !important;
}

.js .animate-box {
	opacity: 0;
}

.bmc-div {
	margin-top: 15px;
	margin-bottom: 15px;
}

ul {
	list-style-type: none;
}

.accordion {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	/* margin: 30px auto 20px; */
	background: var(--background-light);
	color: var(--background-dark);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 15px 15px 15px 15px;
	font-weight: 700;
	border-bottom: 1px solid gray;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li:last-child .link {
	border-bottom: 0;
}

.accordion li i {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
	right: 12px;
	left: auto;
	font-size: 16px;
}

.accordion li.open .link {
	color: #b63b4d;
}

.accordion li.open i {
	color: #b63b4d;
}

.accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/

.submenu {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	/* Adjust the minmax() values as needed */
	gap: 10px;
	/* This sets both row and column gaps */
	background: var(--background-light);
	padding: 15px;


}

.submenu li {
	/* border-bottom: 1px solid var(--background-dark); */
	margin: 0;
	/* Removed the margin-top and margin-bottom */
	padding: 10px;
	display: flex;
	/* Keeps the contents of li flexible */
	align-items: center;
	/* This will vertically center align the contents of the li if they are taller */
	justify-content: center;
	/* This will horizontally center the contents */

}

.submenu li:hover {
	background: rgba(255, 255, 0, 0.705);
	box-shadow: -1px 1px 51px -20px rgba(0, 0, 0, 1);
	border-radius: 5px;
	color: var(--light-color);
}

.submenu a {
	/* display: block; */
	text-decoration: none;
	color: #d9d9d9;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.subheading {
	margin-bottom: 0px;
}

.subheading p {
	font-size: 12px;
}

.certifications-heading {
	justify-content: center;
	align-self: center;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--background-dark);
}

.project-card {
	text-align: center;

}





.project-description {
	font-size: 13px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: var(--background-dark);
}

.img-fluid {
	float: left;
	width: 300px;
}

span {
	font-family: var(--font-secondary);
	color: var(--primary-color);
	display: inline-block;
	/* change the display type           */
	margin: 0 5px;
}

.col-image {
	float: left;
	width: 25%;
	padding: 5px;
}

/* Clearfix (clear floats) */
.row-image::after {
	content: "";
	clear: both;
	display: table;
}

@media screen and (max-width: 992px) {
	.col-image {
		width: 100%;
		padding: 25px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		display: table-cell;
		vertical-align: middle
	}
}

@media print {

	.no-print,
	.no-print * {
		display: none !important;
	}

	#colorlib-main {
		float: left;
		width: 100%;
	}

	.timeline-label {
		margin-left: 0px !important;
	}

	.timeline-icon {
		display: none !important;

	}
}



footer {
	font-size: 13px;
	background: var(--background-light);
	padding: 2em 4em;
	/* display: flex; */
	align-items: start;
	justify-content: center;
	gap: 1em;
	border-radius: 5px;
}

footer ul {
	list-style: none;
	padding-left: 0px;
}

.col {
	flex: 1;
	margin: 0 30px;
	display: inline-grid;
}

.col-title {
	color: var(--primary-color);
	font-size: 1.1em;
	font-weight: 600;
	padding: 0.5em 0;
}

.col-list a {
	color: var(--secondary-color);
	text-decoration: none;
	line-height: 1.4;
	font-weight: 400;
	cursor: pointer;
}

.col-list a:hover,
.col-list a:focus {
	text-decoration: underline;
}

@media screen and (max-width: 750px) {
	footer {
		padding: 2em;
		flex-direction: column;
	}
}

.copyright-text {
	text-align: right;
	font-size: 10px
}

.copyright-text p {
	margin-top: 0px;
	margin-bottom: 0px;
	color: black;
}

.readmore {
	color: var(--background-dark);
}

.readmore p {
	padding-bottom: 10px;
	text-align: right;
	font-weight: 600;
}


.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background: #f8f9fa; /* light grey background */
}

.skill-item {
    text-align: center;
    flex-basis: 20%; /* adjust this to change how many items per row */
    margin-bottom: 20px;
	flex-direction: column;

}

.skill-logo {
    width: 100px; /* fixed width for logos */
    height: auto; /* maintain aspect ratio */
    margin-bottom: 10px; /* space between logo and text */
}

.skill-name {
    font-weight: bold;
    color: #333; /* dark grey for text */
    display: block;
    margin-bottom: 5px;
}

.skill-description {
    color: #666; /* lighter text for descriptions */
    font-size: 0.8em; /* smaller text for descriptions */
}
/* Styling for the certifications section */

.colorlib-narrow-content {
    margin: 0 auto;
    width: 90%; /* Adjust width as necessary */
    padding: 20px;
    background-color: #f9f9f9; /* Light background for the content */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.accordion .submenu {
    list-style: none;
    padding: 0;
    margin: 0;

    display: none; /* Initially hidden */
    border-top: none; /* Smooth connection with the toggle */
}

.project-card {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.project-card:last-child {
    border-bottom: none;
}

.img-fluid {
    max-width: 100px; /* Ensures images are not too large */
    margin-right: 10px;
}

.certifications-heading {
    flex-grow: 1; /* Allows the title to fill available space */
    padding: 0 10px;
}

.resume-content {
    display: flex;
    align-items: center;
}

.certification-img {
	width: 100px;
    height: auto;

}
/* Standard property 'appearance' for compatibility */
input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

.carousel {
  position: relative;
  margin-top: 20px;
  /* height: 300px;} */

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 200px; /* Minimum height; adjust as needed */
  height: auto; /* Allow height to grow */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-inner .carousel-item {
  display: none;
  position: relative;
  width: 100%;
  min-height: 230px;
  height: auto; /* Allow height to grow */
  padding: 20px;
  text-align: center;
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.6s ease-in-out;
}

.carousel-inner .carousel-item.active {
  display: block;
  position: relative;
}

.carousel-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-inner .testimonial-title {
  font-size: 2em; /* Increased font size for better hierarchy */
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-weight: bold; /* Make the title bold */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-inner .testimonial-detail {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--background-dark);
  font-family: var(--font-secondary);
  padding: 0 20px; /* Increase padding for better readability */
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  cursor: pointer;
  background-color: transparent;
}

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.carousel-controls .btn {
  font-size: 2em; /* Increased font size for better visibility */
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  margin: 0 10px;
}

.carousel-controls .btn:hover {
  color: var(--background-dark);
}

.carousel-inner .testimonial-title .highlight {
  font-weight: bold;
  color: var(--primary-color); /* Emphasize key points */
}

/* Optional CSS for buttons */
#prevTestimonial,
#nextTestimonial {
  padding: 0 10px;
  margin: 0 5px;
  font-size: 2em;
  background-color: transparent;
  border: none;
  color: var(--background-dark);
  cursor: pointer;
}

#prevTestimonial:hover,
#nextTestimonial:hover {
  color: var(--primary-color);
}
