html {
	scroll-behavior: smooth;
}

@keyframes slide-in-up {
	from {
		transform: translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slide-in-down {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slide-out-up {
	from {
		transform: translateY(0);
		opacity: 1;
	}

	to {
		transform: translateY(-100%);
		opacity: 0;
	}
}

@keyframes slide-out-down {
	from {
		transform: translateY(0);
		opacity: 1;
	}

	to {
		transform: translateY(100%);
		opacity: 0;
	}
}

.slide-in-up {
	animation: slide-in-up 0.5s cubic-bezier(.4, 0, .2, 1) both;
}

.slide-in-down {
	animation: slide-in-down 0.5s cubic-bezier(.4, 0, .2, 1) both;
}

.slide-out-up {
	animation: slide-out-up 0.5s cubic-bezier(.4, 0, .2, 1) both;
}

.slide-out-down {
	animation: slide-out-down 0.5s cubic-bezier(.4, 0, .2, 1) both;
}

#point-primary {
	.swiper-wrapper {
		padding-bottom: 40px;
	}

	.swiper-pagination {
		height: 24px !important;
		bottom: 0px !important;
		text-align: left !important;
	}

	.swiper-pagination-bullet {
		background-color: #fff;
		border: 2px solid #ccc;
		width: 20px;
		height: 20px;
		border-radius: 0;
		margin: 0 10px !important;
		opacity: 1 !important;
	}

	.swiper-pagination-bullet-active {
		background-color: #333;
		border: 2px solid #ccc;
	}
}

@media screen and (min-width: 1024px) {
	/* #point-primary {
		.swiper-wrapper {
			width: 511px;
		}
	} */
}

#faq {
	details {
		summary {
			cursor: pointer;
			background-image: url('../img/open.svg');
			background-repeat: no-repeat;
			background-position: center right 11px;
			background-size: 22px 22px;
		}
	}

	details[open] {
		summary {
			background-image: url('../img/close.svg');
		}
	}
}

.btn-gradient-green {
	background: linear-gradient(to bottom, #00eca4, #00bcc9);
}

.btn-gradient-red {
	background: linear-gradient(to bottom, #ff1081, #ff3a4c);
}

.square {
	position: relative;
	min-height: 160px;
	box-sizing: border-box;
	background-color: #fef3b5;
	overflow-wrap: anywhere;
}

.pentagon {
	--tip: 40px;
	position: relative;
	min-height: 230px;
	box-sizing: border-box;
	background: #fef3b5;
	overflow-wrap: anywhere;
	padding-bottom: calc(24px + var(--tip));
	clip-path: polygon(0 0,
			100% 0,
			100% calc(100% - var(--tip)),
			50% 100%,
			0 calc(100% - var(--tip)));
}

.pentagon::after {
	content: none;
}

@media screen and (min-width: 1024px) {
	.square {
		position: relative;
		height: 230px;
		box-sizing: border-box;
		background-color: #fef3b5;
		overflow-wrap: anywhere;
	}

	.pentagon {
		height: 230px;
		padding-bottom: 0;
		/* padding-right: 56px; */
		clip-path: none;
	}

	.pentagon::after {
		content: "";
		position: absolute;
		top: 0;
		right: -40px;
		width: 0;
		height: 0;
		border-top: 115px solid transparent;
		border-bottom: 115px solid transparent;
		border-left: 40px solid #fef3b5;
	}
}