* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

/* common css */
:root {
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #6c757d;
    --orange-color: #FF6D2E;
}

body {
	background: #140E0A;
	font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--orange-color);
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--white-color);
}

p:last-child {
    margin-bottom: 0;
}

p span {
    color: var(--gray-color);
}

p a {
	color: var(--white-color) !important;
	font-size: inherit;
	font-family: inherit;
}

.textNormal {
    font-weight: 400;
}

.textMedium {
    font-weight: 500;
}

.textSemiBold {
    font-weight: 600;
}

.textBold {
    font-weight: 700;
}

.textWhite {
    color: var(--white-color);
}

.textBlack {
    color: var(--black-color);
}

.textCenter {
    text-align: center;
}

.textRight {
    text-align: right;
}

.alignItemCenter {
    align-items: center;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
    color: var(--white-color);
}

span {
    display: inline-block;
}

.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.section-heading p {
    font-size: 22px;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.btn.btn-orange {
    font-size: 13px;
    padding: 12px 40px;
    background: transparent;
    color: var(--yellow-color);
    border-radius: 50px;
    border: none;
    border: 1px solid transparent;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.btn.btn-orange.white.transparent {
	border-color: var(--white-color);
	color: var(--white-color);
}

.btn.btn-orange.bg {
	background: linear-gradient(90deg, rgba(255,105,46,1) 0%, rgba(255,157,46,1) 100%);
	color: #140E0A;
}

.btn.btn-orange img {
    max-width: 25px;
    margin-right: 10px;
}

section {
    padding-top: 80px;
    overflow: hidden;
}
section.bg {
    padding: 80px 0;
}

footer {
    padding-top: 80px;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

img,
video {
    max-width: 100%;
}

.button-box {
    padding-top: 30px;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.button-box p {
    margin-bottom: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #D9D9D97A;;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FF9C2E;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

/* header css start */
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #fff;
}

#header {
	background-color: transparent;
	padding: 20px 0;
	transition: .5s all;
	position: relative;
}

#header .header-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .logo-box img {
	max-width: 250px;
	width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    font-size: 25px;
    color: black;
    cursor: pointer;
    display: none;
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}

#header nav ul li {
    display: inline-block;
    padding: 5px;
    position: relative;
}

#header nav ul li a {
    color: black;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 18px;
}

#header h4 {
    font-weight: 500;
    margin-bottom: 10px;
}

#header .right-box {
    text-align: right;
}

#header .right-box ul {
    justify-content: flex-end;
}
#header .button-box {
	padding-top: 0;
}

/* homeBanner css */
#homeBanner {
	background-image: url("../images/bannerBg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: -150px;
	padding-top: 250px;
}

#homeBanner .img-box {
    text-align: center;
}

#homeBanner .text-box h1 {
    margin-bottom: 0;
}

/* logo css */
#logo .text-box h4 {
    margin-bottom: 0;
    font-weight: 600;
}

#logo .img-box img {
	max-width: 90%;
	display: block;
	margin: 0 auto;
	max-height: 120px;
	object-fit: contain;
}

#logo .logo-box {
	background: linear-gradient(90deg, rgba(56,40,30,1) 0%, rgba(121,64,6,1) 50%, rgba(56,40,30,1) 100%);
	padding: 20px 40px;
	border-radius: 100px;
}
#logo .owl-stage {
	display: flex;
	align-items: center;
}

/* most css */
#most .text-box {
    position: relative;
}
#most .text-box h3 span {
	display: block;
	font-weight: 300;
	color: inherit;
	padding-top: 10px;
}
#most .most-part {
	background-image: url("../images/mostBg.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
}

/* get css */
#get .box.box2 {
	text-align: center;
}
#get .box.box2 .img-box img {
	max-width: 300px;
	width: 100%;
	margin-bottom: 10px;
}
#get .box.box2 .text-box h2 {
	font-size: 70px;
	font-weight: 700;
	line-height: 1.1;
}
#get {
	background: url('../images/0004.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}
#get .section-heading h3 {
	text-transform: uppercase;
}
#get .section-heading h3 span {
	display: block;
	font-weight: 300;
	color: inherit;
	padding-top: 10px;
}
#get .box {
	background: radial-gradient(circle, rgba(121,64,6,1) 0%, rgba(56,40,30,1) 60%);
	text-align: center;
	padding: 25px;
	border-radius: 35px;
	height: 100%;
}
#get .img-box img {
	max-width: 200px;
	margin-bottom: 20px;
    width: 100%;
}

/* how css */
#how .button-box {
	padding: 0;
}
#how .item  .box img {
	max-width: 100px;
	width: 100%;
}
#how .item .box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border: 2px solid #fff6;
	border-radius: 100px;
	padding: 10px;
}
#how .box .text-box h4 {
	margin: 0 0 0 20px;
}
#how .top-box {
	padding-bottom: 50px;
}
#how .item .box h4 {
	font-weight: 600;
}
#how .top-box .text-box h3 {
	text-transform: uppercase;
	margin-bottom: 0;
}
#how .top-box .text-box h3 span {
	display: block;
	font-weight: 300;
	color: inherit;
	padding-top: 10px;
}
#how .box.right-box {
	margin-left: -5px;
}
#how .end-box .row {
	justify-content: center;
	row-gap: 25px;
}
#how .end-box .img-box img {
	width: 100%;
}

/* insta css */
#insta {
	background: url('../images/0004.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}
#insta .section-heading h3 {
	text-transform: uppercase;
}

/* footer css */
footer .logo-box img {
	max-width: 250px;
	width: 100%;
}
footer .end-footer {
	border-top: 1px solid transparent;
	padding: 25px 0;
	margin-top: 40px;
	border-image-slice: 1;
	border-image-source: linear-gradient(90deg, rgba(20,14,10,1) 0%, rgba(255,151,46,1) 33%, rgba(255,151,46,1) 66%, rgba(20,14,10,1) 100%);
}
footer h5 {
	font-weight: 600;
}
footer .list-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
footer .list-box ul img {
	max-width: 40px;
	width: 100%;
}
footer .link-box ul {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}
footer .box.box2 {
	padding-left: 80px;
}
footer .text-box h3 {
	text-transform: uppercase;
}
footer .end-footer .privacy-box {
	display: flex;
	justify-content: center;
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px solid transparent;
	border-image-slice: 1;
	border-image-source: linear-gradient(90deg, rgb(20, 14, 10) 0%, rgb(255, 151, 46) 33%, rgb(255, 151, 46) 66%, rgb(20, 14, 10) 100%);
}
footer .end-footer .privacy-box a {
	font-weight: 700;
	font-size: 14px;
	color: var(--white-color);
}
footer .end-footer .privacy-box li:not(:last-child) {
	padding-right: 30px;
	margin-right: 30px;
	border-right: 2px solid #fff;
}
footer .end-footer .privacy-box li {
	line-height: 1;
}
footer .top-footer .box.box2 {
	border-image-source: linear-gradient(180deg, rgba(20,14,10,1) 0%, rgba(255,151,46,1) 33%, rgba(255,151,46,1) 66%, rgba(20,14,10,1) 100%);
	border-image-slice: 1;
	border-left: 4px solid transparent;
	padding-left: 30px;
}