* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: "GoldenHillsDEMO";
	src: url(../fonts/GoldenHillsDEMO.ttf);
}

@font-face {
	font-family: "Lato-Bold";
	src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
	font-family: "Lato-Regular";
	src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
	font-family: "OpenSans-Bold";
	src: url(../fonts/OpenSans-Bold.ttf);
}

@font-face {
	font-family: "Poppins-Medium";
	src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
	font-family: "Poppins-Regular";
	src: url(../fonts/Poppins-Regular.ttf);
}

body {
    display: block;
	width: 100%;
	height: auto;
	overflow: inherit !important;
}

body.open {
	overflow: hidden;
}

/* .home-body-image { background-image: url(../images/home-bg-image.png); } */
/* .min-section { background: linear-gradient(270deg, #ebd286, #a7f3f775 35%, #d3b1a8d2); background-position: right bottom; } */
.min-section.inner-bg-sec {
	background-image: url(../images/career-bg.png);
	background-size: cover;
}

ul {
	padding: 0;
	margin: 0;
}

h1 {
	font-family: "Poppins-Medium";
}

h2 {
	font-family: "Poppins-Medium";
}

h3 {
	font-family: "Poppins-Medium";
}

h4 {
	font-family: "Poppins-Medium";
}

h5 {
	font-family: "Poppins-Medium";
}

h6 {
	font-family: "Poppins-Medium";
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

input,
textarea {
	box-shadow: none !important;
	outline: none !important;
}

header {
	width: 100%;
	margin: 0 auto;
	padding: 0px 20px;
	z-index: 99;
	position: relative;
}

header .navbar-brand img {
	width: 150px;
	margin-right: 30px;
}

.navbar-expand-lg .navbar-nav a.nav-link {
	padding: 5px 10px;
}

header .navbar .nav-item a {
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins-Medium';
	color: #000;
	text-transform: capitalize;
	margin: 0 8px;
	/*padding-top: 18px;*/
	transition: all .2s ease-in-out;
	position: relative;
}

/* header .navbar .nav-item a:before { content: ""; position: absolute; height: 1px; width: 0px; background-color: #f04b3f; left: 50%; transform: translateX(-50%); bottom: 7px; transition: all .2s ease-in-out; } */
header .navbar .nav-item a:hover {
	border-radius: 25px;
	color: #ffffff;
	background-color: #f04b3f !important;
}

header .navbar .nav-item a.active {
    border-radius: 25px;
    color: #ffffff;
    background-color: #f04b3f !important;
    padding: 5px 8px 4px 10px !important;
}

header .navbar .nav-item a:hover:before {
	width: calc(100% - .8rem);
}

header .navbar .nav-item.submenu a {
	padding-right: 1rem;
}

header .navbar .nav-item.submenu a:after {
	background: transparent;
	right: 0;
	left: auto;
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}

header .navbar .nav-item.submenu .dropdown-menu a {
	margin: 0;
	background-color: transparent;
}

header .navbar .nav-item.submenu .dropdown-menu a:before {
	content: inherit;
}

header .navbar .nav-item.submenu:hover .dropdown-menu {
	display: block;
}

header .offcanvas-start {
	width: 350px;
    left: auto;
    right: 0 !important;
    transform: translateX(125%)
}

header .collapse:not(.show){
	display: flex;
}

.search-box {
	position: relative;
	width: 15% !important;
	max-width: 150px;
	height: 38px;
	/*margin-top: 10px*/
}

.search-box .form-control {
	border-radius: 30px;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Poppins-Medium';
	outline: none !important;
	box-shadow: none !important;
	border: 1px solid #f04b3f !important;
}

.search-box i {
	position: absolute;
	right: 12px;
	top: 12px;
	font-size: 13px;
}

header .navbar.sticky_header {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	top: 0;
	left: 0;
	background: #fcfafa;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	/*padding: 18px 20px;*/
}

.search-btn {
	cursor: pointer;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.search-btn svg {
	width: 18px;
	height: 18px;
	transition: all .2s ease-in-out;
}

.search-btn:hover svg {
	fill: #f04b3f;
}

.search-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	cursor: pointer;
}

.search-close svg {
	fill: #fff;
	width: 20px;
	height: 20px;
}

.search-section {
	position: fixed;
	opacity: 0;
	z-index: -1;
	transition: 0.5s all ease-in-out;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: none;
}

.search-caption {
	background: rgba(0, 0, 0, 0.8);
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search-input {
	width: 70%;
	border: 1px solid #ffffff;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: all .2s ease-in-out;
	z-index: 99;
}

.search-input .input-textarea {
	position: relative;
	background: transparent;
	width: 100%;
	height: 48px;
	padding: 10px;
	color: white;
	z-index: 2;
	border: none;
}

.search-input .input-textarea::placeholder {
	color: #ffffffa6;
}

.search-input span {
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 48px;
	cursor: pointer;
}

.search-input span svg {
	fill: #fff;
	width: 18px;
	height: 18px;
}

.search-section.open {
	opacity: 1;
	z-index: 100;
	transition: 0.1s all ease-in-out;
	display: block;
}

header .close-icon {
	display: none;
}

.search-caption {
	background: rgb(255 255 255 / 61%);
}

.search-caption .search-input {
	position: absolute;
	top: 10px;
	width: 100%;
	padding: 10px 90px;
	flex-direction: row-reverse;
	background: white;
}

.search-caption .search-input input {
	color: #000;
}

.search-caption .search-input input::placeholder {
	color: #000;
}

.search-caption .search-input span svg {
	fill: #000;
}

.search-section .search-close svg {
	fill: #000;
}

.search-section .search-close {
	top: 30px;
}

.hiro-sec {
	position: relative;
}

.hiro-sec .hori-line {
	background-image: url(../images/bg-line-2.svg);
	position: absolute;
	top: 200px;
	height: 163px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hiro-sec .single-banner-slide {
	width: 100%;
	background-size: 100% 100%;
	background-position: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.hiro-sec .single-banner-slide .hero-banner-img {
	width: 100%;
	display: inline-block;
}

.hiro-sec .single-banner-slide .hero-banner-img img {
	width: 100%;
}

.hiro-sec .single-banner-slide h2 {
	color: #ffffff;
	text-transform: capitalize;
	font-size: 3vw;
	font-family: inherit !important;
	line-height: 40px;
	font-weight: 500;
}

.hiro-sec .single-banner-slide p {
	color: #fff;
}

.hiro-sec .single-banner-slide h2:nth-child(2) {
	padding-left: 110px;
}

.hiro-sec .single-banner-slide a {
	color: #FFF;
	background: #f04b3f;
	padding: 14px 24px;
	border-radius: 100px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 300;
	transition: 0.3s;
	font-family: 'Poppins-Medium';
	letter-spacing: 1px;
}

.hiro-sec .single-banner-slide a:hover {
	color: #f04b3f;
	background: #FFF;
}

.hiro-sec .hiro-contein {
	padding: 0 15px;
	margin-bottom: 20px;
	width: 100%;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	text-align: center;
	transform: translateX(-50%);
	bottom: 65px;
}

/* .hiro-sec .all-banner-slide .owl-nav{display: none !important;} */
.hiro-sec .all-banner-slide .owl-dots {
	position: absolute;
	bottom: 12px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.hiro-sec .all-banner-slide .owl-dots .owl-dot {
	width: 14px;
	height: 14px;
	background-color: #ffffff66;
	border-radius: 50%;
}

.hiro-sec .all-banner-slide .owl-dots .owl-dot.active {
	background-color: #ffffff;
}

.hiro-sec .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	position: relative;
}

/* .hiro-sec .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled { display: block !important; bottom: 300px; } */
.hiro-sec .owl-prev span {
	color: #000;
	font-size: 34px;
	background: #FFF;
	padding: 0px 0px 8px;
	border-radius: 100px;
	width: 42px;
	display: inline-block;
	height: 42px;
	line-height: 1;
	position: absolute;
	left: 25px;
	top: 12px;
}

.hiro-sec .owl-next span {
	color: #000;
	font-size: 34px;
	background: #FFF;
	padding: 0px 0px 8px;
	border-radius: 100px;
	width: 42px;
	display: inline-block;
	height: 42px;
	line-height: 1;
	position: absolute;
	right: 25px;
}

.one-car-sec {
	position: relative;
	margin: 50px 0;
	background-color: #f5b2ac;
	padding: 50px 0;
}

.clip {
	overflow: hidden;
	border-radius: 20px;
	position: relative;
}

.one-car-sec .clip:before {
	content: "";
	position: absolute;
	width: calc(100% - 15px);
	height: calc(100% - 15px);
	border: 2px dashed #fff;
	left: 50%;
	top: 50%;
	border-radius: 15px;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: transparent;
}

.one-car-sec .clip img {
	width: 100%;
	transition: all 1.1s;
	transform: scale(1.2);
	position: relative;
}

/* .one-car-sec .clip:hover img { filter: grayscale(100%); transform: scale(1); } */
.card-sec {
	overflow: hidden;
}

.one-car-sec h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ffffff;
	text-transform: capitalize;
	margin: 0px 0 10px 0;
}

.one-car-sec p {
	width: 95%;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Poppins-Medium';
	color: #000;
}

.one-car-sec a {
	font-size: 20px;
	font-weight: 400;
	font-family: 'Poppins-Medium';
	color: #000;
}

.explore-sec {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin: 50px 0 30px;
}

.explore-sec h2 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	text-transform: capitalize;
}

.explore-sec .search-box {
	position: relative;
	width: 100% !important;
	height: 38px;
	margin-top: 0 !important;
	max-width: 200px;
}

.specific-card {
	width: 80%;
	margin: 0 auto;
}

.specific {
	background: transparent;
	padding: 0 !important;
	border-radius: 4px 4px 0 0;
	text-align: center;
	position: relative;
	/* height: 266px; */
	width: 100%;
	margin-bottom: 20px;
}

/*.specific:hover { box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.176); }*/
.specific h5 {
	background: #ffc335;
}

.specific-card .one h5 {
	background: #8cd2ca;
}

.specific-card .two h5 {
	background: #ee4a40;
}

.specific-card .three h5 {
	background: #f5b0b0;
}

.specific-card .four h5 {
	background: #afe8f9;
}

.specific-card .fiv h5 {
	background: #f78d53
}

.specific-card .two h5 {
	background: #aee8f9;
}

.specific-card .six h5 {
	background: #00afe4;
}

.specific-card .seven h5 {
	background: #3db673;
}

.specific-card .eight h5 {
	background: #c0c5c9;
}

.specific-card .col-lg-4 {
	position: relative;
}

.specific-card .starts {
	position: absolute;
	right: 46px;
	z-index: 1;
	width: 20%;
	top: 66px;
}

.specific-card .rocket {
	position: absolute;
	right: 26px;
	z-index: 1;
	width: 11%;
	top: 88px;
}

.specific-card .shape_12 {
	position: absolute;
	right: 20px;
	z-index: 1;
	width: 15%;
	top: 134px;
}

.specific-card .shape_13 {
	position: absolute;
	right: 26px;
	z-index: 1;
	width: 15%;
	top: 30px;
}

.specific-card .shape_14 {
	position: absolute;
	right: 19px;
	z-index: 9;
	width: 25%;
	top: 82px;
}

.specific-card .shape_15 {
	position: absolute;
	right: 24px;
	z-index: 9;
	width: 30%;
	top: 97px;
}

.specific-card .shape_16 {
	position: absolute;
	right: 26px;
	z-index: 9;
	width: 15%;
	top: 41px;
}

.specific-card .shape_17 {
	position: absolute;
	right: 26px;
	z-index: 9;
	width: 26%;
	top: 85px;
}

.specific-card .shape_18 {
	position: absolute;
	right: 26px;
	z-index: 9;
	width: 26%;
	top: 85px;
}

.specific img {
	width: 100%;
	margin-bottom: 0px;
	border-radius: 4px 4px 0 0 !important;
}

.specific a {
	color: #000 !important;
	text-decoration: none;
	display: block;
}

.specific h5 {
	font-size: 20px;
	font-weight: 500;
	font-family: 'Poppins-Medium';
	padding: 10px 5px;
}

.arrivals-sec {
	margin: 0 auto;
}

.arrivals-sec h2 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	text-align: center;
	text-transform: capitalize;
}

.arrivals-sec .summer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.arrivals-sec h3 {
	color: #378082;
	text-transform: capitalize;
	font-size: 60px;
	font-family: "Poppins-Medium";
}

.arrivals-sec h3:nth-child(2) {
	padding-left: 80px;
}

.arrivals-sec img {
	width: 100%;
}

.arrivals-sec .trends-sec img {
	margin-top: 10px;
	width: 45px;
}

.arrivals-sec h5 {
	font-size: 20px;
	font-weight: 500;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	margin-top: 16px;
}

.arrivals-sec p {
	font-size: 16px;
	font-weight: 300;
	font-family: 'Poppins-Medium';
	color: #000;
}

.choose-sec {
	background: #d7ede0;
	padding: 50px;
	margin: 50px 0;
}

.choose-prodect {
	text-align: center;
	margin-bottom: 30px;
}

.choose-quality {
	/* width: 70%; */

	margin: 0 auto;
}

.choose-prodect h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	margin-top: 10px;
}

.choose-prodect p {
	font-size: 16px;
	font-weight: 300;
	font-family: 'Poppins-Medium';
	color: #000;
	/* width: 75%; */
	margin: 22px auto 0;
}

.child-sec img {
	width: 300px;
	height: 355px;
}

.trends-sec {
	margin-bottom: 20px;
}

.choose-sec .trends-sec img {
	width: 45px;
	object-fit: contain;
}

.trends-sec h5 {
	font-size: 20px;
	font-weight: 500;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	margin-top: 10px;
	margin-left: 15px;
}

.video-sec {
	position: relative;
	margin: 50px 0;
}

.video-sec p {
	font-size: 18px;
	color: #686868;
}

.video-sec p:last-child {
	margin: 0;
}

.video-caption {
	border: none;
	outline: none;
	box-shadow: none;
	background-color: transparent;
	border-radius: 0px;
}

.video-sec .row {
	position: relative;
	z-index: 2;
	align-items: center;
}

.video-sec img {
	width: 100%;
}

.fashion-forword-athle-img{
    width: 80% !important;
}

.video-sec h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	margin-top: 10px;
}

.video-sec-modal .modal-dialog {
	max-width: 600px;
}

.video-sec-modal .modal-body {
	position: relative;
	padding: 0;
	max-height: 315px;
}

.video-sec-modal .modal-body iframe {
	width: 100%
}

.form-section {
	background: #cfffff;
	padding: 40px 30px;
	border-radius: 18px;
	box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.176);
	width: 100%;
	max-width: 80%;
	margin: 50px auto 80px;
}

.form-section h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	margin-top: 0px;
	text-align: center;
}

.form-section h6 {
	font-size: 18px;
	font-weight: 500;
	font-family: 'Poppins-Medium';
	margin: 30px 0;
}

.form-btn {
	display: flex;
	justify-content: center;
}

.form-btn button {
	color: #FFF;
	background: #f04b3f;
	border: 1px solid #f04b3f;
	padding: 10px 31px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 300;
	transition: 0.3s;
	font-family: 'Poppins-Medium';
	letter-spacing: 1px;
	margin-top: 20px;
	text-transform: uppercase;
}

.form-btn button:hover {
	background: none;
	color: #ee4b3f;
	border: 1px solid #ee4b3f;
}

.testimonials-sec {
	position: relative;
	width: 100%;
	background-size: cover;
	padding: 25px 0 50px 0;
	background-image: url(../images/testimonial-bg.jpeg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-color: #a9edeb;
	overflow: hidden;
}

.testimonials-sec h3 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Poppins-Medium';
	color: #ee4b3f;
	letter-spacing: 1px;
	line-height: 40px;
}

.reeting-card {
	background-color: #FFF;
	padding: 30px;
	border-radius: 13px;
}

.testimonials-sec .reeting-card img {
	width: 100%;
	margin-bottom: 15px;
	max-width: 120px;
}

.testimonials-sec .reeting-card h6 {
	margin: 0;
}

.testimonials-sec .rating-card-wrap .owl-nav {
	width: 100%;
	position: absolute;
	top: 45%;
	display: block !important;
}

.explore-sec-slider .owl-nav {
	width: 100%;
	position: absolute;
	top: 50%;
	display: block !important;
}

.testimonials-sec .rating-card-wrap .owl-nav .owl-prev,
.explore-sec-slider .owl-nav .owl-prev {
	font-size: 56px !important;
	position: absolute;
	line-height: 0 !important;
	left: -18px;
	color: #fff;
}

.testimonials-sec .rating-card-wrap .owl-nav .owl-next,
.explore-sec-slider .owl-nav .owl-next {
	font-size: 56px !important;
	position: absolute;
	line-height: 0 !important;
	right: -18px;
	color: #fff;
}

.testimonials-sec .rating-card-wrap .owl-dots {
	text-align: right;
	padding-top: 15px;
	padding-right: 40px;
	display: none !important;
}

.testimonials-sec .rating-card-wrap .owl-dots button span {
	background-color: #ee4b3f !important;
}

.line-img-sec {
	width: 100%;
	position: absolute;
	top: -29px;
	z-index: 1;
}

.line-2 {
	width: 108%;
	position: absolute;
	top: 78px;
	z-index: -1;
	left: -20px;
}

.footer_insta_heading {
	position: relative;
	z-index: 91;
}

footer {
	margin: 50px 0 0;
	padding-bottom: 50px;
	position: relative;
}

footer:before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	background-image: url(../images/testimonial-line.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	top: -159px;
	left: 0;
	height: 206px;
}

footer img {
	width: 100%;
	max-width: 150px !important;
	/* margin-top: 50px; */
}

footer .footer-nav h5 {
	font-size: 18px;
	font-family: 'Poppins-Medium';
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 1px;
	color: #ee4b3f;
}

footer .footer-nav ul {
	padding: 0;
}

footer .footer-nav ul li {
	list-style: none;
	font-size: 15px;
	font-family: 'Poppins-Medium';
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 1px;
	line-height: 40px;
}

footer .footer-nav ul li a {
	color: #000;
	text-decoration: none;
	transition: all .2s ease-in-out;
}

footer .footer-nav ul li a:hover {
	color: #ee4b3f;
}

footer h6 {
	font-size: 18px;
	font-family: 'Poppins-Regular';
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 1px;
	color: #ee4b3f;
	margin-bottom: 20px;
}

.subscibe {
	position: relative;
}

.subscibe .form-control {
	border-radius: 30px;
	height: 47px;
	box-shadow: none !important;
	outline: none !important;
}

.subscibe button {
	color: #FFF;
	position: absolute;
	right: 0px;
	padding: 12px 20px;
	background: #f04b3f;
	border-radius: 0 30px 30px 0;
	font-size: 15px;
	font-family: 'Lato-Bold';
	letter-spacing: 0px;
	border: none;
}

footer .terms-sec {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

footer .terms-sec a {
	font-size: 15px;
	font-family: 'Poppins-Regular';
	font-weight: 300;
	text-decoration: none !important;
	text-transform: capitalize;
	letter-spacing: 1px;
	color: #000;
	margin-bottom: 20px;
	text-decoration: none;
}

footer .terms-sec a:hover {
	color: #f04b3f;
	text-decoration: underline;
}

footer .terms-sec .social-icon img,
.footer-social-icons img {
	width: 33px;
	height: 32px;
	margin: 0 1px;
	object-fit: contain;
	border-radius: 6px;
}

.footer-social-icons a {
	text-decoration: none !important;
}

.terms-sec hr {
	height: 20px !important;
	margin: .3rem 0 !important;
	border: 1px solid !important;
}

.footer-right-wrap {
	border-left: 3px solid #000;
}

.footer_insta_heading h3 {
	color: #686868;
	font-family: inherit;
}

.footer_insta_heading img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	margin: 0 5px;
}

.explore-verticals {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.explore-verticals .exp-vrtls-img {
	display: inline-block;
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #000;
}

.explore-verticals .exp-vrtls-img:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.explore-verticals .exp-vrtls-img img {
	width: 100% !important;
	height: 48px;
}

.visiter-counter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 10px 0 0;
	color: #dc3545;
	font-size: 16px;
}

.visiter-counter .visiter-number {
	background-color: #ffffff;
	color: #000000;
	font-weight: 700;
	font-size: 16px;
	margin-top: 5px;
	text-align: center;
	padding: 4px 20px;
	min-width: 70px;
	border: 2px solid #000;
}

.hiro-sec.simple .hiro-contein {
	bottom: 3%;
}

.hiro-sec.simple h2 {
	color: #fff;
	text-transform: uppercase;
}

.hiro-sec.simple h2:nth-child(2) {
	padding-left: 0 !important;
	margin: 0;
}

.about-content-sec {
	position: relative;
	width: 100%;
	padding: 50px 0;
	display: block;
}

.about-content-sec .about-content-inner {
	width: 100%;
	display: inline-block;
}

.about-content-sec p {
	margin: 0 0 30px 0;
}

.about-content-sec .line-pw {
	padding-right: 60px;
}

.about-content-sec .line-pw:after {
	content: "";
	position: absolute;
	background: url(../images/engy.png) no-repeat center;
	background-size: contain;
	width: 35px;
	height: 55px;
	bottom: -10px;
	right: 15px;
}

.about-content-sec .visible-icn:after {
	content: "";
	position: absolute;
	background: url(../images/visible.png) no-repeat center;
	background-size: contain;
	width: 35px;
	height: 35px;
	top: -25px;
	left: -50px;
}

.about-content-sec p:last-child {
	margin: 0;
}

.generations-sec {
	position: relative;
	width: 100%;
	padding: 0 0 34px 0;
	display: block;
}

.generations-sec .gen-img {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.generations-sec .gen-img img {
	width: 55px;
}

.generations-sec h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Lato-Regular';
	color: #ee4b3f;
}

.generations-sec img {
	width: 100%;
	border-radius: 12px;
}

.generations-sec h6 {
	font-size: 20px;
	font-weight: 500;
	font-family: 'OpenSans-Bold';
	text-transform: capitalize;
}

.generations-sec .lefacy-icn,
.generations-sec .genesis-icn {
	position: relative;
}

.generations-sec .lefacy-icn:after {
	content: "";
	position: absolute;
	background: url(../images/pic.png) no-repeat center;
	background-size: contain;
	width: 35px;
	height: 35px;
	bottom: -12px;
	right: -36px;
	z-index: -1;
}

.generations-sec .genesis-icn:after {
	content: "";
	position: absolute;
	background: url(../images/tred.png) no-repeat center;
	background-size: contain;
	width: 35px;
	height: 35px;
	bottom: -20px;
	left: -45px;
}

.form-section.career {
	background-color: #7cb0bb !important;
}

.form-section.career h5 {
	color: #fff;
}

.content-career {
	width: 100%;
	display: block;
	position: absolute;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.hiro-sec.simple.career .hiro-contein {
	position: relative;
	bottom: auto;
	top: auto;
	transform: inherit;
	text-align: left;
	padding: 0 !important;
}

.career-content-sec {
	position: relative;
	width: 100%;
	padding: 50px 0 0 0;
	display: block;
}

.career-content-sec h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Lato-Regular';
	color: #ee4b3f;
	margin: 0 0 20px 0;
}

.career-content-sec p {
	margin: 0 0 24px 0;
}

.career-content-sec p:last-child {
	margin: 0;
}

.form-sec .file-input-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.form-sec .file-input-label {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	padding: 7px 20px 7px 14px;
	background-color: #f04b3f;
}

.form-sec .file-input-label img {
	height: 23px;
	margin-right: 8px;
}

.map-sec {
	position: relative;
	width: 100%;
	padding: 50px 0 0 0;
	display: block;
}

.map-sec h5 {
	font-size: 34px;
	font-weight: 600;
	font-family: 'Lato-Regular';
	color: #ee4b3f;
	margin: 0 0 30px 0;
	text-align: center;
}

.contact-form {
	margin-top: -370px;
	position: relative;
}

.contact-form input,
.contact-form textarea {
	background-color: #c8f3f2 !important;
	border-color: #c8f3f2 !important;
}

.contact-form .form-section {
	background-color: #a9edeb;
}

.contact-detail {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	position: relative;
	gap: 15px;
	margin: 0 0 20px 0;
}

.contact-info {
	width: 100%;
	display: flex;
}

.contact-detail h6 {
	font-size: 18px;
	font-weight: 600;
	font-family: 'Lato-Regular';
	color: #ee4b3f;
	margin: 0 0 4px 0;
}

.contact-detail a {
	color: #212529;
	text-decoration: none;
}

.contact-detail a:hover {
	color: #ee4b3f;
}

.contact-detail .contact-info-item {
	width: 100%;
	display: inline-block;
	padding-bottom: 25px;
}

.contact-detail .contact-info-item:last-child {
	padding-bottom: 0;
}

.contact-detail .contact-add {
	width: 100%;
	max-width: 50%;
	display: inline-block;
}

.hiro-sec.simple.distributor h2 {
	color: #006e8e;
}

.hiro-sec.simple.whyus .hiro-contein {
	left: auto;
	right: 100px;
}

.hiro-sec.simple.whyus .hiro-contein h2 {
	color: #bd6125;
}

.whyus-sec {
	position: relative;
	width: 100%;
	padding: 50px 0 20px 0;
	display: block;
	z-index: 2;
}

.whyus-sec .line-img-sec {
	z-index: -1;
	top: 180px;
}

.whyus-sec .product-inner {
	padding: 30px 0 0 0;
	position: relative;
	width: 100%;
	display: block;
	max-width: 90%;
	margin: 0 auto;
	z-index: 4;
}

.product-inner .icon-us {
	text-align: right;
	padding-top: 20%;
}

.product-inner .icon-us img {
	width: 50px;
	object-fit: contain;
}

.product-inner .product-item {
	width: 100%;
	max-width: 300px;
}

.product-inner .product-item img {
	width: 100%;
	margin: 0 0 15px 0;
}

.product-inner h5 {
	font-size: 20px;
	font-weight: 500;
	font-family: 'OpenSans-Bold';
	margin-bottom: 5px;
}

.product-inner p {
	margin: 0 0 24px 0;
}

.explore-sec-slider .owl-item .item img {
	transition: 0.3s;
	transform: scale(0.85);
	border-radius: 16px;
	height: 380px;
	object-fit: cover;
}

.arrivals-sec::before {
	position: absolute;
	content: "";
	background-image: url(../../frontend/images/line-2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	inset: 0;
}

.video-sec .line-img-sec {
	top: 0;
}

.arrivals-sec .line-2 {
	top: 30px;
}

.explore-sec-btn a {
	background-color: #f04b3f;
	color: #ffffff !important;
	font-size: 18px;
	padding: 3px 10px;
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	font-family: 'Lato-Regular';
	transition: all .3s ease-in-out;
}

.explore-sec-btn a:hover {
	background-color: transparent;
	color: #f04b3f !important;
	border: 1px solid #f04b3f;
}

.explore-sec-slider .owl-item.center .item img {
	transform: scale(1);
}

.career-form-wrap {
	background-image: url(../../frontend/images/career-form-bg.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.mob-show {
	display: none !important;
}

.mob-hide {
	display: block !important;
}

.modal-backdrop.fade {
	display: none;
	position: relative;
}

.modal-backdrop.fade.show {
	display: block;
	position: fixed;
}



/*media screen start here*/
@media screen and (min-width:1660px) {
	.hiro-sec .hori-line {
		height: 295px;
	}
}

@media screen and (min-width:1441px) {
	.hiro-sec .hori-line {
		height: 260px;
	}
}

@media screen and (min-width:1368px) {
	
}

@media screen and (max-width:1440px) {
	footer:before {
		top: -105px;
		height: 157px;
	}
}

@media screen and (max-width:1366px) {
	footer:before {
		height: 150px;
	}
}

@media screen and (max-width:1280px) {
	.generations-sec .lefacy-icn:after {
		right: -25px;
		bottom: -25px;
	}

	.generations-sec .genesis-icn:after {
		bottom: -30px;
		left: -25px;
	}

	.about-content-sec .visible-icn:after {
		left: -25px;
	}

	footer:before {
		top: -93px;
		height: 140px;
	}

	.line-2 {
		width: 116%;
		left: -62px;
	}

	.explore-verticals .exp-vrtls-img img {
		max-width: 120px !important;
	}
}

@media screen and (max-width:1199px) {
	header .navbar .nav-item a {
		/*margin: 0 4px !important;*/
		/*padding: 5px 15px !important;*/
		margin: 3px 0px !important;
        padding: 10px 10px 1px 5px !important;
	}

	header .navbar.sticky_header {
		padding: 18px 20px;
	}
}

@media screen and (max-width:1024px) {
	.one-car-sec h5 {
		margin: 0px 0 20px 0;
	}

	/*.arrivals-sec .summer { gap: 5px; flex-direction: row; margin-bottom: 15px; }*/
	.child-sec img {
		width: 100%;
		height: auto;
	}

	footer:before {
		top: -66px;
		height: 112px;
	}
}


@media screen and (max-width:991px) {
	
	header .offcanvas-start .navbar-nav{
		opacity: 0;
    	padding-top: 85px !important;
    	transition: all 1s ease-in-out;
	}
	header .offcanvas-start.show .navbar-nav{
		opacity: 1;
    	transform: translateY(0px);
    	padding-top: 65px !important;
	}

	header .offcanvas-start .navbar-nav li{
		transform: translateY(10px;);
		transition: all 1s ease-in-out;

	}

	header .offcanvas-start.show .navbar-nav li{
		transform: translateY(0px;);
	}

	.career-form-wrap {
		background-image: initial;
	}

	.navbar-toggler {
		/* background-color: #f04b3f !important; */
		outline: none !important;
		box-shadow: none !important;
	}

	.navbar-toggler .navbar-toggler-icon {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.navbar-toggler i {
		font-size: 20px;
		color: #f04b3f;
		/* color: #393737; */
		line-height: 26px;
	}

	header .navbar-brand {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}

	header .navbar-brand img {
		width: 117px;
		margin: 0 15px 0 0;
	}

	header .navbar ul {
		padding: 65px 20px 15px 0;
		width: 100%;
	}

	header .navbar .nav-item.submenu .dropdown-menu {
		padding: 0 10px;
		border: none;
		border-radius: 0px;
		box-shadow: none;
	}

	header .navbar .nav-item.submenu .dropdown-menu a {
		font-size: 15px;
	}

	.navbar-collapse {
		align-items: flex-start !important;
		padding: 0 0 0 20px;
	}

	header .navbar .nav-item a {
		position: relative;
		left: 0px;
		top: 0px;
		width: 100%;
		font-size: 16px;
		padding-left: 22px;
		background-color: #ffffff !important;
		/*margin: 0 !important;*/
	}

	header .navbar .nav-item a.active {
		background-color: #ffffff !important;
		color:#f04b3f !important;
	}

	header .navbar .nav-item a:hover {
		background-color: #ffffff !important;
		color:#f04b3f !important;
	}

	.search-box {
		width: 94% !important;
		margin-top: 10px;
	}

	/*    .hiro-sec .single-banner-slide{height: 495px;}*/
	.specific-card {
		width: 100%;
	}

	header .navbar-toggler {
		margin-right: 0px;
	}

	.search-btn {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
	}

	.search-btn svg {
		width: 20px;
		height: 20px;
	}

	.search-caption {
		align-items: flex-start;
		padding-top: 100px;
	}

	.generations-sec .lefacy-icn:after {
		right: -35px;
		bottom: -25px;
	}

	.generations-sec .genesis-icn:after {
		bottom: -30px;
		left: -35px;
	}

	.about-content-sec .visible-icn:after {
		left: -35px;
	}

	header .navbar .nav-item.submenu a.show:after {
		transform: rotate(180deg) translateY(50%);
	}

	header .navbar .nav-item.submenu .dropdown-menu {
		display: none !important;
	}

	header .navbar .nav-item.submenu .dropdown-menu.show {
		display: block !important;
	}

	header .offcanvas-start .close-icon {
		position: absolute;
		left: 15px;
		top: 20px;
		display: inline-flex;
		z-index: 99;
	}

	.hiro-sec.simple.whyus .hiro-contein {
		right: 60px;
	}

	header .navbar .nav-item a:hover::before {
		display: none;
	}

	header .navbar li {
		border-bottom: solid 1px #c0c0c0;
	}

	header .dropdown-menu {
		padding: 0px !important;
	}

	header .dropdown-menu li {
		border-bottom: none;
	}

	header .navbar .nav-item.submenu .dropdown-menu {
		margin-bottom: 10px;
	}

	header .navbar .nav-item.submenu .dropdown-menu a {
		font-size: 15px;
		padding: 4px !important;
		color: #686868;
	}

	footer:before {
		top: -65px;
		height: 109px;
	}

	.hiro-sec .hiro-contein {
		bottom: 50px;
	}

	.line-2 {
		width: 128%;
		left: -112px;
	}
}

@media screen and (max-width:767px) {
	.mob-show {
		display: block !important;
	}

	.mob-hide {
		display: none !important;
	}

	header {
		padding: 0px;
	}

	.container {
		max-width: 100% !important;
	}

	.explore-sec {
		display: block;
		text-align: center;
		margin: 50px 0 20px;
	}

	.child-sec img {
		width: 100%;
		height: auto;
	}

	.arrivals-sec .summer {
		gap: 5px;
		flex-direction: row;
	}

	.arrivals-sec img {
		width: 100%;
		margin-bottom: 15px;
	}

	.choose-sec {
		padding: 50px 0px;
	}

	.video-sec {
		padding: 5px 12px;
		overflow: hidden;
	}

	.hiro-sec .single-banner-slide h2 {
		font-size: 44px;
		line-height: 50px;
	}

	.all-banner-slide .owl-nav {
		bottom: auto !important;
		top: 50%;
		transform: translateY(-50%);
		position: absolute !important;
		left: 0;
		right: 0;
	}

	.hiro-sec .single-banner-slide {
		background-size: cover;
		background-position: center;
	}

	.hiro-sec .owl-carousel .owl-dots.disabled,
	.owl-carousel .owl-nav.disabled {
		display: none !important;
	}

	.hiro-sec .hori-line {
		display: none;
	}

	.hiro-sec .single-banner-slide a {
		line-height: 60px;
	}

	.hiro-sec .single-banner-slide h2:nth-child(2) {
		padding-left: 65px;
	}

	.hiro-sec .single-banner-slide h2 {
		color: #ffffff;
		text-transform: capitalize;
		font-size: 24px;
		line-height: 28px;
	}

	header .navbar.sticky_header {
		position: fixed;
		width: 100%;
		margin: 0 auto;
		top: 0;
		left: 0;
		background: #fcfafa;
		z-index: 9999;
		box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
		/*padding: 15px 0px;*/
		padding: 0px 0px;
	}

	.one-car-sec h5 {
		font-size: 24px;
		text-align: center;
		margin-top: 30px !important;
		margin-bottom: 15px !important;
	}

	.one-car-sec p {
		font-size: 18px;
		text-align: justify;
		width: 100%;
	}

	.arrivals-sec {
		width: 100%;
		overflow: hidden;
	}

	.testimonials-sec .rating-card-wrap .owl-nav .owl-prev,
	.explore-sec-slider .owl-nav .owl-prev {
		left: 12px;
	}

	.testimonials-sec .rating-card-wrap .owl-nav .owl-next,
	.explore-sec-slider .owl-nav .owl-next {
		right: 33px;
	}

	.explore-sec .search-box {
		width: 60% !important;
		margin: auto;
	}

	.explore-sec h2 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.specific-card {
		width: 100%;
	}

	.specific {
		min-height: 192px;
		height: auto;
		width: 100%;
		margin-bottom: 20px;
		margin: 0 auto;
		padding: 10px !important;
		border-radius: 10px;
	}

	/* .specific-card .starts { display: none !important; } */
	.specific-card .starts {
		top: 15px;
		right: 20px;
	}

	.specific-card .rocket {
		top: 40px;
		width: 15%;
		right: 4px;
	}

	.specific-card .shape_12 {
		width: 20%;
		top: 70px;
		right: 0px;
	}

	.specific-card .shape_14 {
		width: 30%;
		top: 55px;
		right: 0px;
	}

	.specific-card .shape_15 {
		width: 30%;
		top: 50px;
		right: 5px;
	}

	.specific-card .shape_16 {
		width: 30%;
		top: 50px;
		right: 5px;
	}

	.specific-card .shape_17 {
		width: 30%;
		top: 50px;
		right: 5px;
	}

	.specific-card .shape_18 {
		width: 30%;
		top: 50px;
		right: 5px;
	}

	/* .specific-card .rocket, .shape_12, .shape_13, .shape_14, .shape_15, .shape_16, .shape_17, .shape_18 { display: none !important; } */
	.arrivals-sec h3 {
		font-size: 31px;
	}

	.choose-prodect p {
		width: 100%;
	}

	.choose-quality {
		width: 100%;
	}

	.trends-sec h5 {
		font-size: 17px;
		margin-left: 20px;
	}

	.child-sec img {
		margin-top: 30px;
	}

	.video-sec h5 {
		text-align: center;
		margin-top: 40px;
		font-size: 24px;
		margin-bottom: 15px;
	}

	.choose-prodect h5 {
		font-size: 24px;
		margin-bottom: 15px;
		margin-top: 0px;
	}

	.video-sec p {
		font-size: 18px;
		text-align: justify;
	}

	.video-sec .col-12 {
		padding: 0;
	}

	.form-section {
		width: 100%;
		padding: 26px;
		max-width: 100%;
		margin: 50px auto 50px;
	}

	.form-section h5 {
		font-size: 24px;
		margin: 0 0 15px;
	}

	.form-section h6 {
		margin: 0 0 15px;
	}

	.testimonials-sec h3 {
		font-size: 24px;
		text-align: center;
		width: 100%;
		max-width: 100%;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.testimonials-sec .mob-slider .row {
		--bs-gutter-x: 0 !important;
	}

	.reeting-card img {
		width: 34% !important;
	}

	.mobile-sec-logo {
		display: flex;
		justify-content: flex-start;
		margin: 0 0 30px;
	}

	.av-sec {
		display: none;
	}

	.specific h5 {
		font-size: 13px;
		margin-bottom: 0;
	}

	footer img {
		width: 46%;
		/* margin-bottom: 50px; */
		margin-top: 0;
	}

	.trends-sec h5 {
		margin-top: 0;
	}

	footer h6 {
		text-align: center;
		margin-top: 30px;
	}

	.subscibe button {
		right: 0px;
	}

	footer .terms-sec {
		text-align: center;
		line-height: 38px;
	}

	footer {
		overflow: hidden;
	}

	.specific-card>.row {
		display: flex;
		flex-wrap: nowrap;
		overflow-y: hidden;
		overflow-x: scroll;
		padding-bottom: 0px;
	}

	.specific-card>.row .col-12 {
		width: 70%;
	}

	/*    .hiro-sec.simple .hiro-contein{ left: 22px;top: 95px;}*/
	.hiro-sec.simple .single-banner-slide h2 {
		color: #fff;
		text-transform: inherit;
	}

	.about-content-sec {
		padding: 40px 0;
	}

	.about-content-sec .line-pw {
		padding-right: 45px;
	}

	.about-content-sec .visible-icn:after {
		left: 0;
		content: inherit;
	}

	.generations-sec .lefacy-icn:after,
	.generations-sec .genesis-icn:after {
		content: inherit;
	}

	.generations-sec h5 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.about-content-sec p {
		margin: 0 0 1rem 0;
	}

	/*	.hiro-sec.simple.career .hiro-contein{left: 22px;}*/
	.career-content-sec h5 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.career-content-sec p {
		margin: 0 0 1rem 0;
	}

	.career-content-sec {
		padding: 40px 0 0 0;
	}

	.map-sec {
		padding: 40px 0 0 0;
	}

	.map-sec h5 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.contact-form .form-section {
		width: 85%;
	}

	.contact-detail {
		flex-wrap: wrap;
	}

	.contact-info {
		width: 100%;
		display: block;
	}

	.contact-detail .contact-add {
		max-width: 100%;
	}

	.contact-detail .contact-add,
	.contact-detail .contact-info {
		width: 100%;
	}

	.contact-detail h6 {
		margin-bottom: 4px;
	}

	.hiro-sec.simple.distributor .single-banner-slide h2 {
		color: #006e8e;
	}

	.whyus-sec {
		padding: 40px 0 20px 0;
	}

	.whyus-sec .product-inner {
		padding: 15px 0 0 0;
		max-width: 100%;
	}

	.whyus-sec .line-img-sec {
		top: 400px;
	}

	.footer-right-wrap {
		border: none !important;
	}

	.terms-sec hr {
		margin: .7rem 0 !important;
	}

	.search-caption .search-input {
		padding: 10px 30px;
	}

	.card-sec .specific-card.mob-slider .row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 20px;
		margin: 0px;
	}

	.card-sec .specific-card.mob-slider .row .col-12 {
		width: 100%;
		padding: 0px;
	}

	footer:before {
		content: inherit;
	}

	.hiro-sec.simple .hiro-contein {
		bottom: 0;
	}

	.hiro-sec.simple.career .hiro-contein h2 {
		margin: 0;
	}

	.hiro-sec .hiro-contein {
		bottom: 40px;
	}

	.visiter-counter .visiter-number {
		font-size: 14px;
	}
}

@media screen and (max-width:575px) {
	.footer_insta_heading h3 {
		font-size: 20px !important;
	}

	.footer_insta_heading img {
		width: 28px !important;
		height: 28px !important;
		margin: 0 !important;
	}

	.hiro-sec .all-banner-slide .owl-dots .owl-dot {
		width: 10px;
		height: 10px;
	}

	.explore-verticals {
		flex-wrap: wrap;
		justify-content: center;
	}

	.visiter-counter {
		margin: 10px 0 0 0 !important;
		order: 3;
		width: 100%;
	}
}

/*media screen start here*/


.counter-main-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	margin-top: 15px;
}

.counter-main-wrapper ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
}

.counter-main-wrapper ul li {
	margin-left: 5px;
	background: black;
	width: 35px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	font-weight: bold;
	color: #ffffff;
	border-radius: 5px;
	font-size: 25px;
}


@media screen and (max-width: 767px) {
    /*Home page */
    .card-sec .specific-card.mob-slider .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0px !important; 
        margin: 0px;
    }
    
    .explore-athle-fashion-img{
        height:100%;
        width:170px;
    }
    
    .mobile-social-link-menu {
        display: block !important;
    }
    
    .mobile-container{
        padding: 0px !important;
    }
    
    /*Home page end */
}

.offcanvas{
    transition: transform 1s ease-in-out !important;
}

.fade {
    transition: opacity 1s linear !important;
}
