@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


:root {
	--theme-color: #1c1c1c;
	--theme-color-second: #0089d0;
	--theme-color-third: #000;

	--heading-font: "Jost", sans-serif;
	--paragraph-font: "DM Sans", sans-serif;
	--span-font: 'spanist';



	--shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden !important;

}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
	font-size: 17px;
	color: #1e1e1e;
	background-color: #fff;
	scroll-behavior: smooth;
	overflow-x: hidden !important;
	font-family: "DM Sans", sans-serif;
	/* color: var(--theme-color) !important; */
}


a {
	color: var(--theme-color-second);
	text-decoration: none;
	transition: all 0.5s;

}

p a{
	color: var(--theme-color-second);
}

a:hover {
	text-decoration: none;
	transition: all .6s;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
}

.span-font {
	font-family: var(--span-font);
}

p {
	margin: 0;
	line-height: 1.6;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
}

ul li {
	margin-bottom: 0px;
}

.img-fluid {
	display: block;
	width: 100%;
	max-width: 100%;
}

.li {
	display: inline-block;
	padding: 0px 5px;
}

ul {
	list-style: none;
	padding: 0;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 40px;
}

h3 {
    font-size: 36px;
	font-weight: 600;}

h4 {}

h5 {}

h6 {}


.bg-cover {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.gap {
	margin-bottom: 30px;
}

section {
	padding: 80px 0px;
}

.form-control:focus {
	border-color: #ced4da;
	outline: 0;
	box-shadow: none;
}

input {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
}

textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
}

select {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
	color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@-moz-keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

* {
	box-sizing: border-box;
}

.m-backtotop {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: fixed;
	bottom: -50px;
	right: 0;
	width: 50px;
	height: 50px;
	background: var(--theme-color);
	border-radius: 0;
	text-align: center;
	border: 2px solid var(--theme-color-second);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	overflow: hidden;
	color: #fff;
}

.m-backtotop.active {
	bottom: 0;
	opacity: 1;
}

.m-backtotop>div {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
	z-index: 999;
}

.m-backtotop>div.text {
	font-size: 0.5rem;
	line-height: 10px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: "Open Sans", sans-serif;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0;
	margin-top: 1px;
	z-index: 99999;
}

.m-backtotop:hover {
	transform: scale(1.1);
	bottom: 0px;
	cursor: pointer;
	background: black;
	box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
	transform: translateY(-150%) translateX(-50%);
	opacity: 0;
}

.m-backtotop:hover>div.text {
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--theme-color-second);
	transition: height 0.2s ease-in-out;
}

.py-5 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.py-6 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.py-7 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.py-8 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.py-9 {
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}

.py-10 {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}

.gap-p p {
	margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
	display: none;
}

a.navbar-brand img {
	width: 123px;
}
.header_menu li a {
	color: #000000;
	font-size: 16px;
	text-transform: uppercase;
	padding: 29px 19px;
	display: inline-block;
}

.header_menu li a:hover {
	color: var(--theme-color-second);
}

.hd_info {
	display: flex;
	align-items: center;
	gap: 10px;

	flex-wrap: wrap;
}

a.comon-btn {
	background: var(--theme-color-second);
	color: #fff;
	display: inline-block;
	font-size: 15px;
	padding: 12px 6px;
	border-radius: 500px;
	width: 13rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid #ffffff;
}

a.comon-btn:hover {
	background: #fff;
	color: var(--theme-color-second);
	border-color: var(--theme-color-second);
}

a.btn-inherit {
	width: fit-content;
}

a.btn-white {
	background: #fff;
	color: #1e1e1e;
}

.header_menu li a {
	color: #000000;
	font-size: 16px;
	text-transform: capitalize;
	padding: 15px 13px;
	display: inline-block;
	font-weight: 500;
}

.navbar li:hover a {
	color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
	transition: .3s;
	opacity: 1;
	visibility: visible;
	top: 100%;
	transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
	.navbar .dropdown-menu-end {
		right: 0;
		left: auto;
	}

	.navbar li .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		margin-top: 0;
	}

	.navbar li:hover a {
		color: var(--theme-color-second);

	}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 180%;
	}

	.navbar li:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg);

	}
}

ul.dropdown-menu.fade-up li a:hover {
	color: #fff !important;
	background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
	border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
	border-bottom: 1px solid #c1c0bd;
	margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
	color: #000 !important;
	font-size: 14px;
	display: block;
	width: 100%;
	padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
	border: none;
	background: #fff;
	padding: 0 0;
	min-width: inherit;
	width: 250px;
	border-radius: 0px;
}

.link-sm-2 i {
	top: -9px !important;
}

.link-sm-2 {
	position: relative;
}


.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%
}

.sticky-top-1.sticky {
	background: #fff !important;
	z-index: 9999999999999;
}

.top-header {
	padding: 5px 0;
}

.top-header a {
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 18px;

}

.top-header:hover a {
	animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(1.1);
	}

	50% {
		transform: scale(1);
	}

	75% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

#main_header .navbar-expand-lg .navbar-collapse {
	display: flex !important;
	flex-basis: auto;
	width: 100%;
	justify-content: space-between;
}

#main_header .adu-menu {
	color: #fff;
	background-color: var(--theme-color-second);
	padding: 2px 5px;
}

#main_header .navbar-nav {

	align-items: center;
}

#main_header .right-side a.vdio-test {
	background-color: var(--theme-color-second);
	color: #fff;
	padding: 14px 15px;
	text-transform: uppercase;
	width: 10rem;
	text-align: center;
	font-weight: 800;
	display: block;
	font-size: 17px;
	line-height: 1.5;
}

#main_header .right-side a.vdio-test span {
	font-size: 24px;
}

#main_header .right-side a.vdio-test:hover {
	background-color: var(--theme-color);
}

#main_header .hd_info {
	width: 100%;
}

#main_header .hd_info a.comon-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 7px 12px;
  height: 53px;
  align-items: center;
  width: 10rem;
  background: transparent;
  color: #000;
  font-weight: 600;
  gap: 0;
  font-size: 14px;
  border: none !important;
}

#main_header .hd_info a.comon-btn i {
	background-color: #fff;
	display: flex;
	height: 30px;
	width: 30px;
	color: var(--theme-color-third);
	align-items: center;
	justify-content: center;
	border-radius: 600px;
	padding: 6px;
}
	background-color: var(--theme-color-second);
	color: #fff;
} */
/* #main_header .hd_info a.comon-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 7px 12px;
    height: 53px;
    align-items: center;
    width: 10rem;
    background: transparent;
    color: #000;
    font-weight: 600;
    gap: 0;
    font-size: 14px;
    border: none !important;
} */
#main_header .hd_info {
	justify-content: end;
	flex-wrap: nowrap;
}

#main_header .hd_info .social {
	justify-content: end;
	flex-wrap: nowrap;
	display: flex;
	gap: 6px;
	width: 13rem;
}
#main_header a.navbar-brand {
	margin: 0;
}
#main_header .hd_info .social a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	width: 35px;
	background-color: var(--theme-color);
	color: #fff;
	border-radius: 60px;
}

#main_header .hd_info .social a:hover {
	background-color: var(--theme-color-second);
	animation: bounce 2s ease-in-out infinite;
}

.fixed-bottom {
	display: none;
}

.banner_sec .heading {
	text-transform: uppercase;
	background: #0000004f;
	border-radius: 13px;
}

.banner_sec {
	padding-bottom: 245px;

}

.banner_sec h1 {
	font-size: 40px;
}

/* home_sec_2 */

.home_sec_2 h2 {
	color: var(--theme-color-second);
	font-size: 32px;
}

.home_sec_2 .about_box {
	position: relative;
	margin-top: -190px;
	border-radius: 50px;
	padding-bottom: 0!important;
}

.home_sec_2 ul {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 28px;
	text-transform: capitalize;
}

.home_sec_2 ul li ul {
	color: #0089d0;
	gap: 3px;
	font-size: 20px;
}
.home_sec_2 .accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
	box-shadow: none !important;
	border: none !important;
	font-size: 18px;
	font-weight: 500;
	gap: 10px;
}

.home_sec_2 .accordion-button i {
	font-size: 8px;
}

.home_sec_2 .accordion-item {
	border: none;
	border: 1px solid #000 !important;
	border-radius: 6px !important;
	overflow: hidden;
	margin-bottom: 11px;
}
.home_sec_2 .accordion-item p {
	font-size: 14px;
	font-weight: 400;
}

.accordion-button:not(.collapsed)::after {
	background-image: none;
	transform: rotate(0deg);
	content: '-';
	top: -8px;
	font-size: 25px;
}

.accordion-button::after {
	background-image: none;
	transform: rotate(0deg);
	content: '+';
	font-size: 22px;
	top: -5px;
	position: inherit;
}

.fixed-right {

	top: 50%;
	rotate: 90deg;
	display: inline-block;
	display: none;
}

.fixed-right a {
	background-color: var(--theme-color-second);
	color: #fff;
	font-size: 17px;
	padding: 12px 14px;
	border: 1px solid #fff;
}

.fixed-right.sticky-top-1.sticky {
	background-color: var(--theme-color-second) !important;
	display: inline-block;
	display: none;
	width: fit-content;
	top: 40%;
	left: -105px;
}
.home_sec_3 .review-head p {
	font-size: 16px;
}

.home_sec_3 .test-box img.width-auther {
	width: 116px !important;
}


.home_sec_3 .test-box img.width-star {
	width: 93px !important;
	margin-top: 10px;
	padding: 0 10px;
}


.home_sec_3 .test-box .width-star-2 {
	width: 145px !important;
	margin-top: 10px;

}

.home_sec_3 .test-box .content {
	height: 100px;
	overflow-y: scroll;
}

.home_sec_3 .test-box p {
	font-size: 14px;
	font-weight: 500;
}

.home_sec_3 h3 {
	color: var(--theme-color-second);
}

body .glightbox-container {
	z-index: 9999999999999999 !important;
}

.home_sec_5 .owl-nav img {
	width: 35px;
}

.home_sec_5 button.owl-prev {
	position: absolute;
	top: 45%;
	left: 20px;
}

.home_sec_5 button.owl-next {
	position: absolute;
	top: 45%;
	right: 20px;
}

.home_sec_5 .accordion-button {
	box-shadow: none !important;

	background-color: #0294e0;
	color: #fff;
	gap: 10px;
	font-size: 18px;
	font-weight: 500;

}

.home_sec_5 .accordion-button i {
	font-size: 8px;
}

.home_sec_5 .accordion-item {
	background-color: #0294e0;
	color: #fff;
	border: none;
	margin-bottom: 15px;
}

.home_sec_5 .accordion-item p {
	font-size: 14px;
	font-weight: 400;
}

/* home_sec_6 */

.home_sec_6 .servie-box {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	/* background-color: #000; */
}

.home_sec_6 .servie-box .over-lay-1 {
	position: absolute;
	top: 0;
	width: 100%;
}

.home_sec_6 .servie-box .over-lay-1 h4 {
	background-color: #fff;
	color: var(--theme-color-second);
	padding: 5px 15px;
	border-radius: 5px;
	font-size: 28px;
	font-weight: 700;
}
.home_sec_6 .servie-box .over-lay-2 {
	position: absolute;
	bottom: -110px;
	width: 100%;
	opacity: 0;
	transition: 1s ease;
}
.home_sec_6 .servie-box:hover .over-lay-2 {
	position: absolute;
	bottom: 0px;
	width: 100%;
	opacity: 1;
	transition: 1s ease;

}
.home_sec_6 .servie-box img {
	transform: scale(1);
	transition: 0.8s;
	object-fit: cover;
	/* opacity: 0.7; */
}

.home_sec_6 .servie-box:hover img {
	transform: scale(1.1);
	transition: 0.8s;

}

.home_sec_6 .servie-box .service-1 {
	height: 1010px;
}
.home_sec_6 .servie-box .service-2 {
	height: 497px;
}


/* ******** */
.location_sec .content .address_info i {
	font-size: 23px;
	margin-bottom: 0;
	display: block;
	font-weight: lighter;
}
.location_sec .content .address_info p {
	font-size: 15px;
	line-height: 1.5;
	font-family: var(--paragraph-font);
	font-weight: 400;
}

.location_sec .content .ri-phone-line {
	font-size: 17px;
	font-weight: lighter;
}
.location_sec .content p a {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
}

.location_sec .content .address_info {
	margin-bottom: 1px;
}

.location_sec .btom_map iframe {
	height: 100%;
	width: 100%;
	border-radius: 10px;
	border: 4px solid #0074b0 !important;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.location_sec .content .top_content {
	background: #0074b0;
	color: #fff;
	text-align: center;
	width: 92%;
	height: 185px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	/* margin-bottom: -90px; */
	position: relative;
	margin-bottom: 13px;
	padding: 49px;
}
.location_sec .content .btom_map {
	border: 2px dotted #0074b0;
	border-radius: 15px;
	padding: 8px;
	width: 92%;
	height: 340px;
	margin: 0 auto;
	background: #fff;
}

.location_sec {
	margin-bottom: -220px;
}

/* ********** */
footer {
	padding: 230px 0 60px;
	background: var(--theme-color-second);
	color: #fff;
}

footer .ft_logo img {
	width: 175px;
	margin-bottom: 32px;
}

footer .ft_logo ul li a {
	color: #fff;
}

footer .ft_logo ul li {
	margin-bottom: 11px;
}

footer .social_info ul {
	display: flex;
	align-items: center;
	gap: 12px;
}

footer .social_info ul li i {
	width: 40px;
	height: 40px;
	background: #fff;
	color: var(--theme-color-second);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	font-size: 21px;
}

footer .social_info {
	margin-top: 22px;
}

footer .ft_logo ul li a span {
	font-size: 21px;
}

footer .ft_menu .ft_content ul li a {
	color: #fff;
}

footer .ft_menu {
	display: flex;
	justify-content: space-between;
}

footer h5 {
	font-size: 20px;
	letter-spacing: 2px;
}

footer .ft_menu .ft_content ul li {
	margin-bottom: 10px;
	font-size: 16px;
}

footer .copy_right {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ****** */

.blog_sec .btom_content {
	background: #fff;
	text-align: center;
	padding: 28px 14px 0;
	margin-top: -60px !important;
	position: relative;
	margin: 0 20px;
	border-radius: 15px;
}

.blog_sec .btom_content h5 {
	color: var(--theme-color-second);
}


/* ***** */
.home_sec_23 .accordion-item {
	color: #000;
	background-color: #fff;
	border: var(--bs-accordion-border-width) solid #000;
	margin-bottom: 15px;
	border-radius: 16px;
	overflow: hidden;
}

.home_sec_23 .accordion-body {
	padding: 11px 24px !important;
	padding-top: 0;
}

.home_sec_23 .bg_overly {
	padding: 60px 0;
}

.home_sec_23 .accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home_sec_23 .accordion-button:not(.collapsed) {
	color: var(--theme-color-second);
	background-color: #fff0;
	box-shadow: none;
	border-bottom: 3px solid #dedede;
}
.home_sec_23 .accordion-header {
	margin: 0 17px;
}
.home_sec_23 .accordion-button {
	color: var(--theme-color-second);
	background-color: #fff;
	font-size: 20px;
	font-weight: 500;
	box-shadow: none;
	padding: 16px 24px;
}

.home_sec_23 .accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
	padding-top: 0;
}

.home_sec_23 .accordion-item {
	color: #000;
}

.home_sec_23 .accordion-button::after {
	content: "+";
	background-image: none;
}

.home_sec_23 .accordion-button:not(.collapsed)::after {
	content: "-";
	transform: rotate(0);
}

.btn_white {
	background: #fff !important;
	color: var(--theme-color-second) !important;
	border: 1px solid #fff !important;
}
a.btn_white:hover{
	background: var(--theme-color-second)!important;
	color: #fff!important;
}
.home_sec_23 h2 {
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 26px;
}

.home_sec_23 .heading p {
	font-weight: 300;
	font-size: 17px;
	line-height: 1.7;
}

/* ******* */
.home_sec22 .owl-nav {
	position: relative;
}

.home_sec22 .owl-next {
	position: absolute;
	right: 20px;
	top: -270px;
}

.home_sec22 .owl-prev {
	position: absolute;
	left: 20px;
	top: -270px;
}

.home_sec22 .owl-nav img {
	width: 55px;
}

.home_sec22 .owl-carousel .owl-nav.disabled {
	display: block;
}

.home_sec22  a.comon-btn {
	width: 18rem;
	border: 1px solid #0089d0;
}

#home_2 h2{
	margin-bottom: 25px;
}
#home_2 p{
	margin-bottom: 35px;
}

#home_2 .accordion-item h2{
	margin-bottom: 0;
}
#home_2 .accordion-item p{
	margin-bottom: 15px;
}

.home_sec_3 .owl-nav {
	display: none;
}
.home_sec_3 .owl-dots{
	display: none;
}

.home_sec_4 .video-box a{
	display: block;
}
.home_sec_4 .video-box .vid-item{
	position: relative;
}
.home_sec_4 .video-box .vid-item .overlay {
	position: relative;
	bottom: 56px;
	left: -10px;
	margin-bottom: -42px;
}
.home_sec_4 .video-box .vid-item .overlay  a {
	height: 75px;
	width: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	background-color: var(--theme-color-second);
	color: #fff;
	border: 5px solid #fff;
	line-height: 1;
	font-size: 26px;
}
.home_sec_4 .video-box:hover .vid-item .overlay  a {
	background-color: var(--theme-color);
}
.home_sec_5 .accordion-item{
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid #ffffff9f;
}

.home_sec_5 .accordion-item ol li{
	font-size: 14px;
	margin-bottom: 15px;
}
#main_header.sticky-top-1 .social{
	display: flex!important;
}
#main_header.sticky-top-1.sticky .social{
	display: none!important;
}
#main_header a.comon-btn{
	font-size: 12px;
}
#main_header.sticky-top-1 a.comon-btn.btn-dark{
	display: none!important;

	width: 13rem;
	justify-content: center;

}
#main_header.sticky-top-1 a.comon-btn.btn-dark:hover{
	border-color: var(--theme-color-second);
}
#main_header.sticky-top-1.sticky a.comon-btn.btn-dark{
	display: flex!important;
}

.banner_sec a.comon-btn{
	background-color: #008bd080;
}

.banner_sec a.comon-btn:hover{
	background-color: #008bd0;
	color: #fff;
}

.home_sec21 .img-box{
	position: relative;
	border: 1px dotted var(--theme-color-second);
}

.home_sec21 .img-box .icon {
	position: absolute;
	width: 70px;
}

.home_sec21 .img-box .icon-1 {
	top: -30px;
	right: -29px;
}

.home_sec21 .img-box .icon-2 {
	bottom: -30px;
	left:-30px;
}

.home_sec21 .img-box a img{
	height: 350px;
}

a.border-btn{
	background: transparent;
	border: 2px solid #fff;
	padding: 10px;
	width: 9rem;
}

section.blog_sec img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
/* .inner_banner h1 {
	background-color: #00000069;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 10px;
	font-weight: 700;
} */

.inner_banner .heading {
    background-color: #00000069;
/*     display: inline-block; */
    text-transform: uppercase;
    border-radius: 10px;
    font-weight: 700;
}
section.inner_banner h1 {
    font-size: 40px;
}

.contact_page_1 form input, .contact_page_1 form textarea, .contact_page_1 form select {
	border: none;
	border: 2px solid var(--theme-color-second);
	padding: 10px;
	width: 100%;
	color: #000;
	border-radius: 3px;
}
.contact_page_1 form ::placeholder{
	color: #000;
}

.contact_page_1 form textarea{
	height: 105px;
}

.contact_page_1 label.quote {
	margin-bottom: 10px;
	font-style: italic;
	font-weight: 600;
}

.contact_page_1 form button{
	border: none;

	padding: 10px;
	width: 100%;
	color: #fff;
	background-color: var(--theme-color-second);
	text-transform: uppercase;
	border-radius: 3px;

}
form.wpcf7-form.init p, form.wpcf7-form.invalid p, form.wpcf7-form.sent p {
	margin-bottom: 0px !important;
}

#home_3.home_sec_2 .about_box{
	margin-top: 0;
}


.about_new_service h2{
	color: var(--theme-color-second);
} 

.about_new_service .service-box {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.about_new_service .service-box img{
	height: 250px;
	object-fit: cover;
	transform: scale(1);
	transition: 0.8s;
}

.about_new_service .service-box  .over-lay {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.about_new_service p span{
	color: var(--theme-color-second);
}
.about_new_service .service-box  .over-lay h4{
	margin-bottom: 0;
	display: inline-block;
	background-color: #fff;
	padding: 8px;
	padding: 10px 25px;
	font-size: 20px;
	border-radius: 10px;
	font-weight: 700;
	color: var(--theme-color-second);
}

.about_new_service .service-box:hover img{

	transform: scale(1.2);
	transition: 0.8s;
}

.why-choose-section .feature {
	width: 100%;
	margin-bottom: 20px;
	/* background-color: #2a2a2a; */
	padding: 20px;
	border-radius: 8px;
	border: 1px dashed #ffffff;
	color: #fff;
    height: 100%;
}

.why-choose-section .feature h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 0;
}

.why-choose-section .checkmark {
	font-size: 15px;
	color: var(--theme-color-second);
	margin-right: 10px;
	width: 25px;
	height: 25px;
	display: flex;
	background: #ffffff;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
}

#about_sec h2{
	color: var(--theme-color-second);
}

section.home_sec_2.home_sec_4 .vid-item img {
/* 	height: 254px; */
	object-fit: cover;
}

#home_3 .line{
	width: 2px;
	height: 100%;
	margin: 0 auto;
	background-color: var(--theme-color-second);
}

.about_new_service p span {
	color: var(--theme-color-second);
	font-weight: bold;
	letter-spacing: 1px;

}

.why-choose-section .feature {
	width: 100%;
	margin-bottom: 20px;
	/* background-color: #2a2a2a; */
	padding: 20px;
	border-radius: 8px;
	border: 1px dashed #ffffff;
	color: #fff;
}

.why-choose-section .feature h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 0;
}

.why-choose-section .checkmark {
	font-size: 15px;
	color: var(--theme-color-second);
	margin-right: 10px;
	width: 25px;
	height: 25px;
	display: flex;
	background: #ffffff;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
}

/* service page css 21-11 */
.service_page_sec_1 p a {
	color: var(--theme-color-second);
	font-weight: 600;
}

.service_page_sec_1 h2 {
	color: var(--theme-color-second);
}

.service_page_sec_1 .owl-nav img {
	width: 55px;
}

.service_page_sec_1 .owl-nav button.owl-prev {
	position: absolute;
	top: 45%;
	left: 16px;
}

.service_page_sec_1 .owl-nav button.owl-next {
	position: absolute;
	top: 45%;
	right: 16px;
}

.service_page_sec_1 h3 {
	color: var(--theme-color-second);
	display: inline-block;
	padding: 20px;
	border: 2px solid var(--theme-color-second);
	border-radius: 11px;
}

.service_page_sec_2 ul li a {
	display: flex;
	gap: 10px;
	color: #000;
	font-size: 15px;
}

.service_page_sec_2 ul li {
	margin-bottom: 15px;
}

.service_page_sec_2 ul li a i {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-color-second);
	height: 25px;
	width: 25px;
	border-radius: 600px;
	color: #fff;
}

.service_page_sec_2 h2 {
	color: var(--theme-color-second);
}

.even-service .container {
	padding: 15px;
	background-color: var(--theme-color-second);
	color: #fff;
}

.even-service {
	background-color: var(--theme-color-second);
}

.even-service .container h3 {
	color: #fff;
	border: 2px solid #fff;
}

.od-service .container {
	padding: 15px;
}

section.service_page_sec_1.od-service .owl-carousel {
	border: 4px solid var(--theme-color-second);
}

.adu_sec_1 h2 {
	color: var(--theme-color-second);
}

.adu_sec_1 .adu_service_box {
	border: 2px dashed var(--theme-color-second);
	height: 100%;

}

.adu_sec_1 .adu_service_box .img-box {
	height: 100%;
	position: relative;
	overflow: hidden;
}

.adu_sec_1 .adu_service_box .img-box img {
	height: 400px;
	object-fit: cover;
}

.adu_sec_1 .adu_service_box .over-lay {
	position: absolute;
	bottom: -170px;
	width: 100%;
	background-color: transparent;
	color: #fff;
	transition: 0.6s ease;
	text-shadow: 1px 1px 1px #000;
	height: 270px;
}

.adu_sec_1 .adu_service_box .over-lay a {
	text-shadow: none !important;
}

.adu_sec_1 .adu_service_box:hover .over-lay {
	bottom: 0px;
	background-color: #1c1c1c78;
	transition: 0.6s;
	color: rgb(255, 255, 255);
	height: 100%;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999999999 !important;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

.adu_sec_2 h2 {
	color: var(--theme-color-second);
}


.adu_sec_2 .owl-img {
	border: 1px dotted var(--theme-color);
	margin-bottom: 10px;
}

.adu_sec_2 .owl-nav img {
	width: 40px;
}

.adu_sec_2 .owl-nav button.owl-prev {
	position: absolute;
	top: 30%;
	left: 0;
}

.adu_sec_2 .owl-nav button.owl-next {
	position: absolute;
	top: 30%;
	right: 0;
}


.adu_sec_3 .figur-box {
	border: 2px dashed #fff;
	background-color: var(--theme-color-second);
	color: #fff;
	transition: 0.6s ease-in-out;
}

.adu_sec_3 .figur-box:hover {
	border: 2px dashed var(--theme-color-second);
	background-color: #fff;
	color: var(--theme-color-second);
	transition: 0.6s ease-in-out;
}

.adu_sec_3 .figur-box h3 {
	font-size: 20px;
}

.adu_sec_3 .figur-box h4 {
	font-size: 18px;
}

.adu_sec_3 .figur-box hr {
	opacity: 1;
	height: 2px;
}

.adu_sec_3 .figur-box p {
	margin-bottom: 0;
}

.adu_sec_4 h2 {
	color: var(--theme-color-second);
}

.adu_sec_4 .adu_box {
	background-color: #ebf6fb;
	border: 2px dashed var(--theme-color-second);
	height: 100%;
	border-radius: 5px;
	text-align: center;
	color: var(--theme-color-second);
	transition: 0.6s;
}

.adu_sec_4 .adu_box:hover {
	background-color: var(--theme-color);
	border: 2px dashed var(--theme-color-second);
	height: 100%;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	transition: 0.6s;

}

.adu_sec_4 .adu_box hr {
	opacity: 1;
	height: 2px;
}

.adu_sec_4 .adu_box h3 {
	font-size: 25px;
	text-transform: capitalize;
}

.adu_sec_4 .adu_box img {
	width: 75px;
	height: 75px;
	object-fit: contain;
}

#latest-adu.home_sec22 .owl-prev {
	position: absolute;
	left: 0px;
	top: -180px;
}

#latest-adu.home_sec22 .owl-next {
	position: absolute;
	right: 0px;
	top: -180px;
}

#adu-service.home_sec_6 .servie-box .over-lay-1 h4 {
	background-color: #fff;
	color: var(--theme-color-second);
	padding: 5px 15px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 700;
	text-align: end !important;
}

#adu-service.home_sec_6 .servie-box .over-lay-1 {
	text-align: end !important;
}

.inner_service_contact .service-box {
	border-radius: 5px;
}

.inner_service_contact .service-box h2 {
	font-size: 35px;
	color: var(--theme-color-second);
}

.inner_service_contact .service-box h3 {
	font-size: 30x;
	color: var(--theme-color-second);
}

.inner_service_contact form input {
	padding: 13px;
	border: 1px solid var(--theme-color-second);
}

.inner_service_contact form ::placeholder {
	color: var(--theme-color-second);
}

.inner_service_contact form select {
	padding: 13px;
	color: var(--theme-color-second);
	border: 1px solid var(--theme-color-second);
}

.inner_service_contact form textarea {
	padding: 13px;
	color: var(--theme-color-second);
	border: 1px solid var(--theme-color-second);
	height: 125px;
}

.inner_service_contact form button {
	padding: 13px;
	width: 100%;
	border: none;
	background-color: #fff;
	color: var(--theme-color-second);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	border-radius: 100px;
}


.inner_service_contact form button:hover {
	padding: 13px;
	width: 100%;
	border: none;
	background-color: var(--theme-color);
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	border-radius: 100px;
}



.inner-blog-left-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	padding: 15px 19px 35px;
	border-radius: 8px;

}

.inner-blog-left-sec .inner-blog-sec1 p {
	color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
	display: flex;
	align-items: center;
	gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
	color: #606060;
	margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
	font-weight: 600;
	margin-bottom: 18px;
	font-size: 29px;
}

.inner-blog-left-sec .inner-blog-sec1 img {
	border-radius: 5px;
	margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #1c1c1c2b;
	margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
	display: flex;
	gap: 15px;
	align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
	font-size: 17px;
	color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
	color: var(--theme-color);
	font-size: 16px;
	margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
	color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
	color: var(--theme-color);
	font-size: 15px;
	font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
	color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
	padding: 25px 18px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	border-radius: 5px;
	height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
	padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
	border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
	color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
	color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
	color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
	padding: 20px 25px;
	border: 1px solid rgba(69, 69, 70, 0.2);
	border-radius: 8px;
	background: #fff;
	color: #000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
	width: 100%;
	outline: none;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
	width: 100%;
	outline: none;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
	color: #ffffff;
	background-color: #000;
	display: inline-block;
	width: 100%;
	text-transform: uppercase;
	text-align: center;
	border: 1px solid #000;
	padding: 15px 20px;
	border-radius: 8px;
	font-weight: 400;
	transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
	background: #1c1c1c3b;
	border: 1px solid #1c1c1c3b;
	color: #000;
	transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
	color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
	display: flex;
	gap: 25px;
	align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
	font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
	color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
	border-top: 1px solid #1c1c1c3b;
	border-bottom: 1px solid #1c1c1c3b;
	padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
	border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	padding: 35px 21px;
	border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
	position: relative;
	border: 1px solid #1c1c1c3b;
	border-radius: 5px;
	padding: 11px 13px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
	border: none;
	outline: none;
	padding: 0;
	width: 100%;
}

.inner-blog-right-sec .blog-search form button {

	cursor: pointer;
	background: none;
	border: 0;
	font-size: 15px;
	color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #1c1c1c3b;
	padding: 15px 0;
	gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
	width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
	color: #000000ab;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
	color: #000000ab;
	font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
	width: 100%;
}

.inner-blog-sec1 img {
	height: auto;
	object-fit: cover;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
	width: 130px;
	height: 80px;
	object-fit: cover;
}


.main-sec .archive-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.main-sec .inner-blog-right-sec {
	height: 100%;
	overflow-y: scroll;
	height: 100%;
}

.main-sec .inner-blog-right-sec {
	height: 100%;
	overflow-y: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE/Edge old */
}

.main-sec .inner-blog-right-sec::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari */
}

ul.inner-blog-list li {
	MARGIN-BOTTOM: 18px;
}

.main-sec .archive-list li a {
	padding: 4px 17px;
	background-color: rgb(230, 230, 230);
	color: #000;
	font-size: 14px;
	border-radius: 10px;
}

.main-sec .archive-list li a:hover {
	padding: 4px 17px;
	background-color: var(--theme-color-second);
	color: #ffffff;
	font-size: 14px;
	border-radius: 10px;
}

.main-sec .archive-list-2 li {
	margin-bottom: 10px;
}

.main-sec .archive-list-2 li a {
	gap: 10px;
	color: #000;
	font-size: 15px;
	border-radius: 10px;
	display: flex;
	letter-spacing: 1px;
}

.main-sec .archive-list-2 li a i {
	color: var(--theme-color-second);

}

.main-sec .archive-list-2 li a span {
	width: 80%;
}

.main-sec .archive-list-2 li a:hover span {
	font-weight: 600;
	text-decoration: underline;
	display: block;

}

.main-sec .archive-list li a.show-more {
	background-color: var(--theme-color-second);
	color: #fff;
}

/* Chrome, Safari, Edge */
.inner-blog-sec1::-webkit-scrollbar {
	width: 0;
	height: 0;
}

/* Sticky Right Sidebar */
.sticky-sidebar {
	position: sticky;
	top: 100px;
	/* Adjust based on header height */
}

/* Make sure parent does NOT break sticky */
.inner-blog-right-sec {
	height: auto;
}


.main-sec .main_head h1 {
	font-size: 45px;
	color: var(--theme-color-second);
	font-family: var(--heading-font);
}

.main-sec .heading h3 {
	color: var(--theme-color-second);
}

/* Sticky Sidebar */
.sticky-sidebar {
	position: sticky;
	top: 90px;
	/* Adjust based on your header height */
}

.inner-blog-sec1 {
	padding: 1rem;
	scroll-behavior: smooth;
}

.main-sec .col-lg-4 {
	align-self: flex-start !important;
}


/* ensure column doesn't get compressed in flex row */
.main-sec .col-lg-4 {
	align-self: flex-start !important;
}

/* primary sticky rule (native) */
.sticky-sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 90px;
	/* adjust for header height */
	/* set width so fixed fallback knows how wide to be */
	width: 100%;
	z-index: 30;
}

.sticky-sidebar.is-fixed {
	position: fixed !important;
	top: 90px !important;
	z-index: 1000;
	width: 33.333333%;
}

/* when we need to pin to the bottom of the column (stop) */
.sticky-sidebar.is-absolute {
	position: fixed !important;
	top: 90px !important;
	bottom: 0;
	width: 33.333%;
	z-index: 99999999999;
	top: 120px;
}

/* small safety: make sure right content box looks the same in fixed state */
.inner-blog-right-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 8px;
	padding: 35px 21px;
	background: #fff;
}

/* common housekeeping */
.inner-blog-sec1 {
	padding: 1rem;
	scroll-behavior: smooth;
}

.inner-blog-sec1::-webkit-scrollbar {
	width: 0;
	height: 0;
}



/* 26-11-2025 css for portfolio page */
.main_portfolio h2 {
	color: var(--theme-color-second);
}

.main_portfolio {
	color: var(--theme-color);
}


/* Portfolio box wrapper */
.main_portfolio .portfolio-box {
	position: relative;
}

/* Image styling */
.main_portfolio .portfolio-box img {
	height: 350px;
	width: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 0.6s ease;
}

/* Hover zoom */
.main_portfolio .portfolio-box:hover img {
	transform: scale(1.08);
}

/* Overlay */
.main_portfolio .over-lay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	padding: 12px;
	transition: background 0.3s ease;
}

/* Optional: overlay fades darker on hover */
.main_portfolio .portfolio-box:hover .over-lay {
	background: rgba(0, 0, 0, 0.7);
}

/* Overlay title */
.main_portfolio .over-lay h4 {
	font-size: 19px;
	margin: 0;
}


/* Outer card */
.main_portfolio .main-port-link {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	border: 3px solid var(--theme-color-second);
	position: relative;
	perspective: 1000px;
	/* enables 3D effect */
}

/* Inner box */
.main_portfolio .portfolio-box {
	position: relative;
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	border-radius: 0;
	border: #000;
}



/* Image */
.main_portfolio .portfolio-box img {
	height: 230px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
/* Slight zoom on hover */
.main_portfolio .portfolio-box:hover img {
	transform: scale(1.07);
}

/* Overlay */
.main_portfolio .over-lay {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	text-align: center;
	padding: 14px;
	transition: background 0.3s ease;
}

.main_portfolio .portfolio-box:hover .over-lay {
	background: rgba(0, 0, 0, 0.75);
}

/* ------------------------------- */
/* MOVING BLUR LIGHT EFFECT        */
/* ------------------------------- */
.main_portfolio .portfolio-box .blur-light {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: rgba(255, 255, 255, 0.4);
	filter: blur(25px);
	transform: skewX(-25deg);
	transition: 0.7s ease;
	pointer-events: none;
}

/* Sweep across on hover */
.main_portfolio .portfolio-box:hover .blur-light {
	left: 140%;
}
section.home_sec_2.home_sec_4 .vid-item img {
	object-fit: cover;
}

#inner_portfolio .modal .img-fluid {
	width: 100%;
    height: 170px;
    border: 2px solid #fff;
    object-fit: cover;
}

#inner_portfolio .adu_service_box h4 {
	min-height: 60px;
}

.accordion-header {
	margin-bottom: 0!important;
	font-size: 17px;
}


#video-testimonial.home_sec_4 .video-box .vid-item .overlay a {
	height: 80px;
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	background-color: var(--theme-color-second);
	color: #fff;
	border: 5px solid #fff;
	line-height: 1;
	font-size: 40px;
}


#video-testimonial.home_sec_4  h5 {
	font-size: 27px;
}


#video-testimonial.home_sec_4 .vid-item img {
	height: 315px !important;
	object-fit: cover;
}

#bathroom_sec h4 {
	min-height: 75px;
	margin: 0;
}
#bathroom_sec.adu_sec_1 .adu_service_box .over-lay {
	bottom: -170px;
}
#bathroom_sec.adu_sec_1 .adu_service_box:hover .over-lay {
	bottom: 0;
}


#bathroom_sec h4 {
	min-height: 92px;
	margin: 0;
	font-size: 21px;
}

#bathroom_sec_2 ul.bathroom-services {
	display: block;
}

#bathroom_sec_2 ul.bathroom-services  li.list-style-class {
	display: flex;
	align-items: center;
	font-size: 16px;
	text-align: start;
	justify-content: start;

	margin-bottom: 12px;
	gap: 10px;
	font-weight: normal;
}

#bathroom_sec_2 ul.bathroom-services  li i{
	display: flex;
	min-width: 30px;
	min-height: 30px;
	background-color: var(--theme-color-second);
	border-radius: 60px;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/* Blog Page Pagination CSS */
.center {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

a.page-numbers {
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	margin: 0 8px;
	border-radius: 8px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
	color: #000;
}

a.page-numbers:hover {
	background: rgba(0, 137, 208, 0.08);
	border-color: rgba(0, 137, 208, 0.18);
	color: #0089d0;
}

span.page-numbers.current {
	background: #0089d0;
	color: #fff;
	border-color: #0089d0;
	box-shadow: 0 6px 18px rgba(0, 137, 208, 0.12);
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid transparent;
}

.hidden-cat {
    display: none;
}

.after-before_sec .befor-boxx{
  border: 2px dashed var(--theme-color-second);
}

.after-before_sec .befor-boxx img{
  height: 220px;
}

/* New css */
#main_header .right-side a.btn-orange {
  background-color: orange;
}

#main_header.sticky-top-1.sticky .right-side a.vdio-test span {
/*   font-size: 11px; */
	font-size: 16px;
}
#main_header.sticky-top-1.sticky .right-side a.vdio-test {

  font-size: 14px;
  line-height: 1.5;
}
#main_header.sticky-top-1.sticky .right-side a.vdio-test {

  width: 8rem;

  line-height: 1.5;
}

#main_header.sticky-top-1.sticky a.navbar-brand {
  margin-right: 22px;
}

#main_header .hd_info.right-side {
    justify-content: end;
    flex-wrap: nowrap;
}
a.comon-btn.btn-dark {
    background: var(--theme-color-second) !important;
    font-size: 13px !important;
    color: #fff !important;
} 

#main_header .hd_info a.comon-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 7px 12px;
    height: 53px;
    align-items: center;
    width: 15rem;
    background: transparent;
/*     color: #000; */
	color: #0089d0;
    font-weight: 600;
    gap: 0;
/*     font-size: 19px; */
	font-size: 24px;
    border: none !important;
}
#main_header .right-side a.vdio-test span {
    font-size: 16px;
}

#main_header .right-side a.vdio-test {
  
    color: #fff;
    padding: 14px 15px;
    text-transform: uppercase;
    width: 9rem;
    text-align: center;
    font-weight: 800;
    display: block;
    font-size: 17px;
    line-height: 1.5;
}

#main_header.sticky-top-1.sticky .hd_info a.comon-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 7px 12px;
    height: 53px;
    align-items: center;
    width: 13rem;
    background: transparent;
/*     color: #000; */
	color: #0089d0;
    font-weight: 600;
    gap: 0;
/*     font-size: 18px; */
	font-size: 20px;
    border: none !important;
}

.architext img{
  height: 255px;
  object-fit: cover;
}

#image_d .owl-carousel .owl-item img{
/*    height: 255px; */
  object-fit: cover;
}

p a {
    color: var(--theme-color-second);
    display: inline-block;
}

.home_sec22 .odiv-box {
    position: relative;
}
.home_sec22 .over-lay-1 {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.home_sec22 .over-lay-1 a {
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 5px;
}

.home_sec22 .over-lay-1 a:hover{
  background-color: var(--theme-color-second);
}

#bathroom_sec_3 .feature h4 {
    font-size: 20px;
}
#bathroom_sec_3 .feature p {
    font-size: 15px !important;
    margin-bottom: 0 !important;
}
#bathroom_sec_3 .feature i {
    font-size: 45px;
}
#bathroom_sec_3 .feature h3 {
    font-size: 25px !important;
}
#bathroom_sec_2 ul.bathroom-services li.list-style-class {
    display: flex;
    align-items: center;
    font-size: 16px;
    text-align: start;
    justify-content: start;
    margin-bottom: 22px;
    gap: 10px;
    font-weight: normal;
}
a.comon-btn.K-R-BTN {
    WIDTH: 28rem !important;
}
.why-choose-section .feature img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}
.why-choose-section .feature_two img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}
.why-choose-section .feature_two h3 {
    font-size: 25px;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0;
}
#bathroom_sec_3 .feature_two p {
    font-size: 15px !important;
    margin-bottom: 0 !important;
}
.why-choose-section .feature_two {
    width: 100%;
    margin-bottom: 20px;
    /* background-color: #2a2a2a; */
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #0074B0;
    color: #000;
}
a.new-btn{
	width: 18rem;
}
.even-service h3.HR-heading, h3.HR-heading {
    padding: 0;
    border: none;
}
ul.list-bullet {
    list-style: disc;
    padding-left: 30px;
	text-align:start;
}
.od-service .item img {
    height: 430px;
    object-fit: cover;
}
.phone-new {
    font-size: 45px;
}