/* --- Spacing --- */

	.mt-1 {
		margin-top: 16px;
	}
	.mt-2 {
		margin-top: 24px;
	}
	.mt-3 {
		margin-top: 36px;
	}
	.mt-4 {
		margin-top: 48px;
	}
	.pt-1 {
		padding-top: 12px;
	}
	.pt-2 {
		padding-top: 20px;
	}
	.pt-3 {
		padding-top: 36px;
	}
	.pb-1 {
		padding-bottom: 10px;
	}
	.pb-2 {
		padding-bottom: 20px;
	}
	.pb-3 {
		padding-bottom: 32px;
	}
	.pl-1 {
		padding-left: 12px;
	}
	.pl-2 {
		padding-left: 20px;
	}
	.pr-1 {
		padding-right: 16px;
	}
	.pr-2 {
		padding-right: 24px;
	}

/* --- Color --- */
	.font-darkgrey {
		color: #1d1d1d;
	}
	.font-maroon {
		color: #9c182f;
	}
	.font-blue1 {
		color: #0377A6;
	}


/* --- Buttons --- */

   .btn-blue {
    	margin-bottom: 10px;
 	}

	.btn-blue a {
		font-size: 1.1rem;
		line-height: 1.3;
		font-family: "SourceSansPro", sans-serif;
		font-weight: 600;
		padding: 14px 26px;
		border-radius: 8px;
		color: #fff;
		text-decoration: none;
		cursor: pointer;
		background: #39789f;
		transition: all ease-in-out 200ms;
		width: fit-content;
        display: block;
	}
	.btn-blue a:hover {
		background: #0E3646;
	}
	.btn-blue2 a {
	  font-size: 1.06rem;
	  line-height: 1.3;
	  font-family: "SourceSansPro", sans-serif;
	  font-weight: 400;
	  padding: 12px 34px;
	  border-radius: 6px;
	  color: #fff;
	  text-decoration: none;
	  cursor: pointer;
	  background: #076dbf;
	  transition: all ease-in-out 200ms;
	  width: fit-content;
	  display: block;
	}
	.btn-blue2 a:hover {
	  background: #2ba0ff;
	} 

	.btn-yellow a {
	  font-size: 1.06rem;
	  line-height: 1.3;
	  font-family: "SourceSansPro", sans-serif;
	  font-weight: 400;
	  padding: 12px 34px;
	  border-radius: 6px;
	  color: #2f545c;
	  text-decoration: none;
	  cursor: pointer;
	  background: #ffe979;
	  transition: all ease-in-out 200ms;
	  width: fit-content;
	  display: block;
	}
	.btn-yellow a:hover {
	  background: #ffffff;
	}
	.btn-green a {
	  font-size: 1.06rem;
	  line-height: 1.3;
	  font-family: "SourceSansPro", sans-serif;
	  font-weight: 400;
	  padding: 12px 34px;
	  border-radius: 6px;
	  color: #ffffff;
	  text-decoration: none;
	  cursor: pointer;
	  background: #2F545C;
	  transition: all ease-in-out 200ms;
	  width: fit-content;
	  display: block;
	}
	.btn-green a:hover {
		background-color: #cee1e5;
  		color: #153b43;
	}


