/* ---------------- Common CSS ---------------- */
:root {
	--v-light-bg: #fbfbfb;
	--light-bg: #f5f5f5;
	--default-color: #4f4f4f;
	--default-color-light: #6f6f6f;
	--default-color-dark: #2f2f2f;
	--primary-color: #79b109;
	--primary-color-dark: #72a015;
	--default-border-color: #e6e6e6;
}

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

.primary-color-dark {
	color: var(--primary-color-dark);
}

.default-color {
	color: var(--default-color);
}

.default-color-light,
.subtitle-txt {
	color: var(--default-color-light);
}

.default-color-dark,
.title-txt {
	color: var(--default-color-dark);
}

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

.light-bg {
	background: var(--light-bg);
}

.v-light-bg {
	background: var(--v-light-bg);
}

.primary-btn {
	color: #fff;
	background: var(--primary-color);
}

.primary-btn:hover {
	color: #fff;
	background: var(--primary-color-dark);
}

* {
	box-sizing: border-box;
	color: var(--default-color);
	text-decoration: none;
	outline: none;
	position: relative;
	margin: 0;
	padding: 0;
	font-family: inherit;
}

html,
body {
	max-width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

html {
	scroll-behavior: smooth;
}

button:focus {
	outline: none !important;
	box-shadow: none !important;
}

a {
	color: var(--default-color);
	transition: all 0.3s ease-in-out;
}

a:hover {
	text-decoration: none;
	color: var(--primary-color-dark);
}

.text-info {
	color: #17a2b8;
}

.text-success {
	color: #28a745;
}

.text-danger {
	color: #dc3545;
}

.row {
	margin: 0 !important;
}

.bt-1,
.b-1,
.by-1 {
	border-top: 1px solid var(--default-border-color);
}

.bb-1,
.b-1,
.by-1 {
	border-bottom: 1px solid var(--default-border-color);
}

.bl-1,
.b-1,
.bx-1 {
	border-left: 1px solid var(--default-border-color);
}

.br-1,
.b-1,
.bx-1 {
	border-right: 1px solid var(--default-border-color);
}

.bt-2,
.b-2,
.by-2 {
	border-top: 2px solid var(--default-border-color);
}

.bb-2,
.b-2,
.by-2 {
	border-bottom: 2px solid var(--default-border-color);
}

.bl-2,
.b-2,
.bx-2 {
	border-left: 2px solid var(--default-border-color);
}

.br-2,
.b-2,
.bx-2 {
	border-right: 2px solid var(--default-border-color);
}

.fw300 {
	font-weight: 300 !important;
}

.fw400 {
	font-weight: 400 !important;
}

.fw500 {
	font-weight: 500 !important;
}

.fw600 {
	font-weight: 600 !important;
}

.fw700 {
	font-weight: 700 !important;
}

.fw800 {
	font-weight: 800 !important;
}

.fw900 {
	font-weight: 900 !important;
}

.fwbold {
	font-weight: bold !important;
}

.fwbolder {
	font-weight: bolder !important;
}

.fsize11,
.x-tiny-text {
	font-size: 11px !important;
}

.fsize12,
.tiny-text {
	font-size: 12px !important;
}

.fsize13,
.xs-text {
	font-size: 13px !important;
}

.fsize14,
.sm-text {
	font-size: 14px !important;
}

.fsize15,
.normal-text {
	font-size: 15px !important;
}

.fsize16,
.md-text {
	font-size: 16px !important;
}

.fsize17,
.lg-text {
	font-size: 17px !important;
}

.fsize18,
.xlg-text {
	font-size: 18px !important;
}

img {
	width: 100%;
	height: auto;
}

ul,
li {
	list-style: none;
}

.list-style,
.list-style li {
	list-style: initial;
}

.list-style {
	padding-left: 2.2em;
}

.min100vh {
	min-height: 100vh;
}

.min100vw {
	min-width: 100vw;
}

.w-md-80 {
	width: 80%;
}

.disable-click {
	pointer-events: none !important;
}

.dataTable td {
	font-size: 14px;
}

.sm-hidden {
	display: block;
}

.w-md-60 {
	width: 60%;
}

@media screen and (max-width: 768px) {
	.sm-hidden {
		display: none;
	}

	.w-md-60,
	.w-md-80 {
		width: 90%;
	}
}

/* ---------------- Common CSS END ---------------- */

/* Navber */
.krt-header {
	box-shadow: 0 0 22px -15px #2f2f2f;
	z-index: 1040;
}

.krt-header .navbar {
	background-color: #fefefe;
}

.krt-header .navbar-brand img {
	max-width: 125px;
}

.krt-header .nav-item.active .nav-link,
.krt-header .nav-item.btn-group.active .dropdown-toggle {
	color: var(--primary-color-dark);
}

.krt-header .navbar-toggler {
	color: rgba(0, 0, 0, .5);
	border-color: rgba(0, 0, 0, .1);
}

.krt-header .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 1.15em;
	height: 1.15em;
}

.nav-item.btn-group:hover .navlink,
.nav-item.btn-group:hover .dropdown-toggle {
	color: var(--primary-color-dark);
}

.nav-item.btn-group:hover .dropdown-toggle {
	background-color: #f7f7f7;
}

.dropdown-item {
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 14px;
	white-space: normal;
	transition: all 0.3s ease-in-out;
}

.dropdown-item:hover,
.dropdown-item.active {
	background-color: var(--v-light-bg);
	color: var(--primary-color-dark);
}

.dropdown-toggle {
	max-width: 25px;
	max-height: 37px;
}

.dropdown-menu.show {
	padding: 0 5px 5px;
	position: absolute;
	left: 15%;
	width: 245px;
	top: 35px;
	max-height: 360px;
	overflow-y: auto;
	overflow-x: unset;
	box-shadow: 0 0 15px -3px #b1b1b1;
	border: none;
}


.dropdown-menu.show::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #fff;
}

.dropdown-menu.show::-webkit-scrollbar {
	width: 6px;
	border-radius: 0.25rem;
	background-color: #F5F5F5;
}

.dropdown-menu.show::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #cecece;
}

/* Footer */
footer .container {
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width:415px) {
	footer .container {
		justify-content: center;
	}

	footer p {
		text-align: center;
		padding-top: 3px;
		padding-bottom: 4px;
	}
}

footer p {
	font-size: 12px;
	color: #dbdbdb;
}

footer a {
	font-size: 13px;
	color: #82bd0d;
}

footer a:hover {
	color: #a5dd36;
}


/* Breadcrumbs */
.breadcrumbs .container {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.breadcrumbs .container p {
		display: none;
	}
}


/* Home Slider */
.banner {
	background-image: url('../img/slider.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 380px;
}

.banner::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background: #00000073;
}

.banner .container {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	min-height: 380px;
}

.banner h1 {
	font-size: 4vmax;
	color: #dfdfdf;
}

.banner h1 span {
	font-size: 4.5vmax;
}

@media screen and (max-width: 575px) {
	.banner,
	.banner .container {
		min-height: 320px;
	}

	.banner h1 {
		font-size: 6vmax;
		line-height: 8vmax;
	}

	.banner h1 span {
		font-size: 6.7vmax;
		line-height: 8vmax;
	}
}

@media screen and (max-width: 767px) {
	.banner,
	.banner .container {
		min-height: 380px;
	}

	.banner h1 {
		font-size: 5vmax;
		line-height: 6vmax;
	}

	.banner h1 span {
		font-size: 5.7vmax;
		line-height: 6vmax;
	}
}

@media screen and (min-width: 1660px) {

	.banner,
	.banner .container {
		min-height: 500px;
	}
}

@media screen and (min-width: 1920px) {
	.banner h1 {
		font-size: 3.5vmax;
		line-height: 4.5vmax;
	}

	.banner h1 span {
		font-size: 4.2vmax;
		line-height: 4.5vmax;
	}
}

@media screen and (min-width: 2160px) {

	.banner,
	.banner .container {
		min-height: 600px;
	}
}


.service-card {
	height: 100%;
	background: #fcfcfc;
	border-radius: 12px;
}

.service-card:hover {
	box-shadow: 0 0 10px -3px #efefef;
}

.service-card i {
	font-size: 24px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.service-card a:hover i {
	color: var(--primary-color-dark);
}

.service-card p {
	font-size: 15px;
	font-weight: 500;
	color: var(--default-color);
	transition: all 0.3s ease-in-out;
}

.service-card a:hover p {
	color: var(--primary-color);
}

.content-text p,
.content-text li {
	font-size: 14px;
}

ol li {
	list-style: auto;
	padding: 5px;
	margin-left: 35px;
}

::marker {
	font-weight: 500;
}

.mxw-400 {
	max-width: 400px;
	width: 100%;
}

.display-table {
	display: table;
}

.table-cell {
	display: table-cell;
	padding: 8px 12px;
	vertical-align: top;
}

.competency .table-cell {
	vertical-align: middle;
}

.clientele .list-style {
	padding-left: 1em;
}

iframe {
	box-shadow: 0 0 10px -3px #d5d5d5;
}

.contactFormDiv {
	background-color: var(--v-light-bg);
	border: 1px solid var(--default-border-color);
	border-radius: 5px;
	padding: 30px;
}

.contactFormDiv input,
.contactFormDiv textarea,
.contactFormDiv button {
	width: calc(100% - 10px);
	margin: auto;
}

@media screen and (max-width: 768px) {
	.contactFormDiv {
		padding: 15px;
	}
}

.status-message {
	color: white;
	font-size: 15px;
	letter-spacing: 1px;
	border-radius: 4px;
	font-weight: 500;
	bottom: 20px;
	left: 40px;
	padding: 6px 8px 8px;
	display: none;
}

#status-success-message {
	background-color: var(--primary-color);
}

#status-error-message {
	background-color: #dc3545;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
.py-3{padding-bottom: 1rem!important;padding-top: 1rem!important;}
.erorimg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;   
	padding: 100px 0px;
}