* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Roboto';
}

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

/* poppins font */
@font-face {
    font-family: "Poppins-Black";
    src: url("../fonts/Poppins/Poppins-Black.ttf");
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}

/* impact font */
@font-face {
    font-family: "impact";
    src: url("../fonts/impact/impact.ttf");
}
/* impact font */
@font-face {
    font-family: "VTFRedzone";
    src: url("../fonts/VTFRedzone/VTFRedzone-Classic.ttf");
}

/* common css */
:root {
    --white-color: #fff;
    --black-color: #000;
    --golden-color: #c58a40;
}

body {
    background: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--white-color);
    font-family: "impact";
}

h1 {
    font-size: 60px;
}

h1 span {
    color: var(--green-color);
}

h2 {
    font-size: 40px;
}

h2 span {
    color: var(--green-color);
}

h3 {
    font-size: 32px;
}
h3.textDecoration {
    text-decoration: underline;
}
h3.textUnset {
    text-transform: unset;
}
h3.golden {
    color: var(--golden-color);
}

h3 span {
    color: var(--green-color);
}

h4 {
    font-size: 24px;
}
h4.textTransform {
    text-transform: capitalize;
}
h4.golden {
    color: var(--golden-color);
}

h4 span {
    color: var(--green-color);
}

h5 {
    font-size: 20px;
}
h5.textTransform {
    text-transform: capitalize;
}

h5 span {
    color: var(--green-color);
}

h6 {
    font-size: 16px;
}

h6 span {
    color: var(--green-color);
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--black-color);
}

p span {
    color: var(--green-color);
}

p.white {
    color: var(--white-color);
}

p.black {
    color: var(--black-color);
}

p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: unset;
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
    color: var(--black-color) !important;
    font-family: "Poppins-Medium";
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading p {
    font-size: 22px;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.btn.btn-golden {
	font-size: 24px;
	padding: 10px 60px;
	background: var(--golden-color);
	color: var(--black-color);
	border-radius: 10px;
	border: none;
	font-family: "impact";
	text-transform: uppercase;
	letter-spacing: 2px;
}

.btn.btn-golden img {
    max-width: 30px;
    margin-right: 10px;
}

section {
    padding: 70px 0;
    overflow-x: hidden;
    overflow-y: auto;
}

footer {
    padding: 70px 0;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.bg {
    background: var(--green-color);
}

.textCenter {
    text-align: center;
}

.textEnd {
    text-align: center;
}

img {
    max-width: 100%;
}

.swiper-vertical .swiper-pagination-bullet-active,
.swiper-horizontal .swiper-pagination-bullet-active {
    background: var(--red-color);
    border-color: var(--red-color);
}

.swiper-vertical .swiper-pagination-bullet,
.swiper-horizontal .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #AAB0BC;
    margin: 30px 0 !important;
    opacity: 1;
}

/* 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: #b4b400;
    padding: 12px 0;
    transition: .5s all;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
    max-width: 100px;
    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 .button-box {
    margin-left: 20px;
}

#header .button-box .btn.btn-golden {
    padding: 8px 30px;
}

#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;
    font-family: "Roboto-Medium";
}

/* homeBanner css */
#landingPage {
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 100%;
	min-height: 100vh;
	padding: 20px 0 0;
	display: flex;
	align-items: flex-end;
}
#landingPage .top-box .text-box img {
	max-width: 600px;
	width: 100%;
	margin-bottom: 15px;
}
#landingPage .button-box {
	margin-bottom: 20px;
}
#landingPage .app-box ul {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	flex-wrap: wrap;
	row-gap: 20px;
	margin-bottom: 20px;
}
#landingPage .app-box ul img {
	max-width: 200px;
	width: 100%;
}
#landingPage .box1 .list-box ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 30px;
}
#landingPage .box1 .list-box ul img {
	max-width: 100px;
	margin-bottom: 15px;
}
#landingPage .list-box ul h5 {
	margin-bottom: 0;
}
#landingPage .box.box1 {
	text-align: center;
}
#landingPage .box.box2 .img-box {
	/* max-width: 700px; */
	margin: 0 auto;
    width: 100%;
}
#landingPage .box.box3 .top-box ul.main {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 15px;
	max-width: 90%;
	margin: 0 auto;
}
#landingPage .box.box3 .top-box ul.main li:first-child {
	width: 45%;
}
#landingPage .box.box3 .top-box ul.main > li {
	width: calc(27% - 50px);
	padding-right: 50px;
	margin-right: 50px;
	border-right: 2px solid var(--white-color);
}
#landingPage .box.box3 .top-box ul.main > li:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}
#landingPage .box.box3 .top-box ul.main .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
}
#landingPage .box.box3 .top-box ul.main .content h3 {
	margin-bottom: 0;
}
#landingPage .box.box3 .top-box ul.main .content ul.inner li {
	display: inline-block;
	width: 50px;
    margin-right: 10px;
}
#landingPage .box.box3 .top-box ul.main .content ul.inner li:last-child {
    margin-right: 0;
}
#landingPage .box.box3 .top-box ul.main .content .img-box {
	max-width: 140px;
}
#landingPage .box.box3 .end-box ul {
	display: flex;
	align-items: center;
	background: var(--golden-color);
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 10px;
	padding: 10px 0;
	margin: 10px -15px 0;
}
#landingPage .box.box3 .end-box ul li {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 2px solid var(--black-color);
}
#landingPage .box.box3 .end-box ul li:last-child {
	margin-right: 0;
	padding-right:0;
	border-right: none;
}
#landingPage .box.box3 {
	margin-top: 20px;
}
#landingPage .box.box3 .top-box ul.main h3 {
	letter-spacing: 2px;
}
/* section css */

.text-box h4 {
    font-family: "VTFRedzone";
    font-size: 45px;
    margin: 25px 0;
}
.text-box h4 span {
    display: inline;
    font-family: "VTFRedzone";
    color: var(--golden-color);
}