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');
		}
	}
}