* {
    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;
    --gold-color: #D6A638;
}

.white {
    color: var(--white-color);
}
.black {
    color: var(--black-color);
}
.gray {
    color: var(--gray-color);
}
.gold {
    color: var(--gold-color);
}

body {
    background: #000;
    font-family: 'Poppins', sans-serif;
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

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-weight: 700;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--gray-color);
}

h1 {
	font-size: 70px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 25px;
	color: var(--white-color);
	font-weight: 300;
}

.small {
    font-size: 16px;
}

.uppercase {
    text-transform: uppercase;
}

p:last-child {
    margin-bottom: 0;
}

p span {
    color: var(--gray-color);
}

p a {
    color: var(--gray-color);
    font-size: inherit;
    font-family: inherit;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: var(--black-color);
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.btn-common {
	font-size: 16px;
	padding: 12px 30px;
	background: transparent;
	color: var(--white-color) !important;
	border-radius: 0;
	border: 2px solid var(--gold-color);
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.btn-common.transpatent {
	border-color: transparent;
}
.btn-common.transpatent span {
	display: flex;
	align-items: center;
}
.btn-common.transpatent ul {
	gap: 2px;
	padding-left: 10px;
	margin-top: -5px;
}
.btn-common.transpatent ul img {
	margin-right: 0;
	max-width: 15px;
	width: 100%;
}

.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}

section {
	padding: 60px 0;
	overflow: hidden;
}

.bg-left {
    background: linear-gradient(94deg, rgb(27, 30, 38) 0%, rgba(214,166,56,0) 60%);
}

.bg-right {
    background: linear-gradient(274deg, rgba(27,30,38,1) 0%, rgba(214,166,56,0) 60%);
}

footer {
	padding: 60px 0;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}


img,
video {
    max-width: 100%;
}

.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 0;
	row-gap: 10px;
}

.owl-theme .owl-dots .owl-dot span {
	background: var(--white-color);
	width: 8px;
	height: 8px;
	border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--white-color);
	outline: 2px solid var(--gold-color);
	outline-offset: 5px;
}

.owl-nav {
    margin-top: 0;
}
.owl-dots {
	padding-top: 50px;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

/* common-form css */
.form-box.common-form {
	background: linear-gradient(180deg, rgba(214,166,56,0.35) 0%, rgba(18,25,43,0) 60%);
	padding: 40px;
	border-radius: 20px;
}
label {
	color: var(--white-color);
	padding-bottom: 10px;
	font-size: 16px;
}
.form-control-common {
	background: transparent;
	border: 1px solid var(--white-color);
	font-size: 16px;
	padding: 10px 20px;
	width: 100%;
	appearance: textfield;
	color: var(--white-color);
	border-radius: 0;
	text-transform: capitalize;
	box-shadow: none;
	resize: none;
}
.input-group {
	padding-bottom: 20px;
}
.heading {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
	display: inline-block;
}
.heading::after {
	content: '';
	position: absolute;
	width: 20%;
	height: 3px;
	left: 0;
	bottom: 0;
	background: var(--white-color);
	border-radius: 10px;
}
.section-heading .heading::after {
	left: 50%;
	transform: translateX(-50%);
}
.title {
	text-transform: uppercase;
	font-weight: 500;
}

/* 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 #464646;
}

#header {
	background: #000;
	padding: 15px 0;
	transition: .5s all;
	position: relative;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
    max-width: 220px;
    width: 100%;
}
#header .button-box ul img {
	max-width: 30px;
	width: 100%;
}
#header .button-box ul li:not(:last-child) {
	padding-right: 20px;
}

/* homeBanner css */
#homeBanner .text-box h1 {
	text-transform: uppercase;
}
#homeBanner .text-box {
	padding-bottom: 40px;
}
#homeBanner .box.box2 .img-box img {
	max-width: 500px;
	margin-left: auto;
	display: block;
    width: 100%;
}
#homeBanner .heading::after {
	background: var(--gold-color);
}

/* about css */
#about .list {
	padding-top: 20px;
}
#about .list li {
	position: relative;
	padding: 0 0 5px 25px;
}
#about .list li::before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	left: 10px;
	top: 10px;
	background: var(--white-color);
	border-radius: 50%;
}
#about .button-box {
	padding: 10px 20px;
	display: inline-block;
	border: 1px solid var(--gold-color);
	margin-top: 20px;
}
#about .button-box li:not(:last-child) {
	padding-right: 40px;
}
#about .list .small {
	text-transform: uppercase;
	font-weight: 400;
}
#about .box.box2 {
	padding-top: 50px;
}
#about .box.box1 img {
	max-width: 400px;
	width: 100%;
}

/* features css */
#features .content-box img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 20px;
}

#features .content-box a {
	font-weight: 400;
	font-size: 22px;
	color: var(--white-color) !important;
}
#features .content-box {
	text-align: center;
}

/* download css */
#download .box {
	border: 2px solid #333333;
	border-radius: 10px;
	padding: 30px 40px;
	text-align: center;
	margin: 0 20px;
	height: 100%;
}
#download .box img {
	max-width: 120px;
	width: 100%;
	margin-bottom: 40px;
}
#download .box h5 {
	font-weight: 400;
	color: var(--gold-color);
}
#download .box a {
	font-weight: 400;
	font-size: 22px;
	color: var(--gold-color);
	margin-bottom: 15px;
}

/* get css */
#get .box {
	display: flex;
	align-items: flex-end;
}
#get .box img {
	width: 45%;
	position: relative;
}
#get .box .text-box {
	width: 55%;
}
#get .box .text-box {
	width: 55%;
	text-align: center;
	border: 2px solid #333333;
	border-radius: 0px 10px 10px 0px;
	padding: 20px 10px;
	margin: 0 0 50px -5px;
	border-left: none;
}
#get .box .text-box h5 {
	font-weight: 400;
	color: var(--gold-color);
}
#get .section-heading {
	max-width: 1000px;
	margin: 0 auto 20px;
}

/* footer css */
#footer .row {
	justify-content: space-between;
}
#footer .section-heading h2 {
	text-transform: uppercase;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
#footer .section-heading p {
	text-transform: uppercase;
}
#footer .section-heading h2::after {
	width: 50%;
	background: var(--gold-color);
}
footer .btn-common {
	background: var(--gold-color);
	color: #111728 !important;
	font-weight: 500;
	margin: 0 auto;
}
footer .logo-box img {
	max-width: 300px;
	margin: 0 auto;
	display: block;
    width: 100%;
}
footer  .box.box2 {
	text-align: center;
}
footer ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .link-box a {
	color: var(--gold-color);
	font-size: 20px;
	font-weight: 500;
}
footer .link-box li:not(:last-child) {
	padding-right: 40px;
}
footer .logo-box {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
	display: inline-block;
}
footer .logo-box::after {
	content: '';
	position: absolute;
	width: 40%;
	height: 3px;
	left: 50%;
	bottom: 0;
	background: var(--white-color);
	border-radius: 10px;
	transform: translateX(-50%);
}
footer .link-box + .text-box {
	padding: 20px 0 30px;
}
footer .list-box li:not(:last-child) {
	padding-right: 20px;
}
footer .list-box img {
	max-width: 25px;
	width: 100%;
}
footer .list-box {
	padding-bottom: 30px;
}
