body,
html,
header,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
section,
main{
	margin:0px;
	padding:0px;
	display:block;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
	font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 16px;
	line-height: 26px;
	color:#000000;
}
img{
	max-width: 100%;
	height:auto;
	object-fit: cover;
}
a,
a i{
  color:unset;
  transition: all 0.4s;
}
a:focus,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
  color:unset;
}
button:focus,
.btn{
  outline: none;
  box-shadow: none;
}

.separator-1{
	padding:70px 0 0;
}
.separator-2{
	margin:100px 0 0;
}
.montserrat-family{
	font-family: 'Montserrat', sans-serif;
}
.mukta-mahee-family{
	font-family: 'Mukta Mahee', sans-serif;
}

h1, h2, h3, h4, h5{
	font-weight:600;
	color: #3F3D56;
}

h1{
	font-size: 45px;
	line-height: 55px;
}
h3{
	font-size: 35px;
	line-height: 45px;
}
h5{
	font-size: 20px;
	line-height: 45px;
}

.btn{
	line-height: 20px;
	border-radius: 80px;
	padding: 15px 84px;
	height: 50px;
	transition: all 0.8s;
	border:0;
	font-weight: 600;
}
.btn-primary{
	background: #2E489D;
}
.btn-primary:hover{
	background: #000000;
}

.text-primary{
	color: #2E489D!important;
}
.text-default{
	color: #3F3D56;
}
.bg-primary{
	background: #2E489D!important;
}
.bg-default{
	background: #EAECF5;
}

/*----Font Size----*/
.font-12{
	font-size: 12px;
} 
.font-14{
	font-size: 14px;
}
.font-16{
	font-size: 16px;
}
.font-18{
	font-size: 18px;
}
.font-20{
	font-size: 20px;
}
.font-22{
	font-size: 22px;
}

.line-height-20{
	line-height: 20px;
}
/*----Font Size----*/ 


/*----Font Weight----*/ 
.font-weight-300{
	font-weight: 300;
}
.font-weight-400{
	font-weight: 400;
}
.font-weight-500{
	font-weight: 500;
}
.font-weight-600{
	font-weight: 600;
}
.font-weight-700{
	font-weight: 700;
}
.font-weight-800{
	font-weight: 800;
}

/*----Font Weight----*/ 

/*----Form----*/ 
.form-group{
	margin-bottom: 9px;
  }
.form-control::placeholder{
	color: #8A8A8A;
}
.form-control{
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	height:45px;
	color: #8A8A8A;
	padding: 14px 28px;
	background: #E9E9E9;
	border-radius: 50px;
	border:0;
}
/*----Form----*/ 

.center{
    display: flex;
    justify-content: center;
	align-items: center;
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
}
.middle{
	vertical-align: middle;
	display: inline-block;
}

/*---Start: Scroll Top---*/
#scrollTop {
  z-index: 99;
  cursor: pointer;
  border: none;
  position: fixed;
  bottom: 15px;
  right:15px;
  width: 60px;
  height: 60px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  /* box-shadow: 0 0 5px 5px #009A4C; */
  border-radius: 0px;
  background: #A1A1B0;
  border:2px solid #A1A1B0;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  display: none;
  transition: all 0.9s;
  border-radius: 0 25px 10px 25px;
}
#scrollTop:hover{
	border:2px solid #4268B1;
	background: #4268B1;
}
#scrollTop .fa-angle-up{
	color:#000000;
	transition: all 0.9s;
}
#scrollTop:hover .fa-angle-up{
	color:#fff;
}
/*---End: Scroll Top---*/


@media(max-width:767px){
	body{
		font-size: 14px;
		line-height: 22px;
	}
	h1{
		font-size: 32px;
		line-height: 42px;
	}
	h3 {
		font-size: 25px;
		line-height: 35px;
	}
	h5{
		font-size: 18px;
	}
}