:root{
	--primary-color			: #192324;
	--secondery-color		: #F8F8F8;
	--text-color			: #283132;
	--accent-color			: #7C877F;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Hanken Grotesk", sans-serif;
	  --icon-font: "Font Awesome 6 Pro";
}
body{
	font-family: var(--default-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: #000;
}
p{
	line-height: 1.7em;
	margin-bottom: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	color: #192324;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}
html,body{
		width: 100%;
	overflow-x: hidden !important;
}
.main-heading{
    font-weight: 700;
    line-height: 1.1em;
    color: #d15901;
    font-size: 32px;
    margin-bottom: 0px;
}

.sub-head{
	 font-weight: 500;
    line-height: 1.1em;
    color: #0c4252;
    font-size: 30px;
    margin-bottom: 20px;
}

.p-heading{
	 font-weight: 500 !important;
    line-height: 1.1em;
    color:#000;
    font-size: 28px !important;
    margin-bottom: 20px;
}

.para{
	line-height: 1.7em;
	margin-bottom: 20px;
	text-align: justify;
	font-size: 17px;
	color: black;
	font-weight: 400;

}


.spacer-top{
	padding-top: 35px !important;
}

.spacer-bottom{
	padding-bottom: 35px !important;
}


@media (max-width: 1400px) {
 .spacer-top{
	padding-top: 25px !important;
}

.spacer-bottom{
	padding-bottom: 25px !important;
}
}


@media (max-width: 768px) {
 .spacer-top{
	padding-top: 20px !important;
}

.spacer-bottom{
	padding-bottom: 20px !important;
}
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
}

.reveal img{
    height: 100%;
    width: 100%;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
  background: linear-gradient(82deg, rgba(226,101,0,1) 4%, rgba(255,154,30,1) 49%, rgba(226,101,0,1) 80%);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border-radius: 25px;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    border: none;
}


.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../../bright-interior-image/web-images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}



.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}


.btn-default.btn-highlighted::before{
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before{
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after{
	background-color: var(--accent-color);
}



.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 30px;
}

.section-row .section-title{
	margin-bottom: 0;
	margin-right: 30px;
}

.section-btn{
	text-align: end;
}

.section-title-content{
	margin-left: 120px;
}

.section-title-content p{
	margin: 0;
}

.section-title{
	margin-bottom: 15px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.6em;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-left: 35px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
/*    background: url('../images/icon-sub-heading.svg');*/
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
    width: 24px;
    height: 5px;
}

.section-title h1{
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	
}

.section-title h2{
	font-size: 37px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 15px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
	width: 100%;
	z-index: 100;
/*background-color: black;*/
}

 .sticky{
	

width: 100%;

  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #192324;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  animation: stickyAni 0.4s ease-in-out;


}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 12px 0;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar{
	border-bottom: none;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
	gap: 16px;
}

.main-menu ul li{
	margin: 0 6px;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 600;
	padding: 12px 8px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}


.main-menu ul li.active a{
	color: #ff5500;
}
.main-menu ul li.submenu ul li.sub-active a{
	color: #ff5500;
}
.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: var( --icon-font);
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}


.main-menu .submenu .nav-item .nav-link:before{
	content: '\f78b';
	font-family: var( --icon-font);
	font-weight: 900;
	font-size: 14px;
	margin-right: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: #ff5500;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 266px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: white;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: black;
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
/*	background: var(--accent-color);*/
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: #192324;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav .slicknav_row, .slicknav_nav li.active a{
color: #ff5500;
}
.main-menu ul li.active ul li a{
	color: #000;
}
.responsive-menu .slicknav_menu ul li.active ul li a{
	color: #fff;
}
.responsive-menu .slicknav_menu ul li ul li.sub-active a{
	color: #ff5500;
}
.slicknav_nav .slicknav_row, .slicknav_nav li ul li.sub-active a{
	color: #ff5500;
}
.main-menu a {
    color: #000000;
}
.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: #fff;
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}
.slicknav_menu ul ul li a:before{
	    content: '\f78b';
    font-family: var(--icon-font);
    font-weight: 900;
    font-size: 14px;
    margin-right: 8px;

  
}
.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: var( --icon-font);
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: #fff;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	min-height: 100vh;
	margin-top: -118px;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 280px 0 250px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted{
	margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us{
	background-image: url('../../bright-interior-image/web-images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}

.about-us-images{
	position: relative;
	background-image: url(../../bright-interior-image/web-images/about-us-bg-shape.svg);
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 100px;
	padding-bottom: 180px;
	
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

.about-img-1 img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.5;
}

.about-img-2{
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
}

.about-img-2 img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.experience-counter{
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3{
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p{
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter{
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
    writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p{
	background-color: var(--primary-color);
}

.feedback-counter h3{
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}


.why-choose-us{
	padding: 10px 0 20px;
}

.why-choose-item{
	border: 2px solid var(--divider-color);
	border-radius: 15px;
	height: calc(100% - 30px);
	margin-bottom: 15px;
	padding: 30px;
}

.why-choose-item .icon-box{
	margin-bottom: 30px;
}

.why-choose-item img{
	border-radius: 5px;
	padding-bottom: 10px;
}

.why-choose-content{
	border-top: 2px solid var(--divider-color);
	padding-top: 15px;
	
}

.mai{
	border-top: none !important;
}
.why-choose-content a
{
margin-top: 10px;
    color: black;
    font-weight: 700;
}

.why-choose-content h3{
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;

}

.why-choose-content p{
	margin: 0;
}

.why-choose-counter h3{
	font-size: 56px;
	letter-spacing: -0.03em;
	line-height: 1.1em;
	margin-bottom: 5px;
}

.why-choose-counter p{
	text-transform: capitalize;
	margin: 0;
}

.why-choose-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.why-choose-image figure,
.why-choose-image img{
	height: 100%;
	border-radius: 40px;
}

.why-choose-image:hover img{
	filter: grayscale(80%);
}
.why-choose-item-content p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2{
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure{
	display: block;
}

.why-choose-img-1{
	width: calc(57% - 10px);
}

.why-choose-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2{
	width: calc(43% - 10px);
}

.why-choose-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3{
	width: calc(67% - 10px);
}

.why-choose-img-3 img{
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4{
	width: calc(33% - 10px);
}

.why-choose-img-4 img{
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

.about-us-content-list{
	margin-bottom: 20px;
}

.about-us-content-list ul{
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 40px;
}

.about-us-content-list ul li{
	position: relative;
	font-weight: 500;
	color: #000;
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-content-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: var( --icon-font);
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: #d15901;
    display: inline-block;
    top: 2px;
    left: 0;
}

.about-us-contact-list{
	width: calc(50% - 40px);
}

.about-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child{
	margin-bottom: 0;
}

.about-contact-item .icon-box{
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box{
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img{
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}

.about-contact-content{
	width: calc(100% - 55px);
}

.about-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content p{
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}



/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 100px 0;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	
	border-radius: 20px;
}

.service-image a{
	display: block;
	
}

.service-image a figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.service-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	transition: all 0.4s ease-in-out;
	border-radius: 20px;
}

.service-item:hover .service-image img{
	
	border-radius: 20px;
}

.service-btn{
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a{
	background-color: #d15901;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover{
	background-color: var(--primary-color);
}

.service-btn a img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img{
	transform: rotate(0)
}

.service-content{
	    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 0px 0px 9px 9px;
    z-index: 1;
    width: 100%;
    padding: 26px;
   
}

.service-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}
.service-content h4{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a{
	color: inherit;
}
.service-content h4 a{
	color: inherit;
}
.service-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn{
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
    overflow: hidden;
	z-index: 1;
}

.intro-video-image a{
	display: block;
	
}

.intro-video-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;	
	display: flex;
	align-items: center;
	justify-content: center;
	
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover{
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

	.caard{
		
		margin-bottom: 30px !important;
		text-align: center;
		    box-shadow: 0px 0px 10px 0px rgb(127 128 130 / 51%);
		    padding: 20px;
		    border-radius: 20px;
	}

	.caard ul li a:hover:before, .caard ul li a.active-btn:before, .caard ul li a:hover:after, .caard ul li a.active-btn:after{
	all: unset;
	}

	.caard ul li a{
		    padding: 11px 19px;
	} 
.caard ul{
	gap: 8px 2px !important;
} 
	.caard ul li a.active-btn{
		background-color: orange;
		    padding: 11px 38px;
		color: white;
		border-radius: 10px;
			}

.our-Project-nav{
	text-align: center;
	margin-bottom: 40px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul i{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0px !important;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul i{
	color: white !important;
}
.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before{
	content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after{
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after{
	transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn{
	position: absolute;	
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);	
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);	
}

.project-btn a{
	width: 60px;
	height: 60px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img{
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover{
	background: var(--primary-color);
}

.project-btn a:hover img{
	transform: rotate(0deg);
}

.project-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
}

.project-content{
	position: absolute;
	left: 40px;
	bottom: 20px;
	right: 40px;
}

.project-content h3,
.project-content h2{
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2{
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a{
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work{
	background: var(--primary-color);
	padding: 100px 0;
}

.how-we-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}



.how-we-work-item .icon-box{
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}

.how-we-work-item .icon-box img{
	max-width: 60px;
}

.how-we-work-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: black;
	margin-bottom: 10px;
	text-align: center;
}

.how-we-work-content p{
	color:black;
	margin: 0;
	text-align: center;
}

.how-work-company-slider{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo{
	text-align: center;
}

.how-work-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill{
	padding: 100px 0;
/*	background: url('../images/section-bg-shape-2.svg');*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar{
	margin-bottom: 18px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no{
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress{
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}





.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure{
	display: block;
}

.our-skill-img-1 img{
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2{
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img{
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3{
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img{
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: var(--secondery-color);
}

.our-testimonials .container-fluid{
	padding: 0;
}

.our-testimonials-image{
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img{
    width: 100%;
}

.our-testimonial-content{
	padding: 10px 46px;
}

.our-testimonial-content .section-title{
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider{
	width: 100%;
	max-width: 620px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper{
	
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 18px;
	color: #ffd700;
	margin-right: 2px;
}

.testimonial-rating i:last-child{
	margin-right: 0;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
	text-align: justify;
}
.testimonial-content .t-para{
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
	text-align: justify;
	line-height: 1.7em;
	font-weight: 400;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 15px;
}

.testimonial-body .author-image img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
}
.testimonial-head{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.testimonial-body .author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter{
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2{
	font-size: 58px;
}

.testimonial-client-rating{
	display: inline-block;
	background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i{
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p{
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0;
/*	background: url('../images/section-bg-shape-2.svg');*/
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 20px;
}

.post-featured-image a{
    
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 15px;
}

.post-item-content h3{
	color: var(--primary-color);
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a{
    color: inherit;
}

.post-item-btn a{
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px , -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after{
	transform: translate(2px , -50%);
}

.our-blog-footer{
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer{
	padding: 16px 0 0;
	background: var(--primary-color);
}

.main-footer .footer-header{
	border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 16px;
    padding-bottom: 14px;
    text-align: center;
}

.footer-social-links{
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.footer-social-link-title h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li{
	display: inline-flex;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 50%;
    height: 36px;
    width: 36px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i{
	font-size: 18px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: var(--accent-color);
}

.footer-social-links ul li a:hover i{
	color: var(--white-color);
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	color: var(--white-color);
/*	text-transform: capitalize;*/
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li a{
	display: block;
	color: inherit;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-box {
	display: flex;
	gap: 40px;
	justify-content: center;
}
.footer-contact-item .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box{
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i{
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content{
	width: calc(100% - 50px);
}

.footer-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p{
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control{
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletter-form button{
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i{
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i{
	color: var(--primary-color);
}
.fptp{
	color: white;
	font-size: 18px;
	line-height: 1.7em;
    margin-bottom: 16px;
    font-weight: 400;
}
.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	margin-top:1px;
	padding: 10px 0;
}
.fotul {
	    gap:20px;
    text-align: center;
}


.widget_nav_menu .menu-all-pages-container .menu li a {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.widget_nav_menu .menu-all-pages-container .menu li a i{
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-right: 8px;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
}
.footer-widget.widget_meta a:hover,.footer-widget.widget_pages a:hover,.footer-widget.widget_archive a:hover,.footer-widget.widget_categories a:hover,.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--theme-color)
}

.footer-widget.widget_meta a:hover:before,.footer-widget.widget_pages a:hover:before,.footer-widget.widget_archive a:hover:before,.footer-widget.widget_categories a:hover:before,.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color)
}

.footer-widget.widget_meta li>span,.footer-widget.widget_pages li>span,.footer-widget.widget_archive li>span,.footer-widget.widget_categories li>span,.footer-widget.widget_nav_menu li>span {
    width: auto;
    height: auto;
    position: relative;
    background-color: transparent;
    color: var(--body-color);
    line-height: 1
}

.footer-widget.widget_meta li:last-child a,.footer-widget.widget_pages li:last-child a,.footer-widget.widget_archive li:last-child a,.footer-widget.widget_categories li:last-child a,.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0
}

.footer-widget .recent-post {
    max-width: 315px;
    margin-top: -0.3em;
    margin-bottom: 28px
}

.footer-widget .recent-post .post-title {
    color: var(--white-color);
    font-weight: 500
}


.power{
	text-align: right;
}
.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('../../bright-interior-image/web-images/top-interiors-in-coimbatore.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 170px 0 80px;
	margin-top: -45px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 62px;
    font-weight: 700;
	color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    
}
.page-header-box .subban-head{
	display: inline-block;
	font-size: 62px;
    font-weight: 700;
	color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    font-size: 20px;
    color: var(--white-color);
}

.about-us.page-about-us{
	background: transparent;
}

.about-facility-list{
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item{
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-facility-item:hover .icon-box:before{
	transform: scale(1);
}

.about-facility-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.about-facility-content{
	width: calc(100% - 80px);
}

.about-facility-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p{
	margin-bottom: 0;
}

.vision-mission{
	padding: 50px 0 0px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
	    overflow-x: hidden;
}

.vision-mission-box{
	background-color: var(--secondery-color);
	padding: 45px 60px;

}

.vision-mission-item{
	position: relative;

}

.abimg{
	width: 100%;
	border-radius: 20px;
}



.bgp{
	border-right: 1px solid #b3b3b3d9;
	padding-right: 30px;
	   overflow: hidden;
}

@media (max-width: 1199px) {
    
.bgps{
	border-right: none;
	
}


.smmi1{
	display: flex;
	justify-content: center;
}

.mbt{
	text-align: center;
	margin-top: 10px;
}
}




@media (max-width:768px) {

    
.bgps1{
	border-right: none;
	
}
.service-benefit {
    padding: 0px 0 10px!important;
}

.bgp {
    padding-right: 0px; 
    overflow: hidden;
}

.smmi{
	display: flex;
	justify-content: center;
}

.mb-txt{
	text-align: center;
}
}


@media (max-width:990px) {


.mb-txt{
	text-align: center;
}

.contact-us-form .section-title{
	margin-top: 20px;
	text-align: center;
}
}

.vision-mission-item .icon-box{
	position: relative;
	width: 95px;
	height: 95px;
	background: #d15901;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.vision-mission-item .icon-box i{
	font-size: 34px;
	color: #fff;
}

.vision-mission-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
/*
.vision-mission-item:hover .icon-box:before{
	transform: scale(1);
}
*/
.vision-mission-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item .icon-box img{
	filter: brightness(0) invert(1);
}

.vision-mission-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content h5{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p{
	margin: 0;
	text-align: justify;
}

.best-selling{
	background: url(../images/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img{
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure{
	display: block;
}

.best-selling-content-img img{
	width: 100%;
	aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title{
	margin-bottom: 0;
}

.best-selling-iamge img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
    object-fit: cover;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	
}

.team-image figure{
	display: block;
}

.team-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img{
	transform: scale(1.1);
}

.team-readmore-btn{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a{
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover{
	background-color: var(--primary-color);
}

.team-readmore-btn img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img{
	transform: rotate(0deg);
}

.team-content{
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p{
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.our-faqs{
	padding: 100px 0;
}

.our-faqs-content{
	margin-right: 70px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 40px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
	align-items: start;
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span{
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: var( --icon-font);
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}

.faq-accordion .accordion-body{
	padding-right: 35px;
}

.faq-accordion .accordion-body p{
	margin: 0;
}

.our-faqs-image{
	text-align: right;
}

.our-faqs-image figure{
	display: block;
}

.our-faqs-image img{
	width: 100%;
	
}

.our-clients{
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box{
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo{
	text-align: center;
}

.our-client-slider .client-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.service-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
    margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
    margin: 0;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
	font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: var(--primary-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
	transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.sidebar-cta-image figure{
	display: block;
}

.sidebar-cta-image img{
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body{
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content{
	margin-bottom: 25px;
}

.sidebar-cta-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p{
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover{
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before{
    transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img{
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.cta-contact-item-content{
	width: calc(100% - 78px);
}

.cta-contact-item-content p{
	font-weight: 500;
	margin: 0;
}

.service-feature-image{
    margin-bottom: 40px;
}

.service-feature-image figure{
    display: block;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
	text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: var( --icon-font);
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list{
	width: calc(50% - 15px);
}

.service-entry-image figure{
	display: block;
}

.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul{
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose{
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 80px;
    letter-spacing: -0.02em;
}

.post-entry h2{
	font-size: 46px;
    letter-spacing: -0.02em;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project{
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-single-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item{
	display: flex;
	align-items: center;
    margin-bottom: 30px;
}

.project-detail-item:last-child{
	margin-bottom: 0;
}

.project-detail-item .icon-box{
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before{
	transform: scale(1);
}

.project-detail-item .icon-box i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i{
	color: var(--white-color);
}

.project-detail-content{
	width: calc(100% - 70px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
    display: block;
}

.project-single-image img{
	width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-info,
.project-design-info{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.project-entry p{
	margin-bottom: 20px;
	text-align: justify;
}

.project-entry p:last-child{
	margin-bottom: 0;
}

.project-entry ul{
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
}

.project-entry ul li{
	position: relative;
/*    font-weight: 500;*/
    color: #000;
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: var( --icon-font);
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: #d15901;
    display: inline-block;
    top: 2px;
    left: 0;
}

.project-gallery-images{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-gallery-img{
    width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure{
    display: block;
	
}

.project-gallery-img figure img{
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	
}

.page-gallery-box .photo-gallery figure{
	display: block;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0 50px;
}

.contact-us-image{
	height: 100%;
}

.contact-us-image figure{
	height: 100%;
	display: block;
}

.contact-us-image img{
	height: 100%;
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.962;
}

.contact-us-form{
	margin-left: 30px;
}

.contact-form .form-control{
       font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    background-color: var(--white-color);
    color: black;
    border: 1px solid #4a4a4a;
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    padding: 25px 17px;
}


.contact-form .form-control1{
       font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    background-color: var(--white-color);
    color: black;
    border: 1px solid #4a4a4a;
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    padding: 25px 17px;
    width: 100%;
}

.contact-form .form-control::placeholder{
	font-weight: 500;
	color: black;
}

.google-map{
	padding: 50px 0 100px;
}

.google-map .section-title{
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 500px;
}

.contact-info-box{
	
padding: 20px;
}

.contact-info-item{
	display: flex;
	margin-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #8f8f8fa6;

}

.contact-info-item:last-child{
	border-bottom: none;
}
.card4{
	padding: 20px 30px;
	border: 1px solid;
}
.contact-info-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0); /* Start small */
    transition: transform 0.4s ease-in-out; /* Smooth animation */
    z-index: 0;
}

.contact-info-item.active .icon-box:before {
    transform: scale(1); /* Grows to full size */
}


.contact-info-item .icon-box i{
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item.active .icon-box i{
	color: var(--white-color);
}

.contact-info-content{
	width: calc(100% - 80px);
}

.contact-info-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p{
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page{
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){
	
	.our-testimonial-content{
		padding: 10px 46px;
	}
}

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}

	.our-testimonial-content{
		padding: 10px 20px;
	}
}

@media only screen and (max-width: 991px){

	.navbar{
		padding: 10px 0;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
        border-bottom: 1px solid #ffffff1c;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.btn-default{
		padding: 14px 42px 14px 16px;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title{
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content{
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 15px;
		text-align: justify;
	}

	.hero{
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 180px 0 140px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p{
		font-size: 20px;
	}

	.about-us{
/*		padding: 50px 0;*/
	}

	.about-us-images{
		margin: 0 0 30px 0;
	}

	.experience-counter{
		height: 137px;
		width: 137px;
	}

	.experience-counter h3{
		font-size: 28px;
	}

	.about-us-content-list{
		margin-bottom: 30px;
	}

	.about-contact-item{
		margin-bottom: 30px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box{
		margin-right: 10px;
	}

	.why-choose-item-content{
		width: calc(100% - 70px);
	}

	.why-choose-images{
		margin-left: 0;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-image img{
		aspect-ratio: 1 / .7;
	}

	.service-btn{
		top: 20px;
		right: 20px;
	}

	.service-btn a{
		height: 50px;
		width: 50px;
	}

	.service-content{
		bottom: 0px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn{
		margin-top: 10px;
	}

	.video-play-button a{
		width: 80px;
		height: 80px;
	}

	.our-project{
		padding: 50px 0 20px;
	}




	.project-featured-image img{
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a{
		width: 80px;
		height: 80px;
	}

	.project-content{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work{
		padding: 50px 0;
	}

	.how-we-work-item{
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box{
		margin-bottom: 20px;
	}

	.how-work-company-slider{
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill{
		padding: 50px 0;
	}

	.our-skill-content{
		margin-bottom: 14px;
	}

	.skills-progress-bar{
		margin-bottom: 30px;
	}

	.our-skill-image{
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image{
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content{
		padding: 20px 15px 0px 15px;
	}

	.our-testimonial-content .section-title{
		background-size: contain;
	}

	.testimonial-slider{
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating{
		margin-bottom:15px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}
	.testimonial-content .t-para{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
		font-size: 48px;
	}

	.our-blog{
		padding: 50px 0;
	}

	.our-blog .section-title{
		margin-right: 0;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer{
		margin-top: 10px;
	}

	.main-footer{
		padding: 20px 0 0;
	}

	.main-footer .footer-header{
		margin-bottom: 5px;
		padding-bottom: 0px;
		border-bottom: 1px solid #192324;
	}

	.footer-links{
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-form p{
		margin-bottom: 20px;
	}

	.footer-copyright{
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header{
        padding: 130px 0 66px;
        margin-top: -36px;
    }

    .page-header-box h1{
        font-size: 50px;
    }
    .page-header-box .bn-title{
        font-size: 50px;
    }

	.page-header-box ol li.breadcrumb-item{
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 16px;
	}

	.about-facility-list{
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item{
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box{
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img{
		max-width: 20px;
	}

	.about-facility-content{
		width: calc(100% - 55px);
	}

	.about-facility-content h3{
		font-size: 18px;
	}

	.vision-mission{
		padding: 10px 0 25px;
	}

	.vision-mission-box{
        padding: 30px 15px;
      
    }



	.vision-mission-item::before{
		right: -20px;
	}

	.vision-mission-item .icon-box{
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img{
		max-width: 30px;
	}

	.vision-mission-content h3{
		margin-bottom: 15px;
	}
	.vision-mission-content h5{
		margin-bottom: 15px;
	}

	.best-selling{
		padding: 25px 0 50px;
	}

	.best-selling-content{
		margin-bottom: 20px;
	}

	.best-selling-content-img{
		margin-bottom: 20px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-readmore-btn{
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a{
		width: 50px;
		height: 50px;
	}

	.team-content{
		margin-bottom: 15px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
		padding-bottom: 16px;
	}

	.our-faqs-image{
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 0.8;
	}

	.our-clients{
		padding: 50px 0;
	}

	.our-clients .our-clients-box{
		max-width: 100%;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li{
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body{
		padding: 20px;
	}

	.sidebar-cta-content{
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item{
		margin-bottom: 15px;
	}

	.service-feature-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry ul li{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before{
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose{
		margin-bottom: 30px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 38px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		padding: 6px 15px;
	}

	.page-project{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-single-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image{
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info{
		margin-bottom: 30px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li{
        margin-bottom: 15px;
    }

	.faq-catagery-list ul li a::before{
        width: 16px;
        height: 16px;
    }

	.our-faq-section.page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-image{
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img{
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form{
		margin-left: 0;
	}

	.google-map{
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 400px;
	}


	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i{
		font-size: 16px;
	}

	.contact-info-content{
		width: calc(100% - 60px);
	}

	.contact-info-content h3{
		font-size: 18px;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 16px;
	}

	.section-title h1{
		font-size: 28px;
	}

	.service-benefit .service-benefit-item {
    	padding: 20px 20px 20px 20px!important;
	}

	.service-benefit-item .icon-box {
		margin-bottom: 15px!important;
	}
	.service-benefit-item .service-benefit-content h3 {
    	font-size: 22px!important;
	}

	.service-benefit-item .service-benefit-content h5 {
    	font-size: 22px!important;
	}

	.hero-content .btn-default.btn-highlighted{
		margin: 0;
	}

	.about-us-images{
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter{
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p{
        font-size: 12px;
        height: 38px;
        width: 38px;
        margin: 0 0 6px 0;
    }

	.feedback-counter h3{
		font-size: 12px;
        width: calc(100% - 40px);
	}

	.about-img-2{
		max-width: 240px;
	}

	.experience-counter{
        height: 102px;
        width: 102px;
    }

	.experience-counter h3{
        font-size: 22px;
    }

	.experience-counter p{
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body{
		gap: 0px;
	}

	.about-us-content-body::before{
		display: none;
	}

	.about-us-content-info{
		width: 100%;
/*		border-bottom: 1px solid var(--divider-color);*/
/*		padding-bottom: 15px;*/
		margin-bottom: 10px;
	}
	.container-counter-about-page {
    	padding: 20px 11px!important;
	}
	.stri h1 {
    	font-size: 34px!important;
    	line-height: 48px!important;
	}
	.strip-head{
		font-size: 34px !important;
    	line-height: 48px !important;
	}

	.about-us-content-list{
        margin-bottom: 20px;
    }

	.about-us-contact-list{
		width: 100%;
	}

	.about-us-content-list ul li{
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before{
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item{
		margin-bottom: 20px;
	}

	.about-contact-content h3{
		font-size: 18px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img{
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img{
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3{
		font-size: 22px;
	}
	.service-content h4{
		font-size: 22px;
	}
	.intro-video-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a{
        width: 60px;
        height: 60px;
    }

	.project-btn img{
		max-width: 20px;
	}

	.project-content h2{
		font-size: 18px;
	}

	.how-we-work-item{
		width: 100%;
	}

	.how-we-work-item .icon-box img{
		max-width: 50px;
	}

	.how-we-work-content h3{
		font-size: 18px;
	}

	.how-work-company-slider{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image{
		padding-bottom: 0px;
	}

	.our-skill-img-1{
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2{
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3{
		width: 200px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-rating i{
		font-size: 16px;
	}

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
        font-size: 16px;
    }
    .testimonial-content .t-para{
        font-size: 16px;
    }

	.testimonial-body .author-content h3{
		font-size: 18px;
	}
	.testimonial-head{
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2{
        font-size: 38px;
    }

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-content{
		margin-bottom: 10px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-social-links{
		justify-content: start;
		gap: 20px;
	}

	.footer-social-link-title h3{
		font-size: 18px;
	}

	.footer-links h3{
		margin-bottom: 15px;
	}

	.footer-links ul li{
		margin-bottom: 5px;
	}
	
	.footer-copyright{
		padding: 15px 0;
	}

	.page-header-box h1{
		font-size: 28px;
		margin-bottom: 5px;
	}
	.page-header-box .subban-head{
		font-size: 28px;
		margin-bottom: 5px;
	}
	.page-header-box .bn-title{
		font-size: 28px;
		margin-bottom: 5px;
	}

	.page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 14px;
	}

	.about-facility-item{
        width: 100%;
    }

	.vision-mission{
		background: linear-gradient(180deg, var(--white-color) 40%, var(--white-color) 40%);
	}
	.vision-mission .section-title h2{
		color: #000;
	}

	.vision-mission-box{
        padding: 20px;
        gap: 10px;
    }

	.vision-mission-item{
		width: 100%;
	}

	.vision-mission-item::before{
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before{
		display: block;
	}

	.vision-mission-item:last-child::before{
		display: none;
	}
	
	.vision-mission-content h3{
		font-size: 18px;
	}
	.vision-mission-content h5{
		font-size: 18px;
	}

	.team-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 2px;
	}

	.faq-accordion .accordion-body{
		padding-right: 0;
	}

	.our-faqs-image img{
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3{
		font-size: 18px;
	}

	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-feature-image{
        margin-bottom: 20px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.7;
    }

	.service-entry-list-image{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 26px;
	}

	.project-single-image{
        margin-bottom: 20px;
    }

	.project-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight{
		margin-bottom: 20px;
	}

	.project-entry h2{
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
		padding-top: 20px;
		text-align: justify;
	}

	.project-entry ul li{
        margin-bottom: 10px;
        text-align: justify;
    }

	.project-entry ul li::before{
        font-size: 18px;
        top: 5px;
    }

	.project-gallery-images{
		gap: 20px;
	}

	.project-gallery-img{
		width: calc(50% - 10px);
	}

	.contact-us-image img{
        aspect-ratio: 1 / 0.75;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

	.contact-info-item {
		width: 100%;
    	margin-top: 20px;
    	padding-bottom: 20px;
	}

	.error-page-image img{
        max-width: 100%;
    }
}



.container-counter-about-page {
  padding: 70px 40px;
  border-radius: 32px;
 /* background: var(--counter-about);*/
  border: 0px solid #bcbfdb65;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
/*  background-image: url(../images/rofbg.jpg);*/
background: #ffa25d;
  background-attachment: fixed;
  position: relative;
  box-shadow:rgba(0,0,0,.9);
}

.testi-seg .single-testimonials-area{
background: radial-gradient(circle farthest-corner at center center, #ffffff9e 0%, #ffffffd1 100%) !important;
box-shadow: 1px 1px 20px 0px #a6a6a6;
}

.container-counter-about-page:before {
    content: "";
   position: absolute;
    left: 1.1%;
    top: 5%;
    right: 0%;
    width: 98%;
    bottom: 0;
    height: 90%;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    /*box-shadow: inset 0 0 300px 0px white, 3px 1px 14px 3px #9c9c9c;*/
    box-shadow: inset 0 0 300px 0px white;
    z-index: 0;
}
.count-r .single-counter-up{
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .container-counter-about-page {
    flex-wrap: wrap;
  }
}
.container-counter-about-page .single-counter-up {
  text-align: center;
  flex-basis: 25%;
  border-right: 1px solid #00000065;
}
@media (max-width: 991px) {
  .container-counter-about-page .single-counter-up {
    flex-basis: 50%;
    margin: 17px 0px !important;
    border: none;
  }
  .container-counter-about-page{
    align-items: inherit;
  }
}
@media (max-width: 450px) {
  .container-counter-about-page .single-counter-up {
    width: 50%;
  }
}
.container-counter-about-page .single-counter-up:last-child {
  border: none;
}
.container-counter-about-page .single-counter-up .icon img {
 width: 120px;
}
.container-counter-about-page .single-counter-up .title {
  margin-bottom: 3px;
  font-size: 1.75rem;
}

.single-testimonials-area {
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--testimonial-single-bg);
  padding: 35px;
  display: block;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .single-testimonials-area {
    padding: 14px;
  }
  .single-testimonials-area p.disc {
    max-width: 100% !important;
}
.single-testimonials-area .logo {
    margin-bottom: 12px !important;
}
}
.single-testimonials-area .logo {
  margin-bottom: 24px;
}


.fot{
	
	position: relative;
}


.fotli{
	position: relative;
	display: inline-block;
}
@media (max-width: 768px) {
 .fotli a{
 	padding: 0 0 0 10px !important;
 }


 .fptp{
 	text-align: justify !important;
 	margin-bottom: 12px;
 }


}


@media (max-width: 445px) {
  .tet-cn{
 	text-align: left !important;
 }
}

.tet-cn{
 	text-align: center;
 }

.fotli a{
	font-size: 17px;
    font-weight: 400;
    padding: 0 0 0 20px;
    font-family: var(--body-font);
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
}


.fotli a i {
	color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-right: 8px;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
}

.noa{
	 padding: 0 0 0 0px !important;

}

.fot-item{
	 padding: 0 0 0 20px;
}

.stri{
	padding-top: 75px !important;
    padding-bottom: 60px !important;
    background:linear-gradient(rgb(0 0 0 / 6%), rgb(0 0 0 / 45%)), url(../../bright-interior-image/web-images/home/shuttle-courts-in-thudiyalur.webp);
     background-attachment: fixed;
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center center;
}

.stri h1{
	font-size: 48px;
	line-height: 65px;
}

.slider-arrow{
	all: unset;
    background-color: #d15901;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    margin-top: 25px;
    color: #fff;
}

.service-benefit{
	padding: 0px 0 50px;
/*	background: url('../images/service-benefit-bg.jpg') no-repeat center center;*/
	background-size: cover;
	position: relative;
}

.service-benefit::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 70%;
    z-index: 0;
}

.service-benefit .service-benefit-item{
	background: var(--white-color);
	padding: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.service-benefit-item .icon-box{
	margin-bottom: 25px;
}
.service-benefit-item .icon-box i{
	color: #d15901;
	font-size: 50px;
}

.service-benefit-item .service-benefit-content h3{
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.service-benefit-item .service-benefit-content h5{
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.service-benefit-item .service-benefit-content p{
	color: var(--text-color);
	margin: 0;
}

.service-benefit-item .service-benefit-content h6{
	color: var(--text-color);
	margin: 0;
}


.work-process-area .section-title h2 {
	max-width: 550px;
	margin-left: auto;
	margin-right: auto
}

.work-process-left {

	padding: 185px 50px;
	border-radius: 10px;
	position: relative;
	z-index: 1;
	min-height: 482px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../images/jpy.gif)
}

.work-process-left::before {
	content: '';
	position: absolute;
	z-index: -1;
	opacity: .2;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	
}

.work-process-left .section-title {
	margin-bottom: 30px
}

.work-process-left .section-title h2 {
	color: #fff
}

.work-process-left .default-btn {
	margin: 0 auto
}

.work-process-card {
	background-color: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	padding: 30px 20px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
	min-height: 226px;
}

.work-process-card::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 105px;
	height: 55px;
	background-color: #192324;
	border-radius: 0 0 0 270px;

	-webkit-transition: .7s;
	transition: .7s
}

.work-process-card i {
	font-size: 60px;
	color: #0071dc;
	line-height: 1.2
}

.work-process-card h4 {
	margin-top: 15px;
	margin-bottom: 10px;
	color: #d34c07;
}

.work-process-card p {
	margin-bottom: 0
}

.work-process-card .number {
	font-size: 24px;
	color: white;
	font-weight: 600;
	position: absolute;
	top: 5px;
	right: 15px
}

.work-process-area-two {
	position: relative
}

.work-shape {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center
}
.backToTopBtn {
      position: fixed;
    bottom: 65px;
    right: 35px;
    z-index: 1;
    height: 45px;
    width: 45px;
    font-size: 20px;
    border: none;
    color: #cccccc;
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
      background: #d15901;
    color: #ffffff;

}


.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 120px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

a.blantershow-chat {
background: #fff;
color: #404040;
position: fixed;
display: flex;
font-weight: 400;
justify-content: space-between;
z-index: 10;
bottom: 172px;
right: 40px;
font-size: 18px;
padding: 4px;
border-radius: 30px;
box-shadow: 0 1px 15px rgb(32 33 36 / 61%);
}

a.blantershow-chat svg {
  transform: scale(1.2);
  /*margin: 0 10px 0 0;*/
}

.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff !important;
  padding: 20px;
}

.header-chat h3 {
  margin: 0 0 10px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  border-radius: 100%;
  width: 50px;
      background: #fff;
    padding: 3px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}

a.informasi:hover {
  background: #f1f1f1;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}

#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 47px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
  background: white;
}

a#send-it {
  /*width: 30px;*/
  font-weight: 700;
  padding: 10px 10px 0;
  background: #eee;
 /* border-radius: 10px;*/
}
a#send-it svg {
  fill: #a6a6a6;
  height: 24px;
  width: 24px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}
.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.start-chat .blanter-msg {
  display: flex;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}

@keyframes ZpjSY {
  0% {
    background-color: #b6b5ba;
  }
  15% {
    background-color: #111111;
  }
  25% {
    background-color: #b6b5ba;
  }
}
@keyframes hPhMsj {
  15% {
    background-color: #b6b5ba;
  }
  25% {
    background-color: #111111;
  }
  35% {
    background-color: #b6b5ba;
  }
}
@keyframes iUMejp {
  25% {
    background-color: #b6b5ba;
  }
  35% {
    background-color: #111111;
  }
  45% {
    background-color: #b6b5ba;
  }
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
@media screen and (max-width: 1200px) {
.index-page.show{
  display: none !important;
}
}

#whatsapp-chat.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

#whatsapp-chat.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 0px;
  background-color: #e6ddd4;
  position: relative;
}
.whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
/*  background-image: url("../images/web-images/whatsapp-bg.png");*/
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: white;
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: #9e9da2;
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: #b6b5ba;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding:0px;
  /*background-color: white;*/
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  /*box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;*/
  margin-top: 4px;
  margin-left: 10px;
  max-width: calc(100% - 66px);
}
.kAZgZq::before {
  position: absolute;
/*  background-image: url("../images/web-images/side-extend.png");*/
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}
.welcome-text{
    max-width: 100%;
    margin-bottom: 5px;
}

.whatt{
  min-height: 0px !important;
}

.mfp-img {
    max-width: 700px !important;
    max-height: 500px !important;
    margin: auto;
}

@media (max-width: 768px) {
.mfp-img {
    max-width: 300px !important;
    max-height: 400px !important;

}

}


.bann-txt{
    top: 90px !important;
    position: absolute !important;
font-family: work sans,sans-serif !important;
letter-spacing: px !important;
    opacity: 1 !important;
    font-size: 35px !important;
    z-index: 1 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #fff !important;
   
}
.bann-txt-1{
    width: 825px !important;
    height: 100px !important;
    top: 150px !important;
    position: absolute !important;
    font-family: work sans,sans-serif !important;
letter-spacing: 0px !important;
    opacity: 1 !important;
    font-size: 35px !important;
    z-index: 1 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #fff !important;
   
}
.bann-txt-2{
    top: 90px !important;
    position: absolute !important;
     font-family: work sans,sans-serif !important;
letter-spacing: 0px !important;
    opacity: 1 !important;
    font-size: 70px !important;
    z-index: 1 !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #fff !important;
   	margin-bottom: 0px;
}
.op-cha-1
{
    opacity: 1 !important;
}


.why-choose-us1{
	padding: 100px 0;
	background-color: var(--secondery-color);
}

.why-choose-item-list1{
	margin-top: 30px;
}
.why-choose-item1{
	display: flex;
	border-bottom: 1px solid #abababa1;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item1:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item1 .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: #d15901;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item1 .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #d15901;
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item1 .icon-box {
	font-size: 25px;
	color: #fff;
}

.why-choose-item1 .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item1 .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content1{
	width: calc(100% - 80px);
}

.why-choose-item-content1 h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.why-choose-item-content1 h5{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.why-choose-item-content1 p{
	color: var(--primary-color);
	margin-bottom: 0;
}



/*Testimonials*/

.our-testimonial1{
	padding: 100px 0;
}


.testimonial-item1{
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 20px;
}

.testimonial-header1{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 16px;
	padding-bottom: 20px;
}

.testimonial-rating1{
	margin-bottom: 30px;
}

.testimonial-rating1 i{
	font-size: 20px;
	color: #ffd700;
}

.testimonial-content1 p{
	margin: 0;
}

.testimonial-body1{
	display: flex;
	align-items: center;
}

.author-image{
	margin-right: 20px;
}

.author-image img{
	width: 65px;
	height: 65px;
	border-radius: 50%;
}

.author-content{
	width: calc(100% - 85px);
}

.author-content h3{
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-slider1 .swiper-pagination{
	position: relative;
	text-align: center;
	bottom: 0px;
	margin-top: 30px;
}

.testimonial-slider1 .swiper-pagination .swiper-pagination-bullet{
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: var(--accent-color);
	opacity: 1;
	margin: 0px 6px;
}

.testimonial-slider1 .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--primary-color);
	opacity: 1;
}

.service-one {
  position: relative;
  padding-top: 107px;
  padding-bottom: 120px;
}

.service-one__item {
	margin-top: 1px;
	margin-bottom: 25px;
}
.service-one__item__image {
  position: relative;
}
.service-one__item__image > img {
  width: 100% !important;
  transition: all 0.5s ease;
      min-height: 380px;
    height: 100%;
    max-height: 380px;

}

.service-one__item__icon {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  left: 29px;
  z-index: 1;
  background-color: var(--wallpi-black2, #4a3626);
  border: 1px solid var(--wallpi-white, #fff);
  transition: all 0.5s ease;
}
.service-one__item__icon > i {
  font-size: 52px;
  color: var(--wallpi-white, #fff);
  transition: all 0.5s ease;
}

.service-one__item__info {
  background-color: var(--wallpi-white, #fff);
  position: relative;
  padding: 26px 50px 38px 32px;
}


.service-one__item__title > a {
  color: var(--wallpi-text, #2a2826);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-size: 17px;
}


.service-one__item__text {
  color: var(--wallpi-text-gray, #716a63);
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
}

.service-one .sercives-arrow-right {
  position: absolute;
  right: 0;
  top: -28px;
  background-color: #d15901;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0 0 30px;
  padding-right: 10px;
  padding-left: 21px;
}
.service-one .sercives-arrow-right > i {
  font-size: 14px;
  line-height: 1;
  color: var(--wallpi-white, #fff);
}
.service-one--two {
  background-color: var(--wallpi-white, #fff);
  background-image: none;
  padding-bottom: 110px;
  padding-top: 108px;
}
@media (max-width: 991px) {
  .service-one--two {
    padding-top: 58px;
    padding-bottom: 65px;
  }
}
.service-one--two .service-one__sec-title-wrap {
  padding-bottom: 72px;
}
@media (max-width: 991px) {
  .service-one--two .service-one__sec-title-wrap {
    padding-bottom: 40px;
  }
}
.service-one--two .sec-title {
  text-align: center;
  width: calc((100% - 0px) / 1);
  padding-bottom: 0;
}
.service-one--two .sec-title__tagline::before, .service-one--two .sec-title__tagline::after {
  margin: 0 auto;
}
.service-one--two .sec-title__tagline::after {
  height: 1px;
}
.service-one--two .sec-title__title {
  color: var(--wallpi-text, #2a2826);
  text-align: center;
  margin-top: 0;
}
.service-one--two .service-one__item__icon {
  left: 16px;
  top: 16px;
}
.service-one--two .service-one__item__icon > i {
  font-size: 34px;
}
.service-one--two .service-one__item__info {
  position: absolute;
  width: calc((100% - 53px) / 1);
  left: 38px;
  bottom: 48px;
  z-index: 1;
  border-radius: 30px;
  padding: 18px 70px 20px 22px;
}
.service-one--two .service-one__item__title {
  margin-bottom: 0;
}
.service-one--two .sercives-arrow-right {
  top: 0;
  height: 100%;
  padding-right: 21px;
  padding-left: 30px;
}



.testio{
	margin-bottom: 15px;
	margin-top: 15px;
}


.image-grid {
  padding: 12px;
}

.image-row {
  display: flex;  
}

.image-row .image {
  margin: 12px;
  height: 240px;  
}

.image { 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 
              0 4px 10px rgba(0, 0, 0, 0.10),
              0 4px 10px rgba(0, 0, 0, 0.5);
}

.image-01 {
  background-image: url('../images/gallery/g1.jpeg'); 
  flex: 1;  
}

.image-02 {
  background-image: url('../images/gallery/g02.jpeg'); 
  flex: 1;  
}

.image-03 {
  background-image: url('../images/gallery/g03.jpeg');  
  flex: 1;  
}

.image-04 {
  background-image: url('../images/gallery/g4.jpeg');  
  flex: 1;  
}
.image-06 {
  background-image: url(../images/gallery/g6.jpeg);  
  flex: 2;
}

.image-07 {
  background-image: url(../images/gallery/g7.jpeg); 
  flex: 1;
}

.image-08 {
  background-image: url(../images/gallery/g8.jpeg);  
  flex: 2;
}

.image-09 {
  background-image: url(../images/gallery/g9.jpeg);  
  flex: 1;
}

.image-10 {
  background-image: url(../images/gallery/g10.jpeg); 
  flex: 1;
}

.image-11 {
  background-image: url(../images/gallery/g11.jpeg); 
  flex: 1;
}

.image-12 {
  background-image: url('../images/gallery/g2.jpeg'); 
  flex: 1;
}

@media screen and (max-width: 768px) {
  .image-row {
    flex-direction: column;
  }
  .image-row .image {
    flex-basis: auto;
  }
  .testimonial-header1 {
    margin-bottom: 10px;
    padding-bottom: 15px;
  }
  .testimonial-rating1 {
    margin-bottom: 15px;
  }
  .testimonial-item1 {
    padding: 20px;
  }
  .contact-info-box {
    padding: 0px;
  }
  .card4 {
    padding: 20px 15px;
  }
  .contact-form .form-control {
    padding: 14px 17px;
  }
  .contact-form .form-control1 {
    padding: 14px 17px;
  }
}
.gtp{
	margin:8px 0px;
}
.phon1 {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 9;
    width: 40px;
}
/*karthika*/

.des-view{
  display: block;
}
.mb-view{
  display: none;
}

@media only screen and (max-width: 991px){
.des-view{
  display: none;
}
.mb-view{
  display: block;
}
.mb-text-center{
  text-align: center!important;
}
}
/*blog*/
.blog-card-wrap.style1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .blog-card-wrap.style1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .blog-card-wrap.style1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-card.style1 {
    position: relative;
    padding: 24px;
    max-width: 400px;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.blog-card-thumb.style1 {
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.blog-card-thumb.style1 img {
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.tag-cloud {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 12px;
    margin-bottom: 5px;
    color: #d15901;
}
.meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.meta .text {
    color: #d15901;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}
.blog-title.style1 {
    margin-bottom: 12px;
}
.blog-title.style1 a {
    color: #17012C;
    font-family: var(--title-font);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.blog-card.style1 .blog-card-body .btn-wrapper a {
    color: #000;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
}
.blog-card.style1 .calendar {
    position: absolute;
    top: 236px;
    left: 230px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 8px;
}
.blog-card.style1 .calendar .date {
    padding: 10px 18px;
    color: #fff;
    text-align: center;
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 3px;
    border-radius: 10px;
    background-color: #d15901;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.blog-card.style1 .calendar .month {
    color: #000;
    text-align: center;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.blogwordswrp-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    height: 62px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*blog details*/
.blog-single {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.blog-single .blog-audio, .blog-single .blog-img, .blog-single .blog-video {
    position: relative;
    overflow: hidden;
}
.border-radius img {
    border-radius: 20px;
}
.blog-single .blog-content {
    margin: 0 0 0 0;
    padding: 40px 40px 0px 40px;
    position: relative;
}
.blog-single .blog-meta {
    margin: -0.35em 0 10px 0;
}
.blog-meta span i, .blog-meta i {
    margin-right: 6px;
    color: #d15901;
    margin-left: 5px;
}
.sidebar-area {
    margin-bottom: -10px;
    color: #d15901;
}
.widget {
    padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
    background-color: #F5F5F5;
    margin-bottom: 40px;
    position: relative;
    border-radius: 5px;
}
.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 28px 0;
}
.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.recent-post .media-img {
    margin-right: 15px;
    width: 80px;
    overflow: hidden;
    border-radius: 5px;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.recent-post .post-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px 0;
    font-family: var(--title-font);
    text-transform: capitalize;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.recent-post .recent-post-meta i {
    margin-right: 6px;
    color: #d15901;
}
@media (min-width: 1400px) and (max-width: 1920px) {
.blog-card.style1 .calendar {
    top: 286px;
    left: 280px;
}
}
.norecord-title{
	font-size: 30px;
	text-align: center;
	margin: 20px 0;
}

/*SEO*/
.seo-hide{
	font-size: 1px;
	color: #fff;
	margin: 0;
	padding: 0;
}
.sm-title{
	text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
}
.lg-title{
	font-size: 34px !important;
}
.clr-main{
	color: #d15901 !important;
}
.strip-head{
	font-size: 48px;
    line-height: 65px;
}
.bn-title{
	display: inline-block;
    font-size: 62px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
@media (max-width:992px){
	.pc-v{
		display: none;
	}
	.mb-v{
		display: block;
	}
	.mb-center{
		text-align: center;
	}
	.lg-title {
		font-size: 30px !important;
	}
	.section-title h2 {
        font-size: 30px;
    }
    .mb-p-0{
    	padding: 0 !important;
    }
}
@media (min-width:992px){
	.pc-v{
		display: block;
	}
	.mb-v{
		display: none;
	}
}

.clr-white{
	color: #fff;
}
.f-32{
	font-size: 32px;
}
.service-head{
	padding: 20px 0;
    text-align: center;
    font-size: 32px;
    color: #fff !important;
    position: relative;
}
.marquee {
    padding: 10px 0;
    background: linear-gradient(180deg, var(--primary-color) 60%, var(--primary-color) 40%);

}
.margquee-list{
	font-size: 22px;
	color: #fff;
	font-weight: 500;
}