.ani {
	transition: all 1s;
}

.ani.down {
	transform: translateY(-80px);
}

.ani.up {
	transform: translateY(80px);
}

.ani.left {
	transform: translateX(80px);
}

.ani.right {
	transform: translateX(-80px);
}

.ani.opacity {
	opacity: 0;
}

.ani.off {
	position: relative;
}

.ani.off::after {
	content: "";
	display: block;
	background: var(--color-white);
	position: absolute;
	top: 0;
	bottom: 0;
	transition: all 0.8s ease;
	width: 100%;
	height: 100%;
}

.ani.off.off-left::after {
	left: 0;
}

.ani.off.off-right::after {
	right: 0;
}

.ani.on.down, .ani.on.up {
	transform: translateY(0);
}

.ani.on.left, .ani.on.right {
	transform: translateX(0);
}

.ani.on.opacity {
	opacity: 1;
}

.ani.on.off::after {
	width: 0;
}

.ani.scale {
    transform: scale(1.25);
}

.ani.on.scale {
    transform: scale(1.00);
}

.ani.scale-out {
    transform: scale(0.90);
}

.ani.on.scale-out {
    transform: scale(1.00);
}

.redhat {
	font-family: var(--font-redhat) !important;
}

.icon img {
	max-height: 100%;
}

.hyphen {
	display: flex;
	column-gap: 5px;
}

.hyphen::before {
	content: "-";
	flex-shrink: 0;
}

.arrow-w,
.arrow-h {
	display: flex;
}

.arrow-w>*,
.arrow-h>* {
	width: 100%;
	height: 100%;
}

.arrow-w.white>*,
.arrow-h.white>* {
	filter: brightness(0) invert(1);
}

.arrow-w {
	width: 40px;
	height: 14px;
}

.arrow-h {
	width: 14px;
	height: 40px;
}

.plus {
	width: 20px;
	height: 20px;
	position: relative;
}

.plus span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.plus span:first-child {
	width: 100%;
	height: 2px;
}

.plus span:last-child {
	width: 2px;
	height: 100%;
}

.plus.white span {
	background: var(--color-white);
}

.plus.black span {
	background: var(--color-black);
}

.option-box,
.buttons,
.pagination {
	column-gap: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.buttons button {
	display: block;
}

.pagination span {
	display: block;
	width: 10px;
	height: 10px;
	position: relative;
	cursor: pointer;
}

.pagination span::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border: 2px solid transparent;
	transition: all 0.4s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pagination.white span::before {
	border-color: rgba(255, 255, 255, 0.3);
}

.pagination.white span:hover::before, .pagination.white span.swiper-pagination-bullet-active::before {
	background: var(--color-white);
	border-color: var(--color-white);
}

.pagination.primary span::before {
	border-color: var(--color-border);
}

.pagination.primary span:hover::before, .pagination.primary span.swiper-pagination-bullet-active::before {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.bg-img {
	position: relative;
}

.bg-img::before {
	content: "";
	display: block;
	width: calc(100vw + 2px);
	height: calc(100% + 2px);
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.square {
	column-gap: 13px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.square::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border: 2px solid var(--color-border);
}

.dot-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.dot-line::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dot-line span {
	display: block;
	width: 14px;
	height: 14px;
	background: var(--color-primary);
	border: 4px solid var(--color-white);
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

.dot-line.h {
	flex-direction: row;
	margin: 0 -7px;
}

.dot-line.h::before {
	width: 100%;
	height: 1px;
	border-top: 2px dashed var(--color-border);
}

.dot-line.v {
	flex-direction: column;
	margin: -7px 0;
}

.dot-line.v::before {
	width: 1px;
	height: 100%;
	border-right: 2px dashed var(--color-border);
}

@media (max-width: 768px) {
	.plus {
		width: 15px;
		height: 15px;
	}
}

@media (max-width: 600px) {
	.arrow-w {
		width: 30px;
		height: 10px;
	}

	.buttons,
	.pagination {
		column-gap: 10px;
	}
}