g/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #3a3a3a;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #3a3a3a;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	bottom: 73px !important;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #0000a6;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 2.4em;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #6bc1e9;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgb(62 63 64 / 90%);
}

#header .logo {
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 2px;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 10px;
	font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #ccc;
	margin: 0 2px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
	border: 2px solid #fff;
	font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #f00;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	text-transform: none;
	font-weight: 500;
	color: #0c3c53;
}

.navbar .dropdown ul a i {
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #0000a6;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 2.0rem;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(40, 58, 90, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	color: #3a3a3a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #0000a6;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
	color: #3a3a3a;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #0000a6;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
}
#hero .container {
	padding-top: 72px;
}


@media only screen and (max-width: 600px) {
	#hero .container, .section_header {
		padding-top: 40px !important;
/*		margin-top: 10px !important;*/
}
section {
	padding: 10px !important;
}
}



#hero2 h1 {
	margin: 0 0 10px 0;
	font-size: 1.9rem;
	font-weight: 700;
	color: #fff;
}

#hero2 h2 {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 50px;
	font-size: 1.8rem;
}

#hero .btn-get-started {
	font-family: "Jost", sans-serif;
	font-weight: 500;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px 11px 28px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px 0 0 0;
	color: #fff;
	background: #0000a6;
}

#hero .btn-get-started:hover {
	background: #ff0000;
}

#hero .btn-watch-video {
	display: flex;
	align-items: center;
	transition: 0.5s;
	margin: 10px 0 0 25px;
	color: #fff;
	line-height: 1;
}

#hero .btn-watch-video i {
	line-height: 0;
	color: #fff;
	transition: 0.3s;
	margin-right: 8px;
}

#hero .btn-watch-video:hover i {
	color: #0000a6;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
	#hero {
		text-align: center;
	}
	#hero .animated {
		animation: none;
	}
	#hero .hero-img {
		text-align: center;
	}
	#hero .hero-img img {
		width: 50%;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 1.8rem;
		line-height: 36px;
	}

	#hero h2 {
		font-size: 1.7rem;
		line-height: 24px;
		margin-bottom: 30px;
	}

	#hero .hero-img img {
		width: 70%;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}

	#hero .btn-get-started {
		padding: 10px 24px 11px 24px;
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f3f5fa;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

@import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2&family=Calligraffitti&display=swap');

.section-title2 h2, .section_header2 {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #3a3a3a;
	font-family: 'Calligraffitti', cursive;
	font-weight: 700 !important;
	font-size: 1.8rem !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	letter-spacing: 0.02em;
	text-align: center;
	text-shadow: 2px 2px 15px #fff, 5px 5px 10px #f00;
}

.section-title2 h2::before, .section_header2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
	--s: 0.1em;   /* the thickness of the line */
	--c: #fff; /* the color */
	padding-bottom: var(--s);
	background: 
	linear-gradient(90deg,var(--c) 50%,#000 0) calc(100% - var(--_p,0%))/200% 100%,
	linear-gradient(var(--c) 0 0) 0% 100%/var(--_p,0%) var(--s) no-repeat;
	-webkit-background-clip: text,padding-box;
	background-clip: text,padding-box;
	transition: 0.5s;
	--_p: 100%

}

.section-title2 h2::after, .section_header2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #0000a6;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
	font-weight: 600;
	font-size: 1.5rem;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-left: 28px;
	position: relative;
}

.about .content ul li+li {
	margin-top: 10px;
}

.about .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	color: #0000a6;
	line-height: 1;
}

.about .content p:last-child {
	margin-bottom: 0;
}

.about .content .btn-learn-more {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.3s;
	line-height: 1;
	color: #0000a6;
	animation-delay: 0.8s;
	margin-top: 6px;
	border: 2px solid #0000a6;
}

.about .content .btn-learn-more:hover {
	background: #0000a6;
	color: #fff;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
/*	padding: 60px 100px 0 100px;*/
}

.why-us .content h3 {
	font-weight: 400;
	font-size: 1.4rem;
	color: #3a3a3a;
	text-align: center;
}

.why-us .content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-top: 5px;
}

.why-us .content p {
	font-size: 1.2rem;
	color: #848484;
}

.why-us .img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.why-us .accordion-list {
	padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
	padding: 0;
	list-style: none;
}

.why-us .accordion-list li+li {
	margin-top: 15px;
}

.why-us .accordion-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
}

.why-us .accordion-list a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 1.6rem;
	line-height: 24px;
	font-weight: 500;
	padding-right: 30px;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	color: red !important;
}

.why-us .accordion-list span {
	color: #0000a6;
	font-weight: 600;
}

.why-us .accordion-list i {
	font-size: 1.6rem;
	position: absolute;
	right: 0;
	top: 0;
}

.why-us .accordion-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
	display: none;
}

.why-us .accordion-list a.collapsed {
	color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
	color: #0000a6;
}

.why-us .accordion-list a.collapsed .icon-show {
	display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
	display: none;
}

@media (max-width: 1024px) {

	.why-us .content,
	.why-us .accordion-list {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 992px) {
	.why-us .img {
		min-height: 400px;
	}

	.why-us .content {
		padding-top: 30px;
	}

	.why-us .accordion-list {
		padding-bottom: 30px;
	}
}

@media (max-width: 575px) {
	.why-us .img {
		min-height: 200px;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	padding: 50px 30px;
	transition: all ease-in-out 0.4s;
	background: #fff;
}

.services .icon-box .icon {
	margin-bottom: 10px;
}

.services .icon-box .icon i {
	color: #dc3545;
	transition: 0.3s;
}

.services .icon-box h4 {
	font-weight: 500;
	margin-bottom: 15px;
/*	font-size: 2.4em;*/
}

.services .icon-box h4 a {
	color: #3F4663;
	transition: ease-in-out 0.3s;
}

.services .icon-box p {
	line-height: 24px;
	font-size: 1.2rem;
	margin-bottom: 0;
}

.services .icon-box:hover {
	transition: 0.3s;
	transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
	transition: 0.3s;
	color: #dc3545;
}


@media (max-width: 1200px) {
	.faq .faq-list {
		padding: 0;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	font-size: 1.2rem;
	background: #3a3a3a;
}

#footer .footer-newsletter {
	padding: 50px 0;
	background: #f3f5fa;
	text-align: center;
	color: #444444;
}

#footer .footer-newsletter h4 {
	font-size: 1.4rem;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	color: #3a3a3a;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
	text-align: left;
}
#footer .footer-newsletter form input[type=email] {
	border: 1px solid blue;
	padding: 4px 8px !important;
	width: calc(100% - 75px);
	margin: 6px 0;
}

#footer .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 10px;
	right: 0;
	bottom: -10px;
	border: 0;
	font-size: 1.1rem;
	padding: 0 10px !important;
	background: #0000ff;
	color: #fff;
	transition: 0.3s;
	border-radius: 10px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
	background: #ff0000;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #fff;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
	font-size: 1.6rem;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
/*	text-transform: uppercase;*/
font-weight: 600;
color: #3a3a3a;
}

#footer .footer-top .footer-contact p {
	font-size: 1.2rem;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Jost", sans-serif;
	color: #5e5e5e;
}

#footer .footer-top h4 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #3a3a3a;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #0000a6;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #777777;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #0000a6;
}

#footer .footer-top .social-links a {
	display: inline-block;
	background: #0000a6;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #ff0000;
	color: #fff;
	text-decoration: none;
}

#footer .footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #fff;
}

#footer .copyright {
	float: left;
}

#footer .credits {
	float: right;
	font-size: 1.2rem;
}

#footer .credits a {
	transition: 0.3s;
}

@media (max-width: 768px) {
	#footer .footer-bottom {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .copyright,
	#footer .credits {
		text-align: center;
		float: none;
	}

	#footer .credits {
		padding-top: 4px;
	}
}




/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
	padding-top: 40px;
}

.pricing .box {
	padding: 60px 40px;
	box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
	background: #fff;
	height: 100%;
	border-top: 4px solid #fff;
	border-radius: 5px;
}

.pricing h3 {
	font-weight: 500;
	font-size: 1.5rem;
}

.pricing h4 {
	font-size: 1.4rem;
	font-weight: 400;
	font-family: "Jost", sans-serif;
}

.pricing h4 sup {
	font-size: 1.4rem;
}

.pricing h4 span {
	color: #0000a6;
	font-size: 1.4rem;
	display: block;
}

.pricing ul {
	padding: 20px 0;
	list-style: none;
	color: #3a3a3a;
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding: 10px 0 10px 30px;
	position: relative;
}

.pricing ul i {
	color: #28a745;
	position: absolute;
	left: 0;
	top: 6px;
}

.pricing ul .na,
.pricing ul .na,
.pricing ul .na span {
	color: #ccc;
	text-decoration: line-through !important;
}

.pricing .buy-btn {
	display: inline-block;
	padding: 12px 35px;
	border-radius: 50px;
	color: #0000a6;
	transition: none;
	font-weight: 500;
	font-family: "Jost", sans-serif;
	transition: 0.3s;
	border: 1px solid #0000a6;
}

.pricing .buy-btn:hover {
	background: #0000a6;
	color: #fff;
}

.pricing .featured {
	border-top-color: #0000a6;
}

.pricing .featured .buy-btn {
	background: #0000a6;
	color: #fff;
}

.pricing .featured .buy-btn:hover {
	background: #23a3df;
}

@media (max-width: 992px) {
	.pricing .box {
		max-width: 60%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 767px) {
	.pricing .box {
		max-width: 80%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 420px) {
	.pricing .box {
		max-width: 100%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 992px) {
	.pricing .box {
		max-width: 60%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 767px) {
	.pricing .box {
		max-width: 80%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 420px) {
	.pricing .box {
		max-width: 100%;
		margin: 0 auto 30px auto;
	}
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
	padding: 0 100px;
}

.faq .faq-list ul {
	padding: 0;
	list-style: none;
}

.faq .faq-list li+li {
	margin-top: 15px;
}

.faq .faq-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}

.faq .faq-list a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	line-height: 24px;
	font-weight: 500;
	padding: 0 30px;
	outline: none;
	cursor: pointer;
}

.faq .faq-list .icon-help {
	position: absolute;
	right: 0;
	left: 20px;
	color: #0000a6;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
	position: absolute;
	right: 0;
	top: 0;
}

.faq .faq-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
	display: none;
}

.faq .faq-list a.collapsed {
	color: #3a3a3a;
	transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
	color: #0000a6;
}

.faq .faq-list a.collapsed .icon-show {
	display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
	display: none;
}

@media (max-width: 1200px) {
	.faq .faq-list {
		padding: 0;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	border-top: 3px solid #0000a6;
	border-bottom: 3px solid #0000a6;
	padding: 30px;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
	color: #0000a6;
	float: left;
	width: 44px;
	height: 44px;
	background: #e7f5fb;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #3a3a3a;
}

.contact .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 20px;
	font-size: 1.2rem;
	color: #6182ba;
}

.contact .info .email p {
	padding-top: 5px;
}

.contact .info .social-links {
	padding-left: 60px;
}

.contact .info .social-links a {
	display: inline-block;
	background: #333;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	margin-right: 10px;
}

.contact .info .social-links a:hover {
	background: #0000a6;
	color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: red;
	color: #fff;
}
/*
.contact .php-email-form {
	width: 100%;
	border-top: 3px solid #0000a6;
	border-bottom: 3px solid #0000a6;
	padding: 30px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
	padding-bottom: 0px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
	margin-bottom: 5px;
}
*/

label {
	padding: 0px;
	margin: 0px;
	color: red !important;
	font-weight: 600;
}

input, textarea {
	box-shadow: none;
	border-radius: 4px;
	color: blue !important;
	margin-bottom: 20px;
	padding: 5px !important;
}

input:focus,
textarea:focus {
	border:2px solid green;
	box-shadow: 1px 1px 5px 5px #ccc;
}

button[type=submit] {
	background: blue;
	border: 0;
	padding: 10px 15px;
	color: #fff;
	transition: 0.4s;
	border-radius: 15px;
}

button[type=submit]:hover {
	background: #ff0000;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.getstarted {
	cursor: pointer;
}

.active2 {
	color: white !important;
	box-shadow: 1px 12px 20px #fff;
	border-radius: 20px 5px;
}

a:hover, .active {
	color: white !important;
/*	box-shadow: 1px 12px 20px #fff !important;*/
border-radius: 20px 5px !important;
background: black !important;
}

a.logo:hover {
	box-shadow: none !important;
	border-radius: 5px !important;
	background: white !important;
}

.beinfotech{
	background: white;
/*	padding: 0px 5px;*/
border-radius: 5px;
}

.be{color:red !important;}
.infotech{color:blue !important;}
.be, .infotech {
	margin: 0 !important;
	padding: 0 !important;
}
.tab-content>.active {
	display: block;
	background: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important;
	color: white !important;
	border-radius: 0px;
}

.section_header{
	margin: auto;
	letter-spacing: 0.0015em;
	font-size: 2.2rem;
	text-shadow: 0 1px #8da1ff, -1px 0 #c0cbff, -1px 2px #8da1ff, -2px 1px #c0cbff,
	-2px 3px #8da1ff, -3px 2px #c0cbff, -3px 4px #8da1ff, -4px 3px #c0cbff,
	-4px 5px #8da1ff, -5px 4px #c0cbff, -5px 6px #8da1ff, -6px 5px #c0cbff,
	-6px 7px #8da1ff, -7px 6px #c0cbff, -7px 8px #8da1ff, -8px 7px #c0cbff;
	text-align: center;
	margin-bottom: 1.4rem !important;
}

.why-us .accordion-list a:hover{
	background: none !important;
	color: red !important;
}


.pricing .box:hover {
	transform: scale(1.1);
	transition: 0.3s;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.pricing .box {
	padding: 20px;
	background: #fff;
	text-align: center;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	border: 2px solid #e9ecee;
}
.pricing .box {
	padding: 40px 20px;
	background: #fff;
	text-align: center;
	box-shadow: 3px 2px 30px #adb5bd;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: 0.3s;
	border: 1px solid #ccc;
}

.pricing .advanced {
	width: 200px;
	position: absolute;
	top: 38px;
	right: -42px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 1.4rem;
	padding: 1px 0 3px 0;
	background: red;
	color: #fff;
}
.getstarted{
	color: white;
	background: red;
	border: 1px solid #000;
	box-shadow: 2px 5px 10px #ccc;
	border-radius: 5px;
	padding: 5px 10px;
	font-weight: 600;
}
.getstarted:hover{
	background: blue;
	color: white;
	transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
	padding: 10px;
}
.simplelinks li{
	list-style: square inside !important;
	padding: 2px !important;
	color: #212529 !important;
	border-bottom: none !important;
	margin: 0px !important;
}
.nostyle_li li{
	list-style: none !important;
	padding: 2px !important;
	color: #212529 !important;
	border-bottom: none !important;
	margin: 0px !important;
}
.accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
	border-radius: 0;
}
.accordion-button:not(.collapsed) {
	color: red;
	z-index: 3;
	border: none;
	outline: 0;
	box-shadow: none;
}
.accordion-button:focus {
	z-index: 3;
	border: none;
	outline: 0;
	box-shadow: none;
}

.accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
	font-size: 1.3rem;
	color: #0010ff;
}

.mob_graph {
	float: right;
	margin-top: 10px;
	height: 170px;
	border-radius: 30px;
	box-shadow: 2px 2px 2px #ccc;
}
.animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
/*
#services .nav-tabs .nav-link {
	color: black !important;
	background: white !important;
	box-shadow: 1px 12px 20px #fff !important;
	border-radius: 20px 5px !important;
	border: 1px solid #ccc;
}
#services .nav-tabs .nav-link:focus,
#services .nav-tabs .nav-link:hover,
#services .nav-tabs .nav-link:active {
	background: black !important;
	color: white !important;
	box-shadow: 1px 12px 20px #fff !important;
	border-radius: 20px 5px !important;
}
*/
@media (min-width: 1200px){
	.h1, h1 {
		font-size: 1.7rem;
	}
	.h2, h2 {
		font-size: 1.6rem;
	}
	.h3, h3 {
		font-size: 1.5rem;
	}
	.h4, h4 {
		font-size: 1.4rem;
	}
	.h5, h5 {
		font-size: 1.3rem;
	}
	.h6, h6, p {
		font-size: 1.2rem;
	}
}

.tab-content>.tab-pane {
	padding: 10px !important;
	border-radius: unset !important;
}

#nav-tab .active {
	color: white !important;
	background: black !important;
	border-radius: 0 !important;
	border: 0;
}
#nav-tab button:hover {
	color: white !important;
	background: blue !important;
	border-radius: 0 !important;
	border: 0;
}


.tab-content {
	background: black;
}
#be_contact_form input{font-size: 1.2rem; color: blue; border-radius: 5px;}
#be_contact_form input:focus{border: 1px solid blue; box-shadow: 1px 1px 5px #ccc;}
#be_contact_form label{font-size: 1.2rem; color: red;}
li {
	font-size: 1.2rem;
}
.accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
	font-size: 1.4rem;
}
.nav-tabs .nav-link {
	font-size: 1.3rem;
}
	.bgg{background-color: green !important;}
	.bgr{background-color: red !important;}
