

/* header wrapper */
.header-container-wrapper{
	height: 0px !important;
}

/* body & html */
body, html{
	scroll-behavior: smooth;
	overflow-x: hidden !important;
}



/* background gradient */
.body-container-wrapper{
	background:#fff;
	background:-webkit-gradient(linear, left bottom, left top, from(#f2f1f0), color-stop(20%, white));
	background:-webkit-linear-gradient(bottom, #f2f1f0 0%, white 20%);
	background:-moz-linear-gradient(bottom, #f2f1f0 0%, white 20%);
	background:-o-linear-gradient(bottom, #f2f1f0 0%, white 20%);
	background:linear-gradient(0deg, #f2f1f0 0%, white 20%)
  padding-top: 100px;
	min-height: 100vh;
}

body p, div center {
 font-family:"Montserrat" !important;
}
/* shadow just on small device */
@media(max-width: 991.98px){
	.shadow-on-mobile{
		-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
		-moz-box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
		box-shadow:0 .5rem 1rem rgba(0,0,0,.15)
	}
}