@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&amp;display=swap");
:root {
	--pfamily: 'Poppins', sans-serif;
	--text: #777777;
	--gray: #f5f5f5;
	--white: #ffffff;
	--border: #e8e8e8;
	--heading: #48455a;
	--primary: #d8532b;
	--placeholder: #777777;
	--light-white: #e7e7e7;
	--navbar-fixed: #ffeded;
	--service-icon: #f7f7f7;
	--resume-icon: #ffdddd;
	--banner-bg: #fcfcfd;
	--testi-card: #fff3f3;
	--testi-star: #ffbbbb;
	--contact-form: #fff3f3;
	--feature-card: #ffeded;
	--pricing-gdnt: linear-gradient(#ff9068, #ff4b1f)
}

* {
	margin: 0px;
	padding: 0px;
	outline: 0px
}

img {
	vertical-align: middle
}

a {
	text-decoration: none;
	display: inline-block
}

a:hover {
	text-decoration: none
}

ul,
ol {
	list-style: none;
	margin-bottom: 0px;
	display: inline-block
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-size: 15px;
	letter-spacing: 0.3px
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-size: 15px;
	letter-spacing: 0.3px
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-size: 15px;
	letter-spacing: 0.3px
}

input::placeholder,
textarea::placeholder {
	font-size: 15px;
	letter-spacing: 0.3px
}

button:focus {
	outline: none
}

html,
body {
	scroll-behavior: smooth
}

body {
	font-size: 16px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: var(--text);
	line-height: 28px
}

p {
	margin-bottom: 0px
}

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

h1 {
	font-size: 35px;
	font-weight: 700;
	line-height: 45px
}

h2 {
	font-size: 35px;
	font-weight: 700;
	line-height: 43px;
	letter-spacing: -0.8px
}

h3 {
	font-size: 32px;
	font-weight: 600;
	line-height: 32px
}

h4 {
	font-size: 22px;
	font-weight: 500;
	line-height: 30px
}

h5 {
	font-size: 18px;
	font-weight: 500
}

h6 {
	font-size: 16px;
	font-weight: 400
}

.back2top-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 2;
	display: none
}

.back2top-btn i {
	width: 48px;
	height: 48px;
	font-size: 16px;
	color: var(--white);
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	background: var(--primary);
	-webkit-box-shadow: 0px 0px 15px 3px rgba(254, 99, 71, 0.5);
	box-shadow: 0px 0px 15px 3px rgba(254, 99, 71, 0.5);
	-webkit-animation: mahmud 2s infinite;
	animation: mahmud 2s infinite;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

@-webkit-keyframes mahmud {
	0% {
		margin-bottom: 0px
	}
	50% {
		margin-bottom: 15px
	}
}

@keyframes mahmud {
	0% {
		margin-bottom: 0px
	}
	50% {
		margin-bottom: 15px
	}
}

@media (max-width: 575px) {
	.back2top-btn i {
		width: 42px;
		height: 42px;
		line-height: 42px;
		font-size: 14px
	}
}

.navbar-dropdown {
	position: relative
}

.navbar-dropdown:hover .dropdown-list {
	visibility: visible;
	opacity: 1;
	top: 98px
}

.dropdown-indicator {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.dropdown-indicator span {
	margin-right: 5px
}

.dropdown-indicator i {
	font-size: 10px
}

.dropdown-list {
	position: absolute;
	top: 130px;
	left: 0px;
	z-index: 1;
	width: 240px;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	border-radius: 3px;
	background: var(--white);
	border-top: 2px solid #96c545;
	-webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.dropdown-list li {
	border-bottom: 1px solid var(--border)
}

.dropdown-list li:last-child {
	border-bottom: none
}

.dropdown-link {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 25px;
	color: var(--text);
	text-transform: capitalize;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.dropdown-link:hover {
	color: var(--white);
	background: #96c545
}

.dropdown-toggle::after {
	margin-left: 2px
}

@media (max-width: 991px) {
	.navbar-dropdown {
		position: inherit
	}
	.dropdown-indicator {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.dropdown-indicator i {
		transition: all linear .3s;
		-webkit-transition: all linear .3s;
		-moz-transition: all linear .3s;
		-ms-transition: all linear .3s;
		-o-transition: all linear .3s
	}
	.dropdown-indicator.active i {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}
	.dropdown-list {
		position: inherit;
		visibility: visible;
		opacity: 1;
		width: 100%;
		display: none
	}
}

.btn {
	border: none;
	font-size: 14px;
	font-weight: 500;
	padding: 16px 25px;
	border-radius: 50px;
	border: 1px solid;
	text-transform: uppercase;
	text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 8px 25px 0px rgba(72, 69, 90, 0.1);
	box-shadow: 0px 8px 25px 0px rgba(72, 69, 90, 0.1);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.btn:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important
}

.btn i {
	margin-right: 8px;
	margin-top: -1px
}

.btn-inline {
	color: var(--white);
	/*background: #96c545;
	border-color: #96c545;
	*/background-image: radial-gradient(#fb4b00, #fc540d);
}

.btn-inline:hover {
	color: var(--white);
	background: #6b1874;
	border-color: #6b1874;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1)
}

.btn-outline {
	color: var(--primary);
	background: var(--white);
	border-color: var(--primary)
}

.btn-outline:hover {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primary);
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1)
}

.duel-btn .btn {
	margin-right: 15px
}

	.duel-btn .btn:nth-child(1) {
		background-image: radial-gradient(#fb4b00, #fc540d);
	}

.duel-btn .btn:nth-child(2):hover {
	background: #96c545;
	border-color: #96c545
}

@media (max-width: 450px) {
	.duel-btn {
		width: 210px;
		margin: 0 auto;
		text-align: center
	}
	.duel-btn .btn {
		margin: 8px 0px
	}
}

@media (min-width: 451px) and (max-width: 575px) {
	.duel-btn .btn {
		margin: 0px 8px
	}
}

.icon i {
	width: 48px;
	height: 48px;
	line-height: 44px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	border: 2px solid;
	text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.icon-inline i {
	color: #fff;
	/*background: #fb5007;
	border-color: #ea1c73;*/
	background-image: radial-gradient(#fb4b00, #fc540d);
}

.icon-inline i:hover {
	color: var(--white);  
	    background: #94d60a;
    border-color: #93d50a;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(72, 69, 90, 0.3);
	box-shadow: 0px 5px 15px 0px rgba(72, 69, 90, 0.3)
}

.icon-outline i {
	color: var(--primary);
	background: var(--white);
	border-color: var(--primary)
}

.icon-outline i:hover {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primary);
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(72, 69, 90, 0.3);
	box-shadow: 0px 5px 15px 0px rgba(72, 69, 90, 0.3)
}

@media (max-width: 400px) {
	.icon i {
		width: 40px;
		height: 40px;
		line-height: 36px;
		font-size: 14px
	}
}

@media (min-width: 401px) and (max-width: 991px) {
	.icon i {
		width: 44px;
		height: 44px;
		line-height: 40px;
		font-size: 15px
	}
}

.form-group {
	margin-bottom: 25px
}

.form-control {
	border: none;
	outline: none;
	width: 100%;
	height: 50px;
	padding: 0px 20px;
	border-radius: 30px;
	color: #6b1874;
	background: var(--light-white);
	border: 1px solid transparent;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.form-control:focus-within {
	background: var(--contact-form);
	border-color: var(--primary);
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0
}


.form-control::-webkit-file-upload-button {
	border: none;
	outline: none;
	cursor: pointer;
	height: 100%;
	font-size: 15px;
	letter-spacing: 0.3px;
	background: transparent;
	text-transform: capitalize;
	color: var(--placeholder)
}

.form-control::-webkit-file-upload-button:focus {
	border: none;
	outline: none
}

.form-control::file-selector-button {
	border: none;
	outline: none;
	cursor: pointer;
	height: 100%;
	font-size: 15px;
	letter-spacing: 0.3px;
	background: transparent;
	text-transform: capitalize;
	color: var(--placeholder)
}

.form-control::file-selector-button:focus {
	border: none;
	outline: none
}

textarea.form-control {
	height: 200px;
	padding: 20px
}

.port-src {
	text-align: center;
	margin-bottom: 35px
}

.port-form {
	padding: 7px;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: var(--white);
	display: inline-block;
	-webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2)
}

.port-form input {
	border: none;
	width: 320px;
	height: 50px;
	padding: 0px 20px;
	background: transparent
}

.port-form .btn-inline:hover {
	-webkit-transform: translateY(0px);
	transform: translateY(0px)
}

@media (max-width: 575px) {
	.port-form {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		border-radius: 15px;
		padding: 15px 10px
	}
	.port-form input {
		width: 100%;
		border-bottom: 1px solid var(--border)
	}
	.port-form .custom-select {
		width: 100%;
		height: 45px;
		border-left: none;
		margin-bottom: 15px;
		border-bottom: 1px solid var(--border)
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.port-form input {
		width: 215px
	}
}

.section {
	padding: 100px 0px 0px
}

.section-heading {
	text-align: center;
	margin-bottom: 48px
}

.section-heading p {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 3px;
	color: #6b1874;
	text-transform: uppercase;
	margin-bottom: 18px
}

.
{

}
@media-query
{
	
}
.section-heading p span {
	color: #b4066e
}

.section-heading h2 {
	width: 450px;
	margin: 0 auto
}

@media (max-width: 767px) {
	.section {
		padding: 60px 0px 0px
	}
	.section-heading {
		margin-bottom: 25px
	}
	.section-heading p {
		font-size: 16px
	}
	.section-heading h2 {
		width: 100%;
		font-size: 28px;
		line-height: 36px
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.section {
		padding: 80px 0px 0px
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.section {
		padding: 100px 0px 0px
	}
}

.navbar-part {
	padding: 0px 15px
}

.navbar-fixed {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 2;
	background: #fcfff3;
	-webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1)
}

.navbar-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.navbar-logo img {
	    width: 225px;

}

.navbar-toggle {
	border: none;
	outline: none;
	background: none;
	display: none
}

.navbar-toggle i {
	background: var(--primary);
	color: var(--white);
	border-radius: 3px;
	padding: 8px 10px;
	font-size: 16px;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.navbar-toggle i:hover {
	color: var(--white);
	background: #6b1874
}

.navbar-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.navbar-cross {
	position: absolute;
	top: 15px;
	left: 15px;
	display: none
}

.navbar-cross i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	color: #6b1874;
	background: var(--white);
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.navbar-cross i:hover {
	color: var(--white);
	background: var(--primary)
}

.navbar-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.navbar-item {
	margin: 0px 20px
}

.navbar-link {
	font-weight: 500;
	padding: 35px 0px;
	border-radius: 5px;
	color: #6b1874;
	text-transform: capitalize;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.navbar-link:hover {
	color: #96c545
}

.navbar-item.active .navbar-link {
	color: #494749
}

.navbar-btn {
	margin-left: 25px
}

@media (max-width: 991px) {
	.navbar-part {
		padding: 10px 15px
	}
	.navbar-logo img {
		width: 150px
	}
	.navbar-toggle {
		display: block
	}
	.navbar-slide {
		position: fixed;
		top: 0px;
		right: -280px;
		z-index: 3;
		width: 270px;
		height: 100vh;
		padding: 70px 15px 0px;
		overflow-y: scroll;
		overflow-x: hidden;
		background: #f9f9f9;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
		box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
		-webkit-transition: all linear .4s;
		transition: all linear .4s
	}
	.navbar-slide.active {
		right: 0px
	}
	.navbar-cross {
		display: block
	}
	.navbar-list {
		width: 100%;
		display: block;
		margin-bottom: 30px
	}
	.navbar-list li {
		border-bottom: 1px solid var(--border)
	}
	.navbar-item {
		margin: 0px
	}
	.navbar-link {
		width: 100%;
		padding: 12px 15px
	}
	.navbar-src {
		margin-left: 0px;
		margin-bottom: 15px
	}
	.navbar-src:focus-within input {
		width: 160px
	}
	.navbar-btn {
		margin-left: 0px;
		width: 100%
	}
	.navbar-btn .btn {
		display: block;
		padding: 14px 0px;
		margin-bottom: 50px
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.navbar-logo img {
		width: 160px
	}
	.navbar-item {
		margin: 0px 15px
	}
	.navbar-link {
		font-size: 15px
	}
	.navbar-btn .btn {
		padding: 15px 25px;
		font-size: 13px
	}
}

.footer-part {
	margin-bottom: 80px
}

.footer-logo {
	text-align: center;
	margin-bottom: 40px
}

.footer-logo a img {
	width: 200px;
	margin-right: 20px;
}

.footer-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 55px
}

.footer-icon li {
	margin: 0px 15px
}

.footer-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.footer-text li {
	padding: 0px 25px;
	border-right: 2px solid #999999
}

.footer-text li:last-child {
	border-right: none
}

.footer-text li h6 {
	font-weight: 400
}

	.footer-text li h6 span {
		color: #fb5007
	}

	.footer-text li h6 a {
		color: #fb5007
	}

.footer-text li h6 a:hover {
	text-decoration: underline
}

@media (max-width: 767px) {
	.footer-logo a img {
		width: 145px
	}
	.footer-icon {
		margin-bottom: 45px
	}
	.footer-icon li {
		margin: 0px 10px
	}
	.footer-text {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.footer-text li {
		padding: 0px;
		border: none;
		margin: 5px 0px
	}
}
.cus-banner-bg
{
	padding: 37px 0px 0px!important


}
.privacy__main-content-container__main-content__text__heading h6 {
	padding: 10px 0px 10px 0px;
	color: black;
}
.row.cus-row-section h4 {
	padding: 10px 0px 10px 0px;
	font-size: 19px;
	color: black;
}
.cus-about-1
{
	color: #fff;
}