*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #8b8aa6;
	font-family: "Signika Negative", sans-serif;
	line-height: 1.5;
}

h1:not(:last-child),
h2:not(:last-child),
p:not(:last-child),
ul:not(:last-child) {
	margin-bottom: 24px;
}
h1:not(:first-child),
h2:not(:first-child) {
	padding-top: 24px;
}
h1,
h2 {
	font-size: 1.5rem;
}
ul {
	margin-left: 1.75em;
	padding-left: 0;

	list-style: disc outside none;
}
li + li {
	margin-top: 24px;
}
strong {
	font-weight: bold;
}
small {
	font-size: 0.75em;
}

@media (min-width: 768px) {
	h1:not(:last-child),
	h2:not(:last-child) {
		margin-bottom: 48px;
	}
	h1:not(:first-child),
	h2:not(:first-child) {
		padding-top: 48px;
	}
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 1.875rem;
	}
}

/* icon list */

.icon__list {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
.icon__list__anchor {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;

	color: inherit;
	text-decoration: none;
}
.icon__list__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 1em;

	font-weight: bold;
	text-align: center;
}
.icon__list__icon--stacked {
	width: 2em;
	height: 2em;

	color: #ffffff;
	font-size: 0.75em;
	line-height: 2em;

	background-color: #ffffff;
	border-radius: 50%;
}
.icon__list__icon--stacked i {
	color: #fd6585;
	background: -webkit-linear-gradient(60deg, rgba(249, 203, 155, 1) 0%, rgba(236, 123, 119, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.icon__list__content {
	padding-left: 0.75rem;
}

.icon__list--stacked li + li {
	margin-top: 0;
}
.icon__list--stacked .icon__list__anchor {
	display: block;
}
.icon__list--stacked .icon__list__icon {
	display: inline-block;
	vertical-align: top;
}
.icon__list--stacked .icon__list__content {
	display: block;
	padding-top: 0.75rem;
	padding-left: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.icon__list-md--stacked li + li {
		margin-top: 0;
	}
	.icon__list-md--stacked .icon__list__anchor {
		display: block;
	}
	.icon__list-md--stacked .icon__list__icon {
		display: inline-block;
		vertical-align: top;
	}
	.icon__list-md--stacked .icon__list__content {
		display: block;
		padding-top: 0.75rem;
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.icon__list-sm--stacked li + li {
		margin-top: 0;
	}
	.icon__list-sm--stacked .icon__list__anchor {
		display: block;
	}
	.icon__list-sm--stacked .icon__list__icon {
		display: inline-block;
		vertical-align: top;
	}
	.icon__list-sm--stacked .icon__list__content {
		display: block;
		padding-top: 0.75rem;
		padding-left: 0;
	}
}

/* shape */

.shape {
	overflow: hidden;
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
}
.shape svg {
	display: block;
	width: calc(100% + 1.3px);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.shape--top {
	top: -1px;
}
.shape--bottom {
	bottom: -1px;

	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* button */

.button {
	display: inline-block;
	vertical-align: top;
	padding: 0.75rem 1.5rem;
	position: relative;
	z-index: 1;

	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;

	background: #3453b2;
	background: linear-gradient(90deg, rgba(82, 121, 207, 1) 0%, rgba(32, 51, 153, 1) 100%);
	border-radius: 99999px;
	-webkit-transition: all 0.24s ease;
	-o-transition: all 0.24s ease;
	transition: all 0.24s ease;
}
.button:before {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;

	-webkit-animation: pulse 1.25s infinite;
	animation: pulse 1.25s infinite;
	background: #3453b2;
	background: linear-gradient(90deg, rgba(82, 121, 207, 1) 0%, rgba(32, 51, 153, 1) 100%);
	border-radius: 99999px;
}

@-webkit-keyframes pulse {
	to {
		width: calc(100% + 24px);
		height: calc(100% + 24px);
		top: -12px;
		left: -12px;
		opacity: 0;
	}
}

@keyframes pulse {
	to {
		width: calc(100% + 24px);
		height: calc(100% + 24px);
		top: -12px;
		left: -12px;
		opacity: 0;
	}
}

@media (min-width: 768px) {
	.button {
		padding: 0.75rem 2.25rem;

		font-size: 1.5rem;
	}
}

/* phone button */

.phone__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding-right: 1.125rem;

	color: inherit;
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;

	background: rgba(255, 255, 255, 0.24);
	border-radius: 99999px;
}
.phone__button__icon {
	display: inline-block;
	vertical-align: top;
	width: 36px;
	height: 36px;
	margin-right: 0.75rem;

	line-height: 36px;
	text-align: center;

	background: #ffffff;
	border-radius: 50%;
}
.phone__button__icon i {
	color: #fd6585;
	background: -webkit-linear-gradient(60deg, rgba(249, 203, 155, 1) 0%, rgba(236, 123, 119, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* highlight */

.highlight {
	color: #fd6585;
	background: -webkit-linear-gradient(60deg, rgba(249, 203, 155, 1) 0%, rgba(236, 123, 119, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* hero */

.hero {
	padding: 0 12px 24px;
	position: relative;

	color: #ffffff;

	background: #fd6585;
	background: linear-gradient(135deg, rgba(255, 211, 165, 1) 0%, rgba(253, 101, 133, 1) 100%);
}

.hero .row > .col,
.hero .row > [class^="col-"] {
	padding-top: 24px;
	padding-bottom: 24px;
}

.hero .shape svg {
	height: 24px;
}
.hero .shape-fill {
	fill: #ffffff;
}

.hero__card {
	margin-bottom: 48px;
	overflow: hidden;

	color: #8b8aa6;
	text-align: center;

	background: #ffffff;
	border-radius: 12px;
}
.hero__card img {
	display: block;
	width: 100%;
	height: auto;
}
.hero__card__content {
	padding: 24px;
}
.hero__card__content .highlight {
	font-family: "Poppins", sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.25;
}

.hero__form__phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.hero__form__phone .phone__button {
	margin-left: 12px;
}
.hero__form__phone small {
	width: 100%;
	margin-top: 6px;

	text-align: right;
}

@media (min-width: 480px) {
	.hero__form__phone {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: normal;
		-ms-flex-pack: normal;
		justify-content: normal;
	}
	.hero__form__phone .phone__button {
		margin-right: 12px;
	}
	.hero__form__phone small {
		width: auto;
		margin-top: 0;

		text-align: left;
	}
}

@media (min-width: 768px) {
	.hero {
		padding: 0 24px 48px;
	}

	.hero .row > .col,
	.hero .row > [class^="col-"] {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.hero .shape svg {
		height: 48px;
	}

	.hero__card {
		border-radius: 24px;
	}
	.hero__card__content {
		padding: 48px;
	}
	.hero__card__content .highlight {
		font-size: 5rem;
	}

	.hero .icon__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin: -12px;

		font-size: 1.5rem;
	}
	.hero .icon__list__item {
		min-height: 1px;
		width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		padding: 12px;
	}
	.hero .icon__list li + li {
		margin-top: 0;
	}
}

@media (min-width: 1025px) {
	.hero__card__content h1 {
		margin-bottom: 0;
	}
	.hero__card__content .button {
		display: none;
	}

	.hero__form h2 {
		padding-top: 24px;
		margin-bottom: 24px;
	}
}

/* content */

.content {
	padding: 24px 12px;

	background-color: #ffffff;
}

.content .row > .col,
.content .row > [class^="col-"] {
	padding-top: 24px;
	padding-bottom: 24px;
}

@media (min-width: 768px) {
	.content {
		padding: 0 24px;
	}

	.content .row > .col,
	.content .row > [class^="col-"] {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

/* footer */

.footer {
	padding: 12px;

	text-align: center;

	background-color: #f1f1f4;
}

.footer :focus {
	outline-color: #ffffff;
}

.footer .row > .col,
.footer .row > [class^="col-"] {
	padding-top: 12px;
	padding-bottom: 12px;
}

/* testimonials */

.testimonial {
	padding: 24px;

	border: 2px solid #f1f1f4;
	border-radius: 12px;
}
.testimonial__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.testimonial .rating {
	margin-bottom: 0 !important;

	color: #f0b63a;
}

@media (min-width: 768px) {
	.testimonial {
		padding: 48px;
	}
}

/* questions */

.questions {
	border: 2px solid #f1f1f4;
	border-radius: 12px;
}
.question + .question {
	border-top: 2px solid #f1f1f4;
}
.question__header {
	margin-bottom: 0 !important;
}
.question__button {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px;
	width: 100%;

	color: inherit;
	font-family: "Signika Negative", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	text-align: left;

	background-color: transparent;
	border: 0;
	border-radius: 0;
}
.question__button:after {
	content: "";
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	margin-left: auto;

	background-image: url(../images/accordion/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center center;

	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.question__button.expanded:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.question__collapse {
	display: none;
	padding: 24px;

	background-color: #f1f1f4;
}
.question__collapse.expanded {
	display: block;
}

/* tiny slider */

.tns-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 24px;
}

.tns-controls button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: top;
	width: 48px;
	height: 48px;

	font-size: 0;

	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	border: 0;
}
.tns-controls button:nth-of-type(odd) {
	background-image: url(../images/slider/arrow-prev.svg);
}
.tns-controls button:nth-of-type(even) {
	background-image: url(../images/slider/arrow-next.svg);
}
