@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 650px;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	background: #151b3f;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style-type: none; 
}

ul li, ol li {
	margin: 0;
	padding: 0;
}

a, a:visited {
	color: #08674c;
	text-decoration: none;
}

.logo {
	display: block;
	width: 168px;
	margin: 32px auto;
}

.logo img {
	display: block;
	width: 100%;
	max-width: 100%;
}

.content {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}

h1.page-title {
	display: block;
	width: 100%;
	margin: 0 auto 32px;
	font-size: 24px;
	font-weight: 800;
	text-align: center;
	color: #f8e698;
}

ul.loan-desc {
	line-height: 120%;
}

ul.loan-desc li {
	margin-bottom: 8px;
}

ul.loan-desc li:last-child {
	margin-bottom: 0;
}

.btn-whatsapp {
	display: block;
	width: 90%;
	margin: 32px auto;
	font-size: 1.2em;
	line-height: 64px;
	background: #29af3e;
	border-radius: 50px;
}

.btn-whatsapp a {
	display: block;
	color: #fff;
	font-weight: 800;
}

/** Animations **/
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(74, 185, 153, 1);
  }
  100% {
    box-shadow: 0 0 0 24px rgba(74, 185, 153, 0);
  }
}