@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
		url('../fonts/Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
		url('../fonts/Poppins-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Light.woff2') format('woff2'),
		url('../fonts/Poppins-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
		url('../fonts/Poppins-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Cocogoose';
	src: url('../fonts/Cocogoose-Light.woff2') format('woff2'),
		url('../fonts/Cocogoose-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
		url('../fonts/Poppins-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Black.woff2') format('woff2'),
		url('../fonts/Poppins-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'COCOGOOSE';
	src: url('../fonts/COCOGOOSE-UltraLight.woff2') format('woff2'),
		url('../fonts/COCOGOOSE-UltraLight.woff') format('woff');
	font-weight: 200;

	
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
		url('../fonts/Poppins-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Cocogoose Pro';
	src: url('../fonts/CocogoosePro-Thin.woff2') format('woff2'),
		url('../fonts/CocogoosePro-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
		url('../fonts/Poppins-ExtraBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
		url('../fonts/Poppins-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Cocogoose';
	src: url('../fonts/Cocogoose.woff2') format('woff2'),
		url('../fonts/Cocogoose.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'COCOGOOSE';
	src: url('../fonts/COCOGOOSE-DemiBold.woff2') format('woff2'),
		url('../fonts/COCOGOOSE-DemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
	margin: 0;
	padding: 0;
}

* {
	margin: 0;
	padding: 0;
}

a:hover {
	text-decoration: none;
}

ul {
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

a:focus {
	text-decoration: none;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'Poppins';
}

.container {
	max-width: 1175px;
}

/* ************************************ */
/*RESPONSIVE NAVIGATION*/
.mobile-menu {
	display: none;
}

.mobile-menu .circle {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	border-radius: 50%;
	background: #f30505;
	margin: auto;
	font-size: 16px;
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.mobile-menu .mobile-cross {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	border-radius: 50%;
	background: #fa150f;
	margin: 0 auto;
	font-size: 16px;
	position: fixed;
	right: 10px;
	top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.mobile-menu .nveMenu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 280px;
	height: 100%;
	background: #060606;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	transform: translateX(-320px);
	transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
	padding: 40px 20px;
}

.mobile-menu .nveMenu.is-opened {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*.mobile-menu .nveMenu h1 {
  color: #000;
  font-weight: 700;
  }*/
.mobile-menu .overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: calc(100% - 280px);
	height: 100%;
	background: rgba(0, 0, 0, 0.71);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu .overlay.is-on {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}

.mobile-menu .navlinks li {
	display: block;
	padding: 12px 0;
}

.mobile-menu .navlinks li a {
	text-transform: uppercase;
	color: #eeecec;
	font-weight: 700;
}

.mobile-menu .navlinks li a:hover {
	text-decoration: none;
}

/*RESPONSIVE NAVIGATION*/

/* PRELOADER START */
/* .preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-image: url('../images/preloader.gif');
  background-repeat: no-repeat;
  background-color: #FFF;
  background-position: center;
} */
/* PRELOADER END */
.active-class {
	border: 2px solid #000;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/* ************************************ */

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-track {
	background: #f30505;

}

body::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #f30505;
}


/*header*/
.navigation {
	padding: 8px 0px 0px;
	background: #000000 0% 0% no-repeat padding-box;
	box-shadow: 0 0 10px #000000;
	border-bottom: 1px solid #000000;
	height: auto !important;
}

.menu ul li .active {
	color: #f30505;
}

.navigation-btns ul li:nth-child(1):hover a {
	background: #f30505;
	border: 2px solid #f30505;
	color: #fff;
	transition-duration: .3s;
}

.navigation-btns ul li:nth-child(1):hover a {
	color: #fff;
	transition-duration: .3s;
}

.navigation-btns ul li:nth-child(2):hover a {
	background: #fff;
}

.navigation-btns ul li:nth-child(2):hover a {
	color: #f30505;
}

.sub-title {
display: inline-block;
font-size: 14px;
font-weight: 500;
color: #f30505;
background-color: rgba(102, 31, 254, 0.08);
text-transform: uppercase;
margin-bottom: 35px;
padding: 7px 22px;
border-radius: 5px;
}

.menu ul li .active:before {
	position: absolute;
	content: '';
	width: 20px;
	height: 2px;
	background: #f30505;
	bottom: -1px;
	transition-duration: .3s;
}

.menu ul {
	display: flex;
	align-items: center;
	margin-top: 6px;
	justify-content: center;
	column-gap: 20px;
}

.dropdown ul {
	display: block;
	position: absolute;
	width: 260px;
	padding: 15px;
	box-shadow: 0px 3px 30px #00000029;
	background: url(../images/dropdown-menu.webp);
	border-radius: 0 0px 20px 20px;
	top: -12px;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #fff;
	z-index: 2;
}

.dropdown ul li a {
	color: #080808 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	padding-bottom: 4px;
}

.menu li:hover a {
	color: #f30505;
}

.dropdown ul li {
	line-height: 34px;
	position: relative;
	padding-left: 15px;
	margin-bottom: 6px;
}


.dropdown ul li:before {
	position: absolute;
	content: '';
	background: url(../images/icons8-more-than-24.png);
	width: 8px;
	height: 8px;
	left: 0;
	top: 13px;
}

.dropdown {
	display: none;
	transition-duration: .8s;
	z-index: 1;
}

.menu ul li:hover .dropdown {
	display: block;
	transition-duration: .8s;
}

.menu li {
	position: relative;
}


.navigation-btns ul {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 10px;
}

.menu {
	margin-left: 70px;
	line-height: 49px;
}

.menu ul li a {
	color: #ece9e9;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}

.navigation-btns ul li {
	text-align: center;
	padding: 4px 0;
	cursor: pointer;
}

.navigation-btns ul li a {
	color: #f8f4f4;
	font-size: 12px;
	font-weight: 500;
	transition-duration: .3s;
	border: 2px solid #f30505;
	border-radius: 5px;
	padding: 8px 25px;
}

	.navigation-btns ul li:nth-child(2) a {
		background: #f30505;
		border: 2px solid #f30505;
		transition-duration: .3s;
	}

.navigation-btns ul li:nth-child(2) a {
	color: #fff;
	font-weight: 600;
}


.nveMenu .dropdown ul {
	display: block;
	position: absolute;
	width: 230px;
	padding: 15px;
	box-shadow: 0px 3px 30px #00000029;
	background: url(../images/dropdown-menu.webp);
	border-radius: 0 0px 20px 20px;
	top: -2px;
	background-repeat: no-repeat;
	background-size: cover;
	left: 0px;
}

.nveMenu .dropdown ul li a {
	color: #000 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	padding-bottom: 4px;
}

.nveMenu .dropdown ul li {
	line-height: 10px;
	position: relative;
	padding-left: 15px;
	margin-bottom: 6px;
}

.nveMenu .dropdown ul li:before {
	position: absolute;
	content: '';
	background: url(../images/right-arrow.webp);
	width: 8px;
	height: 8px;
	left: 0;
	top: 13px;
}

.nveMenu .dropdown {
	display: none;
	transition-duration: .8s;
	z-index: 1;
}

.nveMenu ul li:hover .dropdown {
	display: block;
	transition-duration: .8s;
}

.nveMenu li {
	position: relative;
}

.mobile-menu a img {
	width: 40%;
	padding: 10px;
}

.nveMenu img {
	width: 100% !important;
}

/*main traverse section*/
.traverse {
	background: url(../../../img.freepik.com/free-vector/white-abstract-wallpaper_23-21488300278a23.jpg?w=2000);
	background-size: cover;
	background-position: 100%;
	height: 730px;
	align-items: center;
	display: flex;
}

.traverse-text h2 {
	background: #f30505 0% 0% no-repeat padding-box;
	border-radius: 2px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	width: 340px;
	padding: 4px 0;
	margin-bottom: 15px;
}

.traverse-text h1 {
	font-size: 40px;
	font-family: Cocogoose;
	color: #000;
	line-height: 55px;
	margin-bottom: 20px;
}

.traverse-text h1 span {
	color: #f30505;
}

.traverse-text p {
	color: #000;
	font-size: 13px;
	margin-bottom: 20px;
	font-weight: 500;
}

.floating-btn a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f30505;
	padding: 12px 10px;
	border-radius: 3px;
}

.floating-btn {
	width: 160px;
	margin-right: 10px;
}

.floating-btn a h3 {
	font-size: 13px;
	color: #fff;
	font-weight: 600;
}

.floating-line {
	width: 35px;
	height: 2px;
	background: #fff;
	position: relative;
}

.floating-line:before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background: #f30505;
	border: 2px solid #fff;
	border-radius: 100%;
	top: -4px;
	animation: float 6s ease-in-out infinite;
}

.traverse-bark ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.traverse-bark ul li {
	margin-right: 10px;
}

.traverse-bark {
	position: relative;
	top: 94px;
}

/*Exceptional Section*/

.exceptional {
	padding: 90px 0 110px;
	position: relative;
}

.custom-header {
	text-align: center;
	margin-bottom: 60px;
}

.custom-header h2 {
	color: #f30505;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}

.custom-header h3 {
	font-size: 32px;
	font-family: poppins;
	color: #000;
	width: 60%;
	margin: 0 auto;
	margin-bottom: 18px;
}

.custom-header p {
	color: #000;
	font-size: 14px;
	width: 57%;
	margin: 0 auto;
	font-weight: 400;
	line-height: 19px;
}

.exceptional-tabs ul .active:before {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	background: #f30505;
	right: 10px;
	top: 16px;
	border-radius: 100%;
	transition-duration: .3s;
}

.prodMain {
	display: none;
	padding: 5px;
	color: #ffffff;
}

.prodMain.active {
	display: block;
}

.prodNav li:hover {
	border: 1px solid #f30505;
	color: #f30505;
	transition-duration: .3s;
}

.prodNav li {
	padding: 8px 11px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #878787;
	position: relative;
	border-radius: 5px;
	color: #878787;
	transition-duration: .3s;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	margin-bottom: 15px;
	text-transform: uppercase;
	padding-right: 20px;
}

.prodNav .active {
	border: 1px solid #f30505;
	color: #f30505;
	transition-duration: .3s;
}

.exceptional-tab-body h3 {
	font-size: 28px;
	color: #000000;
	line-height: 30px;
	font-weight: 600;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.exceptional-tab-body {
	padding: 5px;
}

.exceptional-tab-body h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	background: #f30505;
	bottom: 0;
	border-radius: 3px;
}

.exceptional-tab-body p {
	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
	font-weight: 400;
	text-align: justify;
}

.exceptional-tab-body ul {
	display: flex;
	flex-wrap: wrap;
}

.exceptional-tab-body ul li {
	width: 48%;
	margin-bottom: 6px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	padding-left: 15px;
	position: relative;
}

.exceptional-tab-body ul li:before {
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	background: #f30505;
	left: 0;
	top: 7px;
	border-radius: 100%;
}

.exceptional:before {
	position: absolute;
	content: '';
	background: url(../images/element-1.webp);
	width: 106px;
	height: 116px;
	left: 320px;
	animation: element-1 4s ease-in-out infinite;
}

.exceptional:after {
	position: absolute;
	content: '';
	background: url(../images/element-2.webp);
	width: 94px;
	height: 94px;
	right: 324px;
	top: 45px;
	animation: element-2 2s ease-in-out infinite;
}

.exceptional-bottom {
	position: relative;
}

.exceptional-bottom:after {
	position: absolute;
	content: '';
	background: url(../images/element-1.webp);
	width: 106px;
	height: 116px;
	right: 320px;
	top: -40px;
	animation: element-1 4s ease-in-out infinite;
}

.exceptional-bottom:before {
	position: absolute;
	content: '';
	background: url(../images/element-3.webp);
	width: 60px;
	height: 60px;
	left: 324px;
	top: 25px;
	animation: element-2 2s ease-in-out infinite;
}

/*CTA*/

.two-floating-btn a {
	display: flex;
	align-items: center;
	background: #f30505;
	padding: 13px 13px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #f30505;
}

.two-floating-btn {
	width: 192px;
	cursor: pointer;
}

.two-floating-btn a h3 {
	font-size: 13px;
	color: #fff;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
}

.two-floating-line {
	width: 35px;
	height: 2px;
	background: #fff;
	position: relative;
	margin-right: 8px;
}

.two-floating-line:before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background: #f30505;
	border: 2px solid #fff;
	border-radius: 100%;
	top: -4px;
	animation: float 6s ease-in-out infinite;
}

.red-cta {
	background: url(../images/banners/7.png);
	background-repeat: no-repeat;
	height: 245px;
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	margin-top: 100px;
	background-size: cover;
}

.cta-text h2 {
	font-size: 31px;
	font-family: poppins;
	color: #fff;
	margin-bottom: 15px;
}

.cta-text p {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}

.cta-text p a {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	margin-left: 18px;
}

.cta-text p a:hover {
	color: #ffffff;
}

.two-floating-btns ul {
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: auto;
}

.two-floating-btns ul li:nth-child(1) .two-floating-btn a {
	background: #fff;
	border: 1px solid #fff;
}

.two-floating-btns ul li:nth-child(1) h3 {
	color: #f30505;
}

.two-floating-btns ul li:nth-child(1) .two-floating-line {
	background: #f30505;
}

.two-floating-btns ul li:nth-child(1) .two-floating-line:before {
	background: #fff;
	border: 2px solid #f30505;
}

/*packages*/

.packages {
	padding: 50px 0 50px;
}

.packagestabs ul {
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: 0 auto;
}

.packagestabs ul li button {
	font-size: 14px !important;
	padding: 10px 15px !important;
	cursor: pointer !important;
	transition-duration: .3s !important;
	font-weight: 700 !important;
}

.packagestabs ul li button.active {
	background: #f30505 0% 0% no-repeat padding-box !important;
	border-radius: 5px !important;
	font-weight: 500 !important;
	color: #fff !important;
	transition-duration: .3s !important;
}

.packagescontent {
	width: 100%;
	margin-top: 0;
}

.packagescontent-item {
	display: none;
	transition-duration: .3s;
}

.packagescontent-item.active {
	display: block;
	transition-duration: .3s;
}

.pkg-box-header h3 {
	background: transparent linear-gradient(180deg, #f30505 0%, #7D0A07 100%) 0% 0% no-repeat padding-box;
	border-radius: 20px 20px 0px 0px;
	padding: 20px 25px;
	color: #fff;
	font-size: 22px;
	font-weight: 500;
}

.packages-box-inner {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	border: 1px solid #d0362f4D;
	border-radius: 20px;
	margin: 0px 17px 22px;
}

.pkg-box-body {
	padding: 18px;
}

.pkg-pricing {
	border-top: 1px solid #f2120c;
	border-bottom: 1px solid #f2120c;
	padding: 12px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.pkg-pricing h4 {
	font-size: 14px;
	color: #000;
	font-weight: 500;
}

.pkg-pricing h5 {
	color: #656565;
	font-size: 24px;
	font-weight: 600;
	line-height: 0;
}

.pkg-pricing ul li {
	font-family: 'Cocogoose';
	font-size: 16px;
}

.pkg-box-body ul li {
	font-size: 12px;
	color: #656565;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
}

.pkg-box-body ul {
    border-bottom: 1px solid #dddddd36;
    padding-left: 41px;
    height: 214px;
    overflow: auto;
    margin-bottom: 10px;
    padding-right: 8px;
    overflow-x: hidden;
    padding-top: 10px;
}

.pkg-box-body ul li:before {
	position: absolute;
	left: -33px;
	content: '';
	background: url(../images/check.webp);
	width: 34px;
	height: 34px;
    top: -8px;

}

/* width */
.pkg-box-body ul::-webkit-scrollbar {
	width: 4px;
}

/* Track */
.pkg-box-body ul::-webkit-scrollbar-track {
	background: #efeded;
}

/* Handle */
.pkg-box-body ul::-webkit-scrollbar-thumb {
	background: #f6130d;
	border-radius: 5px;
}

.pkg-box-body button {
	background: #f30505 0% 0% no-repeat padding-box;
	border-radius: 5px;
	color: #fff;
	border: none;
	padding: 7px 30px;
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}

.package-chat-number {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.share-idea {
	text-align: center;
}

.share-idea h4 {
	font-size: 13px;
	color: #656565;
	font-weight: 400;
	margin-bottom: 2px;
}

.share-idea a {
	font-size: 13px;
	color: #f30505;
	font-weight: 500;
}

.package-boxes-slder {
	position: relative;
}

.package-boxes-slder .owl-nav {
	display: flex;
	justify-content: space-between;
	bottom: 245px !important;
	position: relative;
	margin: 0 -50px;
}

.package-boxes-slder .owl-nav button {
	background: #fff !important;
	width: 35px;
	height: 30px;
	box-shadow: 0 0 3px #d0362f8f;
	border-radius: 3px !important;
}

.package-boxes-slder .owl-nav button span {
	color: #f30505;
	font-size: 36px;
	font-weight: 400;
	line-height: 26px;
}

/*endorse*/
.endorse {
	padding: 0 0 80px;
	position: relative;
}

.endorse-text h3 {
	color: #f30505;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.endorse-text h4 {
	font-size: 33px;
	font-family: Cocogoose;
	color: #000;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.endorse-text h4:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	background: #f30505;
	bottom: 0;
	border-radius: 3px;
}

.endorse-text p {
	font-size: 14px;
	margin-bottom: 10px;
	color: #000;
	font-weight: 400;
}

.endorse-text ul {
	justify-content: unset;
	width: 100%;
	margin-top: 30px;
}

.endorse-text ul li {
	margin-right: 20px;
}

.endorse-text ul li:nth-child(1) button {
	border: 1px solid #000;
}

.endorse ul li:nth-child(1) .two-floating-btn {
	border: 1px solid #000000;
	border-radius: 3px;
}

.endorse ul li:nth-child(1) .two-floating-btn h3 {
	color: #000;
}

.endorse ul li:nth-child(1) .two-floating-btn .two-floating-line {
	background: #000;
}

.endorse ul li:nth-child(1) .two-floating-btn .two-floating-line:before {
	border: 2px solid #000;
}

.endorse-text {
	margin-top: 70px;
}

.endorse:before {
	position: absolute;
	content: '';
	background: url(../images/element-2.webp);
	width: 94px;
	height: 94px;
	right: 314px;
	animation: element-2 2s ease-in-out infinite;
	top: -15px;
}

.endorse:after {
	position: absolute;
	content: '';
	background: url(../images/element-1.webp);
	width: 106px;
	height: 116px;
	left: 240px;
	animation: element-1 4s ease-in-out infinite;
	bottom: 30px;
}

/*blue cta*/
.blue-cta {
	background: url(../images/banners/6.png);
	background-repeat: no-repeat;
	height: 245px;
	display: flex;
	position: relative;
	align-items: center;
	margin-bottom: 60px;
	background-position: right;
	background-size: cover;
}


/*portfolio*/
.portfolio {
	padding: 70px 0;
	position: relative;
}

.portfolio-image-2:hover {
	transform: scale(1.1);
}

.portfolio h3 {
	width: 66%;
	color: #000;
}

.portfolio:before {
	position: absolute;
	content: '';
	background: url(../images/element-2.webp);
	width: 94px;
	height: 94px;
	right: 314px;
	animation: element-2 2s ease-in-out infinite;
	top: -15px;
}

.portfoliotabs {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 12px;
	margin: 0 0 40px;
}

.portfoliotabs-bac {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	padding: 20px 0;
}

.portfoliotab, .hideme ul li a {
	font-size: 16px;
	padding: 8px 10px;
	cursor: pointer;
	color: #000;
	font-weight: 500;
}

.portfoliotab.active, .hideme ul li a.nav-link.cust-nav-link.active {
	color: #f30505;
	border-bottom: 2px solid;
	border-top: 0px;
	border-left: 0px;
	border-right: 0;
}

.portfoliocontent {
	width: 100%;
	/* margin-top: 65px; */
}

.portfoliocontent-item {
	display: none;
}

.portfoliocontent-item.active {
	display: block;
}

.portfolio-bar {
	background: #FFFFFF 0% 0% no-repeat padding-box;
/*	box-shadow: 0px 3px 30px #00000029;*/
	padding: 10px 0;
}

.portfolio-inner-box {
	display: flex;
	margin: 0px 20px 50px 20px;
}

.portfolio-image-2 img {
	max-width: 150%;
}

.portfolio-image-2 {
	z-index: 1;
	position: relative;
	left: -40px;
	transition-duration: .5s;
	box-shadow: 0px 3px 30px #00000029;
	transform: scale(1);
}

.portfolio-image-1 img {
	max-width: 100%;
}

.portfolio-image-3 img {
	max-width: 150%;
}

.portfolio-image-3 {
	position: relative;
	left: -75px;
	transform: scale(1);
}

.portfolio-image-1:hover {
	z-index: 2;
	box-shadow: 0px 3px 30px #00000029;
	transition-duration: 0.5s, 0.5s, 0.5s;
	transition-delay: 0s, 0.5s, 0.5s;
	/* transform: scale(1.1); */
}

.portfolio-image-3:hover {
	z-index: 2;
	box-shadow: 0px 3px 30px #00000029;
	transition-duration: 0.5s, 0.5s, 0.5s;
	transition-delay: 0s, 0.5s, 0.5s;
	transform: scale(1.1);
}

.portfolio-image-1 {
	transition-duration: .5s;
	transform: scale(1);
}

/*why choose us*/
.why-choose {
	padding: 30px 0;
	background: url(../images/why-choose-bg.webp);
	background-size: cover;
}

.why-choose-head h2 {
	font-size: 33px;
	font-family: poppins;
	color: #000;
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
}

.why-choose-head p {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	width: 88%;
	margin-bottom: 50px;
}

.why-choose-box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 15px #00000029;
	border: 1px solid #7070704D;
	border-radius: 10px;
	padding: 25px;
}

.why-choose-box h3 {
	color: #000;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	position: relative;
}

.why-choose-box h3 span {
	background: #f30505;
	width: 10px;
	height: 10px;
	position: absolute;
	content: '';
	border-radius: 100%;
	top: 8px;
	margin-left: 10px;
}

.why-choose-head h2:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	background: #f30505;
	bottom: 0;
	border-radius: 3px;
}

/* width */
.why-choose-box p::-webkit-scrollbar {
	width: 10px;
}

/* Track */
.why-choose-box p::-webkit-scrollbar-track {
	background: #e8e5e5;
	border-radius: 10px;
}

/* Handle */
.why-choose-box p::-webkit-scrollbar-thumb {
	background: #f30505;
	border-radius: 5px;
}

.why-choose-box p {
	font-size: 16px;
	color: #000;
	font-weight: 400;
	height: 115px;
	overflow: auto;
	padding-right: 12px;
}

.why-choose-bottom {
	padding: 100px 0 10px;
}

.why-choose-bottom h4 {
	font-size: 31px;
	font-family: poppins;
	color: #000;
	width: 55%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 18px;
}

/*counter*/
.counter-sec {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	padding: 40px 0;
}

.counter-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.counter-box {
	text-align: center;
}

.counter-box h3 {
	color: #000;
	font-size: 40px;
	font-weight: 600;
}

.counter-box h4 {
	color: #f30505;
	font-size: 17px;
	font-weight: 600;
}

/*testimonials*/
.client-box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 15px 25px #00000017;
	border: 1px solid #70707014;
	border-radius: 20px 20px 0px 0px;
	margin: 30px;
}

.client-box p {
	margin: 30px 30px 20px;
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	height: 139px;
	overflow: auto;
	padding-right: 5px;
}

/* width */
.client-box p::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.client-box p::-webkit-scrollbar-track {
	background: #e8e5e5;
	border-radius: 10px;
}

/* Handle */
.client-box p::-webkit-scrollbar-thumb {
	background: #f30505;
	border-radius: 5px;
}

.client-img {
	border-top: 1px solid #7070704D;
	display: flex;
	align-items: center;
	padding: 20px 30px;
}

.client-img img {
	width: 17% !important;
	margin-right: 10px;
}

.client-bname h4 {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 2px;
}

.client-bname h5 {
	font-size: 14px;
	color: #959595;
	font-weight: 400;
}

.client-feedback {
	padding: 60px 0 10px;
	background: url(../images/testimonial-bac.webp);
	margin-top: 32px;
	background-position: top;
	background-repeat: no-repeat;
}

.client-feedback .custom-header {
	margin-bottom: 20px;
}

/*footer*/
.footer-logo img {
	margin-bottom: 20px;
}

.footer-logo p {
	color: #f7f2f2;
	font-size: 13px;
	font-weight: 400;
}

.footer-services {
	margin-top: 30px;
}

.footer-services h3 {
	color: #e6dada;
	font-size: 23px;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 15px;
	position: relative;
}

.footer-services h3:before {
	position: absolute;
	content: '';
	width: 30px;
	height: 2px;
	background: #f30505;
	bottom: 0;
	border-radius: 3px;
}

.footer-services ul li {
	margin-bottom: 10px;
}

.footer-services ul li a {
	color: #f3e4e4;
	font-size: 15px;
	font-weight: 400;
}

.footer-payment h3 {
	color: #f2eaea;
	font-size: 23px;
	font-weight: 600;
	padding-bottom: 10px;
}

.footer-payment {
	margin-top: 30px;
}

.adress-bar {
	display: flex;
	margin: 20px 0;
}

.adress-bar i {
	margin-right: 10px;
	font-size: 21px;
}

.adress-bar a p {
	color: #000;
	font-size: 15px;
	font-weight: 400;
}

.footer-bottm {
	border-top: 1px solid #d4d4d4;
	padding: 20px 0;
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-copyright h3 {
	font-size: 15px;
	font-weight: 500;
}

.footer-privacy ul {
	display: flex;
	align-items: center;
}

.footer-privacy ul li a {
	color: #000;
	font-size: 15px;
	padding: 0 10px;
	border-right: 1px solid #828080;
}

footer {
	padding-top: 50px;
	border-top: 1px solid #dddddd40;
	background-color: #000000;
}

.footer-privacy ul li:nth-child(2) a {
	border: none;
}

.adress-bar p {
	color: #000;
	font-size: 14px;
	font-weight: 400;
}


/*keyframes*/
@keyframes float {
	0% {
		transform: translatex(0px);
	}

	50% {
		transform: translatex(20px);
	}

	100% {
		transform: translatex(0px);
	}
}


/*keyframes*/
@keyframes element-1 {
	0% {
		transform: translatex(0px);
	}

	50% {
		transform: translatex(20px);
	}

	100% {
		transform: translatex(0px);
	}
}

/*keyframes*/
@keyframes element-2 {
	0% {
		transform: translatey(0px);
	}

	50% {
		transform: translatey(20px);
	}

	100% {
		transform: translatey(0px);
	}
}


/*inner-banner*/
.inner-banner {
	background: url(../../../img.freepik.com/free-vector/white-abstract-wallpaper_23-21488300278a23.jpg?w=2000);
	background-size: cover;
	background-position: 100%;
	height: 590px;
	align-items: center;
	display: flex;
}

.iner-banner-text h2 {
	background: #f30505 0% 0% no-repeat padding-box;
	border-radius: 2px;
	text-align: center;
	color: #fff;
	font-size: 19px;
	font-weight: 500;
	width: 430px;
	padding: 4px 0;
	margin-bottom: 15px;
}

.iner-banner-text h1 {
	font-size: 38px;
	/*font-family: Cocogoose;*/
	color: #000;
	line-height: 50px;
	font-weight: 700;
	margin-bottom: 20px;
}

.iner-banner-text p {
	color: #000;
	font-size: 13px;
	margin-bottom: 20px;
	font-weight: 500;
}

/*award winnig*/
.floating-black-btns ul {
	justify-content: unset;
	width: 100%;
	margin-top: 30px;
	display: flex;
}

.floating-black-btns ul li {
	margin-right: 20px;
}

.award-winning {
	padding: 60px 0;
}

.award-text h3 {
	font-size: 17px;
	color: #f30505;
	font-weight: 600;
	margin-bottom: 10px;
}

.award-text h2 {
	font-size: 32px;
	font-family: poppins;
	color: #000;
	line-height: 48px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 10px;
}

.award-text h4 {
	font-size: 14px;
	color: #f30505;
	font-weight: 600;
	margin-bottom: 20px;
	padding-left: 10px;
}


.award-text p {
	color: #000;
	font-size: 15px;
	font-weight: 500;
	padding-left: 10px;
}

.award-text h2:before {
	position: absolute;
	content: '';
	background: #f30505;
	height: 100%;
	width: 3px;
	border-radius: 3px;
	left: 0;
}

.floating-black-btns .two-floating-btn {
	width: 150px;
}

.floating-black-btns ul li button {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border: 1px solid #d0362f4D;
	border-radius: 3px;
	padding: 9px 17px;
	font-size: 15px;
	color: #f30505;
	font-weight: 500;
}

.award-win-img {
	position: relative;
}

.award-win-img img {
	height: 460px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	object-fit: scale-down;
}

.award-win-img:before {
	position: absolute;
	content: '';
	background: url(../images/element-3.webp);
	width: 60px;
	height: 60px;
	right: 40px;
	animation: element-2 2s ease-in-out infinite;
	top: -50px;

}

.award-win-img:after {
	position: absolute;
	content: '';
	background: url(../images/element-1.webp);
	width: 106px;
	height: 116px;
	left: 0;
	animation: element-1 4s ease-in-out infinite;
	bottom: -50px;

}

.footer-logo img:first-child {
	width: 50%;
}

.social-links.pt-2 img {
	width: auto;
}

/*inner -portfolio*/
.inner-portfilio {
	padding: 40px 0 60px;
}

.portfolio-img img {
	box-shadow: 0px 3px 30px #00000029;
	margin-bottom: 50px;
	border-radius: 0px 35px 0px 35px;
	transform: scale(1);
	transition-duration: .34s;
}

.portfolio-img img:hover {
	transform: scale(1.1);
	transition-duration: .3s;
}

.inner-portfilio .custom-header h3 {
	font-size: 32px;
}

/*about-us*/
.about-us {
	padding: 90px 0;
}

.about-text h2 {
	font-size: 35px;
	font-family: poppins;
	color: #000;
	margin-bottom: 13px;
	padding-bottom: 18px;
	position: relative;
}

.about-text h2:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	background: #f30505;
	bottom: 0;
	border-radius: 3px;
}

.about-text p {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 15px;
}


.who-we {
	padding: 40px 0 90px;
	background: url(../images/who-we-bac.webp);
	background-size: cover;
	margin-bottom: 50px;
}

/*pricing page*/
.pricing-page {
	padding: 110px 0 30px;
}

.pricng-pkg h6 {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin-bottom: 25px;
}

.pricng-pkg {
	margin-bottom: 60px;
}

/*contact us*/
.let-us {
	padding: 10% 0 10px;
}

.let-us-heading {
	text-align: center;
	margin-bottom: 40px;
}

.let-us-heading h3 {
	font-size: 33px;
	font-family: poppins;
	color: #000;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 8px;
}

.let-us-heading p {
	color: #000;
	font-size: 14px;
	width: 57%;
	margin: 0 auto;
	font-weight: 400;
	line-height: 23px;
}

.contact-form {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	border: 1px solid #7070704D;
	border-radius: 10px;
	padding: 30px 50px;
	text-align: center;
}

.contact-form h4 {
	color: #f30505;
	font-size: 27px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact-form p {
	font-size: 12px;
	width: 336px;
	margin: 0 auto;
	color: #000;
	font-weight: 500;
	margin-bottom: 22px;
}

.contact-form input {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #0000004D;
	border-radius: 5px;
	padding: 8px 18px;
	width: 100%;
	margin-bottom: 15px;
}

.contact-form textarea {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #0000004D;
	border-radius: 5px;
	padding: 10px 18px;
	resize: none;
	width: 100%;
	margin-bottom: 15px;
}

.contact-form input::placeholder {
	color: #000;
	font-size: 15px;
	font-weight: 400;
}

.contact-form textarea::placeholder {
	color: #000;
	font-size: 15px;
	font-weight: 400;
}

.contact-form button {
	background: #f30505 0% 0% no-repeat padding-box;
	border-radius: 5px;
	width: 100%;
	color: #fff;
	border: none;
	padding: 11px 0;
	font-weight: 600;
	font-size: 17px;
}

.contact-form-img img {
/*	box-shadow: 0px 3px 30px #00000029;*/
}

/*get started modal*/
.get-started .modal-body {
	background: url(../images/started-modal.webp);
	border: 1px solid #d0362f9e;
	border-radius: 11px;
}

.get-started .modal-content {
	border-radius: 11px;
}

.get-started .modal-body .btn-close {
	position: absolute;
	box-shadow: 0px 3px 30px #00000029;
	background: #fff;
	padding: 10px;
	border-radius: 100%;
	font-size: 24px;
	opacity: 1;
	color: #c30000;
	font-weight: 600;
	right: 15px;
	top: 15px;
	line-height: 0;
}

.get-started-modal {
	text-align: center;
	padding: 30px 40px;
}

.get-started-modal img {
	margin-bottom: 20px;
	width: 60%;
}

.get-started-modal h3 {
	font-size: 30px;
	font-family: Cocogoose;
	color: #000;
	width: 95%;
	margin: 0 auto;
	margin-bottom: 18px;
}

.get-started-modal h3 span {
	color: #c50303;
	padding-left: 3px;
}

.get-started-modal input {
	background: #ffffffa1 0% 0% no-repeat padding-box;
	border: 1px solid #7070704D;
	border-radius: 5px;
	opacity: 1;
	width: 100%;
	padding: 8px 15px;
	margin-bottom: 15px;
}

.get-started-modal textarea {
	background: #ffffffa1 0% 0% no-repeat padding-box;
	border: 1px solid #7070704D;
	border-radius: 5px;
	opacity: 1;
	width: 100%;
	height: 90px;
	resize: none;
	padding: 8px 15px;
	margin-bottom: 15px;
}

.get-started-modal input::placeholder {
	font-size: 13px;
}

.get-started-modal textarea::placeholder {
	font-size: 13px;
}

.get-started-modal button {
	background: #f30505 0% 0% no-repeat padding-box;
	border-radius: 5px;
	border: none;
	color: #fff;
	padding: 6px 40px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}

/*popup-modal*/
.popup-modal .modal-dialog {
	max-width: 960px;
	margin: 1.75rem auto;
}

.popup-modal .modal-body {
	background: url(../images/mobile-pop.webp);
	border: 1px solid #d0362f9e;
	border-radius: 11px;
	position: relative;
	background-size: cover;
}

.popup-modal .modal-content {
	border-radius: 11px;
}

.popup-modal .modal-content {
	border-radius: 11px;
}

.pop-mob-image img {
	position: absolute;
	top: -22px;
	left: -40px;
}

.popup-text img {
	width: 40%;
	margin-bottom: 10px;
	margin-top: 12px;
}

.popup-text h3 {
	font-size: 23px;
	font-family: Cocogoose;
	color: #000;
	margin-bottom: 18px;
}

.popup-modal-body {
	padding-right: 40px;
}

.popup-text h4 {
	color: #000;
	font-size: 14px;
	font-weight: 700;
}

.popup-text h5 {
	color: #f30505;
	font-weight: 600;
	font-size: 30px;
}

.popup-text h6 {
	color: #000;
	font-size: 14px;
	font-weight: 700;
}

.popup-text input {
	background: #ffffffa1 0% 0% no-repeat padding-box;
	border: 1px solid #7070704D;
	border-radius: 5px;
	opacity: 1;
	width: 100%;
	padding: 8px 15px;
	margin-bottom: 10px;
}

.popup-text textarea {
	background: #ffffffa1 0% 0% no-repeat padding-box;
	border: 1px solid #7070704D;
	border-radius: 5px;
	opacity: 1;
	width: 100%;
	resize: none;
	padding: 8px 15px;
	margin-bottom: 10px;
	height: 81px;
}

.popup-text input::placeholder {
	font-size: 13px;
}

.popup-text textarea::placeholder {
	font-size: 13px;
}

.popup-text button {
	background: #fa150f;
	color: #fff;
	border: none;
	width: 130px;
	padding: 7px 0;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	margin: 0 auto;
	border-radius: 2px;
}

.popup-modal .modal-body .btn-close {
	position: absolute;
	box-shadow: 0px 3px 30px #00000029;
	background: #fff;
	padding: 10px;
	border-radius: 100%;
	font-size: 24px;
	opacity: 1;
	color: #c30000;
	font-weight: 600;
	left: 15px;
	top: 15px;
	z-index: 1;
	line-height: 0;
}

.popup-modal .modal-body::before {
	position: absolute;
	content: '';
	background: url(../images/pop-mob-thanku.webp);
	width: 128px;
	height: 89px;
	right: -11px;
	top: 4px;
}

.inner-packages-page {
	margin-top: 0 !important;
}


.floatbutton.active {
	right: 0;
	z-index: 9;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s
}

.floatbutton {
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	position: fixed;
	right: -371px;
	top: 20%;
	font-size: 0;
	width: 420px;
	z-index: 999
}

.floatbutton .clickbutton {
	width: 50px;
	z-index: 999;
	height: 200px;
	cursor: pointer;
	box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, .09);
	border-radius: 3px 0 0 3px;
	border-radius: 30px 0 0 30px;
	display: inline-block;
	padding-top: 0;
	vertical-align: top;
	margin-top: 125px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	border: 1px solid #fff;
	text-transform: uppercase;
	background-color: #f30505;
	box-shadow: 0 0 40px #00000026;
	-webkit-box-shadow: 0 0 40px #00000026;
	-ms-box-shadow: 0 0 40px #00000026;
	-o-box-shadow: 0 0 40px #00000026
}

.floatbutton .clickbutton .crossplus:before {
	content: "";
	display: none;
	position: absolute;
	width: 20px;
	height: 2px;
	right: 0;
	background: #fbb334;
	z-index: 99;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto
}

.floatbutton .clickbutton .crossplus:after {
	content: "";
	display: none;
	position: absolute;
	width: 2px;
	height: 20px;
	right: 0;
	background: #fab334;
	z-index: 99;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto
}

.floatbutton .clickbutton .crossplus {
	position: absolute;
	display: block;
	transform: rotate(-90deg);
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	left: -52px;
	white-space: pre;
	bottom: 87px
}

.floatbutton .clickbutton .crossplus.rotate {
	transform: rotate(45deg);
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s
}

.floatbutton .clickbutton .crossplus i {
	font-size: 18px;
	color: #fff;
	margin: 17px 0 0 15px
}

.floatbutton .banner-form {
	background: #fff;
	padding: 15px;
	position: relative;
	z-index: 99999 !important;
	border-radius: 5px;
	margin: 0;
	width: 370px;
	display: inline-block;
	box-shadow: 0 0 30px #0000001f
}

.ban-form input {
	width: 100%;
	margin: 0;
	border: 1px solid #e5e5e5;
	background: #fff;
	padding: 10px 15px;
	color: gray;
	font-size: 14px;
	border-radius: 3px;
	height: 50px;
	font-weight: 400;
	outline: 0 !important;
	margin: 0 0 15px 0
}

.banner-form .intl-tel-input {
	width: 100%
}

.banner-form h3 {
	color: #141315;
	font-size: 24px;
	margin-bottom: 5px;
	font-weight: 700
}

.banner-form h3 strong {
	font: 24px/24px Poppins, sans-serif;
	font-weight: 600
}

.ban-form input[type=submit] {
	color: #fff;
	font-weight: 600;
	border-radius: 3px;
	text-align: center;
	padding: 10px 15px;
	margin: 20px 0 0;
	border: transparent;
	cursor: pointer;
	background-color: #f30505;
}

.ban-form textarea {
	width: 100%;
	border: 1px solid #e5e5e5;
	background: #fff;
	padding: 10px 15px;
	color: gray;
	font-size: 14px;
	border-radius: 3px;
	font-weight: 400;
	height: 120px;
	outline: 0 !important;
	margin: 15px 0 0 0;
	resize: none
}

.btns_wrap {
	position: fixed;
	right: -6px
}

.btns_wrap a:hover {
	text-decoration: none !important;
	right: 0
}

.btns_wrap .call_wrap {
	width: 280px;
	border: 1px solid #fff;
	background-color: #1228a3;
	position: absolute;
	right: -225px;
	top: 63px;
	border-radius: 3px 0 0 3px;
	overflow: hidden;
	box-shadow: 0 0 40px #00000026 !important;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 9999;
	border-radius: 30px 0 0 30px
}

.btns_wrap .call_wrap span {
	color: #fff;
	font-size: 20px;
	vertical-align: middle;
	padding: 15px 20px 15px 15px
}

.btns_wrap .chat_wrap {
	display: block;
	position: absolute;
	right: -225px;
	width: 280px;
	background-color: #f30505;
	top: 0;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid #fff;
	box-shadow: 0 0 40px #00000026 !important;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border-radius: 30px 0 0 30px;
	z-index: 9999
}

.btns_wrap .call_wrap span.icoo,
.btns_wrap .chat_wrap span.icoo {
	color: #fff;
	font-size: 18px;
	padding: 15px 20px;
	border-right: 1px solid #ded9d9;
	vertical-align: middle;
	display: inline-block;
	border-radius: 10px 0 0 10px
}

.btns_wrap .chat_wrap span {
	color: #fff;
	font-size: 20px;
	vertical-align: middle;
	padding: 15px 30px 15px 15px
}

.ban-form .fldset.inpchecbx label {
	display: inline-block;
	margin: 0;
	line-height: 1.4;
	color: #676767;
	font-size: 13px
}

.ban-form .fldset.inpchecbx input {
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0
}

.fldset.inpchecbx {
	margin: 10px 0 0 0
}

.fldset p {
	font-size: 13px;
	color: #676767;
	padding: 0;
	margin: 10px 0 0 0
}

.fldset p a {
	display: block;
	padding: 5px 0 0 0;
	color: #141315;
	font-weight: 500;
	font-size: 14px
}

.portfolio-inner-box img {
	border-radius: 8px;
}

.inner-process {
	padding: 30px 0 0;
}

/* .inner-process ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner-process ul li {padding: 8px 12px;padding-right: 22px;} */
.client-img img {
	border-radius: 100%;
}

.privacy h1 {
	color: #f3120d;
	font-size: 43px;
	font-weight: 600;
}

.privacy p {
	color: #000;
	margin-bottom: 16px;
	font-size: 16px;
}

.privacy h2 {
	color: #000000;
	font-size: 23px;
	margin-bottom: 18px;
	font-weight: 700;
}

.privacy ul li {
	color: #000;
	font-size: 16px;
	margin-bottom: 13px;
	list-style: circle;
	margin-left: 21px;
}


#go-top-btn {
	display: inline-block;
	position: fixed;
	bottom: 10px;
	left: 20px;
	transition: background-color .3s,
		opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;

}

#go-top-btn.show {
	opacity: 1;
	visibility: visible;
}


#go-top-btn img:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
	animation-iteration-count: infinite;
}

@keyframes shake {

	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}

#go-top-btn img:hover {
	filter: brightness(0);
	transition: .3s linear;
}

#go-top-btn img {
	transition: .3s linea;
}

.main-home-btns {
	display: flex;
	align-items: center;
}

.pkg-anchor {
	text-align: center;
	margin-bottom: 9px;
}

.pkg-anchor a {
	color: #f30505;
	font-weight: 500;
	font-size: 14px;
	text-decoration: underline;
}

.floating-side-icons {
	padding-left: 20px;
	position: fixed;
	bottom: 100px;
	z-index: 1;
}

.f-ico-p a i {
	background: #ffffff;
	border-radius: 100%;
	color: #f6130d;
	font-size: 17px;
	font-weight: 600;
	width: 38px;
	line-height: 33px;
	height: 37px;
	text-align: center;
	margin-bottom: 10px;
	border: 1px solid #f30505;
}

.f-ico-chat a i {
	background: #ffffff;
	border-radius: 100%;
	color: #f6130d;
	font-size: 17px;
	font-weight: 600;
	width: 41px;
	line-height: 33px;
	height: 37px;
	text-align: center;
	margin-bottom: 10px;
	border: 1px solid #f30505;
}

.f-ico-trust img {
	width: 38px;
}

.f-ico-p a i:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
	animation-iteration-count: infinite;
}

.f-ico-chat a i:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
	animation-iteration-count: infinite;
}

.f-ico-trust a img:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
	animation-iteration-count: infinite;
}

.vid-testi {
	padding: 50px 0;
}

.video-play-button {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 30px;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 27px;
	height: 39px;
	animation: element-2 2s ease-in-out infinite;
	background: #f5130d;
	border-radius: 50%;
	padding: 13px 15px 13px 23px;
}

.video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #f9130d;
	border-radius: 50%;
	animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #fa183d;
	border-radius: 50%;
	transition: all 200ms;
}

.video-play-button:hover:after {
	background-color: darken(#fa183d, 10%);
}

.video-play-button img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	width: auto;
	height: auto;
}

.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 26px solid #fff;
	border-top: 19px solid transparent;
	border-bottom: 17px solid transparent;
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}


.video-overlay {
	position: fixed;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.80);
	opacity: 0;
	transition: all ease 500ms;
}

.video-overlay.open {
	position: fixed;
	z-index: 1000;
	opacity: 1;
}

.video-overlay-close {
	position: absolute;
	z-index: 1000;
	top: 15px;
	right: 20px;
	font-size: 36px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 200ms;
}

.video-overlay-close:hover {
	color: #fa183d;
}

.video-overlay iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	/* width: 90%; */
	/* height: auto; */
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.testimonials-play-btn {
	position: relative;
}

.f-ico-p a img {
	width: 40%;
}

.vid-testi-text h3 {
	font-size: 33px;
	font-family: Cocogoose;
	color: #000;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.vid-testi-text h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	background: #f30505;
	bottom: 0;
	border-radius: 3px;
}

.vid-testi-text p {
	font-size: 14px;
	margin-bottom: 10px;
	color: #000;
	font-weight: 400;
}

.prics-tags {
	display: inline-flex;
	align-items: center;
	margin-bottom: 10px;
}

.prics-tags h5 {
	color: #11269d;
	font-size: 28px;
	font-weight: 500;
	text-decoration: line-through;
	margin-right: 10px;
}

.prics-tags h6 {
	color: #BDFD03;
	font-size: 46px;
	font-weight: 600;
}

.inner-package-detailss {
	margin-top: 0px;
}

.inner-package-detailss h3 {
	font-size: 33px;
	font-family: Cocogoose;
	color: #000;
	position: relative;
	margin-bottom: 19px;
}

.inner-package-detailss ul {
	border-bottom: 1px solid #BDFD03;
	height: 342px;
	overflow: auto;
	padding: 20px;
	margin-bottom: 10px;
	padding-right: 5px;
	overflow-x: hidden;
	border-radius: 8px;
	box-shadow: 0 0 10px #BDFD03;
}

.inner-package-detailss ul li {
	font-size: 14px;
	color: #000000;
	font-weight: 600;
	margin-bottom: 21px;
	padding-left: 18px;
	position: relative;
	border-bottom: 1px solid #f5130d17;
	padding-bottom: 11px;
}

.inner-package-detailss ul li:before {
	position: absolute;
	left: -20px;
	content: '';
	background: url(../images/check.webp);
	width: 34px;
	height: 34px;
	top: -5px;
}


/* width */
.inner-package-detailss ul::-webkit-scrollbar {
	width: 10px;
}

/* Track */
.inner-package-detailss ul::-webkit-scrollbar-track {
	background: #e6e6e6;
	border-radius: 5px;
}

/* Handle */
.inner-package-detailss ul::-webkit-scrollbar-thumb {
	background: #BDFD03;
	border-radius: 5px;
}

.detaill-box {
	padding: 80px 0;
}

.detaill-boxx {
	border: 1px solid #BDFD03;
	box-shadow: 0 0 10px #BDFD03;
	border-radius: 15px;
	text-align: center;
	padding: 50px 40px;
}

.detaill-boxx h3 {
	font-size: 14px;
	color: #BDFD03;
	margin-bottom: 10px;
	font-weight: 600;
}

.detaill-boxx h4 {
	font-size: 27px;
	/* font-family: Cocogoose; */
	color: #000;
	font-weight: 700;
	position: relative;
	margin-bottom: 19px;
}

.detaill-boxx p {
	font-size: 16px;
	margin-bottom: 21px;
}

.pricing-detail-btn {
	margin: 0 auto;
	width: 165px;
}

.detaill-boxx:hover {
	background: #BDFD03;
	transition-duration: .3s;
}


.detaill-boxx:hover h3 {
	color: #fff;
	transition-duration: .3s;
}

.detaill-boxx.detaill-boxx:hover h4 {
	color: #f30505;
	transition-duration: .3s;
}

.detaill-boxx:hover h6 {
	transition-duration: .3s;
	color: #f30505;
}

.detaill-boxx:hover p {
	transition-duration: .3s;
	color: #f30505;
}

.detaill-boxx:hover h5 {
	transition-duration: .3s;
	color: #f30505;
}

.detaill-boxx:hover a {
	/*background: #1227a0;
	transition-duration: .3s;*/
	color: #fff;
}

.detaill-box h2 {
	font-size: 33px;
	font-family: Cocogoose;
	color: #000;
	position: relative;
	width: 60%;
	margin-bottom: 59px;
}

.footer-payment img {
	margin-bottom: 10px;
}

.video-padding {
	margin-bottom: 80px;
}

.badges {
	position: fixed;
	top: 30%;
	left: 0;
}


/*Logo Brief Design Css*/
.logo-brief {
	background-color: #fff;
	padding: 10% 0 5% 0;
}

.payment-h {
	margin-bottom: 25px;
}

.payment-h h5 {
	font-size: 40px;
	font-weight: 600;
	color: #f30505;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.pad-btmm {
	padding-bottom: 50px;
}

.pay-af {
	position: relative;
	padding-right: 35px;
}

.payment-fm h6 {
	font-size: 23px;
	text-transform: uppercase;
	color: #f30505;
	margin-bottom: 20px;
	letter-spacing: 1px;
	font-weight: 600;
}

.pay-field {
	margin-bottom: 16px;
}

.pay-field label {
	font-size: 13px;
	font-weight: 600;
	color: #f30505;
	margin-bottom: 10px;
	padding-left: 5px;
	letter-spacing: 1px;
	display: block;
}

.pay-field label>span {
	font-size: 9px;
	margin-left: 7px;
}

.pay-field input,
.pay-field select,
.pay-field textarea {
	color: #fff;
}

.pay-field input,
.pay-field select,
.pay-field textarea {
	width: 100%;
	height: 44px;
	border: 1px solid #f30505 !important;
	font-size: 13px;
	font-weight: 400;
	padding: 0 10px 0 10px;
	font-family: Poppins, sans-serif;
	color: #fff;
	background: #9ba1934a !important;
	border-radius: 6px;
	letter-spacing: 1px;
}

.pay-af:after {
	position: absolute;
	content: "";
	width: 1px;
	height: 445px;
	background: #fff;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.logo-brief button {
	display: flex;
	align-items: center;
	background: #f30505;
	padding: 13px 13px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #f30505;
	color: #fff;
}

.logo-brief button:hover {
	background: transparent;
	color: #5d105c;
}

.pay-field textarea {
	height: 180px;
	width: 100%;
	resize: none;
	padding: 16px;
	line-height: normal;
	letter-spacing: 1px;
}

ul.logosel-lst {
	display: block;
}

ul.logosel-lst>li {
	display: inline-block;
	width: 49%;
	margin-right: 14px;
}

ul.logosel-lst>li:nth-child(2n) {
	margin-right: 0;
}

.logosel-bx {
	text-align: center;
	margin-bottom: 15px;
}

.white_select {
	border: 2px solid #0d950d;
}

.logo-sel-pic {
	padding: 10px;
	border: 2px solid #5a1059;
	margin-bottom: 10px;
	border-radius: 14px;
}

.logosel-bx h4 {
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 400;
}

.logo-sel h6 {
	font-size: 23px;
	text-transform: uppercase;
	color: #f30505;
	margin-bottom: 20px;
	letter-spacing: 1px;
	font-weight: 600;
}

ul.logosel-fonts {
	display: block;
}

ul.logosel-fonts>li {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
	margin-right: 10px;
}

.logofont {
	width: 211px;
	height: 85px;
	text-align: center;
	border: 2px solid #5d105c;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}

.logofont img {
	filter: grayscale(100%) brightness(0) sepia(50%) hue-rotate(-100deg) saturate(500%) contrast(1);
}

.gt_logofnt {
	border: 2px solid #fff;
}

ul.logosel-fonts>li:nth-child(5n) {
	margin-right: 0;
}

ul.logosel-fonts>li {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
	margin-right: 10px;
}

ul.logosel-clr {
	margin-bottom: 40px;
	text-align: center;
}

ul.logosel-fonts {
	display: block;
}

ul.logosel-clr>li {
	margin-right: 35px;
}

ul.logosel-fonts>li {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
	margin-right: 10px;
}

.logoclr {
	padding-bottom: 7px;
	border: 2px solid transparent;
}

.logoclr img {
	margin-bottom: 5px;
}

.logoclr h4 {
	text-align: center;
	color: #fff;
	font-size: 14px;
}

ul.lcu-clr {
	display: block;
}

ul.lcu-clr>li {
	display: inline-block;
	width: 48%;
	margin-right: 30px;
	vertical-align: middle;
}

.pay-field input,
.pay-field select,
.pay-field textarea {
	color: #f30505;
}

.fortextarea textarea {
	padding-left: 10px !important;
}

ul.lcu-clr>li:last-child {
	margin-right: 0;
}

ul.forspaceright li {
	margin-right: 38px;
	border: 1px solid transparent;
}

.pad-btmm {
	padding-bottom: 50px;
}

.files-upload {
	text-align: center;
	padding: 15px;
	border: 2px solid #222;
	border-radius: 14px;
}

.files-upload label {
	margin-bottom: 20px;
}

.files-upload input#fileToUpload {
	background: 0 0;
}

.btn-form {
	font-family: Poppins;
	width: auto;
	border: none;
	background-color: #fff;
	border-radius: 5px;
	color: #222;
	padding: 15px 40px;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: table;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	margin: 0px auto;
}

.btn-form:hover {
	color: #fff;
	background: #222;
}

.white_select {
	border: 2px solid #11269d;
}

.gt_logofnt {
    border: 2px solid #11269e;
}

.mtp60 {
	margin-top: 54px;
}

.briefradio label {
	display: flex;
	cursor: pointer;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	margin-bottom: 0.375em;
}

.briefradio label input {
	position: absolute;
	left: -9999px;
}

.briefradio label input:checked+span {
	background-color: #f30505;
	color: #fff;
}

.briefradio label input:checked+span:before {
	box-shadow: inset 0 0 0 0.4375em #222;
}

.briefradio label span {
	display: flex;
	align-items: center;
	padding: 0.375em 0.75em 0.375em 0.375em;
	border-radius: 99em;
	transition: 0.25s ease;
	color: #000;
}

.briefradio label span:hover {
	background-color: #f30505;
	color: #fff;
}

.briefradio label span:before {
	display: flex;
	flex-shrink: 0;
	content: "";
	background-color: #e6e6e5;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	margin-right: 0.375em;
	transition: 0.25s ease;
	box-shadow: inset 0 0 0 0.125em #222;
}

/* Create an active/current tablink class */
.portfoliotabs .tab button.active {
	background-color: #222;
	color: #fff;
}

.portfoliotabs .tab button:hover {
	background-color: #222;
	color: #fff;
}

.portfoliotabs .tab button {
	margin-bottom: 0px;
	background: none;
	border: 1px solid transparent;
	border-radius: 100px;
	color: #222;
	font-size: 15px;
	text-transform: uppercase;
	padding: 10px 20px;
}

.portfoliobox video {
	width: 100%;
	height: 400px;
	object-fit: scale-down;
}

/*END Logo Design Brief Css*/
/* BEGIN Digitalmarketing */
.digital-marketing {
	padding: 1% 0 0% 0;
}

.digitalservicestext small {
	display: block;
	color: #ffd301;
	font-size: 34px;
	margin: 20px 0 20px 0;
	font-family: 'Kumbh Sans', sans-serif;
	font-weight: 900;
	text-align: left;
}

.digitalservicestext span {
	display: block;
	color: #0c005b;
	font-size: 34px;
	margin: 20px 0 20px 0;
	font-family: 'Kumbh Sans', sans-serif;
	font-weight: 900;
	text-align: left;
	line-height: 50px;
}

.digitalbox span {
	display: block;
	color: #0c005b;
	font-size: 18px;
	margin: 15px 0 15px 0;
	font-family: 'Kumbh Sans', sans-serif;
	font-weight: 600;
	text-align: left;
}

.digitalbox {
	background: #fff;
	padding: 10px;
	box-shadow: 1px 1px 11px rgb(0 0 0 / 36%);
	margin-bottom: 30px;
	margin-top: 40px;
}

/* END digital Marketing */


/* A-One Stop Section  */
section.digital-sec {
    padding: 100px 0;
    background-image: url(../images/background-20.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .digit-text h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    text-align: left;
  }

  .digital-main-box ul {
    padding: 0;
    list-style: none;
  }
  .digital-main-box li {
    width: 50%;
    float: left;
    height: 412px;
  }
.digital-li-bx {
	cursor: pointer;
	background: #00c3ff;
	border-radius: 15px;
	padding: 17px 9px;
	color: #fff;
	text-align: center;
	top: 0;
	position: relative;
	margin: 20px 20px 0;
	transition-duration: 0.3s;
}
  .digital-li-bx.sky-blu:hover {
    transition-duration: 0.3s;
    top: -5px;
  }
  .digital-li-bx.red-color:hover {
    transition-duration: 0.3s;
    top: -33px;
  }
  .digital-li-bx.blu-color:hover {
    transition-duration: 0.3s;
    top: -5px;
  }
  .digital-main-box li img {
    transform: scale(1);
    transition-duration: 1s;
  }
  .digital-main-box li:hover img {
    transform: scale(1.4);
    transition-duration: 1s;
  }
  .digital-li-bx.green-color:hover {
    transition-duration: 0.3s;
    top: -55px;
  }
  .digital-sec .row {
    display: flex;
    align-items: center;
  }
  .blu-color {
    background-color: #fe4c1c;
  }
  .green-color {
    background-color: #448044;
  }
  .red-color {
    background-color: #0160e7;
  }
  li.digitl-li-st2 .digital-li-bx,
  li.digitl-li-st4 .digital-li-bx {
    position: relative;
    top: -50px;
  }
  .digit-text p {
    font-size: 16px;
    margin: 15px 0 0;
    color: #333;
    font-weight: 400;
  }
  .counter-box ul {
    padding: 0 100px 0 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }
  .counter-box ul li {
    display: inline-flex;
  }
  .counter h2 {
    color: #fdb42a;
    font-weight: 800;
    font-size: 40px;
  }
  .counter p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
  }
  .border-box:after {
    content: "";
    background-color: #d1d3d4;
    width: 1px;
    height: 60px;
    position: absolute;
    right: -20px;
    top: -15px;
    bottom: 0;
    margin: auto;
  }
  .border-box {
    position: relative;
  }
  .border-box h2 {
    margin: 0;
  }
  li:last-child .border-box:after {
    width: 0;
  }
  .counter-box {
    padding-top: 40px;
  }
  .digit-image-box {
    padding-top: 50px;
  }
.digital-btn-box a.nav_num {
	padding: 14px 30px;
	border-radius: 6px;
	background-color: #f30505;
	color: #fff;
	font-weight: 600;
	margin: 0 10px 0 0;
	outline: 0;
	border: solid 1px #f30505;
}

.digital-btn-box a.nav_num img {
    filter: brightness(100);
}
.digital-btn-box a.nav_num:hover img {
    filter: none;
}


  .digital-btn-box a.blue_btn {
    padding: 13px 30px;
    border-width: 1.5px;
    border-color: #f30505;
    border-style: solid;
    border-radius: 6px;
    color: #f30505;
    font-weight: 600;
  }
  .digital-btn-box {
    margin-top: 60px;
  }
  .digital-btn-box a img {
    margin-left: 10px;
  }
  .digital-li-bx img {
    width: 45%;
  }
  .digital-sec:before {
    content: "";
    position: absolute;
    height: 52px;
    width: 52px;
    background-repeat: no-repeat;
    border-radius: 10px;
    z-index: 0;
    left: 42%;
    bottom: 182px;
  }
  .digital-btn-box a.nav_num:hover {
    background-color: transparent;
    color: #f30505;
    border: solid 1px;
    border-color: #f30505;
  }
  .digital-btn-box a.blue_btn:hover img {
    filter: brightness(100);
  }
  .digital-btn-box a.blue_btn:hover {
    background-color: #f30505;
    color: #fff;
  }

.digital-main-box h4 {
    font-size: 18px !important;
    margin: 10px 0;
    color: white;
}

.digital-main-box p {
    font-size: 14px !important;
    color: #fff;
}


/* End A-One Stop Section  */


/*Qualitative approach CSS  */

section.award-sec {
  padding: 80px 0;
  background-image: url(../images/banners/1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}

.awaerd-text {
  text-align: center;
}
.awaerd-text h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
.awaerd-text p {
  font-size: 16px;
  margin: 20px 0 50px;
  color: #fff;
  font-weight: 400;
}
.award-box h4 {
  margin: 25px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  height: 40px;
}
.award-box p {
  margin: 25px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 20px;
  height: 122px;
}
.award-box {
  padding: 40px 30px;
  border-color: #a98dc5;
  border-radius: 10px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.26);
  background: linear-gradient(#ffffff, #ffffff);
  font-weight: 400;
  transition: 0.5s;
  margin-bottom: 10px;
}
.award-box img {
  width: 25%;
}
.award-box:hover {
  background: linear-gradient(#0b134e, #f30505);
  transition: 0.5s !important;
  transform: scale(1.1);
}

.award-box:hover img {
    filter: invert(1);
}

.award-box:hover h4 {
    color: #fff;
}

.award-box:hover p {
    color: #fff;
}

/*End Qualitative Approach CSS  */

/* Our Process Section */

section.process-sec {
    padding: 50px 0;
    background-image: url(../images/background-03.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .process-text {
    text-align: center;
  }
  .process-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #000000;
    margin: 0;
  }
  .process-text p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 19px 0 0;
  }

/*End Our Process Section  */

/* New-Portfolio CSS */

.portfolio .portfolio-image-1:first-child {
  height: 400px;
  overflow: hidden;
  background-size: cover;
  border-radius: 10px;
  position: relative;

}
.portfolio .portfolio-image-1:first-child:hover img{
  transform:none;
  transform: translate(0px, -130vh) !important;
  transition: 3.5s;
}


.portfolio .portfolio-image-1:first-child img {
    transform: translate(0px, 0) !important;
  transition: 3.5s;
  }

.portfolio-inner-box {
    margin: 0px 0px 50px 0;
}


section.privacy {
    padding-top: 5% !important;
}






.light h1,.light h2,.light h3,.light h4,.light h5,.light h6,.light a,.light p,.light i,.light span,.light li,.light{
  color: #fff !important;
}
.dark h1,.dark h2,.dark h3,.dark h4,.dark h5,.dark h6,.dark a,.dark p,.dark i,.dark span,.dark,.black{
  color: #000 !important;
}





.abt-row .row:nth-child(odd) {
    flex-direction: row-reverse;
}

section.innerPageBanner {
    padding-top: 80px;
}


.portfolio-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.portfolio-img a {
    display: inline-block;
    width: 100%;
}


.inner-banner {
    background: #000 !important;
}

.available-list li i {
    margin: 0 5px 0 0px;
}

section.packages_sec {
    margin-bottom: 30px;
}

img.thank_gif {
    width: 170px;
}


.logoDesign-banner{
	background: url(../images/logoDesign-banner.jpg) !important;
}
.illustration-banner{
	background: url(../images/illustration-banner.jpg) !important;
}
.webDesign-banner{
	background: url(../images/webDesign-banner.jpg) !important;
}
.eCommerce-banner{
	background: url(../images/eCommerce-banner.jpg) !important;
}
.videoAnimation-banner{
	background: url(../images/videoAnimation-banner.jpg) !important;
}
.brand-banner{
	background: url(../images/brand-banner.jpg) !important;
}
.degitalMarketing-banner{
	background: url(../images/degitalMarketing-banner.jpg) !important;
}
.mobileApp-banner{
	background: url(../images/mobileApp-banner.jpg) !important;
}
.uiuxDesign-banner{
	background: url(../images/uiuxDesign-banner.jpg) !important;
}
.aboutUs-banner{
	background: url(../images/aboutUs-banner.jpg) !important;
}

.nft-banner{
	background: url(../images/nft-banner.jpg) !important;
}

.seo-banner{
	background: url(../images/seo-banner.jpg) !important;
}

.printing-banner{
	background: url(../images/printing-banner.jpg) !important;
}

.informativeWebsite-banner{
	background: url(../images/informativeWebsite-banner.jpg) !important;
}

.webPortal-banner{
	background: url(../images/webPortal-banner.jpg) !important;
}
.smm-banner {
    background-image: url(../images/smm-banner.jpg) !important;

}



/* End New-Portfolio CSS */


.printing-page .exceptional.inner-process {
    display: none;
}


.hero-slider-3 .as-hero-slide {
    margin: 0 !important;
}


.hideme .cust-nav-tabs {
    margin: -30px 0 40px;
}







.menu .dropdown {
    position: relative;
    z-index: 9999999;
}




button.slick-prev.slick-arrow,button.slick-next.slick-arrow {
    display: block !important;
    width: auto;
}


.section--awards {
    padding: 3rem 0 0;
}
.section--awards h2{
    font-size: 33px;
    font-family: poppins;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

