.nunito-sans {
	font-family: "Nunito Sans", serif;
}
.poiret-one {
	font-family: "Poiret One", serif;	
}
html {
  scroll-padding-top: 56px;
}
.navbar {
	background-color: #fff;
}
.navbar-brand img {
	max-height: 1em;
	position: relative;
	top: -0.15em;
}
.btn-navbar {
	margin-left: 8px;
}
.supertitle {
	margin-bottom: 0;
}
.supertitle + h1 {
	font-weight: bold;
	font-size: 3.5rem;
}
h1 img {
	max-height: 1em;
}
.todo-container {
	overflow:hidden;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.todo {
	position: relative;
	top: -20px;
	transform: rotate(17deg);
}
.todo, .todo ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: left;
}
.todo li {
	padding: 0 0 0 10px;

}
.todo  ul:nth-child(2) > li:first-child > span:before {
	content: ' ';
	border-top: 1px solid var(--primary);
	position: absolute;
	top: 0;
	left: -13px;
	height:0;
	width: 10px;
}
.todo li span {
	display: block;
	position: relative;
	border-left: 3px solid var(--primary);
	padding: 3px 10px;
}
.todo li span.title {
	font-family: "Poiret One", serif;
	font-weight: bold;
	margin-top: 10px;
}
.todo li span.title:after {
	content: '';
	display:block;
	width: 10px;
	height: 10px;
	background-color: #fff;
	border: 2px solid var(--primary);
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: -7px;
}
.form-check-input {
	margin-left: 0;
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 0;
	border: 1px solid #ccc;
	appearance: none;
	top: 4px;
}
.form-check-input:checked {
	color: #fff;
	border: 1px solid var(--primary);
	background-color: var(--primary);
}
.form-check-input:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 14px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: translate(-50%, -60%) rotate(45deg);
}
header {
	padding-bottom: 3rem;

}
section > .container {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
#features > .container {

	border-bottom: 1px solid var(--light);
}
.feature {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.feature i {
	font-size: 3rem;
	margin-bottom: 1rem;

}
.feature h3 {
	font-size:1.2rem;
	text-align: center;
	flex-grow: 1;
}
.feature p {
	text-align: center;
}
.how-it-works-container {
	max-width: 600px;
	margin:0 auto;
}
.how-it-work {
	display: flex;
	flex-direction: row;
}
.how-it-work .step-number {
	width: 80px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	border: 2px solid var(--primary);
	border-radius: 10px;
	color: var(--primary);
	margin:10px 20px 10px 0;
}
.how-it-work .description {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.how-it-work .description strong {
	display: block;
}
.thanks {
	background-color: var(--success);
    padding: 1rem;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
}
.thanks p {
	margin:0;
}
.bg-transparent-primary {
	background-color: #6933ff11;
}
.bg-transparent-secondary {
	background-color: #ef184411;
}
#newsletter-form {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#newsletter-form .form-group {
	margin-bottom: 0;
}
#newsletter-form .form-group:nth-child(1), #newsletter-form .form-group:nth-child(2) {
	width: 50%;
}
#newsletter-form .form-group:nth-child(1) input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right-style: none;
}
#newsletter-form .form-group:nth-child(2) input {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
#newsletter-form button {
    display: block;
    width: 100%;
    margin-top: 10px;
}
@media (min-width: 768px) {
	#newsletter-form {
		flex-wrap: nowrap;
	}
	#newsletter-form .form-group:nth-child(1), #newsletter-form .form-group:nth-child(2) {
		width: auto;
	}
	#newsletter-form .form-group:nth-child(2) input {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		border-right-style: none;
	}
    #newsletter-form button {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		width: auto;
    	margin-top: 0;
    }
}
#keep-updated .title {
	font-size: 1.5rem;
	font-weight: bold;
}
footer p {
	margin-bottom: 0;
}