

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	    --pbmit-global-color-rgb: 56, 112, 255;
	    --chief-dark-y              : #d39933;
	    --chief-yellow-lite         : #f9eb85;
	    --chief-blue                : #2c21a8;
		--chief-gray                : #212733;
		--chief-pink-blue: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
	    --primary-color				: #000000;
	    --secondary-color			: #FAFAFA;
	    --text-color				: #666666;
	    --accent-color				: #2c21a8;
	    --accent-secondary-color: #f1c942;
	    --white-color				: #FFFFFF;
	    --divider-color				: #6666661A;
	    --dark-divider-color		: #FFFFFF1A;
	    --error-color				: rgb(230, 87, 87);
	    --default-font				: "Archivo", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background-color: var(--white-color);
}
.text-gold {color: var(--accent-secondary-color) !important;}
::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-secondary-color);
}

::selection{
	color: var(--secondary-color);
	background-color: var(--primary-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin : 0;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.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;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.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;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: linear-gradient(to right, var(--chief-dark-y), var(--chief-yellow-lite));
	color: #000000;
	border: none;
	border-radius: 12px;
	padding: 18px 54px 18px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background: transparent;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 34px;
	height: 34px;
	background-color: #ffffff;
	background-image: url('../img/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 8px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--white-color);
}

.btn-default::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--bs-black);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

.btn-default.btn-highlighted{
	background: var(--chief-pink-blue);
	color: #000000;
	background-image: linear-gradient(to right, var(--chief-dark-y), var(--chief-yellow-lite));
}

.btn-default.btn-highlighted::before{
	background-color: #ffffff;
	background-image: url('../img/arrow-black.svg');
}

.btn-default.btn-highlighted:hover::before{
	/* background-color: var(--primary-color); */
}

.btn-default.btn-highlighted::after{
	background-color: var(--bs-body-bg);
}

.readmore-btn{
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	text-transform: capitalize;
	display: inline-block;
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.readmore-btn::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 0;
    width: 22px;
    height: 22px;
    background-image: url('../img/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translate(-3px, -50%);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn:hover::before{
	filter: brightness(0) invert(0);
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: var(--chief-dark-y);
}
.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--chief-dark-y);
	padding-left: 15px;
	margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-secondary-color);
	border-radius: 50%;
    transform: translateY(-50%);
}

.section-title h1{
	font-size: 60px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--chief-dark-y);
} 

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p{
	color: var(--white-color);
}

.dark-section .section-title h1 span,
.dark-section .section-title h2 span{
	color: var(--accent-secondary-color);
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}

.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		 ****/
/************************************/

.topbar{
	background: var(--chief-blue);
	padding: 8px 0;
}

.topbar-contact-info ul{
	list-style: none;
    padding: 0;
    margin: 0;
	line-height: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.topbar-contact-info ul li a{
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover{
	color: var(--accent-color);
}

.topbar-contact-info ul li a i{
    font-size: 16px;
	color: inherit;
    margin-right: 8px;
}

.topbar-social-links{
    text-align: right;
}

.topbar-social-links ul{
    list-style: none;
    line-height: 1em;
    padding: 0;
    margin: 0;
}

.topbar-social-links ul li{
    display: inline-block;
    border-right: 1px solid #ffffff40;
    margin-right: 15px;
    padding-right: 15px;
}

.topbar-social-links ul li:last-child{
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.topbar-social-links ul li a{
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-transform: capitalize;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover{
	color: var(--accent-color);
}

.topbar-social-links ul li a svg{
    width: 20px;
    color: inherit;
    height: 20px;
}

.head_logo {
    /* width: 160px; */
    /* height: 64px; */
    display: flex;
    align-items: center;
}
.head_logo a{}
.head_logo img.main-logo {display:block;/* width: 375px; *//* height: 100px; */}
.head_logo img.main-scroll {display:none}


.main-header.sticky{position: fixed;background-color: #000000;/* position: fixed; */box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);animation: slideDown 0.35s ease-out;}
.main-header.sticky .main-menu ul li.nav-item a {color: #ffffff;}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}







.head_logo a img{
    width: 160px;
    display: none;
}
.header-btn .btn-default.btn-highlighted {
}
.header-btn .btn-default.btn-highlighted:hover {color:#000}
.header-btn .btn-default.btn-highlighted::before {
    /* background-color: var(--accent-secondary-color); */
    /* background-image: url(../img/arrow-white.svg); */
}
header.main-header{
	position: absolute;
	/* background-color: #000000ba; */
	/* border-bottom: 1px solid var(--dark-divider-color); */
	z-index: 100;
	width: 100%;
	top: 0;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.4s ease-in-out;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background-color: var(--accent-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 2px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
	justify-content: end;
	width: 100%;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item a{
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	padding: 10px !important;
	color: #ffffff;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 2px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-secondary-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--chief-pink-blue);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul li a {color: var(--bs-nav-link-hover-color) !important;}
.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,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.nav-item a{
	color: var(--primary-color);
	padding: 8px 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(--accent-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
}

.responsive-menu{
	top: 0;
	position: relative;
}



/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero_slider {
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.hero_slider .carousel{
    height: 100%;
}
.hero_slider .carousel-inner{
    height: 100%;
}
.hero_slider .carousel-inner .carousel-item{
    height: 100%;
}
.hero_slider .carousel-inner .carousel-item img{
    height: 100%;
    object-fit: cover;
}
.hero_slider .slider_nav {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}
.hero_slider .slider_nav button {
    position: relative;
    width: 60px;
    background: var(--accent-color);
    opacity: 1;
    height: 60px;
    border-radius: 10px;
}
.hero_slider .slider_nav .carousel-control-prev{}
.hero_slider .slider_nav .carousel-control-next{}




/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker{
	background: var(--accent-secondary-color);
	padding: 25px 0;
}

.scrolling-ticker-box{
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 30s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content img{
	width: 100%;
	max-width: 135px;
	height: 30px;
}



/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/

.our-services{
	background: var(--secondary-color) url('../img/service-bg.svg') no-repeat;
	background-size: 100% auto;
	background-position: center center;
	padding: 60px 0;
}
.service_gird {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.service_gird .ser_box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.service_gird .ser_box:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: #00000099;
    }
	
.service_gird .ser_box:hover::after {    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;}
.service_gird .ser_box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgb(0 0 0) 0%, rgba(var(--pbmit-global-color-rgb), 0) 52%, rgba(var(--pbmit-global-color-rgb), 0) 100%);
    z-index: 1;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    opacity: 0;
    visibility: hidden;
}	
	
.service_gird .ser_box .ser_img {
    width: 100%;
    height: 100%;
}
.service_gird .ser_box .ser_img img {
    width: 100%;
    height: 100%;
}
.content_ser {position: absolute;top: 0;bottom: 0;left: 0;right: 0;padding: 30px;z-index: 3;display: grid;overflow: hidden;}
.content_ser .top{}
.content_ser .top .box-number{
    color: #fff;
    margin-bottom: 10px;
}
.content_ser .top .box-number:before{content:'/'}
.content_ser .top .box-name{color: #fff;font-size: 25px;font-weight: 600;line-height: 30px;}
.content_ser .top .box-name h3{content:'/'}
.content_ser .pbmit-icon-wrap{
    align-self: self-end;
    position: relative;
}
.content_ser .pbmit-icon-wrap .pbmit-service-icon{
    width: 50px;
    font-size: 50px;
    line-height: 50px;
    display: inline-block;
    transform: scale(1);
    transition: all .4s 
ease-in-out;
}
.content_ser .pbmit-icon-wrap .pbmit-service-icon img{
    fill: #fff;
}
.content_ser .pbmit-icon-wrap .pbmit-decs-wrap{
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    opacity: 0;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: all .4s 
ease-in-out;
}
.service_gird .ser_box:hover .pbmit-service-icon {
    transform: scale(0);
}
.service_gird .ser_box:hover .pbmit-decs-wrap {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}
.content_ser .pbmit-icon-wrap .pbmit-decs-wrap .pbmit-service-description{content:'/'}
.content_ser .pbmit-icon-wrap .pbmit-decs-wrap .pbmit-service-description p{color: #fff;}
.content_ser .pbmit-icon-wrap .pbmit-decs-wrap .pbmit-service-btn{content:'/'}
.content_ser .pbmit-icon-wrap .pbmit-decs-wrap .pbmit-service-btn span{content:'/'}



.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	font-size: 18px;
	margin-bottom: 0;
}

.section-footer-text span{
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--bs-black);
	background: var(--accent-secondary-color);
	padding: 4px 10px;
	border-radius: 4px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--bs-black);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/*** 	 08. Why Choose us css	  ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-content{
	margin-right: 15px;
}

.why-choose-list ul{
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li{
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.why-choose-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
	font-weight: 900;
    left: 0;
    top: 0;
    font-size: 20px;
    color: var(--accent-color);
}

.why-choose-image{
	position: relative;
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	filter: brightness(70%);
	border-radius: 20px;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	display: block;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button i{
	font-size: 30px;
	margin-left: 3px;
	color: var(--primary-color);
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.why-choose-item-list{
	display: flex;
	gap: 30px 80px;
	flex-wrap: wrap;
	margin-top: 80px;
}

.why-choose-item{
	position: relative;
	width: calc(25% - 60px);
}

.why-choose-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40px;
	background-color: var(--divider-color);
	height: 100%;
	width: 1px;
}

.why-choose-item:nth-child(4n + 4):before,
.why-choose-item:last-child:before{
	display: none;
}

.why-choose-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
}

.why-choose-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.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-item-content p{
	margin-bottom: 0;
}

/************************************/
/*** 	  09. What We Do css 	  ***/
/************************************/

.what-we-do .container-fluid{
	padding: 0;
}

.what-we-do-image{
	height: 100%;
}

.what-we-do-image figure{
	display: block;
	height: 100%;
}

.what-we-do-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
}

.what-we-do-content{
	background-color: var(--accent-color);
	height: 100%;
	align-content: center;
	padding: 100px 5.208vw;
}

.what-do-body-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-do-body-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 15px);
}

.what-do-body-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.what-do-body-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-secondary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-do-body-item:hover .icon-box::before{
	transform: scale(1);
}

.what-do-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-do-body-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.what-do-body-content{
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.what-do-body-content h3{
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
}

.what-we-do-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 50px;
}

.what-we-do-list{
	width: calc(100% - 180px);
}

.what-we-do-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-list ul li{
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 25px;
}

.what-we-do-list ul li:last-child{
	margin-bottom: 0;
}

.what-we-do-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
	font-weight: 900;
    left: 0;
    top: 0;
    font-size: 20px;
    color: var(--accent-secondary-color);
}

.what-we-do-circle a{
	border-radius: 50%;
	display: block;
}

.what-we-do-circle img{
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}




/************************************/
/*** 	 12. Our Benefits css	  ***/
/************************************/

.our-benefits{
	background: var(--secondary-color) url('../img/benefits-bg.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
	padding: 100px 0 70px;
}

.benefits-content{
	margin-right: 20px;
}

.benefits-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.benefits-body-item{
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
}

.benefits-body-item h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefits-body-item p{
	margin-bottom: 0;
}

.benefits-body-list{
	width: 100%;
}

.benefits-body-list ul{
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-body-list ul li{
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.benefits-body-list ul li::before{
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-color);
}

.benefits-images{
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}

.benefit-image-1{
	position: relative;
	width: 100%;
	margin-right: 207px;
}

.benefit-image figure{
	display: block;
	border-radius: 20px;
}

.benefit-image img{
	width: 100%;
	aspect-ratio: 1 / 0.775;
	object-fit: cover;
	border-radius: 20px;
}

.benefit-image-circle{
    position: absolute;
    right: 0;
    top: 50px;
    transform: translateX(50%);
}

.benefit-image-circle a{
	display: block;
	border-radius: 50%;
}

.benefit-image-circle img{
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.benefit-image-2{
	position: relative;
	margin-top: -90px;
	z-index: 1;
}

.benefit-image-2 .benefit-image{
	width: 100%;
	max-width: 544px;
	border: 10px solid var(--secondary-color);
	border-radius: 30px;
}

.benefit-image-2 .benefit-image img{
	aspect-ratio: 1 / 0.611;
}

.benefit-project-info{
	position: absolute;
	bottom: 80px;
	left: -75px;
	width: 100%;
	max-width: 235px;
	display: flex;
	align-items: center;
	background: var(--white-color);
	box-shadow: 0px 0px 20px 0px #0000001A;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 18px;
	animation: infiniteboxmove 2.5s infinite linear alternate;
	overflow: hidden;
	z-index: 1;
}

@keyframes infiniteboxmove{
	50%{
		left: -30px;
	}
}

.benefit-project-info::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-secondary-color);
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.benefit-project-info:hover::after{
	height: 100%;
}

.benefit-project-info .icon-box{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .icon-box{
	background: var(--primary-color);
}

.benefit-project-info .icon-box img{
	max-width: 25px;
}

.benefit-project-content{
	width: calc(100% - 65px);
}

.benefit-project-content h3{
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.benefit-project-content p{
	color: var(--dark-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .benefit-project-content p{
	color: var(--primary-color);
}

.about-us {padding:60px 0}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-feature{
	background: url(../img/testimonials-bg.png), #000000;
	background-repeat: repeat-x;
	background-size: cover;
	animation: testimonialbgmove 60s infinite linear;
	padding: 60px 0;
}

@keyframes testimonialbgmove{
	from{
		background-position: right center;
	}
	to{
		background-position: right 200vw center;
	}
}

.testimonial-slider .swiper-wrapper{
    cursor: none;
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 18px;
	color: var(--accent-secondary-color);
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	color: var(--white-color);
	font-size: 20px;
	margin: 0;
}

.testimonial-author{
	display: flex;
	align-items: center;
}

.author-image{
	position: relative;
	margin-right: 15px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
}

.author-image figure img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.testimonial-quote{
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--accent-secondary-color);
	border: 1px solid var(--accent-color);
	border-radius: 50% ;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-quote img{
	width: 100%;
	max-width: 10px;
}

.author-content{
	width: calc(100% - 75px);
}

.author-content h3{
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--white-color);
	text-transform: capitalize;
}

.author-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}


.feat-counter-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.feat-counter-item{
	text-align: center;
	/* border: 1px dotted #fff; */
	padding: 15px;
	border-radius: 10px;
	width: calc(33.33% - 15px);
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
}
.feat-counter-item .icons {
    width: 91px;
}
.feat-counter-item .icons img {

    width: 100%;
}
.feat-counter-item .icons_num {width: 80%;}
.feat-counter-item h2{
	/* width: 60%; */
	color: var(--white-color);
	font-size: 60px;
}

.feat-counter-item p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
	/* flex: 1; */
	/* text-wrap-mode: nowrap; */
	font-size: 17px;
	line-height: 22px;
}



/************************************/
/*** 	   17. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 70px 0 70px;
}

.post-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a{
	display: block;
	cursor: none;
}

.post-featured-image figure{
	overflow: hidden;
}

.post-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.695;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.blog-item-body{
	padding: 30px 25px;
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
	color: inherit;
}

/************************************/
/*** 	 	18. Footer css		  ***/
/************************************/


.main-footer{
	background-color: var(--bs-black);
	padding: 50px 0 0;
	position: relative;
	overflow: hidden;
}
.main-footer .container {position:relative}
.main-footer:before{
				   content:'';
				   background-image: url(../img/ftr-logo.png);
				   background-repeat: no-repeat;
				   position: absolute;
				   width: 100%;
				   height: 100%;
				   z-index: 0;
				   opacity: 0.1;
				   top: 0;
				   background-size: cover;
				   background-attachment: fixed;
				   }
.footer-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-logo img{
	width: 100%;
	max-width: 209px;
}
.footer-flex .sf-ftr .ftr-desc p span{
    color: var(--chief-dark-y);
    font-size: 20px;
    background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0px #0404042e;
}
.ftr-desc img {
    width: 125px;
    float: left;
    margin: 0 15px 15px 0;
}
.ftr-desc p {
    color: #fff;
    /* text-align: justify; */
}
.footer-social-links{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-links span{
    font-size: 20px;
    font-weight: 600;
	color: var(--white-color);
}

.footer-social-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li{
    display: inline-block;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--accent-secondary-color);
	/* background: #ffffff; */
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover{
	background-color: var(--accent-secondary-color);
	color: var(--primary-color);
}

.footer-social-links ul li a svg{
    color: inherit;
    width: 20px;
    height: 20px;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	margin-bottom: 20px;
	background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 0px #0404042e;
}

.footer-links p{
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links p:last-child{
	margin-bottom: 0;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-links ul.sff_grid {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
}
.footer-links ul.sff_grid li {}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.footer-links ul li:before{
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 6px;
    }
.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}
.footer-links ul li:hover{
	color: var(--accent-secondary-color);
}

.footer-contact-item{
	display: flex;
	align-items: baseline;
	margin-bottom: 20px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-right: 15px;
}

.footer-contact-item .icon-box i{
	font-size: 12px;
	color: var(--accent-secondary-color);
}

.footer-contact-content{
	width: calc(100% - 45px);
}

.footer-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-contact-content p a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-content p a:hover{
	color: var(--accent-secondary-color);
}

.newsletter-form .form-group{
	display: flex;
	border-radius: 8px;
	overflow: hidden;
}

.newsletter-form .form-group .form-control{
	width: 85%;
	border: none;
	border-radius: 0;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 400;
	color: var(--text-color);
	outline: none;
    box-shadow: none;
	padding: 15px 0 15px 15px;
}

.newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.newsletter-form .form-group .newsletter-btn{
	background-color: var(--white-color);
	width: 15%;
	border: none;
	padding: 0;
}

.newsletter-form .form-group .newsletter-btn img{
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover img{
	filter: brightness(0) invert(0);
}

.footer-copyright-text{
	border-top: 1px solid var(--dark-divider-color);
	padding: 7px 0;
	margin-top: 30px;
	text-align: center;
}
.footer-copyright-text p a,
.footer-copyright-text p{
    color: var(--white-color);
    margin: 0;
}

/************************************/
/*** 	 19. About Us Page css	  ***/
/************************************/

.page-header{
	background: url('../img/page-header-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 140px 0 60px;
}

.page-header-box{
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
    color: var(--white-color);
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
    cursor: none;
}

.page-header-box h1 span{
	color: var(--accent-secondary-color);
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	padding-right: 0;
}
.page-header-box ol li.breadcrumb-item:last-child:after{display:none}
.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}
.page-header-box ol li.breadcrumb-item:after{content:'';content: "\f105";font-family: FontAwesome;padding-left: 5px;}
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}



.our-commitment{
	padding: 100px 0;
}

.our-commitment-image{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-commitment-img-1,
.our-commitment-img-2{
	width: calc(50% - 15px);
}

.our-commitment-img-2{
	padding-top: 50px;
}

.our-commitment-img-1 figure,
.our-commitment-img-2 figure{
	display: block;
	border-radius: 20px;
}

.our-commitment-img-1 img,
.our-commitment-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.64;
	object-fit: cover;
	border-radius: 20px;
}

.commitment-contact-circle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	border: 10px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.commitment-contact-circle a{
	display: block;
	border-radius: 50%;
}

.commitment-contact-circle a img{
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.our-commitment-content{
	margin-left: 15px;
}

.our-commitment-list{
	margin-bottom: 40px;
}

.our-commitment-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-commitment-list ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.our-commitment-list ul li:last-child{
	margin-bottom: 0;	
}

.our-commitment-list ul li:before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    top: 0px;
    left: 0;
}

.our-commitment-body{
	display: flex;
	flex-wrap: wrap;
	background-color: var(--accent-color);
	border-radius: 20px;
	overflow: hidden;
}

.commitment-intro-video{
	position: relative;
	width: 50%;
}

.commitment-intro-video figure{
	height: 100%;
}

.commitment-intro-video img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
}

.commitment-intro-video .video-play-button a{
	height: 50px;
	width: 50px;
}

.commitment-intro-video .video-play-button i{
	font-size: 20px;
}

.commitment-intro-video .video-play-button a:after,
.commitment-intro-video .video-play-button a:before{
	top: -50%;
    left: -50%;
}

.commitment-body-content{
	width: 50%;
	padding: 20px;
	align-content: center;
}

.commitment-body-content img{
	width: 100%;
	max-width: 32px;
	margin-bottom: 15px;
}

.commitment-body-content h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.commitment-body-content p{
	color: var(--white-color);
	margin: 0;
}



.our-values{
	padding: 100px 0;
}

.values-list{
	margin-bottom: 40px;
}

.values-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.values-list ul li{
	position: relative;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.values-list ul li:last-child{
	margin-bottom: 0;	
}

.values-list ul li:before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    top: 0px;
    left: 0;
}

.values-body{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.values-body-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.values-body-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.values-body-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.4s ease-in-out;
	z-index: 0;
}

.values-body-item:hover .icon-box::before{
	transform: scale(1);
}

.values-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.values-body-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.values-body-item-content{
	width: calc(100% - 70px);
}

.values-body-item-content h3{
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
}

.values-image{
	position: relative;
	background: url('../img/values-image-bg.svg') no-repeat;
	background-position: bottom 85px right 62px;
	background-size: auto;
	padding-right: 111px;
	margin-left: 15px;
}

.values-image:before{
	content: '';
	position: absolute;
	top: 0;
	right: 60px;
	width: 40px;
	height: 240px;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
}

.values-img figure{
	display: block;
	border-radius: 20px;
}

.values-img img{
	width: 100%;
    aspect-ratio: 1 / 1.05;
	object-fit: cover;
	border-radius: 20px;
}

.award-winning-box{
	position: absolute;
	right: 0;
	bottom: 30px;
	display: flex;
	align-items: center;
	background-color: var(--accent-color);
	border: 5px solid var(--white-color);
	border-radius: 20px;
	padding: 15px;
	overflow: hidden;
	z-index: 1;
}

.award-winning-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--accent-secondary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.award-winning-box:hover:before{
	right: auto;
	left: 0;
    width: 100%;
}

.award-winning-box .icon-box{
	margin-right: 10px;
}

.award-winning-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 60px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.award-winning-box:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.award-winning-content{
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.award-winning-content h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover .award-winning-content h3{
	color: var(--primary-color);
}

/************************************/
/*** 	 20. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

/************************************/
/*** 	 21. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
	position: sticky;
    top: 20px;
    margin-right: 20px;
}

.page-catagery-list{
	background-color: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.page-catagery-list ul li{
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    margin: 0;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: normal;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 12px;
	line-height: 1.5em;
    padding: 16px 50px 16px 20px;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--white-color);
}

.page-catagery-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background-image: url('../img/arrow-accent.svg');
	background-color: var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
	border-radius: 4px;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	position: relative;
	background: url('../img/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 30px;
    overflow: hidden;
}

.sidebar-cta-box:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content{
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo{
	margin-bottom: 120px;
}

.sidebar-cta-logo img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.sidebar-cta-content h3{
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 40px;
}

.sidebar-cta-content .btn-default img{
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.page-single-image{
	margin-bottom: 40px;
}

.page-single-image figure{
	display: block;
	border-radius: 20px;
}

.page-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.542;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
	font-size: 46px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-entry ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
	background: var(--secondary-color);
	border-radius: 20px;
    list-style: none;
    margin-bottom: 20px;
    padding: 20px;
}

.service-entry ul li{
    position: relative;
    width: calc(33.33% - 20px);
	text-transform: capitalize;
    line-height: 1.5em;
    padding-left: 30px;
}

.service-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    top: 0px;
    left: 0;
}

.service-expert-box,
.service-approach-box,
.service-solution-box{
	margin-top: 60px;
}

.service-expert-list{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.service-expert-list .about-body-item{
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.service-approach-box ul{
	margin-top: 40px;
}

.service-solution-image-content,
.service-solution-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-solution-image-content{
	align-items: center;
}

.service-solution-image,
.service-solution-image-content .why-choose-item{
	width: calc(50% - 15px);
}

.service-solution-image figure{
	display: block;
	border-radius: 20px;
}

.service-solution-image img{
	width: 100%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
	border-radius: 20px;
}

.service-solution-image-content .why-choose-item::before,
.service-solution-item-list .why-choose-item::before{
	display: none;
}

.service-solution-item-list .why-choose-item{
	width: calc(33.33% - 20px);
}

/************************************/
/*** 	 22. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    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(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    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{
	color: var(--secondary-color);
    background: var(--accent-color);
}

/************************************/
/*** 	 23. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.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: 600;
	letter-spacing: -0.02em;
	line-height: 1.2em;
	margin: 0 0 0.417em;
}

.post-entry h1{
	font-size: 80px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.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 ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    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('../img/icon-blockquote.svg'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 12px;
    padding: 12px 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: 12px;
    width: 40px;
    height: 40px;
    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;
}

/************************************/
/*** 	 24. Projects Page css	  ***/
/************************************/

.page-projects{
	padding: 100px 0 70px;
}

.project-item{
    position: relative;
	border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-image a,
.project-image figure{
    display: block;
    cursor: none;
}

.project-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.16%, rgba(0, 0, 0, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-image img{
    width: 100%;
	aspect-ratio: 1 / 0.83;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img{
	transform: scale(1.1);
}

.project-body{
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

.project-item-content{
	width: calc(100% - 60px);
}

.project-item-content h3{
	color: var(--white-color);
	font-size: 20px;
	line-height: 1.4em;
}

.project-item-content h3 a{
	color: inherit;
}

.project-readmore-btn a{
	width: 40px;
	height: 40px;
	background: var(--accent-secondary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-readmore-btn a:hover{
	background: var(--white-color);
}

.project-readmore-btn a img{
	width: 100%;
	max-width: 24px;
}

/************************************/
/*** 	 25. Project Single css	  ***/
/************************************/

.page-project-single{
    padding: 100px 0;
}

.project-catagery-list{
	background: var(--secondary-color);
	border-radius: 20px;
    padding: 30px;
    text-align: center;
	margin-bottom: 60px;
}

.project-catagery-list h3{
	font-size: 20px;
	margin-bottom: 30px;
}

.project-catagery-list ul{
    background-color: var(--white-color);
    border-radius: 20px;
    text-align: left;
    padding: 30px;
    margin-bottom: 30px;
}

.project-catagery-list ul li{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
	line-height: 1.5em;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.project-catagery-list ul li:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.project-catagery-list ul li span{
    width: 56%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
}

.sidebar-social-list ol{
	list-style: none;
	padding: 0;
	margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sidebar-social-list ol li{
	display: inline-block;
}

.sidebar-social-list ol li a{
    background: var(--white-color);
	color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.sidebar-social-list ol li a:hover{
	background: var(--accent-secondary-color);
    color: var(--primary-color);
}

.sidebar-social-list a i{
	font-size: 20px;
	color: inherit
}

.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
	font-size: 46px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.project-entry h2 span{
	color: var(--accent-color);
}

.project-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.project-entry ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 20px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    top: 0px;
    left: 0;
}

.project-measurable-box,
.projects-solution-box{
	margin-top: 60px;
}

.project-measurable-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.project-measurable-item{
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.project-measurable-item::before{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-secondary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover::before{
    height: 100%;
}

.project-measurable-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.project-measurable-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.4s ease-in-out;
	z-index: 0;
}

.project-measurable-item:hover .icon-box::before{
	transform: scale(1);
}

.project-measurable-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-measurable-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.project-measurable-item-content{
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.project-measurable-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.project-measurable-item-content p{
	transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover .project-measurable-item-content p{
	color: var(--primary-color);
}

.projects-solution-list-box{
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.projects-solution-list{
	width: calc(50% - 15px);
}

.projects-solution-list h3{
	font-size: 20px;
	margin-bottom: 30px;
}

.projects-solution-list-box ul{
	margin: 0;
}

/************************************/
/*** 	  26. Team Page css 	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
	background: #fafafa;
}
.team-item-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/************************************/
/*** 	 27. Team Single css	  ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-sidebar-box{
	border-radius: 20px;
	overflow: hidden;
}

.team-sidebar-image figure{
	display: block;
}

.team-sidebar-image img{
	width: 100%;
	aspect-ratio: 1 / 1.044;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-box:hover .team-sidebar-image img{
	transform: scale(1.1);
}

.team-sidebar-body{
	background: var(--accent-color);
	padding: 30px;
}

.team-sidebar-body h3{
	font-size: 20px;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.team-sidebar-body ul{
	list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.team-sidebar-body ul li{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
	line-height: 1.5em;
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team-sidebar-body ul li:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.team-sidebar-body ul li span{
    width: 67%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
	opacity: 80%;
}

.team-sidebar-footer{
	background-color: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 30px;
}

.team-sidebar-footer h3{
	font-size: 20px;
    text-transform: capitalize;
}

.team-sidebar-footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-sidebar-footer ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.team-sidebar-footer ul li:last-child{
	margin-right: 0;
}

.team-sidebar-footer ul li a{
    background-color: var(--white-color);
	color: var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a{
    background-color: var(--accent-color);
	color: var(--white-color);
}

.team-sidebar-footer ul li a i{
    color: inherit;
    font-size: 18px;
}

.team-member-qualification,
.team-member-skills,
.team-contact-form{
	margin-top: 60px;
}

.member-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.member-info-item{
	position: relative;
	width: calc(25% - 22.5px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.member-info-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.member-info-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.member-info-item .icon-box,
.member-info-item-content{
	position: relative;
	z-index: 1;
}

.member-info-item .icon-box{
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 20px;
}

.member-info-item .icon-box img{
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
}

.member-info-item-content h3{
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.member-info-item:hover .member-info-item-content h3{
	color: var(--white-color);
}

.skills-progress-bar{
    margin-bottom: 40px;
}

.skills-progress-bar:last-child{
    margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
	justify-content: space-between;
	gap: 10px;
    margin-bottom: 15px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}


/************************************/
/*** 	33. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-form{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.page-contact-us .contact-us-form .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}
.contact-form label {
    color: #2a2a2a;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact-form label sup {color:red}
.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map{
	margin-bottom: 0;
}

.google-map iframe{
	width: 100%;
	height: 500px;
	border-radius: 0;
}

.contact-info-list{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	flex-direction: column;
}

.contact-info-item{
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
}

.contact-info-item.location-item{
	width: 100%;
}

.contact-info-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--chief-pink-blue);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.contact-item-content{
	width: calc(100% - 70px);
}

.contact-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p{
	margin: 0;
}

.contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover{
	color: var(--primary-color);
}

/************************************/
/*** 	 34. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/*** 	  35. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1300px){
	.what-we-do-content{
		padding: 100px 15px;
	}
}
.navbar-toggle svg{
    width: 40px;
    height: 40px;
    }

@media only screen and (max-width: 991px){

	.btn-default{
		font-size: 14px;
		padding: 15px 50px 15px 15px;
	}

	.btn-default::before{
		width: 30px;
		height: 30px;	
		background-size: 18px auto;
	}

	.topbar{
		padding: 10px 0;
	}

	.topbar-contact-info ul{
		gap: 15px;
	}

	.topbar-social-links ul li{
		padding-right: 10px;
		margin-right: 10px;
	}

	.topbar-contact-info ul li a i{
		font-size: 14px;
	}

	.topbar-social-links ul li a{
		font-size: 14px;
	}

	.topbar-social-links ul li a i{
		font-size: 16px;
		margin-right: 5px;
	}

	.navbar{
		padding: 15px 0;
	}

	.navbar-brand img{
		max-width: 180px;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.hero{
		padding: 50px 0 0;
	}

	.hero.hero-bg-image{
		padding: 100px 0;
	}
	
	.hero.hero-bg-image.hero-slider-layout .hero-slide{
		padding: 100px 0;
	}
	
	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

	.hero-body{
		max-width: 100%;
		margin-bottom: 30px;
	}

	.hero-body ul{
		gap: 15px 20px;
	}

	.hero-body ul li{
		padding-left: 25px;
	}

	.hero-body ul li:before{
		font-size: 16px;
	}

	.hero-btn::before{
		top: -10px;
		width: 80px;
		height: 50px;
	}

	.our-scrolling-ticker{
		padding: 15px 0;
	}

	.scrolling-ticker-box{
		--gap: 50px;
	}

	.scrolling-content img{
		height: 26px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		margin-bottom: 30px;
	}

	.successful-circle-img img{
		max-width: 130px;
	}

	.about-image img{
		aspect-ratio: 1 / 0.7;
	}

	.about-image-box-2 .about-image img{
		aspect-ratio: 1 / 0.99;
	}

	.about-image-box-3 .about-image{
		max-width: 370px;
	}

	.years-experience-box{
		max-width: 180px;
		padding: 15px;
		margin: 10px 0;
	}

	.years-experience-box h2{
		font-size: 34px;
	}

	.about-us-content{
		margin-left: 0;
	}

	.about-body-item{
		margin-bottom: 30px;
	}

	.about-btn{
		margin-top: 30px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item{
		padding: 20px;
	}

	.service-item .icon-box{
		margin-bottom: 30px;
	}

	.service-item-content h3{
		margin-bottom: 10px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-list ul{
		gap: 15px 20px;
	}

	.why-choose-list ul li{
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.why-choose-list ul li::before{
		font-size: 18px;
	}

	.why-choose-image figure img{
		aspect-ratio: 1 / 0.5;
	}

	.why-choose-item-list{
		gap: 30px 60px;
		margin-top: 40px;
	}

	.why-choose-item{
		width: calc(50% - 30px);
	}

	.why-choose-item::before{
		right: -30px;
	}
	
	.why-choose-item .icon-box{
		margin-bottom: 30px;
	}

	.why-choose-item-content h3{
		margin-bottom: 10px;
	}
	
	.what-we-do-image,
	.what-we-do-image figure{
		height: auto;
	}

	.what-we-do-image img{
		aspect-ratio: 1 / 0.52;
	}

	.what-we-do-content{
        padding: 50px 15px;
    }

	.what-we-do-footer{
		margin-top: 30px;
		padding-top: 30px;
	}

	.what-we-do-list{
		width: calc(100% - 140px);
	}

	.what-we-do-list ul li{
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.what-we-do-list ul li::before{
		font-size: 18px;
	}

	.what-we-do-circle img{
		max-width: 120px;
	}

	.company-success{
		padding: 50px 0 20px;
	}

	.company-success-item{
		text-align: center;
	}

	.company-success-header{
		flex-direction: column;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.company-success-header .icon-box{
		margin: 0 0 10px 0;
	}

	.company-success-title{
		width: 100%;
	}

	.company-success-content h2{
		font-size: 45px;
	}

	.company-success-content p{
		font-size: 14px;
	}

	.scrolling-ticker-text{
		margin-bottom: -6px;
	}

	.scrolling-ticker-text-box{
		--gap: 30px;
	}

	.scrolling-ticker-text-content span{
		font-size: 56px;
	}

	.scrolling-ticker-text-content span img{
		width: 30px;
		margin-right: 30px;
	}

	.our-benefits{
		padding: 50px 0;
	}

	.benefits-content{
		margin: 0 0 30px 0;
	}

	.benefits-body-item{
		padding: 15px;
	}

	.benefits-body-item h3{
		margin-bottom: 10px;
	}

	.benefits-body-list ul{
		gap: 20px;
	}
	
	.benefits-body-list ul li{
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.benefits-body-list ul li::before{
		font-size: 18px;
	}

	.benefit-image img{
		aspect-ratio: 1 / 0.68;
	}

	.benefit-image-circle{
		top: 40px;
	}

	.benefit-image-circle img{
		max-width: 110px;
	}

	.benefit-image-2 .benefit-image{
		max-width: 490px;
	}

	.benefit-image-2 .benefit-image img{
		aspect-ratio: 1 / 0.5;
	}
	
	.benefit-project-info{
		bottom: 50px;
		max-width: 205px;
		border-radius: 14px;
		padding: 10px;
	}

	.benefit-project-info .icon-box{
		margin-right: 10px;
	}

	.benefit-project-content{
		width: calc(100% - 60px);
	}

	.benefit-project-content h3{
		font-size: 20px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-work-content{
		position: initial;
		top: 0;
		margin: 0 0 30px 0;
	}

	.work-process-item{
		padding: 20px;
		margin-bottom: 30px;
	}

	.work-process-content h3{
		margin-bottom: 15px;
	}

	.work-process-content h2{
		margin-bottom: 10px;
	}

	.work-process-image img{
		aspect-ratio: 1 / 0.6;
	}

	.our-feature{
		padding: 50px 0;
	}

	.feature-content{
		margin-bottom: 30px;
	}

	.testimonial-rating{
		margin-bottom: 15px;
	}

	.testimonial-rating i{
		font-size: 16px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.author-image figure img{
		max-width: 50px;
	}

	.author-content{
		width: calc(100% - 65px);
	}

	.testimonial-quote img{
		max-width: 8px;
	}

	.testimonial-pagination .swiper-pagination-bullet{
		width: 10px;
		height: 10px;
	}

	

	.our-pricing{
		padding: 50px 0;
	}
	
	.pricing-item{
		padding: 30px 25px;
	}

	.pricing-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header img{
		max-width: 40px;
		margin-bottom: 20px;
	}

	.pricing-header h3{
		margin-bottom: 10px;
	}

	.pricing-header p{
		margin-bottom: 20px;
	}

	.pricing-header h2{
		font-size: 36px;
	}

	.pricing-header sub{
		font-size: 14px;
	}

	.pricing-body ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-body ul li::before{
		font-size: 16px;
	}

	.pricing-footer .btn-default{
		padding: 15px;
	}

	.pricing-benefit-list{
		margin-top: 5px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faqs-img img{
		aspect-ratio: 1 / 0.7;
	}

	.faq-contact-circle img{
		max-width: 130px;
	}

	.faqs-cta-box{
		width: 240px;
		padding: 15px;
	}

	.faqs-cta-box .icon-box{
		margin-right: 10px;
	}

	.faqs-cta-box .icon-box img{
		max-width: 35px;
	}

	.faqs-cta-box-content{
		width: calc(100% - 45px);
	}
	
	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 14px 50px 14px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		width: 22px;
		height: 22px;
		top: 16px;
		right: 20px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 50px 14px 20px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.blog-item-body{
		padding: 20px;
	}

	.post-item-content{
		margin-bottom: 15px;
	}

	.footer-scrolling-ticker .scrolling-ticker-box{
		--gap: 20px;
	}

	.footer-scrolling-ticker .scrolling-content span{
		font-size: 22px;
	}

	.footer-scrolling-ticker .scrolling-content span img{
		max-width: 16px;
		margin-right: 20px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-logo img{
		max-width: 180px;
	}

	.footer-social-links ul li{
		margin-right: 10px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		margin-bottom: 15px;
	}

	.footer-links p{
		margin-bottom: 20px;
	}

	.footer-contact-item{
		margin-bottom: 15px;
	}

	.newsletter-form .form-group .form-control{
		padding: 12px 0 12px 15px;
	}

	.footer-copyright-text{
		padding: 30px 0;
		margin-top: 0;
	}

	.page-header{
		padding: 50px 0;
	}

	.page-header-box h1{
		font-size: 55px;
	}

	.our-mission-vision{
		padding: 50px 0;
	}

	.mission-vision-content{
		position: initial;
		top: 0;
		width: 100%;
	}

	.mission-vision-list{
		width: calc(60% - 15px);
	}

	.mission-vision-image{
		width: calc(40% - 15px);
	}

	.mission-vision-item{
		padding: 20px;
	}

	.mission-vision-item .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.mission-vision-item .icon-box img{
		max-width: 24px;
	}

	.mission-vision-item-content{
		width: calc(100% - 60px);
	}

	.mission-vision-item-content h3{
		margin-bottom: 10px;
	}

	.mission-vision-image img{
		aspect-ratio: 1 / 1.33;
	}

	.our-commitment{
		padding: 50px 0;
	}

	.our-commitment-image{
		max-width: 70%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.commitment-contact-circle a img{
		max-width: 130px;
	}

	.our-commitment-content{
		margin-left: 0;
	}

	.our-commitment-list{
		margin-bottom: 30px;
	}

	.our-commitment-list ul li{
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.our-commitment-list ul li::before{
		font-size: 18px;
	}

	.commitment-body-content img,
	.commitment-body-content h3{
		margin-bottom: 10px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-item .team-image{
		margin-bottom: 15px;
	}

	.team-item .team-image img{
		aspect-ratio: 1 / 1.05;
	}

	.team-item .team-social-icon{
		right: 20px;
		left: 20px;
	}

	.team-item:hover .team-social-icon{
		bottom: 20px;
	}

	.our-values{
		padding: 50px 0;
	}

	.values-content{
		margin-bottom: 30px;
	}

	.values-list{
		margin-bottom: 30px;
	}

	.values-list ul li{
		font-size: 18px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.values-list ul li:before{
		font-size: 18px;
	}

	.values-body{
		padding: 20px;
	}

	.values-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.award-winning-box{
		padding: 10px;
	}

	.award-winning-box .icon-box img{
		max-width: 50px;
	}

	.award-winning-content{
		width: calc(100% - 60px);
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-catagery-list{
		margin-bottom: 30px;
	}

	.page-catagery-list h3{
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a{
		padding: 12px 40px 12px 15px;
	}

	.page-catagery-list ul li a::before{
		right: 15px;
		background-size: 16px auto;
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-logo{
		margin-bottom: 60px;
	}

	.sidebar-cta-content h3{
		margin-bottom: 30px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul{
		gap: 15px 20px;
		margin-bottom: 15px;
		padding: 15px;
	}

	.service-entry ul li{
		width: calc(33.33% - 13.33px);
		padding-left: 24px;
		font-size: 14px;
	}

	.service-entry ul li::before{
		font-size: 16px;
	}

	.service-expert-box,
	.service-approach-box,
	.service-solution-box{
		margin-top: 40px;
	}

	.service-expert-list{
		margin-top: 30px;
	}

	.service-expert-list .about-body-item .icon-box{
		margin-right: 10px;
	}

	.service-expert-list .about-body-item-content{
		width: calc(100% - 60px);
	}

	.service-expert-list .about-body-item-content h3{
		font-size: 18px;
	}

	.service-approach-box ul{
		margin-top: 30px;
	}

	.service-solution-image-content,
	.service-solution-item-list{
		margin-top: 30px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.42em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 35px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 20px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-catagery-list{
		margin-bottom: 30px;
		padding: 20px;
	}

	.project-catagery-list h3{
		margin-bottom: 20px;
	}

	.project-catagery-list ul{
		padding: 20px;
		margin-bottom: 20px;
	}

	.project-catagery-list ul li span{
		width: 70%;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul{
		margin-bottom: 15px;
	}

	.project-entry ul li{
		font-size: 14px;
		padding-left: 24px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before{
		font-size: 16px;
	}

	.project-measurable-box,
	.projects-solution-box{
		margin-top: 40px;
	}

	.project-measurable-item-list{
		gap: 20px;
		margin: 30px 0;
	}

	.project-measurable-item{
		width: calc(50% - 10px);
		padding: 15px;
		border-radius: 12px;
	}

	.project-measurable-item .icon-box{
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.project-measurable-item .icon-box img{
		max-width: 26px;
	}

	.project-measurable-item-content{
		width: calc(100% - 60px);
	}

	.project-measurable-item-content p{
		font-size: 14px;
	}

	.projects-solution-list-box{
		margin-top: 30px;
	}

	.projects-solution-list h3{
		margin-bottom: 20px;
	}

	.projects-solution-list-box ul{
		margin: 0;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}
	
	.team-sidebar-image img{
		aspect-ratio: 1 / 0.7;
	}

	.team-sidebar-body{
		padding: 20px;
	}

	.team-sidebar-body h3{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.team-sidebar-body ul li{
		margin-bottom: 15px;
	}

	.team-sidebar-footer{
		padding: 20px;
	}

	.team-member-qualification,
	.team-member-skills,
	.team-contact-form{
		margin-top: 40px;
	}

	.member-info-list{
		margin-top: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 30px;
	}

	.team-contact-form.contact-us-form{
		margin-bottom: 0;
	}

	.page-pricing{
		padding: 50px 0;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item{
		padding: 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}
	
	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.75;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}
	
	.video-gallery-image img{
		aspect-ratio: 1 / 0.75;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs-catagery .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-form{
		padding: 30px;
		margin-bottom: 30px;
	}

	.page-contact-us .contact-us-form .section-title{
		padding-bottom: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map{
		margin-bottom: 30px;
	}

	.google-map iframe{
		height: 400px;
	}

	.contact-info-item{
		padding: 15px;
	}

	.contact-info-item .icon-box{
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box img{
		max-width: 26px;
	}

	.contact-item-content{
		width: calc(100% - 55px);
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p{
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px){

	.topbar-social-links{
		display: none;
	}

	.topbar-contact-info ul{
		justify-content: center;
	}

	.topbar-contact-info ul li a i{
		margin-right: 5px;
	}

	.section-title h1{
		font-size: 28px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-body ul{
		gap: 10px;
	}

	.hero-body ul li{
		font-size: 14px;
	}
	
	.hero-image img{
		max-width: 100%;
	}
	 
	.hero-btn::before{
		right: -60px;
		top: 5px;
        width: 55px;
        height: 30px;
		animation-duration: 2s;
    }

	@keyframes ctaarrow{
		50%{
			right: -80px;
		}
	}

	.scrolling-ticker-box{
        --gap: 35px;
    }

	.scrolling-content img{
		max-width: 100px;
		height: 22px;
	}

	.successful-circle-img img{
        max-width: 90px;
    }

	.about-image figure,
	.about-image img{
		border-radius: 14px;
	}

	.about-image-box-2 .about-image img{
        aspect-ratio: 1 / 1.12;
    }
	
	.about-image-box-3{
		margin-top: -20px;
		margin-left: -5px;
    }
	
	.about-image-box-3 .about-image{
		max-width: 215px;		
	}
	
	.about-image-box-3 .about-image figure{
		border-width: 5px;
		border-radius: 20px;
	}
	
	.about-image-box-3 .about-image img{
		border-radius: 12px;
	}

	.years-experience-box{
        max-width: 135px;
        padding: 10px;
    }

	.years-experience-box h2{
		width: calc(33% - 5px);
        font-size: 24px;
    }

	.years-experience-box p{
		width: calc(67% - 5px);
		font-size: 14px;
	}

	.about-body-item .icon-box{
		margin-right: 10px;
	}

	.about-body-item-content{
		width: calc(100% - 60px);
	}

	.about-body-item-content h3{
		font-size: 18px;
	}

	.service-item .icon-box{
        margin-bottom: 20px;
    }

	.service-item-content h3{
		font-size: 18px;
	}

	.service-item-content{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.section-footer-text p{
		font-size: 16px;
	}

	.section-footer-text span{
		font-size: 14px;
		padding: 4px 6px;
		margin-right: 5px;
	}

	.why-choose-list ul{
		gap: 10px;
	}

	.why-choose-list ul li{
		width: 100%;
	}

	.why-choose-image figure img{
        aspect-ratio: 1 / 0.65;
    }

	.video-play-button a{
		width: 60px;
		height: 60px;
	}

	.video-play-button i{
		font-size: 26px;
	}

	.video-play-button a::before,
	.video-play-button a::after{
		top: -33%;
		left: -33%;
	}

	.why-choose-item-list{
        margin-top: 30px;
    }

	.why-choose-item{
        width: 100%;
    }

	.why-choose-item::before{
        width: 100%;
		height: 1px;
		left: auto;
		top: auto;
		right: 0;
		bottom: -15px;
    }

	.why-choose-item .icon-box{
        margin-bottom: 20px;
    }

	.why-choose-item-content h3{
        font-size: 18px;
    }

	.what-we-do-image img{
        aspect-ratio: 1 / 0.8;
    }

	.what-do-body-list{
		gap: 20px;
	}

	.what-do-body-item{
		width: 100%;
	}

	.what-do-body-content h3{
		font-size: 18px;
	}

	.what-we-do-footer{
        margin-top: 20px;
        padding-top: 20px;
    }
	
	.what-we-do-list{
		width: 100%;
	}

	.what-we-do-list ul li{
        margin-bottom: 10px;
    }

	.what-we-do-circle img{
        max-width: 90px;
    }

	.company-success-header{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.company-success-title h3{
		font-size: 18px;
	}

	.company-success-content h2{
        font-size: 30px;
    }

	.scrolling-ticker-text{
		margin-bottom: -4px;
	}

	.scrolling-ticker-text-box{
        --gap: 20px;
    }

	.scrolling-ticker-text-content span{
        font-size: 30px;
    }

	.scrolling-ticker-text-content span img{
        width: 20px;
        margin-right: 20px;
    }

	.benefits-body{
		gap: 20px;
		margin-bottom: 20px;
	}

	.benefits-body-item{
		width: 100%;
	}

	.benefits-body-item h3{
		font-size: 18px;
	}

	.benefits-body-list ul{
		gap: 10px;
	}

	.benefits-body-list ul li{
		width: 100%;
	}

	.benefit-image-1{
		margin-right: 80px;
	}

	.benefit-image-2{
        margin-top: -50px;
    }

	.benefit-image img{
		aspect-ratio: 1 / 0.775;
	}

	.benefit-image-circle{
        top: 30px;
    }

	.benefit-image-circle img{
        max-width: 90px;
    }

	.benefit-image-2 .benefit-image{
		max-width: 270px;
		border-width: 5px;
		border-radius: 16px;
    }
	
	.benefit-image-2 .benefit-image figure,
	.benefit-image-2 .benefit-image img{
		border-radius: 12px;
	}

	.benefit-image-2 .benefit-image img{
		aspect-ratio: 1 / 0.611;
	}

	.benefit-project-info{
		bottom: 20px;
        max-width: 180px;
    }

	.benefit-project-info .icon-box{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.benefit-project-content{
        width: calc(100% - 50px);
    }

	.benefit-project-content h3{
        font-size: 18px;
    }

	.benefit-project-content p{
		font-size: 14px;
	}

	.work-process-item{
		gap: 20px;
	}

	.work-process-content,
	.work-process-image{
		width: 100%;
	}

	.work-process-content h3{
		border-radius: 6px;
		padding: 8px 15px;
	}

	.work-process-content h2{
		font-size: 18px;
	}

	.testimonial-content{
        margin-bottom: 20px;
    }

	.testimonial-content p{
        font-size: 16px;
    }

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-pagination{
		position: relative;
		margin-top: 30px;
		justify-content: center;
	}

	

	.pricing-item{
        padding: 20px;
    }

	.pricing-header img,
	.pricing-header p{
        margin-bottom: 15px;
    }

	.pricing-header h3{
		font-size: 18px;
	}

	.pricing-header h2{
        font-size: 26px;
    }

	.pricing-benefit-list ul{
		gap: 10px;
	}
	
	.pricing-benefit-list ul li{
		width: calc(50% - 5px);
		font-size: 12px;
	}
	
	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.faqs-image{
		padding: 5px 20px 0 0;
	}

	.faqs-img img{
        aspect-ratio: 1 / 1.1;
    }

	.faq-contact-circle{
		border-width: 5px;
	}

	.faq-contact-circle img{
        max-width: 100px;
    }

	.faqs-cta-box{
        width: 210px;
        padding: 10px;
		border-radius: 10px;
    }

	.faqs-cta-box .icon-box img{
        max-width: 30px;
    }

	.faqs-cta-box-content{
        width: calc(100% - 40px);
    }

	.faqs-cta-box-content h3{
		font-size: 14px;
	}
	
	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 12px 45px 12px 15px;
    }

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		width: 20px;
		height: 20px;
        right: 15px;
		background-size: 14px auto;
    }

	.faq-accordion .accordion-item .accordion-body{
        padding: 12px 15px 15px 15px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-social-links{
		gap: 15px;
	}

	.footer-social-links ul li a{
		width: 38px;
		height: 38px;
	}

	.footer-header{
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 25px;
        padding-bottom: 25px;
	}

	.footer-social-links span{
		font-size: 18px;
	}

	.footer-links h3{
        font-size: 18px;
    }

	.footer-copyright-text{
        padding: 15px 0;
    }

	.page-header-box h1{
        font-size: 28px;
    }

	.mission-vision-list,
	.mission-vision-image{
		width: 100%;
	}

	.mission-vision-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.mission-vision-image figure{
		height: auto;
	}

	.mission-vision-image img{
		height: auto;
		aspect-ratio: 1 / 1.05;
	}

	.our-commitment-image{
		max-width: 100%;
		gap: 20px;
	}

	.our-commitment-img-1,
	.our-commitment-img-2{
		width: calc(50% - 10px);
	}

	.our-commitment-img-2{
		padding-top: 30px;
	}

	.commitment-contact-circle{
		border-width: 5px;
	}

	.commitment-contact-circle a img{
        max-width: 100px;
    }

	.commitment-intro-video,
	.commitment-body-content{
		width: 100%;
	}

	.commitment-intro-video figure,
	.commitment-intro-video img{
		height: auto;
	}

	.commitment-body-content h3{
		font-size: 18px;
	}

	.team-item .team-content h2{
		font-size: 18px;
	}

	.values-list ul li{
		font-size: 16px;
	}

	.values-body-item{
		width: 100%;
	}

	.values-body-item-content h3{
		font-size: 18px;
	}

	.values-image{
		max-width: 100%;
		background-position: bottom 20px right 10px;
		background-size: auto 140px;
		padding-right: 50px;
	}

	.values-image:before{
		right: 10px;
		width: 30px;
		height: 140px;
	}

	.award-winning-box{
		border-radius: 12px;
		bottom: 20px;
	}

	.award-winning-box .icon-box img{
        max-width: 40px;
    }

	.award-winning-content{
		width: calc(100% - 50px);
	}

	.award-winning-content h3{
		font-size: 18px;
	}

	.page-catagery-list,
	.sidebar-cta-box{
		padding: 20px;
    }

	.page-catagery-list h3,
	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.sidebar-cta-logo img{
		max-width: 50px;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}
	
	.service-entry h2{
        font-size: 26px;
    }

	.service-entry ul{
		gap: 10px;
	}

	.service-entry ul li{
		width: 100%;
	}

	.service-expert-box,
	.service-approach-box,
	.service-solution-box{
        margin-top: 30px;
    }

	.service-expert-list{
		gap: 25px;
	}

	.service-expert-list .about-body-item{
        width: 100%;
    }

	.service-approach-box ul{
        margin-top: 20px;
    }

	.service-solution-image-content,
	.service-solution-item-list{
		gap: 20px;
	}

	.service-solution-image,
	.service-solution-image-content .why-choose-item{
		width: 100%;
	}

	.service-solution-image img{
		aspect-ratio: 1 / 0.58;
	}

	.service-solution-item-list .why-choose-item{
		width: 100%;
	}
	
	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-entry h2{
        font-size: 24px;
    }

	.tag-links{
		font-size: 18px;
	}

	.project-item-content h3{
		font-size: 18px;
	}

	.project-catagery-list h3,
	.project-catagery-list ul li{
		font-size: 18px;
	}

	.project-catagery-list ul li span{
		width: 56%;
	}

	.project-entry h2{
		font-size: 26px;
	}

	.project-measurable-box,
	.projects-solution-box{
		margin-top: 30px;
	}

	.project-measurable-item{
		width: 100%;
	}

	.project-measurable-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.projects-solution-list{
		width: 100%;
	}

	.projects-solution-list h3{
		font-size: 18px;
        margin-bottom: 10px;
    }

	.team-sidebar-image img{
        aspect-ratio: 1 / 0.92;
    }

	.team-sidebar-body h3,
	.team-sidebar-body ul li,
	.team-sidebar-footer h3{
     	font-size: 18px;
    }

	.team-sidebar-body h3{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
	
	.team-sidebar-footer{
        padding: 15px 20px;
    }

	.member-info-list{
		gap: 20px;
	}

	.member-info-item{
		width: calc(50% - 10px);
		padding: 15px;
	}

	.member-info-item-content h3{
		font-size: 18px;
	}

	.skills-progress-bar{
        margin-bottom: 20px;
    }

	.skills-progress-bar .skillbar .skill-progress{
		height: 14px;
	}

	.contact-us-form{
		padding: 20px;
	}

	.google-map iframe{
        height: 350px;
    }

	.contact-info-list{
		gap: 20px;
	}
	
	.contact-info-item{
		width: 100%;
	}

	.contact-item-content h3{
		font-size: 18px;
	}
}


/*----------------------*/
.our-philosphy {padding:60px 0;background: var(--bs-black);}
.feature-block-one {
    position: relative;
}
.feature-block-one .inner-box {
    position: relative;
    max-width: 370px;
    margin: 0 auto 30px;
    padding: 0 20px;
}
.feature-block-one .inner-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 38px;
    right: 0;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .2);
    transform: translateY(38px);
    background: #fff;
    border-radius: 6px;
    transition: all .5s ease 0s;
}
.feature-block-one .image {
    position: relative;
    border-radius: 130px;
    overflow: hidden;
    transition: all .5s ease 0s;
    background: #fff;
    margin: 0 auto;
    width: fit-content;
    padding: 20px;
    box-shadow: 0px 0px 10px #c9c9c9;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-block-one .image img {
    width: 90px;
}
.feature-block-one .content {
    position: relative;
    text-align: center;
    padding: 24px 0;
}
.feature-block-one .content h5 {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0px #0404042e;
}
.feature-block-one .content h4 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: var(--bs-black);
}
.feature-block-one .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    border-radius: 6px;
    padding: 0 20px;
    transition: all .5s ease 0s;
}
.feature-block-one .text {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
    border-radius: 6px;
}
.feature-block-one .text:before {
    position: absolute;
    content: "";
    opacity: .85;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--chief-pink-blue);
    border-radius: 6px;
}
.feature-block-one .text p {
    color: #000000;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.feature-block-one .text .link-btn {position: relative;transform: translateY(50%);}
.feature-block-one .inner-box:hover .link-btn a {
    transform: scale(1);
    opacity: 1;
}
.feature-block-one .link-btn a {
    position: relative;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transform: scale(.5);
    opacity: 0;
    border-radius: 5px;
    transition: all .5s ease .5s;
    background: #ffffff;
    padding: 10px;
}
.feature-block-one .inner-box:hover:before {
    transform: translateY(0);
}
.feature-block-one .inner-box:hover .image {
    opacity: 0;
    visibility: hidden;
}
.feature-block-one .inner-box:hover .overlay {
    opacity: 1;
    visibility: visible;
	z-index:2;
}
/*----------------------*/
.sdsLeader {
    text-align: center;
    padding: 30px 0 40px;
}
.sdsLeader h3{
    font-size: 80px;
    color: var(--accent-secondary-color);
    font-weight: 500;
    background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0px #0404042e;
}


.ab_radis {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.ab_radis .ribbon_x {
    width: 9%;
    /* background: var(--accent-color); */
    position: relative;
    padding: 0;
}
.ab_radis .ribbon_x img {width:100%}
.ab_radis .ribbon_x .ribbon_pad {color:#fff;font-size: 45px;text-align: center;position: absolute;z-index: 1;top: 0;padding: 115px 10px 0;}
.ab_radis .ribbon_x .ribbon_pad h3 {color:#fff;font-size: 17px;text-align: center;line-height: 20px;}
.ab_radis .sf_adsf {
    width: 100%;
}
.ab_radis .sf_adsf .sc_x {
    border-radius: 5px;
    text-align: center;
    background: var(--chief-pink-blue);
    margin: 18px auto 0;
    width: fit-content;
    padding: 5px 15px;
}
.ab_radis .sf_adsf .sc_x p {
    margin: 0;
    color: #000;
}
.ab_radis .sf_ad{
    display: flex;
    flex: 1;
    gap: 20px;
}
.ab_radis .sf_ad .sf_adtwo{background: #000000;flex: 1;padding: 35px 20px;border-radius: 10px;}
.ab_radis .sf_ad .sf_adtwo ul{
    margin: 0;
    padding: 0;
}
.ab_radis .sf_ad .sf_adtwo ul li{
    margin-bottom: 13px;
    color: #d9d9d9;
    list-style: none;
    padding-left: 30px;
    position: relative;
}
.ab_radis .sf_ad .sf_adtwo ul li:last-child{margin-bottom:0}
.ab_radis .sf_ad .sf_adtwo ul li:before{content: "\f0a4";font-family: FontAwesome;position: absolute;left: 0;color: var(--accent-secondary-color);}


.home_blo {
    position: relative;
}
.home_blo .post-item{display: flex;border: 0px solid var(--divider-color);border-radius: 0;height: auto;margin-bottom: 0;overflow: hidden;align-items: center;gap: 50px;}
.home_blo .post-item .post-featured-image{width: 50%;border: 1px solid var(--divider-color);border-radius: 20px;overflow: hidden;}
.home_blo .post-item .blog-item-body{border: 1px solid var(--divider-color);border-radius: 20px;overflow: hidden;flex: 1;/* margin-left: -90px; */position: relative;background: #fff;}
.home_blo .post-item .blog-item-body .post-item-content{overflow: hidden;}
.home_blo .post-item .blog-item-body .post-item-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.home_blo .post-item .blog-item-body .post-item-content p {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
   line-clamp: 2;
   -webkit-box-orient: vertical;
   margin-bottom: 0;
   }

.home_blo .blog-slider .blog-pagination{
    text-align: center;
    margin-top: 15px;
}
 .home_blo .blog-slider .blog-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 6px;
    border-radius: 6px;
}
 .home_blo .blog-slider .blog-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--chief-dark-y);
}
.home_blo .blog-btn {
    display: flex;
    justify-content: end;
    gap: 5px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.home_blo .blog-btn .blog-btn-prev,
.home_blo .blog-btn .blog-btn-next {
    background: var(--chief-pink-blue);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: #fff;
}
.home_blo .blog-btn .blog-btn-prev i,
.home_blo .blog-btn .blog-btn-next i {}
.home_blo .blog-btn .blog-btn-prev {}
.home_blo .blog-btn .blog-btn-next {}

.timeline{
  overflow:hidden;
  padding:60px 0;
  background: #000000;
}

.timeline h4{
  text-align:center;
  font-size:26px;
  margin-bottom:40px;
}

.timeline-wrapper{
  /* overflow:hidden; */
}

.timeline ol{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items:center;
  width: 100%;
  padding: 262px 40px;
  transition:transform .8s ease;
}

.timeline ol li{
  position:relative;
  list-style:none;
}
.timeline ol li .time_x{
  /* width:280px; */
  /* padding:15px; */
  font-size:14px;
  /* background: var(--accent-color); */
  /* border-radius:16px; */
  /* color:#555; */
  /* box-shadow: 0px 0px 10px #e3e3e3; */
}
.timeline time{
  display:block;
  font-size:18px;
  font-weight:bold;
  margin-bottom:6px;
  color:#000;
}


.timeline ol li .time_x .desc {
    height: 100px;
}
.timeline ol li .time_x .desc h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}
.timeline ol li .time_x .desc p {color: #a7a7a7;margin: 0;font-size: 15px;}
.timeler {}
.timeler .timeline-wrapper {}
.timeler .timeline-wrapper ol:before{content:'';width: 88%;height: 5px;background: var(--chief-pink-blue);display: block;position: absolute;left: 80px;}
.timeler .timeline-wrapper ol {
    padding: 0;
    padding: 0;
    margin: 0;
    gap: 28px;
    overflow: hidden;
    position: relative;
}
.timeler .timeline-wrapper li{
    width: 100%;
    height: fit-content;
    overflow: hidden;
}
.timeler .timeline-wrapper ol li .time_x{
    position: relative;
    display: flex;
    transform: inherit;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.timeler .timeline-wrapper ol li .time_x .time_img .time_imgsf {
    padding: 8px;
}
.timeler .timeline-wrapper ol li .time_x .time_img {
    border-radius: 100px;
    border: 6px solid var(--accent-secondary-color);
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    padding: 8px;
    background: #fff;
}
.timeler .timeline-wrapper ol li .time_x .time_img:before{content:'';border-top: 8px solid var(--accent-secondary-color);border-left: 8px solid #d7d7d700;border-right: 8px solid #d7d7d700;border-bottom: 8px solid #d7d7d700;position: absolute;bottom: -21px;left: 36px;}
.timeler .timeline-wrapper ol li .time_x .time_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.timeler .timeline-wrapper li:nth-child(even) .time_x .time_img {}
.timeler .timeline-wrapper li:nth-child(even) .time_x .numbers {order:2}
.timeler .timeline-wrapper li:nth-child(even) .time_x .time_img{order:3;}
.timeler .timeline-wrapper li:nth-child(even) .time_x .time_img:before {content:'';border-top: 8px solid #d7d7d700;border-left: 8px solid #d7d7d700;border-right: 8px solid #d7d7d700;border-bottom: 8px solid var(--accent-secondary-color);position: absolute;top: -21px;left: 36px;bottom: inherit;}
.timeler .timeline-wrapper li .numbers {
    box-shadow: 0px 0px 10px #000;
    background: var(--accent-secondary-color);
    padding: 5px;
    width: 45px;
    height: 45px;
    border-radius: 52px;
    margin: 0 auto;
}
.timeler .timeline-wrapper li .numbers span{
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 41px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}
/*-------------------------*/
.contact-section {
    position: relative;
    padding: 60px 0;
    background: #ffffff;
}
.contact-section .pattern {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    z-index: 0;
}
.contact-section .top-content {
    position: relative;
}
.contact-section .wrapper-box {
    margin-bottom: 30px;
}
.contact-section .sec-title {
    margin-bottom: 40px;
}

.contact-section .sec-title.style-two h2 {
    padding: 10px 0;
    color: var(--bs-black);
    font-weight: 600;
    font-size: 90px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 0;
    width: calc(50% - 15px);
}
.contact-section .contact-form .bootstrap-select>.dropdown-toggle,.contact-section .contact-form .form-group input[type=email],.contact-section .contact-form .form-group input[type=text],.contact-section .contact-form .form-group select,.contact-section .contact-form .form-group textarea {
    color: #2e2e2e;
    background-color: #ffffff00;
    height: 50px;
    width: 100%;
    border: 1px solid #e3e3e3;
    padding: 0 15px;
    border-radius: 10px;
    outline: none;
}
.contact-section .contact-form .form-group select {
    background: #fff;
}
.contact-section .contact-form .form-group textarea {
    height: 143px;
    padding: 15px;
}

.contact-section .contact-form .btn-style-four {
    width: 100%
}

.contact-section .contact-form .btn-style-four .btn-title {
    padding: 15px 40px
}

.contact-form .btn-light:not(:disabled):not(.disabled).active:focus,.contact-form .btn-light:not(:disabled):not(.disabled):active:focus,.contact-form .show>.btn-light.dropdown-toggle:focus,.contact-form button:focus {
    outline: none;
    outline: none!important;
    box-shadow: none
}

.dropup .dropdown-toggle:after {
    display: none
}

.bootstrap-select .dropdown-toggle .filter-option:after {
    font-family: Font Awesome\ 5 Pro;
    content: "\f107";
    position: absolute;
    right: 25px;
    top: 15px;
    display: block;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    z-index: 5;
    font-weight: 400
}

.contact-form .btn-light:not(:disabled):not(.disabled).active,.contact-form .btn-light:not(:disabled):not(.disabled):active,.contact-form .show>.btn-light.dropdown-toggle {
    color: #9a9b9c;
    border-color: #f3f3f3;
    background-color: #fff
}
.cont-fomr {display:flex;flex-wrap: wrap;gap: 30px;padding: 40px;background: #f6f5f2;border-radius: 45px;}
.contact-section .subscribe-newsletter {
    position: relative;
    padding: 55px 30px 0;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    z-index: 9
}
/*-------------------------*/
.footer-flex {
    display: flex;
    gap: 100px;
}
.footer-flex .sf-ftr{
    flex: 1;
}
.ftr-social-privacy{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ftr-social-privacy .privacy {}
.ftr-social-privacy .privacy ul{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}
.ftr-social-privacy .privacy ul li{
    position: relative;
    padding-left: 14px;
}
.ftr-social-privacy .privacy ul li:before{content:'';width: 5px;height: 5px;background: #fff;display: block;position: absolute;border-radius: 46px;top: 5px;left: 0;}
.ftr-social-privacy .privacy ul li a {
    color: #fff;
    font-size: 15px;
}


.hero_slider .carousel-inner .carousel-item .desc{
    position: absolute;
    transform: translate(0px, -50%);
    top: 50%;
    width: 100%;
}
.hero_slider .carousel-inner .carousel-item .desc .box{
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: fit-content;
    padding: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(8, 15, 30, 0.35);
    color: #fff;
    overflow: hidden;
    width: 50%;
}
.hero_slider .carousel-inner .carousel-item .desc .box h2{
    color: var(--accent-secondary-color);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero_slider .carousel-inner .carousel-item .desc .box h3{
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
}

.ps_sticky {    position: sticky;
    top: 110px;}

/*---------------------------*/
	.about_header{
	background: url('../img/page-header-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 140px 0 70px;
}

.about_header .desc{
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
.about_header h1{
	display: inline-block;
	color: var(--white-color);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1em;
	margin-bottom: 10px;
	cursor: none;
}
.about_header h2{
	display: inline-block;
	color: var(--white-color);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1em;
	margin-bottom: 16px;
	cursor: none;
}
.about_header p{
	display: inline-block;
	color: var(--white-color);
	font-size: 17px;
	font-weight: 300;
	margin-bottom: 0;
	cursor: none;
}
/* INFO STRIP */
.info-strip{
  display: flex;
  flex-wrap: wrap;
}
.info-strip .info_left {padding: 40px 40px 0px 0;background: #2a3140;width: 30%;position: relative;}
.info-strip .info_left .dark {position: relative;}
.info-strip .info_left:before{content:'';background: #2a3140;position: absolute;right: 0;width: 600%;height: 100%;top: 0;}
.info-strip .info_right {padding: 40px 0px 40px 40px;flex: 1;background: #f4f4f4;display: flex;position: relative;gap: 15px;}
.info-strip .info_right:before{content:'';background: #f4f4f4;position: absolute;left: 0;width: 600%;height: 100%;top: 0;}
.info-strip .info_left .dark h3{color: #fff;font-weight: 500;font-size: 36px;margin-bottom: 10px;}
.info-strip .info_left .dark p{color: #fff;margin: 0;}
.info-strip .info_right .box{margin: 0;position: relative;}
.info-strip .info_right .box h3{color: #000000;font-size: 20px;margin-bottom: 10px;}
.info-strip .info_right .box p{color: #606060;line-height: 20px;font-size: 15px;margin-bottom: 6px;}
.info-strip .info_right .box p:last-child{
    margin-bottom: 0;
}
.our-philosphy.bg-bes {    background: #ffffff00;}
.bg_gray_cs{background:var(--chief-gray);padding: 60px 0;}
.bg_gray_cs .desc_title{
    text-align: center;
    margin-bottom: 30px;
}
.bg_gray_cs .desc_title  h2{
    color: var(--accent-secondary-color);
    font-weight: 500;
    background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0px #0404042e;
}
.bg_gray_cs .desc_title  p{
    color: #fff;
}
.list_sft{
    margin-top: 50px;
}
.list_sft h2{
    /* color: var(--chief-yellow-lite); */
    /* text-align: center; */
    /* margin-bottom: 30px; */
}
.list_sft .four_two{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
.list_sft .four_two .sf_gr{
    display: flex;
    justify-content: space-between;
    gap: 70px;
    justify-content: center;
    text-align: center;
    position: relative;
}
.list_sft .four_two .sf_gr:nth-child(1):before{content:'';position: absolute;width: 2px;height: 100%;background: var(--chief-yellow-lite);right: -25px;}
.list_sft .four_two .sf_gr .sf_box{
    position: relative;
}
.list_sft .four_two .sf_gr .sf_box:before{
    content:'';
    border-right: 1px solid #eeeeee21;
    position: absolute;
    width: 1px;
    height: 100%;
    right: -24px;
}
.list_sft .four_two .sf_gr .sf_box:last-child:before {display:none}
.list_sft .four_two .sf_gr .sf_box img {
    width: 85px;
}
.list_sft .four_two .sf_gr .sf_box p{
    color: #fff;
    margin: 0;
}

.video_desc {background:url('../img/about/video.png');background-repeat: no-repeat;background-attachment: fixed;background-size: cover;}
.video_desc .video_pad{
    padding: 80px;
}
.video_desc .video_pad .video_bg{
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    width: 50%;
    margin: 0 auto;
}
.video_desc .video_pad .video_bg h3{
    background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
}
.video_desc .video_pad .video_bg h4{
    color: #000;
    font-size: 35px;
    margin-bottom: 20px;
}
.video_desc .video_pad .video_bg p{}
.big-img {
    width: 70%;
    margin: 0 auto;
}
.big-img img{width:100%}
/*---------------------------*/	

.ribbon_text h2 {
    display: inline-block;
    padding: 6px 45px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    letter-spacing: 0;
    font-size: 35px;
    background: var(--chief-pink-blue);
    }
.ribbon_text {text-align:center}
.ribbon_text h2:before{content:'';position: absolute;height: 0;width: 0;border-style: solid;border-width: 0;outline: none;border-color: #ad791f #ad791f #ad791f  transparent;left: -25px;border-width: 17px;}
.ribbon_text h2:after{content:'';position: absolute;height: 0;width: 0;border-style: solid;border-width: 0;outline: none;border-color: #ad791f transparent #ad791f #ad791f;right: -25px;border-width: 17px;}

.ribbon_text h2:before, .ribbon_text h2:after {
    top: 20px;
    z-index: -10;
}

/*---------------------------*/
	.leader_header{
	background: url('../img/page-header-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 140px 0 70px;
}

.leader_header .desc{
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
.leader_header h1{font-size: 45px;font-weight: 500;line-height: 1.1em;margin-bottom: 10px;cursor: none;text-transform: uppercase;background: linear-gradient(90deg, var(--chief-dark-y), var(--chief-yellow-lite));-webkit-background-clip: text;-webkit-text-fill-color: transparent;-webkit-text-stroke: 0px #0404042e;}

.leader_header .desc_dls {
    width: 70%;
    margin: 0 auto;
}
.leader_header .desc_dls p{
	display: inline-block;
	color: var(--white-color);
	font-size: 17px;
	font-weight: 300;
	margin-bottom: 0;
	cursor: none;
}
/*-----------------page-team------------------*/
.page-team {}
.page-team .team-item{
    background: var(--chief-gray);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
}
.page-team .team-item .team-image{
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.page-team .team-item .team-image .image-anime{
    width: 40%;
    border-radius: 10px;
}
.page-team .team-item .team-image .image-anime img{}
.page-team .team-item .team-image .team-desc{
    flex: 1;
}
.page-team .team-item .team-image .team-desc h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    text-decoration: underline;
}
.page-team .team-item .team-image .team_name{
    margin-bottom: 20px;
}
.page-team .team-item .team-image .team_name h3{
    color: var(--chief-dark-y);
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 5px;
}
.page-team .team-item .team-image .team_name span{
    color: #fff;
    display: block;
}
.page-team .team-item .team-image .team-desc p{
    color: #a9a9a9;
    font-size: 15px;
}
.page-team .team-item .team-image .pin_point{}
.page-team .team-item .team-image .pin_point h3{
    color: var(--chief-yellow-lite);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-decoration: none;
}
.page-team .team-item .team-image .pin_point ul{
    padding: 0 0 0 15px;
    color: #fff;
    margin: 0;
}
.page-team .team-item .team-image .pin_point ul li{
    font-size: 15px;
    color: #a9a9a9;
    margin-bottom: 5px;
}
.page-team .team-item .team-image .pin_point ul li:last-child{margin-bottom:0}
.page-team .team-item .team-image .linkedin{position: absolute;bottom: 20px;right: 20px;}
.page-team .team-item .team-image .linkedin a{
    width: 35px;
    display: block;
}
.page-team .team-item .team-image .linkedin a img{width: 100%;}
/*-----------------page-team------------------*/

.two_ad {
    padding: 60px 0;
}
.two_ad .box{
    box-shadow: 0px 0px 15px #eee;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
}
.two_ad .box .box_icons{
    background: #0000001f;
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
}
.two_ad .box .box_icons i{
    color: #000000;
    font-size: 25px;
}
.two_ad .box .box_email{}
.two_ad .box .box_email h3{
    color: var(--chief-dark-y);
    margin-bottom: 10px;
}
.two_ad .box .box_email a{
    display: block;
    width: fit-content;
    color: #000;
    font-size: 17px;
}

.mp-location{
    padding-top: 0;
}
.mp-location .title{
    background: linear-gradient(to right, var(--chief-dark-y), var(--chief-yellow-lite));
    text-align: center;
}
.mp-location .title h3{
    padding: 15px;
    color: #323232;
    cursor: pointer;
}
.mp-location .google-map-hide{
    display: none;
}
.mp-location .google-map-hide.main{
    display: block;
}



.dsd_coming_soon {
    background: url(../img/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 140px 0 60px;
    height: 100vh;
    }
.dsd_coming_soon .desc{
    text-align: center;
    background: #0000008a;
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
}
.dsd_coming_soon .desc h3{
        font-size: 70px;
        line-height: 75px;
        color: #fff;
        margin-bottom: 25px;
        }
.dsd_coming_soon .desc p {
    color: #fff;
    margin: 0;
    font-size: 16px;
}
.dsd_coming_soon .desc p a {
    background: var(--chief-yellow-lite);
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 26px;
    color: #000;
}
.navbar-toggle,
.side_menu {display:none}
    .side_menu {
        background: #000000;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 9999;
        right: -100%;
        top: 0;
        padding: 10px 30px;
        transition: .6s;
        overflow-y: auto;
        z-index: 99999;
    }
.side_menu .head_mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}	
.side_menu .head_mob .menu_close{
    background: #c30000;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}	
.side_menu .head_mob .menu_close svg{}	
.side_menu .responsive-menu{}	
.side_menu .responsive-menu ul{}	
.side_menu .responsive-menu ul li{
    position: relative;
    border-bottom: 1px solid #eeeeee36;
}	
.side_menu .responsive-menu ul li.d-none {
    display: block !important;
}
.side_menu .responsive-menu ul li a{
    color: #fff;
    font-size: 18px;
    /* width: max-content; */
    padding: 20px 0;
}
.side_menu .responsive-menu ul li ul{display: block;display: none;}
.side_menu .responsive-menu ul li.submenu:after {content: "\f107";font-family: FontAwesome;position: absolute;right: 0;background: #fff;width: 25px;height: 25px;display: flex;align-items: center;justify-content: center;color: #000;border-radius: 4px;top: 16px;z-index: -1;}