* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* common css */

:root {
    --white-color: white;
    --black-color: black;
    --heading-font-size: 40px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
}
h3 {
    font-size: 30px;
    font-weight: bold;
}
h4 {
    font-size: 22px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: green;
}
p:last-child {
    margin-bottom: 0;
}
ul, ol {
    list-style-type:none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
}
span {
    display: inline-block;
}
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section-heading h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: green;
}
.section-heading h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: green;
}
.section-heading p {
    font-size: 20px;
    color: green;
    margin-bottom: 0;
}
.btn.btn-red {
	font-size: 18px;
	font-weight: bold;
	padding: 10px 20px;
	background-color: #4caf50;
	color: white;
	border-radius: 50px;
	border: 2px solid white;
	min-width: 200px;
}
.btn.btn-red img {
	width: 35px;
	height: 35px;
	margin-right: 15px;
	object-fit: contain;
}
section {
    padding: 60px 0;
}
/* common css */


/* header css start */

#header.show {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
#header .header-part {
	background-color: #b4b400;
	padding: 10px 0;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo-box img {
    max-width: 100px;
    width: 100%;
}
#header.show .logo-box img {
	max-width: 50px;
}
#header nav .click-menu {
	font-size: 22px;
	color: black;
	cursor: pointer;
	display: none;
}
#header nav .cancel-menu {
    font-size: 22px;
    color: black;
    cursor: pointer;
    display: none;
}
#header nav ul li {
	display: inline-block;
	padding: 5px;
	position: relative;
}
#header nav ul li a {
	color: black;
	font-weight: 500;
	padding: 10px 10px;
	border-radius: 5px;
}
/* header css end */


/* banner css start */

#banner {
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 100%;
	min-height: 100vh;
	padding:  0;
	display: flex;
	flex-direction: column;
	justify-content: end;
}
#banner .container-fluid {
	max-width: 90%;
}
#banner .logo-box img {
	max-width: 500px;
	width: 100%;
	margin-bottom: 20px;
}
#banner .logo-box.mobile {
	display: none;
}
#banner .list-box {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
}
#banner .end-box .button-box ul {
	display: flex;
	column-gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
	row-gap: 10px;
}
#banner .end-box .button-box .btn.btn-red.btn-blue {
	background-color: #039be5;
}
#banner .list-box ul li h3{
	color: var(--white-color);
}
#banner .list-box ul li h3.yellow {
	color: #f2c81c;
}
#banner .box.right-box img {
	max-width: 280px;
	width: 100%;
	margin: 0 auto;
	display: block;
}
#banner .top-box img {
	max-width: 800px;
	width: 100%;
	margin-bottom: 20px;
}
/* banner css end */
.button-box h6 {
	font-size: 30px;
	color: #fff;
}
.footer {
	background-color: #090f21;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	
	padding: 10px 15px;
}
.right-footer ul li {
	display: inline-block;
	padding: 0 15px;
}
.left-footer p {
	color: #fff;
	font-size: 16px;
    margin: 0;
}
.right-footer ul li a {
	color: #fff !important;
}