* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}


/* common css */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
}

.section-heading {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 25px;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* common css */


#main_banner {
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0;
  overflow: hidden;
  overflow-y: auto;
}
#main_banner .row {
	align-items: center;
}

.main_banner-block {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 20px 0;
}

.main_banner-img img {
	width: 100%;
	max-width: 700px;
}
.container-fluid {
	max-width: 90%;
}

.logo-box img {
	width: 100%;
	max-width: 160px;
	margin-bottom: 40px;
}

.main_banner-content h1 {
	color: #fff;
	font-size: 70px;
	font-weight: bold;
}

.main_banner-content h1 span {
	color: #fff;
	font-size: 35px;
	font-weight: 400;
	display: block;
	margin-bottom: 10px;
}

.main_banner-content ul li a.btn {
	color: #fff;
	font-size: 25px;
	border-radius: 50px;
	padding: 10px 40px;
	font-weight: 800;
	border: 2px solid #fff;
	background: #dd6b00;
  animation: scale 2s ease-in-out infinite alternate;
}
@keyframes scale {
  0% {transform: scale(.8);}
  100% {transform: scale(1);}
}
#main_banner .col-md-6:last-child {
	display: flex;
	justify-content: center;
}

.btn.btn-green {
  background-color: #4CAF50;
}

.btn.btn-blue {
  background: #039BE5;
}

.main_banner-content ul li {
  margin-bottom: 15px;
}

.main_banner-content ul li a.btn img {
  margin-right: 15px;
}

.main_banner-content p {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.logo-box.mobile {
  display: none;
}