html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  position: relative;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
a {
  text-decoration: none !important;
}
p a {
  color: #B8D6D8;
  font-weight: 700;
  transition: 300ms;
}
p a:hover {
  color: #B8D6D8;
  opacity: 0.85;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}
h1 {
  font-size:45px;
}
h2 {
  font-size: 30px;
  margin-bottom: 6px;
}
h4 {
  font-size: 18px;
}
@media (max-width:576px) {
  h1 {
    font-size: 32px;
  }
}
.custom-btn {
  font-size: 15px;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  line-height: 2;
  vertical-align: middle;
  color: #000000;
  border: 2px solid #B8D6D8;
  background: #B8D6D8;
  font-family: "Poppins", sans-serif;
}
.custom-btn:hover {
  background-color: #FFEFC9;
  color: #000000;
  border: 2px solid #FFEFC9;
}
.footer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #FFEFC9;
  padding: 20px 0;
}
.footer p {
  text-align: center;
  color: #000;
  font-weight: 500;
}
.navbar {
  transition: 330ms;
  background: #FFEFC9;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.03);
}
.nav-item {
  padding-left: 15px;
  padding-right: 15px;
}
.nav-item:last-child {
  padding-right: 0;
}
.nav-item .nav-link {
  display: block;
  font-weight: 500;
  font-size: 17px;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 40px;
  border: transparent;
}
.nav-link:hover , .nav-link.active {
  color: #B8D6D8;
}
.navbar-toggler:focus{
  outline: none;
  box-shadow: none;
}
.header {
  padding-top: 140px;
  padding-bottom: 400px;
}
.header-secondary {
	padding-top: 180px;
	padding-bottom: 80px;
	background-image: url('/assets/images/header-secondary.png');
	background-position: 50% 50%;
	background-size:cover;
	background-repeat: no-repeat;
}
.header-bg {
	background-image: url('/assets/images/shutterstock_1111738025.jpg');
	background-position: 50% 50%;
	background-size:cover;
	background-repeat: no-repeat;
}
@media (max-width:576px) {
	.header {
		padding-top: 160px;
		padding-bottom: 50px;
	}	
}
.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: transparent;
}
@media (max-width:991px) {
	.overlay {
	  background-color:rgba(255, 239, 201,0.85);
	}
}
.lead {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.quote {
	background: white;
	padding: 18px 25px;
	margin: 20px 0;
	border-left: 5px solid #F8D5CF;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.quote blockquote {
	margin: 0;
	font-style: italic;
	font-size: 1.1em;
}
.quote cite {
	display: block;
	margin-top: 8px;
	font-style: normal;
	font-size: 0.9em;
	color: #555;
	text-align: right;
}