/* ---------------------------------------- */

/*  $ > Common

/* ---------------------------------------- */

* {
	box-sizing: border-box;
	}

body {
	font-weight: 300;
	font-family: "Montserrat", Arial, Helvetica, Sans-serif;
	font-size: var(--aox-fs-16px);
	line-height: 1.375;
	color: white;
	background: #0A223D;
	}

p {
	font-size: var(--aox-fs-16px);
	line-height: 1.625;
	color: inherit;
	}

strong {
	font-weight: 700;
	}
em {
	font-style: italic;
	}
u {
	text-decoration: underline;
	}
a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: all ease 400ms;
	}

ol {
	counter-reset: step;
	}
ol li {
	position: relative;
	padding-left: 24px;
	counter-increment: step;
	font-weight: 400;
	font-size: var(--aox-fs-16px);
	line-height: 1.375;
	color: black;
	}
ol li::before {
	content: counter(step)".";
	position: absolute;
	top: 0.25em;
	left: 0;
	font-size: 0.75em;
	color: #e73040;
	}

.t_list li {
	position: relative;
	padding-left: 10px;
	}
.t_list li::before {
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	display: block;
	height: 3px;
	width: 3px;
	border-radius: 50%;
	background: currentColor;
	}

nav ul,
nav ul li {
	padding-left: 0;
	}
nav ul li::before {
	content: none;
	}
nav li + li {
	margin-top: 0;
	}

blockquote {
	padding: 30px;
	border-left: solid 3px #e73040;
	border-radius: 4px;
	background: #fafafa;
	}
blockquote p {
	font-weight: lighter;
	font-size: 2rem;
	color: #808080;
	}
blockquote cite {
	display: block;
	margin-top: 20px;
	font-weight: bolder;
	font-size: var(--aox-fs-16px);
	color: #808080;
	}
blockquote cite::before {
	content: "\2014 \00A0";
	}

table th,
table td {
	padding: 10px 20px;
	border: solid 1px #e5e5e5;
	vertical-align: top;
	}

code {
	padding: 0 2px;
	font-family: "Courier New", Monospace;
	font-size: 100%;
	color: #808080;
	background: #f2f2f2;
	}

img {
	display: block;
	max-width: 100%;
	}

/***/

.ctn_image,
.ctn_background {
	position: relative;
	overflow: hidden;
	display: block;
	}
.ctn_image img,
.ctn_background img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	}

.ctn_image .ctn_mask {
	position: relative;
	overflow: hidden;
	height: 0;
	width: 100%;
	transition: all cubic-bezier(0.65, 0, 0.35, 1) 800ms;
	}
.ctn_image .ctn_mask > * {
	transform: translateY(-50px);
	transition: all cubic-bezier(0.65, 0, 0.35, 1) 800ms;
	}
.ctn_image.is_active .ctn_mask {
	height: 100%;
	}
.ctn_image.is_active .ctn_mask > * {
	transform: translateY(0);
	}

/***/

.ctn_video {
	position: relative;
	overflow: hidden;
	display: block;
	}
.ctn_video a {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	}
.ctn_video a::before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: block;
	height: var(--aox-60px);
	width: var(--aox-60px);
	transform: translate(-50%, -50%);
	background: url("../../include/images/i_play.svg") no-repeat center center / 100% 100% transparent;
	transition: all ease 400ms;
	}
.ctn_video img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: all ease 400ms;
	}

.ctn_video:hover img,
.ctn_video:focus img {
	transform: scale(1.1);
	}

.ctn_video .ctn_mask {
	position: relative;
	overflow: hidden;
	height: 0;
	width: 100%;
	transition: all cubic-bezier(0.65, 0, 0.35, 1) 800ms;
	}
.ctn_video .ctn_mask > * {
	transform: translateY(-50px);
	transition: all cubic-bezier(0.65, 0, 0.35, 1) 800ms;
	}
.ctn_video.is_active .ctn_mask {
	height: 100%;
	}
.ctn_video.is_active .ctn_mask > * {
	transform: translateY(0);
	}

/* ======================================== */
/* Section
/* ======================================== */

.obj_section {
	width: 100%;
	}
.obj_section > .ctn_section {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	}

/* ======================================== */
/* Module Cookies
/* ======================================== */

:root {
	--aox-mc-brand-main-color: 0, 102, 102;
	--aox-mc-error-color: 219, 44, 44;
	}

/* ------------
    POPINS
------------ */

.pluginCookiesYTAOX.obj_alert_video {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	}