@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url(https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.css);
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	box-sizing: border-box;
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}
:before,
:after {
	box-sizing: border-box;
}
.v-center {
	align-items: center;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}
/*------------------header------------------------------------*/
.header {
	position: fixed;
	z-index: 1000;
	width: 100%;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
	transition: all ease-out .5s;
	background-color: #0a262d;
}
.header-active ul li a {
	color: #000 !important;
}
.header-active {
	background-color: #fff;
	color: #000 !important;
	box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.header .item-left {
	flex: 3 0 10%;
}
.header .logo a {
	font-size: 30px;
	color: #000000;
	font-weight: 700;
	text-decoration: none;
}
.logo a img {
	width: 96px;
	aspect-ratio: 3 / 2;
	object-fit: contain;
}
.header .item-center {
	flex: 0 0 66%;
}
.header .item-right a {
	text-decoration: none;
	font-size: 16px;
	color: #555555;
	display: inline-block;
	margin-left: 10px;
	transition: color 0.3s ease;
}
.header .menu>ul>li {
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu>ul>li>a {
	font-size: 15px;
	/* font-weight: 500; */
	color: #fff;
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
}
.header .menu>ul>li>a.active {
	border-bottom: 3px solid #bb0b0b;
	padding: 6px 5px;
}
.header .menu>ul>li>a:hover {
	text-decoration: none;
}
.header .menu>ul>li .sub-menu {
	position: absolute;
	z-index: 500;
	background-color: #ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top: 25px;
	opacity: 0;
	visibility: hidden;
}
@media(min-width: 992px) {
	.header .menu>ul>li.menu-item-has-children:hover .sub-menu {
		margin-top: 0;
		visibility: visible;
		opacity: 1;
	}
}
.header .menu>ul>li .sub-menu>ul>li {
	line-height: 1;
}
.header .menu>ul>li .sub-menu>ul>li>a {
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu>ul>li .single-column-menu {
	min-width: 280px;
	max-width: 350px;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
	line-height: 1;
	display: block;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
	padding: 5px 0;
	display: inline-block;
	font-size: 14px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
}
.header .menu>ul>li .sub-menu.mega-menu {
	left: 50%;
	transform: translateX(-50%);
}
.header .menu>ul>li .sub-menu.mega-menu-column-4 {
	max-width: 90%;
	width: 100%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 15px;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
	flex: 0 0 30%;
	padding: 0 15px;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	padding: 8px 0;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title a {
	color: #000;
	text-decoration: none;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
	text-align: center;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.techonology {
	flex: 0 0 15%;
	padding: 0 15px;
	width: 30px;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
	max-width: 100%;
	width: 70px;
	vertical-align: middle;
	margin-top: 10px;
	height: 70px;
	object-fit: scale-down;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
	color: #ea4636;
	font-weight: 500;
}
/* banner section */
.banner-section {
	background-image: url('../img/banner.jpg');
	background-size: cover;
	background-position: center;
	height: 700px;
	width: 100%;
	display: block;
}
.mobile-menu-head,
.mobile-menu-trigger {
	display: none;
}
/*responsive*/
@media(max-width: 991px) {
	.header .item-center {
		order: 3;
		flex: 0 0 100%;
	}
	.header .item-left,
	.header .item-right {
		flex: 0 0 auto;
	}
	.v-center {
		/* justify-content: space-between; */
		justify-content: space-around;
	}
	.header .mobile-menu-trigger {
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
		background: #fff;
		padding: 6px;
		border-radius: 3px;
		border: 1px solid #33333370;
	}
	.header .mobile-menu-trigger span {
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after {
		content: '';
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before {
		top: -6px;
	}
	.header .mobile-menu-trigger span:after {
		top: 6px;
	}
	.header .item-right {
		align-items: center;
	}
	.header .menu {
		position: fixed;
		width: 320px;
		background-color: #ffffff;
		left: 0;
		top: 0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active {
		transform: translate(0%);
	}
	.header .menu>ul>li {
		line-height: 1;
		margin: 0;
		display: block;
	}
	.header .menu>ul>li>a {
		line-height: 50px;
		height: 50px;
		padding: 0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		color: #000;
	}
	.header .menu>ul>li>a i {
		position: absolute;
		height: 50px;
		width: 50px;
		top: 0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head {
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top: 0;
	}
	.header .menu .mobile-menu-head .go-back {
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color: #000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back {
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title {
		font-size: 15px;
		font-weight: 500;
		color: #000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close {
		height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color: #000000;
		font-size: 25px;
	}
	.header .menu .menu-main {
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu>ul>li .sub-menu.mega-menu,
	.header .menu>ul>li .sub-menu {
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin: 0;
		padding: 15px;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
	.header .menu>ul>li .sub-menu.active {
		display: block;
	}
	@keyframes slideLeft {
		0% {
			opacity: 0;
			transform: translateX(100%);
		}
		100% {
			opacity: 1;
			transform: translateX(0%);
		}
	}
	@keyframes slideRight {
		0% {
			opacity: 1;
			transform: translateX(0%);
		}
		100% {
			opacity: 0;
			transform: translateX(100%);
		}
	}
	.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
		margin-top: 0;
	}
	.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
		margin-bottom: 20px;
	}
	.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
		margin-bottom: 0px;
	}
	.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
		flex: 0 0 100%;
		padding: 0px;
	}
	.header .menu>ul>li .sub-menu>ul>li>a,
	.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
		display: block;
	}
	.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
		margin-bottom: 15px;
	}
	.menu-overlay {
		position: fixed;
		background-color: rgba(0, 0, 0, 0.5);
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity: 0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}
}
/*-----------------------------main slider css--------------------------------------------------------------------------*/
#carousel .carousel-item.system-integration {
	background-image: url("../img/system-integration-banner.png");
}
#carousel .carousel-item.digital-marketing {
	background-image: url("../img/digital-marketing-banner.png");
}
#carousel .carousel-item.cloud-computing {
	background-image: url("../img/cloud-computing-banner.png");
}
#carousel .carousel-item.kpo {
	background-image: url("../img/kpo-banner.png");
}
#carousel .carousel-item.cloud-computing {
	background-image: url("../img/app-web-development-banner.png");
}
#carousel .carousel-item {
	width: 100%;
	height: 480px;
	background: no-repeat center top scroll;
	background-size: cover;
	padding: 120px 0;
	margin-top: 60px;
}
#carousel .carousel-inner .carousel-item {
	transition: -webkit-transform 2s ease;
	transition: transform 2s ease;
	transition: transform 2s ease, -webkit-transform 2s ease;
}
#carousel .carousel-item .caption {
	/* background-color: rgba(0, 0, 0, 0.5); */
	padding: 20px 40px;
	color: white;
	animation-duration: 1s;
	animation-delay: 2s;
}
#carousel .caption h3 {
	animation-duration: 1s;
	animation-delay: 2s;
}
.caption ul li {
	padding: 5px 0;
	font-size: 16px;
}
#carousel .caption p {
	animation-duration: 1s;
	animation-delay: 2.2s;
}
#carousel .caption a {
	animation-duration: 1s;
	animation-delay: 2.4s;
}
/*--------------------------Button--------------------------- */
.delicious-btn {
	display: inline-block;
	min-width: 160px;
	height: 60px;
	color: #ffffff;
	border: none;
	border-left: 3px solid #1c8314;
	border-radius: 0;
	padding: 0 30px;
	font-size: 16px;
	line-height: 58px;
	font-weight: 600;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	text-transform: capitalize;
	background-color: #40ba37;
}
.delicious-btn.active,
.delicious-btn:hover,
.delicious-btn:focus {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	background-color: #1c8314;
	border-color: #40ba37;
}
/* first section */
.main-hero-section {
	padding: 50px 10px;
}
/* .main-hero-section h2.title {
	font-size: 36px;
} */
/* .main-hero-section .para-text {
	font-size: 15px;
	color: #606060;
} */
.hero-bg {
	background: #f8f8f8;
}
.hero-flex {
	width: 100%;
	display: flex;
	flex-direction: row;
	/* gap: 50px; */
	padding: 10px 0;
	color: #000;
}
.content-hero {
	max-width: 252px;
	width: 100%;
}
.content-hero a {
	text-decoration: none;
	color: #fff;
}
.hero-flex .content-hero a span {
	color: #000;
	font-size: 14px;
	font-weight: 500;
}
.glance-image-section {
	display: flex;
	flex-direction: column;
}
.glance-image-section img {
	display: flex;
	width: 25%;
	margin: auto
}
.glance-image-section p {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}
/*------------------Business Alliances------------------------------------------------------------ */
.business-alliances .item img {
	width: 80%;
	aspect-ratio: 5 / 2;
	object-fit: contain;
	border: 1px solid #ced4da;
	border-radius: 7px;
	padding: 10px;
}
/*---------------------------footer css-----------------------------------------*/
/*------------------------------------
. Footer Section CSS
------------------------------------*/
.pl-55 {
	padding-left: 55px;
}
.rs-footer.style1 {
	background: #121212;
	background-size: cover;
}
.rs-footer.style1 .footer-top {
	padding: 50px 0 20px;
}
.rs-footer.style1 .footer-top .footer-logo img {
	height: 50px;
	border-radius: 2px;
}
.rs-footer.style1 .footer-top .footer-title {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0;
	position: relative;
	margin-bottom: 30px;
	text-transform: uppercase;
	padding-bottom: 14px;
}
.rs-footer.style1 .footer-top .footer-title:after {
	content: "";
	width: 50px;
	height: 4px;
	background: #bb0b0b;
	position: absolute;
	bottom: -4px;
	right: 0;
	left: 0;
	margin-left: 0;
	border-radius: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 0;
}
.rs-footer.style1 .footer-top .site-map li {
	margin-bottom: 5px;
}
.rs-footer.style1 .footer-top .site-map li a {
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
}
.rs-footer.style1 .footer-top .site-map li a:hover {
	color: #bb0b0b;
}
.rs-footer.style1 .footer-top .site-map li:last-child {
	margin-bottom: 0;
}
.rs-footer.style1 .footer-top .footer-social li {
	display: inline;
	margin-right: 5px;
}
.rs-footer.style1 .footer-top .footer-social li a i {
	padding: 0 0px 0 0;
	font-size: 15px;
	margin-right: 3px;
	transition: all .8s ease;
	background: #1c2024;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 0;
	color: #fff;
	text-align: center;
}
.rs-footer.style1 .footer-top .footer-social li a i:hover {
	color: #ffffff;
	background: #bb0b0b;
}
.rs-footer.style1 .footer-top .footer-social li:last-child {
	margin: 0;
}
.rs-footer.style1 .footer-top .address-widget li {
	padding: 0px 0px 16px 40px;
	position: relative;
	font-size: 14px;
}
.rs-footer.style1 .footer-top .address-widget li .desc {
	color: #ffffff;
	font-size: 14px;
}
.rs-footer.style1 .footer-top .address-widget li .desc a {
	color: #ffffff;
	text-decoration: none;
}
.rs-footer.style1 .footer-top .address-widget li .desc a:hover {
	color: #bb0b0b;
}
.rs-footer.style1 .footer-top .address-widget li i {
	color: #bb0b0b;
	position: absolute;
	left: 0px;
}
.rs-footer.style1 .footer-top .address-widget li i:before {
	font-size: 20px;
}
.rs-footer.style1 .footer-top .widget-desc {
	margin: 0;
}
.rs-footer.style1 .footer-top p {
	margin: 25px 0 0;
	position: relative;
	color: #fff;
	font-size: 14px;
}
.pb-20 {
	padding-bottom: 20px;
}
.rs-footer.style1 .footer-top p input[type=email] {
	border: none;
	width: 92%;
	font-size: 13px;
	padding: 20px 60px 20px 20px;
	margin: 0;
	color: #0a0a0a;
	overflow: hidden;
	border-radius: 0px;
	background: #fff;
}
.rs-footer.style1 .footer-top p input[type="submit"] {
	border: none;
	padding: 17px 30px;
	font-size: 14px;
	background: #bb0b0b;
	color: #ffffff;
	border-radius: 0px;
	margin-top: 15px;
	text-transform: uppercase;
	font-weight: 600;
	transition: all .5s ease;
}
.rs-footer.style1 .footer-top p input[type=submit]:hover {
	opacity: .9;
}
.rs-footer.style1 .footer-top p ::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #0a0a0a;
	opacity: 1;
}
.rs-footer.style1 .footer-top p ::-moz-placeholder {
	/* Firefox 19+ */
	color: #0a0a0a;
	opacity: 1;
}
.rs-footer.style1 .footer-top p :-ms-input-placeholder {
	/* IE 10+ */
	color: #0a0a0a;
	opacity: 1;
}
.rs-footer.style1 .footer-top p :-moz-placeholder {
	/* Firefox 18- */
	color: #0a0a0a;
	opacity: 1;
}
.rs-footer.style1 .footer-bottom {
	padding: 20px 0;
	background: #000;
}
.rs-footer.style1 .footer-bottom .copyright p {
	margin: 0;
	color: #ffffff;
}
.rs-footer.style1 .footer-bottom .copy-right-menu li {
	display: inline-block;
	position: relative;
	padding: 0px 19px 0 25px;
}
.rs-footer.style1 .footer-bottom .copy-right-menu li a {
	color: #ffffff;
}
.rs-footer.style1 .footer-bottom .copy-right-menu li a:hover {
	color: #bb0b0b;
}
.rs-footer.style1 .footer-bottom .copy-right-menu li:before {
	display: block;
	content: "";
	position: absolute;
	font-size: 18px;
	background: #bb0b0b;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	transform: translateY(-50%);
	border-radius: 50%;
}
.rs-footer.style1 .footer-bottom .copy-right-menu li:first-child:before {
	display: none;
}
.rs-footer.style1.footer-home3-style .footer-bottom .copy-right-menu li:before,
.rs-footer.style1.footer-home3-style .footer-top p input[type="submit"],
.rs-footer.style1.footer-home3-style .footer-top .footer-social li a i:hover,
.rs-footer.style1.footer-home3-style .footer-top .footer-title:after {
	background: #0082f1;
}
.rs-footer.style1.footer-home3-style .footer-top .address-widget li .desc a:hover,
.rs-footer.style1.footer-home3-style .footer-bottom .copy-right-menu li a:hover,
.rs-footer.style1.footer-home3-style .footer-top .address-widget li i,
.rs-footer.style1.footer-home3-style .footer-top .site-map li a:hover {
	color: #0082f1;
}
.rs-footer.style1.footer-home4-style .footer-bottom .copy-right-menu li:before,
.rs-footer.style1.footer-home4-style .footer-top p input[type="submit"],
.rs-footer.style1.footer-home4-style .footer-top .footer-social li a i:hover,
.rs-footer.style1.footer-home4-style .footer-top .footer-title:after {
	background: #fd4a36;
}
.rs-footer.style1.footer-home4-style .footer-top .address-widget li .desc a:hover,
.rs-footer.style1.footer-home4-style .footer-bottom .copy-right-menu li a:hover,
.rs-footer.style1.footer-home4-style .footer-top .address-widget li i,
.rs-footer.style1.footer-home4-style .footer-top .site-map li a:hover {
	color: #fd4a36;
}
.rs-footer.style1.footer-home5-style .footer-bottom .copy-right-menu li:before,
.rs-footer.style1.footer-home5-style .footer-top p input[type="submit"],
.rs-footer.style1.footer-home5-style .footer-top .footer-social li a i:hover,
.rs-footer.style1.footer-home5-style .footer-top .footer-title:after {
	background: #4caf50;
}
.rs-footer.style1.footer-home5-style .footer-top .address-widget li .desc a:hover,
.rs-footer.style1.footer-home5-style .footer-bottom .copy-right-menu li a:hover,
.rs-footer.style1.footer-home5-style .footer-top .address-widget li i:before,
.rs-footer.style1.footer-home5-style .footer-top .site-map li a:hover {
	color: #4caf50;
}
.rs-footer .bg-wrap {
	background: url(assets/images/footer-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 70px 0 0 0;
}
.rs-footer .bg-wrap .footer-content .about-widget {
	color: #ffffff;
}
.rs-footer .bg-wrap .footer-content .about-widget .logo-area {
	margin-bottom: 26px;
}
.rs-footer .bg-wrap .footer-content .about-widget .logo-area a img {
	height: 40px;
}
.rs-footer .bg-wrap .footer-content .about-widget a {
	color: #e2e2e2;
}
.rs-footer .bg-wrap .footer-content .about-widget a:hover {
	color: #e94d65;
}
.rs-footer .bg-wrap .footer-content .about-widget .footer-desc {
	color: #e2e2e2;
	margin-bottom: 12px;
}
.rs-footer .bg-wrap .footer-content .about-widget .social-links {
	margin-top: 20px;
}
.rs-footer .bg-wrap .footer-content .about-widget .social-links li {
	display: inline;
	margin-right: 10px;
}
.rs-footer .bg-wrap .footer-content .about-widget .social-links li a {
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 37px;
	border-radius: 100%;
	display: inline-block;
	background: #e94d65;
	font-size: 16px;
	color: #ffffff;
}
.rs-footer .bg-wrap .footer-content .about-widget .social-links li a:hover {
	background: #ffffff;
	color: #e94d65;
}
.rs-footer .bg-wrap .footer-content .about-widget .social-links li:last-child {
	margin: 0;
}
.rs-footer .bg-wrap .footer-content .widget .widget-title {
	color: #ffffff;
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 26px;
}
.rs-footer .bg-wrap .footer-content .widget ul li {
	margin-bottom: 10px;
}
.rs-footer .bg-wrap .footer-content .widget ul li a {
	color: #e2e2e2;
	display: inline-block;
}
.rs-footer .bg-wrap .footer-content .widget ul li a:hover {
	color: #e94d65;
	margin-left: 5px;
}
.rs-footer .bg-wrap .footer-content .widget ul li:last-child {
	margin: 0;
}
.rs-footer .bg-wrap .footer-bottom {
	padding: 23px 0;
	border-top: 1px solid #13487a;
}
.rs-footer .bg-wrap .footer-bottom .copyright {
	margin: 0;
	color: #dedede;
	font-size: 14px;
}
.rs-footer .pattern-right {
	position: absolute;
	bottom: 0;
	right: 0;
}
.extra-pb {
	padding-bottom: 306px;
}
/*-------------------------------cirtifaicate css------------------------------ */
.certificate .owl-item img {
	display: block;
	width: 100%;
}
.certificate-img {
	display: flex;
	justify-content: center;
	padding: 20px 0;
}
.certificate-img .logo-img a img {
	width: 10px;
}
.rs-patter-section .logo-img {
	text-align: center;
	width: 150px;
}
.rs-patter-section .logo-img a {
	overflow: hidden;
	display: inline-block;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.rs-patter-section .logo-img a .hovers-logos {
	display: block;
	position: absolute;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	top: 0;
	left: 0;
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	width: 150px;
}
.rs-patter-section .logo-img a .mains-logos {
	transition: all 0.3s ease-in-out;
	display: block;
	filter: grayscale(1);
}
.rs-patter-section .logo-img a:hover .hovers-logos {
	display: block;
	opacity: 3;
	visibility: visible;
	transform: translateY(0%);
	filter: grayscale(0%);
}
.rs-patter-section .logo-img a:hover .mains-logos {
	display: block;
	visibility: hidden;
	transform: translateY(100%);
	filter: grayscale(1);
}
.rs-patter-section.style1 .logo-img {
	padding: 0 20px;
}
/*-----------------whatapp ------------------- */
.whatapp {
	position: fixed;
	bottom: 8px;
	left: 2px;
}
.whatapp button {
	border: 2px solid #4dc247;
	border-radius: 24px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	letter-spacing: .25px;
	transition: .08s linear;
	cursor: pointer;
	font-size: 25px;
	background-color: #4dc247;
	box-shadow: rgb(0 0 0 / 20%) 0 0 .428571rem 0;
	padding: 0 7px;
}
/* fixed social*/
#fixed-social {
	position: fixed;
	top: 130px;
	z-index: 9;
}
#fixed-social a {
	color: #fff;
	display: block;
	height: 40px;
	position: relative;
	text-align: center;
	line-height: 40px;
	width: 40px;
	margin-bottom: 1px;
	z-index: 9999;
		

}
#fixed-social a:hover>span {
	visibility: visible;
	left: 41px;
	opacity: 1;
}
#fixed-social a span {
	line-height: 40px;
	left: 60px;
	position: absolute;
	text-align: center;
	width: 120px;
	visibility: hidden;
	transition-duration: 0.5s;
	z-index: 9999;
	opacity: 0;
}
.fixed-facebook {
	background-color: #00AAE5;
}
.fixed-facebook span {
	background-color: #00AAE5;
}
.fixed-twitter {
	background-color: #7D3895;
}
.fixed-twitter span {
	background-color: #7D3895;
}
.fixed-gplus {
	background-color: #00AF54;
}
.fixed-gplus span {
	background-color: #00AF54;
}
.fixed-linkedin {
	background-color: #FFC41E;
}
.fixed-linkedin span {
	background-color: #FFC41E;
}
.fixed-instagrem {
	background-color: #ED2B29;
}
.fixed-instagrem span {
	background-color: #ED2B29;
}
.fixed-tumblr {
	background-color: #EB1471;
}
.fixed-tumblr span {
	background-color: #EB1471;
}
/*-----------------------------------about section css----------------------------------------- */
.about-banner {
	width: 100%;
}
.about-ban-img {
	width: 100%;
	position: relative;
}
.about-ban-img img {
	width: 100%;
}
.ab-ban-text {
	position: absolute;
	top: 50%;
	left: 5%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ab-ban-text h3 {
	font-weight: 600;
	font-size: 28px;
	color: #fff;
	text-transform: capitalize;
	letter-spacing: 1px;
}
.ab-ban-text p {
	font-size: 14px;
	color: #fff;
	margin: 5px 0 5px;
	text-align: left;
	width: 80%;
}
.about-banner-desk {
	display: block;
}
.about-banner-mob {
	display: none;
}
@media (min-width: 1200px) and (max-width: 1399px) {
	.ban_text p {
		font-size: 21px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.ban_text p {
		font-size: 17px;
	}
	.ban_text strong {
		font-size: 50px;
		line-height: 60px;
	}
	.ban_text strong span {
		font-size: 37px;
	}
	.ban_text a {
		font-size: 16px;
		line-height: 19px;
	}
}
@media only screen and (max-width: 991px) {
	.ban_text strong {
		font-size: 35px;
		line-height: 40px;
	}
	.ban_text strong span {
		font-size: 28px;
		line-height: 35px;
		letter-spacing: 2px;
	}
	.ban_text p {
		font-size: 14px;
		line-height: 20px;
	}
	.ban_text a {
		font-size: 13.39px;
		line-height: 15px;
	}
}
@media only screen and (max-width: 767px) {
	.about-ban-img img {
		min-height: 290px;
		object-fit: cover;
	}
}
@media only screen and (max-width: 575px) {}
@media only screen and (max-width: 480px) {
	.about-ban-img img {
		width: 100%;
		min-height: 210px;
		object-fit: initial;
		height: 100%;
		margin-top: 50px;
	}
	.ab-ban-text p {
		font-size: 12px;
		width: 70%;
	}
	.ab-ban-text h3 {
		font-weight: 600;
		font-size: 24px;
	}
	.about-banner-desk {
		display: none;
	}
	.about-banner-mob {
		display: block;
	}
}
.readon {
	color: #fff;
	font-size: 17px;
	line-height: 26px;
	font-weight: 600;
	text-transform: capitalize;
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: all 0.4s;
	z-index: 1;
	background-color: transparent;
}
.readon.consultant.discover {
	padding: 15px 40px 15px 40px;
	text-decoration: none;
}
.readon.consultant {
	padding: 18px 35px 18px 35px;
	border-radius: 0px 0px 0px 0px;
	color: #fff;
	background: #bb0b0b;
	overflow: hidden;
	position: relative;
}
/*/ start count stats /*/
section#counter-stats {
	display: flex;
	justify-content: center;
	padding: 100px;
	background-color: #f8f8f8;
	/* color: #fff; */
}
.stats {
	text-align: center;
	font-size: 35px;
	font-weight: 700;
	display: flex;
	align-items: center;
	margin: 10px 0;
}
.stats img {
	width: 80px;
	padding: 0px 8px 0 0px;
}
.counting {
	font-size: 50px;
}
.counter h5 {
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	color: #363636;
	margin: 0px 54px 0px 0px;
	position: relative;
	padding-bottom: 20px;
}
/*/ end count stats /*/
.about-ats-journey {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px 0;
	border-radius: 10px;
}
.image-container {
	flex: 0;
}
.image-container span i {
	max-width: 100%;
	height: 65px;
	width: 65px;
	border: 1px solid #bb0b0b;
	border-radius: 50px;
	padding: 15px 15px;
	font-size: 35px;
	color: #bb0b0b;
}
.content-container {
	flex: 2;
	padding: 0 20px;
}
.content-container h3 {
	margin-top: 0;
	font-weight: 600;
}
.content-container p {
	margin-bottom: 0;
	font-size: 15px;
	color: #606060;
}
.testimonial {
	padding: 100px 0;
}
.testimonial .row .tabs {
	all: unset;
	margin-right: 50px;
	display: flex;
	flex-direction: column;
}
.testimonial .row .tabs li {
	all: unset;
	display: block;
	position: relative;
}
.testimonial .row .tabs li.active::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 50px;
	background-color: #71b85f;
	border-radius: 50%;
}
.testimonial .row .tabs li.active::after {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: #71b85f;
	border-radius: 50%;
}
.testimonial .row .tabs li:nth-child(1) {
	align-self: flex-end;
}
.testimonial .row .tabs li:nth-child(1)::before {
	left: 64%;
	bottom: -50px;
}
.testimonial .row .tabs li:nth-child(1)::after {
	left: 97%;
	bottom: -81px;
}
.testimonial .row .tabs li:nth-child(1) figure img {
	margin-left: auto;
}
.testimonial .row .tabs li:nth-child(2) {
	align-self: flex-start;
}
.testimonial .row .tabs li:nth-child(2)::before {
	right: -65px;
	top: 50%;
}
.testimonial .row .tabs li:nth-child(2)::after {
	bottom: 101px;
	border-radius: 50%;
	right: -120px;
}
.testimonial .row .tabs li:nth-child(2) figure img {
	margin-right: auto;
	max-width: 300px;
	width: 100%;
	margin-top: -50px;
}
.testimonial .row .tabs li:nth-child(3) {
	align-self: flex-end;
}
.testimonial .row .tabs li:nth-child(3)::before {
	right: -10px;
	top: -66%;
}
.testimonial .row .tabs li:nth-child(3)::after {
	top: -130px;
	border-radius: 50%;
	right: -46px;
}
.testimonial .row .tabs li:nth-child(3) figure img {
	margin-left: auto;
	margin-top: -50px;
}
.testimonial .row .tabs li:nth-child(3):focus {
	border: 10px solid red;
}
.testimonial .row .tabs li figure {
	position: relative;
}
.testimonial .row .tabs li figure img {
	display: block;
}
.testimonial .row .tabs li figure::after {
	content: "";
	position: absolute;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border: 4px solid #dff9d9;
	border-radius: 50%;
	transform: scale(1);
	transition: 0.3s;
}
.testimonial .row .tabs li figure:hover::after {
	transform: scale(1.1);
}
.testimonial .row .tabs.carousel-indicators li.active figure::after {
	transform: scale(1.1);
}
.testimonial .row .carousel>h3 {
	font-size: 20px;
	line-height: 1.45;
	color: rgba(0, 0, 0, .5);
	font-weight: 600;
	margin-bottom: 0;
}
.testimonial .row .carousel h1 {
	font-size: 40px;
	line-height: 1.225;
	margin-top: 23px;
	font-weight: 700;
	margin-bottom: 0;
}
.testimonial .row .carousel .carousel-indicators {
	all: unset;
	padding-top: 43px;
	display: flex;
	list-style: none;
}
.testimonial .row .carousel .carousel-indicators li {
	background: #000;
	background-clip: padding-box;
	height: 2px;
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
	margin-top: 42px;
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
	font-size: 16px;
	line-height: 1.72222;
	font-weight: 500;
	color: rgba(0, 0, 0, .7);
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
	color: #000;
	font-weight: 700;
	margin-top: 37px;
	font-size: 20px;
	line-height: 1.45;
	text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
	body .testimonial .row .tabs {
		margin-right: 25px;
	}
}
@media only screen and (max-width: 567px) {
	/* Add styles for screen width <= 567px here */
}
.gray-bg {
	background: #ebebeb;
}
.sec-title .title {
	font-size: 36px;
	line-height: 46px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0;
	position: relative;
	padding-top: 28px;
}
/*-----------------------------------------------Life of ATS css start-------------------------------------------------------------------- */
section.res__gallery {
	padding: 20px;
	width: 100%;
	display: flex;
	justify-self: center;
	align-items: center;
	flex-direction: column;
	/* margin: 40px auto; */
}
section.res__gallery ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
section.res__gallery ul li {
	list-style: none;
	background: var(--first-color);
	color: var(--white-color);
	font-size: var(--h2-font-size);
	padding: 10px 20px;
	margin: 5px;
	letter-spacing: 1px;
	cursor: pointer;
	-ms-user-select: None;
	-moz-user-select: None;
	-webkit-user-select: None;
	user-select: None;
	border: 1px solid #333;
	border-radius: 3px;
}
section.res__gallery ul li:hover {
	background: #bb0b0b;
	color: #fff;
	border: 1px solid #bb0b0b;
}
section.res__gallery ul li.active {
	background: #bb0b0b;
	color: #fff;
	border: 1px solid #bb0b0b;
}
.product {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	-ms-user-select: None;
	-moz-user-select: None;
	-webkit-user-select: None;
	user-select: None;
}
.product .itembox {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 5px;
	display: block;
}
.product .itembox.hide {
	display: none;
}
.product .itembox img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
a[data-fancybox] img {
	cursor: zoom-in;
}
/*---------------------award fancy box css----------------------------  */
.gallery_sec {
	width: 100%;
	padding: 40px 0;
}
.heading {
	width: 100%;
	text-align: center;
}
.heading h2 {
	font-size: 30px;
	font-weight: bold;
	border-bottom: 2px solid #bb0b0b;
	padding-bottom: 25px;
}
.gallery_sec img {
	width: 100%;
	margin-bottom: 30px;
	height: 250px;
}
.gallery_sec a {
	position: relative;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}
.gallery_sec a::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background: none;
	background-size: contain;
	background-repeat: no-repeat;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gallery_sec img {
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}
.gallery_sec a:hover img {
	position: relative;
	width: 100%;
}
.gallery_sec a:hover img {
	opacity: 0.2;
}
.gallery_sec a:hover::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 50px;
	/* background: url(https://i.ibb.co/3fMkjjF/Resize.png); */
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 99;
}




/*-----------------------Blog and Blog Details Pages CSS Start-------////////////////////////////---------
--------------------------------------------------------------------------------------------------------- */
/*----banner blog--- */ 

.blog-banner {
	background-color: #032d45;
	color: #fff;
	position: relative;
	display: flex;
    height: 300px;
    flex-wrap: wrap;
    align-content: center;
  }

  .blog-banner h1 {
    font-size: 60px;
    font-weight: 600;
    display: inline;
	border-right: 2px solid #B8D530;
	padding: 0 30px 0px 0;
}


  .blog-banner span {
	font-weight: 400;
	font-size: 30px;
	margin-left: 10px;
	color: #cbd5e0;
  }

  .wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
  }

  .wave svg {
	display: block;
	width: 100%;
	height: 100%;
  }

  @media (max-width: 600px) {
	.blog-banner {
	  padding: 40px 10px 60px;
	}

	.blog-banner h1 {
	  font-size: 40px;
	  padding: 0;
      border: none;
    
	}

	.blog-banner span {
	  font-size: 1rem;
	  display: block;
	  margin-top: 10px;
	  margin-left: 0;
	}
  }


/* -----Blog Css */


section.blog-section {
	margin: 70px 0;
}
/* Blog Grid Layout */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}
/* Blog Item Styles */
.blog-item {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Blog Image Container */
.blog-image-container {
	position: relative;
	overflow: hidden;
	height: 200px;
}
.blog-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-item:hover .blog-image-container img {
	transform: scale(1.1);
}
/* Date Badge */
.date-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 8px 12px;
	font-size: 14px;
}
.blog-content {
	padding: 10px 0;
	margin: 20px;
}
.blog-content h2 {
	font-size: 18px;
	font-weight: 600;
}
.blog-content h2 a {
   color: #000000;
   text-decoration: none;

}
.blog-content p {
	font-size: 14px;
	color: #888;
	padding: 0;
}
.blog-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* Show only 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* Read More Link */
.read-more {
	margin-top: 20px;
}
.read-more a {
	border-radius: 10px;
	margin-top: 20px;
	border: 1px solid #01304e;
	padding: 10px;
	text-decoration: none;
	color: #01304e;
	font-size: 12px; 
}
.read-more a:hover {
	background-color: #01304e;
	border-radius: 10px;
	margin-top: 20px;
	border: 1px solid #01304e;
	padding: 10px;
	text-decoration: none;
	color: #fff;
	font-size: 12px;
}
.read-more a i {
	margin-left: 5px;
}

/*------------Web Performance Optimization  -------------- */

.post-blog {
	border: 1px solid #dce4;
	padding: 20px;
	border-radius: 10px;
}
.sidebar-widget {
	/* background: #ecf8f8; */
	border: 1px solid #dce4;
	padding: 20px;
	border-radius: 10px;
}
#blogPosts .section-header {
	margin-top: 70px;
}
#blogPosts h2.section-title {
	color: white;
}
.latest-posts {
	padding-bottom: 80px;
}
.latest-posts .thumb-post {
	overflow: hidden;
	width: 80px;
	height: 80px;
	border: 3px solid white;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	float: left;
}
.latest-posts .blog-post-content {
	overflow: hidden;
}
.latest-posts h4.post-title {
	margin: 0 0 10px 25px;
	font-size: 22px;
	font-weight: 500;
	line-height: 30px;
}
.latest-posts h4.post-title a {
	color: white;
}
.latest-posts .meta-post-date {
	margin-left: 25px;
	font-size: 14px;
}
.blog-posts {
	margin-top: 50px;
}
.post-blog {
	margin-bottom: 30px;
	padding-bottom: 40px;
	border-bottom: 1px solid #dce4e6;
}
.post-blog .blog-image {
	overflow: hidden;
	margin-bottom: 20px;
}
.post-blog .blog-image img {
	width: 100%;
	height: auto;
}
.blog-detail-content h1 {
	font-size: 25px;
	font-weight: 600;
	margin-top: 10px;

}
.blog-detail-content p {
	font-size: 14px;
	text-align: justify;
	color: #888;
	padding: 0;

}
.blog-detail-content h2 {
	font-size: 22px;
	font-weight: 600;
}
 .blog-detail-content p strong {
	font-weight:600;
	color: #000;
} 
.post-blog .blog-detail-content span {

	font-size: 14px;
}
.post-blog .blog-detail-content span a {

	color: #aaaaaa;
}
.post-blog .blog-detail-content span a:hover {
	color: #f17e39;
}
.post-blog .blog-detail-content h3 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}
.post-blog .blog-detail-content h4 {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	font-style: italic;
}
.post-blog .blog-detail-content h3 a {
	color: #31373a;
}
.post-blog .blog-detail-content h3 a:hover {
	color: #f17e39;
}
.meta-date:after,
.meta-comments:after {
	content: '/';
	margin-left: 10px;
}
.tag-items {
	margin-top: 50px;
	display: block;
}
.tag-items a {
	padding: 8px 12px;
	background-color: #f1f4f5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}
#blog-author {
	border-bottom: 1px solid #dce4e6;
	padding-bottom: 20px;
}
#blog-author .blog-author-img {
	overflow: hidden;
	width: 80px;
	height: 80px;
	margin-right: 25px;
}
#blog-author .blog-author-img img {
	width: 100%;
	height: 100%;
}
#blog-author .blog-author-info {
	overflow: hidden;
}
#blog-author .blog-author-info h4.author-name {
	font-weight: 600;
	font-size: 18px;
	margin: 0 0 7px 0;
}
#blog-author .blog-author-info h4.author-name a {
	color: #31373a;
}
#blog-comments {
	/* margin-top: 60px; */
	margin-bottom: 30px;
	border: 1px solid #dce4;
	padding: 20px;
	border-radius: 10px;
}
#blog-comments .blog-comments-content {
	margin-top: 50px;
}
#blog-comments .media {
	display: block;
	margin-top: 30px;
	border-bottom: 1px solid #dce4e6;
}
#blog-comments .media .media {
	padding-top: 30px;
	border-top: 1px solid #dce4e6;
	border-bottom: 0;
}
#blog-comments .media-object {
	margin-right: 10px;
}
#blog-comments .media-heading h4 {
	display: inline-block;
	margin: 0 15px 0 0;
	font-size: 16px;
	font-weight: 600;
}
#blog-comments .media-heading a {
	color: #aaaaaa;
	font-size: 14px;
}
#blog-comments .media-heading a span:after {
	content: '/';
	color: #aaaaaa;
	font-size: 13px;
	margin: 0 10px;
}
#blog-comments .media-heading a span:last-of-type:after {
	content: '';
}
.comment-form {
	margin-bottom: 100px;
	border: 1px solid #dce4;
	padding: 20px;
	border-radius: 10px;
}
.comment-form .widget-inner {
	margin-top: 40px;
}
.comment-form #email-id,
.comment-form #name-id,
.comment-form #site-id,
.comment-form textarea {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}
.comment-form input.mainBtn {
	width: auto;
}
.archive-wrapper {
	margin-bottom: 100px;
}
.archive-wrapper .archive-title {
	font-size: 18px;
	font-weight: 700;
	margin: 40px 0 20px 0;
}
.archive-wrapper .archive-list {
	margin-top: 20px;
}
.archive-wrapper .archive-list li {
	line-height: 28px;
}
.archive-wrapper .archive-list li:before {
	content: '-';
	color: #aaaaaa;
	margin-right: 10px;
}
/*------------Sidebar Styling--------------*/
.sidebar {
	margin-top: 50px;
	margin-bottom: 100px;
}
.sidebar-widget {
	margin-bottom: 60px;
}
.widget-title {
	font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #d8d8d8;
    padding: 10px 0;

}
.last-post {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dce4e6;
}
.last-post .thumb {
	overflow: hidden;
	margin-right: 15px;
}
.last-post .thumb img {
	width: 100%;
}
.last-post .content {
	overflow: hidden;
}
.last-post .content span {
	color: #aaaaaa;
	font-size: 14px;
	line-height: 14px;
}
.last-post .content h4 {
	font-size: 14px;
	font-weight: 600;
	padding: 5px 0px;
}
.last-post .content h4 a {
	color: #31373a;
}
/* .last-post .content h4 a:hover {
	color: #f17e39;
} */
.blog-post-comments h3 {
	font-size: 24px;
	font-weight: 600;
}
.comment-form h3 {
	font-size: 24px;
	font-weight: 600;
}
.widget-inner button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	background: #003151;
	box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	cursor: pointer;
}
.widget-inner button:after {
	content: "";
	position: absolute;
	right: 0;
	width: 0%;
	height: 100%;
	background: #c11616;
	transition: all 0.4s ease-in-out;
}
.widget-inner button:hover::after {
	left: 0;
	width: 100%;
}
.widget-inner button span {
	text-align: center;
	text-decoration: none;
	width: 100%;
	padding: 12px 25px;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}
.widget-inner button:hover span {
	color: #fff;
	animation: scaleUp 0.3s ease-in-out;
}
.mb-20 {
	margin-bottom: 20px;
}
.comment-form .blogcomment {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #f9f9f9;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}
.comment-form .blogcomment:focus {
	/* border-color: #007bff; */
	background-color: #fff;
	outline: none;
}
.comment-form .blogcomment::placeholder {
	font-size: 12px;
	color: #aaa;
	font-weight: 400;
}





