* {
    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;
    --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: 26px;
}
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: 32px;
	padding: 15px 30px;
	color: white;
	background: #002948;
	border-radius: 50px;
	text-transform: uppercase;
	font-family: 'Barlow Semi Condensed', sans-serif;
	display: inline-flex;
	align-items: center;
	border: 2px solid #fff;
}
section {
    padding: 60px 0;
}
/* common css */


/* banner css start */

#banner {
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 100% 100%;
	height: 100vh;
	overflow: hidden;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 0;
}
#banner .box .content-box .logo-box img {
	max-width: 280px;
	margin: 0 0 40px 0;
}
#banner .box .content-box .text-box h1 {
	color: #002948;
	font-size: 75px;
	text-transform: uppercase;
	line-height: 90px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
}
#banner .box .content-box .text-box p {
	font-size: 32px;
	color: #002948;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
}
#banner .box .content-box .button-box a img {
	max-width: 40px;
	margin-right: 15px;
}
#banner .box .content-box .button-box {
	margin-top: 40px;
}
#banner .box.right-box {
	display: none;
}
#banner .box .content-box .text-box h1 span {
	display: block;
}
/* banner css end */