* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Roboto';
}

/* common css */


:root {
    --white-color: white;
    --paragraph-color: green;
    --heading-font-size: 18px;
    --paragraph-font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
}
p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
}
ul, ol {
    list-style-type:none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1;
}
span {
    display: inline-block;
}
.section-heading {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}
.section-heading h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}
.section-heading h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}
.section-heading p {
    font-size: 22px;
    color: white;
    margin-bottom: 0;
}
.red-button {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    background-color: red;
    color: white;
}
section {
    padding: 50px 0;
}
/* common css */


/* banner css start */

#banner .banner-part {
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	padding: 40px 20px 10px;
	overflow-y: auto;
}
#banner {
	padding: 0;
}
#banner .left-box img {
	max-width: 600px;
	width: 100%;
}
#banner .left-box .img-box:nth-child(2) {
	margin-top: 50px;
}
#banner .left-box {
	background-image: url("../images/map.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 0% 0%;
	padding-left: 15%;
}

#banner .header .logo img {
	max-width: 350px;
	width: 100%;
    margin-bottom: 40px;
}
.img-box.footer-img {
	max-width: 400px;
	margin: 0 auto;
}
#banner .header .text h3 {
	font-size: 40px;
	text-transform: uppercase;
	color: #000;
	font-weight: bold;
	letter-spacing: 3px;
	margin-bottom: 0px;
}
#banner .header .text h1 {
	color: var(--white-color);
	font-size: 60px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 40px;
}
#banner .body .content-box img {
	max-width: 30px;
	width: 100%;
	margin-right: 10px;
}
#banner .body .content-box h4 {
	font-size: 24px;
	color: var(--white-color);
	text-transform: uppercase;
	font-style: italic;
	margin-bottom: 0;
}
#banner .body .content-box {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
#banner .footer ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	padding-top: 30px;
	width: 75%;
}
#banner .footer ul li {
	width: 50%;
	padding: 0 30px;
}
#banner .footer ul li .btn {
	background-color: #039be5;
	padding: 15px 20px;
	border-radius: 50px;
	border: 1px solid #039be5;
	color: var(--white-color);
	text-transform: uppercase;
	font-weight: 600;
	width: 100%;
	font-size: 18px;
}
#banner .footer ul li .btn img {
	max-width: 30px;
	margin-right: 5px;
}
#banner .footer ul li .btn.btn-2 {
	background-color: #4267b2;
	border: 1px solid #4267b2;
}
#banner .footer ul li .btn.btn-3 {
	background-color: transparent;
	border: 1px solid #51cd5e;
	color: #51cd5e;
}
#banner .footer ul li .btn.btn-4 {
	border: 1px solid #039be5;
	background-color: transparent;
	color: #039be5;
}
#banner .footer ul li .btn.btn-5 {
	border: 1px solid #4267b2;
	background-color: transparent;
	color: #4267b2;
}
#banner .footer ul li .btn.btn-6 {
	border: 1px solid #dd2a7b;
	background-color: transparent;
	color: #dd2a7b;
}
/* banner css end */


#footer {
	background-color: #2e0000;
	padding: 15px;
	margin-top: 40px;
}
#footer .box h4 {
	font-size: 24px;
	color: var(--white-color);
	margin-bottom: 0;
}
#footer .box ul {
	display: flex;
	align-items: center;
	justify-content: end;
}
#footer .box ul li a {
	color: white;
	font-size: 20px;
}
#footer .box ul li {
	padding: 0 10px;
	color: #fff ;
}