:root {
    --theme-primary-text: #0E0E0E;
  --theme-secondary-text: #676767;
  --theme-gray-text:#D8D8D8; 
  --theme-header-color: #151515;
}
.theme-primary-text {
  color: var(--theme-primary-text);
}
.theme-secondary-text {
  color: var(--theme-secondary-text);
}
.heading-color {
  color: var(--theme-header-color);
}
.text-gray {
  color: var(--theme-gray-text);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.woff2") format("woff2"),
    url("../fonts/Inter-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2"),
    url("../fonts/Inter-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2"),
    url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"),
    url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"),
    url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"),
    url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.woff2") format("woff2"),
    url("../fonts/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--theme-secondary-text);
  background: #fff;
  transition: 0.35s;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  width: 100vw;
  padding: 0 !important;
  margin: 0 !important;
}
a {
  text-decoration: none !important;
  transition: 0.5s all ease-in-out;
}
.slow-effect {
  transition: 0.5s all ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
}
p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #71717a;
}
img {
  max-width: 100%;
}
a, button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  transition: 0.5s all ease-in-out;
}
.common-btn {
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.5s all ease-in-out;
  font-size: 14px;
}
.fill-btn {
  background: #1A1A1A;
  color: #fff;
}
.fill-btn:hover, :not(.btn-check) + .btn:active, .fill-btn:focus {
	background: #4e4d4d;
	color: #fff;
	box-shadow: none;
}
.common-stor-btn a {
  border: 1px solid #ffaeb8;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 8px -5px #000;
  padding: 5px 10px;
  display: flex;
  width: max-content;
  gap: 10px;
}
.common-btn img {
	transition: 0.5s all ease-in-out;
  transform: rotate(0deg);
  left: 0;
  position: relative;
}
.common-btn:hover img {
	transform: rotate(45deg);
	left: 5px;
}
.common-padding{
  padding: 100px 0;
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18,
.fs-17 {
  font-size: 17px;
}
.fs-20 {
  font-size: 18px;
}
.fs-21 {
  font-size: 19px;
}
.fs-24 {
  font-size: 21px;
}
.fs-26 {
  font-size: 22px;
}
.fs-32 {
  font-size: 24px;
}
.fs-40 {
  font-size: 26px;
}
.fs-46 {
  font-size: 28px;
}
.fs-52 {
  font-size: 30px;
}
.z_index1 {
  z-index: 1;
}
.common-sub-heading {
	font-size: 18px;
	width: fit-content;
	margin-bottom: 20px;
}
.common-sub-heading::after {
	content: "";
	position: absolute;
	background: #E0E0E0;
	width: 100%;
	height: 1px;
	bottom: -5px;
	left: 0;
}
.top-space {
    margin-top: 25px;
}
.common-space {
gap: 24px 0;
}
/***   Header Section ***/
.header-section {
  padding: 20px 0;
  transition: 0.5s all ease-in-out; 
}
.header-section.sticky {
  padding: 10px 0;
  position: fixed;
  top: -2px;
  background: #fff;
  z-index: 9;
  box-shadow: 1px 1px 19px -17px #000;
  width: 100%;
}
.header-logo {
  transition: 0.5s all ease-in-out;
  width: 100px;
}
.header-nav {
  padding: 0;
}
.offcanvas-start {
  width: 250px;
}
.header-navbar {
  gap: 0 15px;
}
.menus-links {
	color: var(--theme-primary-text);
	font-size: 16px;
	font-weight: 400;
}
.nav-link.menus-links:focus, .nav-link.menus-links:hover {
	color: var(--theme-secondary-text);
}
.dropdown-item:hover {
  padding-left: 12px !important;
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
  display: block !important;
  pointer-events: none;
  padding: 0;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 10px 11px -8px #00000054;
  border: 1px solid #0000000a;
  border-radius: 5px;
}
.dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 15px;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
}
.btn.common-btn.nav-link {
	font-size: 12px;
	padding: 11px 12px;
}
/* Animate show */
.dropdown-menu.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.header-offcanvas-menus {
  background: #fff;
}
.navbar-toggler.header-toggle-btn {
  background: #fff;
  border: none;
}
.navbar-toggler.header-toggle-btn:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  top: 5px;
}
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 10px;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.mobile-bottom-nav .mb-nav-item {
  text-align: center;
  flex: 1;
  color: #444;
  font-size: 12px;
  text-decoration: none;
  display: grid;
  gap: 5px;
}
.mobile-bottom-nav .mb-nav-item i {
  font-size: 22px;
  display: block;
  margin-bottom: 3px;
}
.mobile-bottom-nav a.active {
  color: #ff3e6c !important;
}
.mobile-nav-icon {
  margin: 0 auto;
  height: 20px;
}
/* ---------- Hero Banner ---------- */
.hero-section {
	padding: 15px 0 0;
	position: relative;
	overflow: hidden;
}
.hero-badge {
	background: #fff;
	color: #1A1A1A;
	padding: 8px 14px 8px 30px ;
	border-radius: 100px;
	margin-bottom: 10px;
	border: 1px solid #DDDDDD;
	width: fit-content;
}
.hero-badge::before {
	background: #1A1A1A;
	content: "";
	position: absolute;
	top: 17px;
	left: 14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}
.banner-sub-title {
	color: #0E0E0E;
	font-size: 22px; 
}
.banner-heading {
  font-size: 30px;
}
.banner-text p {
	font-size: 15px;
}
.banner-bg-image {
	left: 0;
	right: -285px;
	margin: 0 auto;
	text-align: center;
	top: 110px;
	width: 270px;
}
.banner-bg-image img {
	animation: 5s ease-in-out infinite upDown;
}
.banner-circl-shape {
	z-index: -1;
	top: 45px;
	animation: orbit 50s linear infinite;
}
.banner-line-shape {
	right: -34%;
	bottom: 0; 
	width: 100%;
}
.banner-image {
	margin-left: -40px;
}
/* ---------- Worldwide Section ---------- */
.worldwide-section {
	background: #242424;
	padding: 20px 0;
} 
.logo-image {
	padding: 10px 0;
}
.worldwide-slider .slick-slide img {
  transition: 0.5s all ease-in-out;
}
.worldwide-slider .slick-slide img:hover {
  animation: 1s wobble-vertical 1 ease-in-out;
}
.worldwide-slider .slick-slide {
  margin-right: 15px;
}

/*--------- Future Section ------------*/
.who-we-serve-section, .common-padding {
  padding: 50px 0;
}
.max-heading-width {
  max-width: 690px;
  margin: 0 auto;
}
.feature-card {
	padding: 30px 20px;
	border-radius: 30px;
	background: #F3F3F3;
}
.feature-card:hover {
	background: #242424;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}
.active-card {
	background: #242424;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}
.feature-icon {
	width: 75px;
	height: 75px;
	background: #fff;
	border-radius: 50%;
	margin-bottom: 30px;
}
.feature-card:hover .feature-icon {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-card:hover img {
  animation: 1s wobble-vertical 1 ease-in-out;
}
.feature-title {
	color: var(--theme-primary-text);
}
.feature-card:hover .feature-title {
  color: #fff;
}
.feature-card:hover .feature-icon,
.active-card .feature-icon {
	background: #616161;
}
.feature-card:hover img {
	animation: toBottomFromTop 0.5s forwards;
	filter: brightness(0) invert(1);
}
.active-card .feature-title {
  color: #fff;
}
.active-card .feature-description,
.feature-card:hover .feature-description {
  color: #D8D8D8;
}
/*-------- Services section --------*/
.service-section {
	background: #1A1A1A;
	padding: 56px 0;
}
.service-section::before {
  background: url(../images/shapes/bg_shape.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
}
.service-card {
	background: #292929;
	border: 1px solid var(--theme-secondary-text);
	padding: 30px 20px;
	border-radius: 30px;
}
.service-icon {
	background: #1A1A1A;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	margin-bottom: 20px;
}
.service-card:hover {
	background: #000;
	transform: translateY(-5px);
	border: 1px solid transparent;
	box-shadow: 1px 1px 14px -5px #303030;
}
.service-card:hover .service-icon {
	background: #fff;
}
.service-card:hover img {
	animation: 1s wobble-vertical 1 ease-in-out;
	filter: brightness(1) invert(1);
}
/*------------ How We Work Section Styles ------------*/ 
.how-we-work-section .accordion-item {
	background: #F3F3F3;
	border: none !important;
}
.how-we-work-section .accordion-button {
	background: transparent;
	padding: 25px 30px;
	color: var(--theme-primary-text);
	box-shadow: none !important;
}
.how-we-work-section .accordion-body {
	padding: 24px 24px 20px;
	border-top: 1px solid #D8D8D8;
}
.circular-image {
	animation: 5s ease-in-out infinite upDown;
}
/* .how-we-work-section .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #151515;
} */
 .how-we-work-section .accordion-button::after {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.how-we-work-section .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23151515'%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
}

.how-we-work-section .check-icon {
  width: 24px;
  height: 24px;
  background: #e8f5e9;
  color: #4caf50;
  flex-shrink: 0;
}
.how-we-work-section .check-icon svg {
  width: 14px;
  height: 14px;
}
 
/*-------- Growing Funda section --------*/
.growing-content {
    background: #1A1A1A;
    border-radius: 30px;
    padding: 35px 20px;
    display: grid;
    gap: 60px;
}
.growing-card::after {
	background: #676767;
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
	height: 1px;
	bottom: -30px;
}
.growing-card:last-child::after {
display: none;
}
.growing-icon-area {
	background: #616161;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.growing-icon-area img {
	animation: zooming_anim 2s infinite linear alternate;
}
.growing-lists li {
	margin-bottom: 10px;
	padding-left: 15px;
}
.growing-lists li:last-child{
  margin-bottom: 0
}
.growing-lists li::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 10px;
	background: var(--theme-gray-text);
	border-radius: 50%;
}


/*-------- Stats Section --------*/
.our-role-section {
	padding: 50px 0 60px;
}
.stats-section {
	padding: 100px 0;
	background: #fff;
	overflow: hidden;
} 
.stats-bg-image {
	position: absolute;
	border-radius: 20px;
	overflow: hidden;
	height: 780px;
	left: 0;
	width: 100vw;
	top: 0;
}
.stats-bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right
}
.role-left-area {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%
}
.role-cards-grid {
	display: grid;
	justify-items: center;
	align-items: center;
	width: 100%;
	gap: 10px;
}
.role-single-box {
	width: 100%;
  height: 100%;
}
.stat-card {
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 40px 20px;
	text-align: center;
	background: #6464642b;
	box-shadow: inset 1px 1px 0px #888;
	position: relative;
	overflow: hidden;
	height: 100%;
}
.stat-card::before {
	content: "";
	position: absolute;
	width: 97%;
	height: 96%;
	right: 0;
	bottom: 0;
	box-shadow: inset -1px -1px 0px #646464;
	border-radius: 0 0px 15px 1px;
}
.role-stat-number {
	font-size: 32px;
}
.stats-content {
	padding: 85px 0 0 0;
}
.stats-list li img {
	width: 20px;
	height: 20px;
}
/*-------- Form section --------*/
.form-section {
	background: #F3F3F3;
	border-radius: 30px 30px 0 0;
}
.talk-list li {
	border: 1px solid #D8D8D8; 
	padding: 11px 18px;
	border-radius: 20px;
	padding: 20px 17px;
	margin-bottom: 10px;
}
.talk-list li:last-child {
	margin-bottom: 0;
}
.form-area {
	background: #1A1A1A;
	padding: 34px 20px;
	border-radius: 30px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field .input-field::placeholder,
.form-field .textarea-field::placeholder {
  color: #676767;
}
.input-field, .textarea-field, .form-select.input-field {
	padding: 15px 30px 15px 15px;
	border-radius: 8px;
	transition: 0.5s all ease-in-out;
	color: #fff;
	font-size: 14px;
	background: #0E0E0E;
	border: 1px solid #676767;
}
.form-select.input-field {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	background-color: #0E0E0E;
}
.form-select.input-field:focus,
.form-select.input-field:active,
.form-select.input-field:open {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	background-color: #0E0E0E;
} 
.form-select.input-field option {
	color: #fff;
	background: #0E0E0E;
}
.form-select.input-field,
.form-select.input-field option:first-child {
	color: #676767;
}

.form-select.input-field.changed,
.input-field:focus, .textarea-field:focus{
	color: #fff;
}
.input-field:focus, .textarea-field:focus {
	border: 1px solid #fff;
	box-shadow: none;
	background: transparent;
}
.textarea-field {
  height: 95px;
  resize: none;
}   
.submit-button {
	background: #fff;
	padding: 15px;
	border-radius: 10px;
	color: #001518;
	margin-top: 25px;
}
.submit-button:hover {
	background: #3d3d3d;
	color: #fff;
} 
/* ---------- FOOTER ---------- */
.site-footer {
  padding: 50px 0 0;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 15px;
}
.footer-row {
  gap: 25px 0;
}
.footer-desc {
	margin-top: 20px;
	color: #535353;
}
.footer-title {
  font-size: 18px;
}
.footer-links a {
	color: #535353;
	margin-bottom: 8px;
	display: block;
	position: relative;
	overflow: hidden;
}
.footer-links a:hover {
	color: #000;
	padding-left: 14px;
}
.footer-links a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	top: 12px;
	background: #000;
	left: 0px;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s all ease-in-out;
}
.footer-links a:hover::before {
	left: 0;
	opacity: 1;
	visibility: visible;
	width: 10px;
}
.footer-bottom {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #e3e3e3;
  gap: 20px 0;
}
.divide-line {
  padding: 0 10px;
}
.copyright-text {
	color: #535353;
}
.copyright-links {
	color: #535353;
}
.copyright-links:hover {
  color:#000
}
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: end;
}
.social-icons a {
	width: 45px;
	height: 45px;
	background: #0E0E0E;
	padding: 10px;
}
.social-icons a:hover { 
  transform: rotate(360deg);
}
@media (max-width: 375px) {
.footer-col1 {
  order: 0;
}
.footer-col2 {
	order: 1;
}
.footer-col4 {
	order: 2;
}
.footer-col3 {
	order: 3;
}
}
@media (min-width: 376px) and (max-width: 575px) {
.footer-col1 {
  width: 60%;
}
.footer-col2 {
  width: 40%;
}
.footer-col3{
  width: 60%;
}
.footer-col4 {
  width: 40%;
}
}

@media (min-width: 480px) {
.header-logo {
	width: 140px;
}
.stats-bg-image {
	height: 450px;
}
.role-cards-grid {
	grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 575px) {
.footer-row p, .footer-row a {
	font-size: 15px !important;
}
.copyright-text {
	display: block;
	width: 100%;
	text-align: center;
	margin: 0 0 10px;
}
}
@media (min-width: 576px) {
 .fs-46 {
    font-size: 30px;
  }
 /*--- Banner Section ---*/ 
  .banner-heading {
    font-size: 36px;
  } 
/*--- worldwide Section ---*/
.worldwide-heading::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -22px;
    background: #797979;
    width: 2px;
    height: 63px;
}
  .role-cards-grid {
	gap: 25px;
}
/*------- Footer Section ------*/
.copyright-text {
	margin-right: 30px;
}
}
@media (min-width: 768px) {
  .fs-18 {
    font-size: 18px;
  }
  .fs-20 {
    font-size: 19px;
  }
  .fs-21 {
    font-size: 20px;
  }
  .fs-24 {
    font-size: 22px;
  }
  .fs-26 {
    font-size: 24px;
  }
  .fs-32 {
    font-size: 26px;
  }
  .fs-40 {
    font-size: 30px;
  }
  .fs-46 {
    font-size: 32px;
  }
.banner-sub-title {
	font-size: 22px; 
}
 /*--- Banner Section ---*/ 
  .banner-heading {
    font-size: 40px;
  }
.banner-response-box {
    right: -15px;
  }
.banner-text {
	grid-template-columns: 284px auto;
}
.banner-image {
	margin-left: -100px;
}
.banner-line-shape {
	right: -30%;
	width: auto;
}
.banner-bg-image {
	right: -228px;
	width: 232px;
}
/*--- worldwide Section ---*/
.worldwide-heading::after {
    right: 34px;
    height: 41px;
    top: -11px;
}
/*-------- Growing Funda section --------*/
.growing-content {
	padding: 48px 40px;
	gap: 60px 35px;
	grid-template-columns: 47% 47%;
}
} 
@media (min-width: 768px) and (max-width: 991px) {
.growing-card::after {
	display: none;
}
.growing-card:first-child:after {
	right: -13px;
	width: 1px;
	height: 100%;
	bottom: -30px;
  display: block;
}
}
@media (max-width: 991px) {
  /*** Header ***/
  .dropdown-menu {
    max-height: 0;
  }
  .dropdown-menu.show {
    max-height: 100%;
  }
}
@media (min-width: 992px) {
  .fs-20, .fs-21 {
    font-size: 20px;
  }
  .fs-24 {
    font-size: 22px;
  }
  .fs-26 {
    font-size: 24px;
  }
  .fs-32 {
    font-size: 28px;
  }
  .fs-40 {
    font-size: 36px;
  }
  .fs-46 {
    font-size: 36px;
  }
  .top-space {
    margin-top: 40px;
}
    /*** Header ***/
  .offcanvas-lg {
    position: static;
    transform: none;
    visibility: visible !important;
    display: flex !important;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-direction: row;
    padding: 0;
  }
  .navbar-toggler {
    display: none;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  .mobile-bottom-nav {
    display: none !important;
  }
    .header-navbar {
    gap: 0 10px;
  }
.menus-links {
	font-size: 14px;
}
.btn.common-btn.nav-link {
	font-size: 14px;
}
  /*--- Banner Section ---*/  
.hero-section {
	padding: 30px 0 0;
}
.banner-sub-title {
	font-size: 24px; 
}
.banner-text {
	grid-template-columns: 300px auto;
}
.banner-bg-image {
	right: -281px;
	width: 273px;
}
.banner-line-shape {
	right: -42%;
	width: 109%;
}
.banner-circl-shape {
	left: -25px;
}
/*--- worldwide Section ---*/
.worldwide-heading::after {
	right: -18px;
}
  /*--- Feature Section ---*/  
  .who-we-serve-section, .common-padding {
    padding: 70px 0;
  }
  /*-------- Stats Section --------*/
.stats-bg-image {
	border-radius: 0 40px 40px 0;
	height: 80%;
	left: 0;
	width: 50vw;
	top: 72px;
}
.stats-bg-image img {
	border-radius: 0 40px 40px 0;
}
.role-left-area {
	padding-right: 60px;
}
.role-single-box {
	width: 100%;
}
.stat-card {
	padding: 65px 20px;
}
.stats-content {
	padding: 0 0 0 40px;
}
/*-------- Growing Funda section --------*/
.growing-content {
	background: #1A1A1A;
	border-radius: 30px;
	padding: 48px 25px;
	display: grid;
	grid-template-columns: 31% 29% 30%;
	gap: 45px;
}
.growing-card::after {
	background: #676767;
	content: "";
	position: absolute;
	right: -16px;
	top: 50%;
	width: 1px;
	height: 300px;
	transform: translateY(-50%);
}
/*------- Form Section ------*/
.talk-list {
	margin-top: 56px;
  max-width: 554px;
}
 /*--- Footer Section ---*/ 
  .site-footer {
    padding: 70px 0 0;
  }
  .footer-desc {
    margin-top: 38px;
  }
  .footer-bottom {
    margin-top: 50px;
    padding: 32px 0;
  }
}
@media (min-width: 1200px) {
  .fs-32 {
    font-size: 32px;
  }
  .fs-21 {
    font-size: 21px;
  }
  .fs-24 {
    font-size: 24px;
  }
  .fs-26 {
    font-size: 26px;
  }
  .fs-32 {
    font-size: 30px;
  }
  .fs-40 {
    font-size: 38px;
  }
  .fs-46 {
    font-size: 40px;
  }
  .header-navbar {
    gap: 0 25px;
  }
    .header-logo {
  width: 170px;
}
  .menus-links {
    font-size: 16px;
  }
.common-btn, .btn.common-btn.nav-link {
	font-size: 16px;
}
    /*--- Banner Section ---*/  
    .banner-heading {
    font-size: 48px;
  }
  .banner-line-shape {
	right: -35%;
	width: 100%;
}
/*--- worldwide Section ---*/
.worldwide-heading::after {
	right: 34px;
}
/*--- Feature Section ---*/  
.feature-icon {
	margin-bottom: 70px;
}
	/*-------- Stats Section --------*/
.our-role-section {
	padding: 100px 0 180px;
}
.stats-section {
	padding: 100px 0;
	background: #fff;
	overflow: hidden;
} 
.stats-bg-image {
	top: 40px;
}
.role-stat-number {
	font-size: 52px;
} 
/*-------- Services section --------*/
.service-card {
	padding: 47px
}
.service-icon {
	margin-bottom: 40px;
}
/*-------- Growing Funda section --------*/
.growing-card::after {
	height: 260px
}
/*------- Form Section ------*/
.form-area {
	padding: 34px 30px
}
}
@media (min-width: 992px) and (max-width: 1399px) {
.banner-text {
	grid-template-columns: 100%;
}

}
@media (min-width: 1400px) {
  .fs-52 {
  font-size: 52px;
}
  .fs-46 {
    font-size: 46px;
  }
  .fs-40 {
    font-size: 40px;
  }
  .fs-32 {
    font-size: 32px;
  }
.who-we-serve-section, .common-padding {
    padding: 100px 0;
  }
 /*--- Banner Section ---*/ 
 .hero-badge {
	margin-bottom: 24px;
}
  .banner-heading {
    font-size: 54px;
  }
  .banner-text p {
	font-size: 16px;
}
.banner-circl-shape {
	left: 0;
}
/*--- Feature Section ---*/ 
.feature-card {
	padding: 47px
}
/*-------- Growing Funda section --------*/
.growing-content {
	padding: 48px 40px;
	grid-template-columns: 34% 34% 26%;
}
.growing-card {
	padding-right: 20px;
}
.growing-card::after {
	height: 206px;
	right: 0px;
}
/*------- Form Section ------*/
.form-area {
	padding: 34px 55px
}
} 
@media (min-width: 1600px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 1440px;
  }
/*--- Banner Section ---*/
.banner-heading {
	font-size: 90px;
}
  /*--- Footer Section ---*/  
.footer-desc {
	max-width: 435px;
}
}

@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
} 
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zooming_anim {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
} 