/* ======================================== */
/* Common
/* ======================================== */

body {
	font-weight: 400;
	font-family: "Open Sans", Arial, Helvetica, Sans-serif;
	font-size: var(--aox-fs-14px);
	line-height: var(--aox-lh-140);
	color: var(--aox-color-neutral-90);
	}

/***/
strong {
	font-weight: 700;
	}
	
a {
	display: inline-block;
	position: relative;
	color: var(--aox-color-green);
	text-decoration: none;
	transition: all ease 200ms;
	}
a:hover {
	color: var(--aox-color-purple);
	}
a:hover::after {
	background-color: var(--aox-color-purple);
	}

/* Buttons */

.btn_cta {
	display: inline-block;
	position: relative;
	padding: 10px 20px;
	font-family: monospace;
	font-size: 14px;
	color: #333333;
	border: solid 3px #333333;
	box-shadow: 3px 3px 0 0 #333333;
	}
.btn_cta span {
	position: relative;
	z-index: 2;
	}
.btn_cta::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 100%;
	bottom: 0;
	left: 0;
	background-color: #333333;
	transition: inherit;
	}
.btn_cta::after {
	content: none;
	}
.btn_cta:hover {
	color: white;
	box-shadow: none;
	}
.btn_cta:hover::before {
	right: 0;
	}
.btn_cta:hover::after {
	background-color: white;
	}

.btn_cta.var_purple {
	color: #6a1fff;
	border: solid 3px #6a1fff;
	box-shadow: 3px 3px 0 0 #6a1fff;
	}
.btn_cta.var_purple:hover {
	color: white;
	box-shadow: none;
	}
.btn_cta.var_purple::before {
	background-color: #6a1fff;
	}

.btn_cta.var_green {
	color: #51f99f;
	border: solid 3px #51f99f;
	box-shadow: 3px 3px 0 0 #51f99f;
	}
.btn_cta.var_green:hover {
	color: white;
	box-shadow: none;
	}
.btn_cta.var_green::before {
	background-color: #51f99f;
	}

/***/

.btn_down {
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: 40px;
	height: 40px;
	width: 40px;
	margin-left: -20px;
	padding: 0;
	font-size: 30px;
	line-height: 40px;
	color: white;
	border: none;
	background-color: transparent;
	animation: move 2s infinite linear;
	-webkit-animation: move 2s infinite linear;
	}

@keyframes move {
	0% {
		transform: translateY(-25%);
		-ms-transform: translateY(-25%);
		-webkit-transform: translateY(-25%);
		}
	50% {
		transform: translateY(25%);
		-ms-transform: translateY(25%);
		-webkit-transform: translateY(25%);
		}
	100% {
		transform: translateY(-25%);
		-ms-transform: translateY(-25%);
		-webkit-transform: translateY(-25%);
		}
	}

/* ======================================== */
/* obj_section
/* ======================================== */

.obj_section {
	position: relative;
	}
.obj_section .ctn_section {
	width: var(--aox-grid);
	margin: 0 auto;
	padding: var(--aox-80px);
	}

.obj_section .ctn_row {
	display: flex;
	justify-content: space-between;
	margin-left: -2%;
	margin-right: -2%;
	}
.obj_section .ctn_row + .ctn_row {
	margin-top: 30px;
	}
.obj_section .ctn_row > * {
	flex: 1;
	width: 100%;
	padding: 0 2%;
	}

.obj_section .t_title {
	font: 400 40px/1.2em "Playfair Display", Serif;
	color: #6a1fff;
	hyphens: auto;
	}
.obj_section .t_title span {
	display: inline-block;
	position: relative;
	z-index: 2;
	}
.obj_section .t_title span::before {
	content: "";
	opacity: 1;
	display: inline-block;
	position: absolute;
	z-index: -1;
	height: 20px;
	left: 5%;
	right: 5%;
	bottom: 0;
	background: url("../images/v_brush_green.svg") no-repeat center center / 100% 100% transparent;
	}
.obj_section .t_subtitle {
	position: relative;
	/* padding-left: 30px; */
	font: 700 18px/1.5em "Open Sans", Sans-Serif;
	color: #51f99f;
	}
/* .obj_section .t_subtitle::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.75em;
	left: -15px;
	height: 2px;
	width: 30px;
	background-color: #51f99f;
	} */
.obj_section h5 {
	font: 700 18px/1.5em "Open Sans", Sans-Serif;
	color: #6a1fff;
	}

.obj_section .t_legal {
	font-size: var(--aox-fs-12px);
	color: #808080;
	}
.obj_section .t_legal a {
	color: inherit;
	}
.obj_section .t_legal a::after {
	content: none;
	}
.obj_section .t_legal a:hover {
	margin-left: 0;
	}





.obj_section p + *,
.obj_section ul + * {
	margin-top: 20px;
	}
.obj_section .ctn_btn {
	margin-top: 30px;
	}
