@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(../../js/boxsizing.htc);
	/*
		If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

/*Scrollbar CSS*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    /*background: #88c932;*/
    background: #a50505;
}

/* .scrollbar-wrap {
    position: fixed;
    right: 0px;
    width: 6px;
    height: 100vh;
    background: transparent;
    z-index: 1010;
}

.scrollbar {
    position: absolute;
    right: 0px;
    width: 6px;
    height: 10vh;
    background: #ed1c24;
} */

/*font*/
@font-face
{
    font-family: 'montserrat';
    src: url('../../fonts/Montserrat-Regular.ttf');
}

@font-face
{
    font-family: 'quicksand';
    src: url('../../fonts/Quicksand-Regular.ttf');
}

@font-face
{
    font-family: 'myriad-pro';
    src: url('../../fonts/MyriadPro-Regular.otf');
}

@font-face
{
    font-family: 'segoeui';
    src: url('../../fonts/segoeui.ttf');
}

@font-face
{
    font-family: 'segoeui-semi-light';
    src: url('../../fonts/segoeuisl.ttf');
}

@font-face
{
    font-family: 'segoeui-light';
    src: url('../../fonts/segoeuil.ttf');
}

@font-face
{
    font-family: 'segoeui-bold';
    src: url('../../fonts/segoeuib.ttf');
}


/* Global */
html, body {
	padding: 0px;
	margin: 0px;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	/*color: inherit;*/
	text-decoration: none;
}

a:focus {
	outline: 0;
}

/* Presets */
.none { /* this class is used to hid the skip to content link at the beginning of the document for accessibility */
	display: none;
}

.clear {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.aligncenter {
	text-align: center;
}

.alignleft {
	text-align: left;
}

.alignright {
	text-align: right;
}

input:focus {
	outline: 0px;
}

.font-montserrat {
	font-family: montserrat;
}

.font-quicksand {
	font-family: quicksand;
}

.font-myriad-pro {
	font-family: myriad-pro;
}

.font-segoeui {
	font-family: segoeui;
}

.font-segoeui-semi-light {
	font-family: segoeui-semi-light;
}

.font-segoeui-light {
	font-family: segoeui-light;
}

.font-segoeui-bold {
	font-family: segoeui-bold;
}


.color-red-chia {
    color: #e60c14;
}

.background-red-chia {
    color: #e60c14;
}

.color1 {
	color: #5c5c5c;
}

.color2 {
	color: #074995;
}

.background1 {
	color: #5c5c5c;
}

.background2 {
	color: #074995;
}




/*Pagination*/
.pagination {
	position: relative;
	display: block;
	font-size: 0px;
	padding: 0px;
	text-align: center;
	font-family: myriad;
}

.pagination .mid {
	text-align: center;
}

.pagination .mid > span {
	top: 2px;
	position: relative;
	display: block;
}

.pagination .mid > div {
	top: 1px;
	position: relative;
	display: block;
}

.pagination-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	margin-right: 10px;
}

.pagination-item:last-child {
	margin-right: 0px;
}

.pagination-item * {
	position: relative;
	display: block;
	/*margin-right: 10px;*/
	/*min-width: 24px;*/
	/*padding: 0px 5px;*/
	/*height: 24px;*/
	border-bottom: 1px solid transparent;
	padding: 0px 5px;
	-webkit-transition: border 0.3s, color 0.3s;
	-moz-transition: border 0.3s, color 0.3s;
	-ms-transition: border 0.3s, color 0.3s;
	transition: border 0.3s, color 0.3s;
}

.pagination-item a {
	color: #535353;
}

.pagination-current * {
	/*border: 1px solid #0697db;*/
	border-bottom: 1px solid #a50505;
	color: #a50505;
}

.pagination-item:hover * {
	/*border: 1px solid #0697db;*/
	border-bottom: 1px solid #a50505;
	color: #a50505;
	-webkit-transition: border 0.3s, color 0.3s;
	-moz-transition: border 0.3s, color 0.3s;
	-ms-transition: border 0.3s, color 0.3s;
	transition: border 0.3s, color 0.3s;
}


/* ----- Master CSS ----- */

.line80 {
	position: fixed;
	top: calc(90vh + 100px);
	left: 0px;
	width: 0px;
	height: 0px;
}

.line60 {
	position: fixed;
	top: 60vh;
	left: 0px;
	width: 0px;
	height: 0px;
}

.line-text {
	position: fixed;
    display: block;
	top: 0vh;
	left: 0px;
    z-index: 10000;
    font-size: 30px;
}

.top-anim-text {
    position: absolute;
    display: block;
    font-size: 25px;
    left: 0px;
    top: 0px;
}

.window-width {
	position: fixed;
	/* height: 0px; */
	width: 100vw;
	top: 0px;
	left: 0px;
	font-size: 20px;
	color: #fff;
	z-index: 999;
}

.window-height {
	position: fixed;
	/* height: 0px; */
	height: 100vh;
	top: 0px;
	left: 0px;
	font-size: 20px;
	color: #fff;
	z-index: 999;
}

ul {
    margin-top: 0px !important;
}

.blur-container {
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0px;
	top: 0px;
	background: rgba(255, 255, 255, 0.9);
	z-index: 100;
	line-height: 24px;
}

.message {
	position: relative;
	display: table;
	margin: auto;
	width: calc(100% - 40px);
	padding: 30px;
	max-width: 500px;
	text-align: center;
	font-size: 16px;
	border: 1px solid #d2d2d2;
	background: #fff;
}

.message-close {
	position: absolute;
	right: -35px;
	top: 0px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.message-close:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: #535353;
	left: 0px;
	top: 11px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.message-close:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: #535353;
	left: 0px;
	top: 11px;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.container {
	position: relative;
	display: block;
	min-height: 500px;
	width: 100%;
	color: #131922;
    background: #fff;
    max-width: unset;
    padding: 0px;
    overflow: hidden;
}

.mid {
	position: relative;
	width: 100%;
	height: 100%;

	justify-content: center;
	display: flex;
	align-items: center;
}

.header-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 145px;
    z-index: 1000;
}

.header-logo {
    position: absolute;
    display: block;
    height: 100%;
    width: 50%;
    /* max-width: 371px; */
    max-width: 296px;
    left: 80px;
    top: 0px;
}

.header-container .header-logo:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url('../../img/front/chia_jiann_logo_white.png') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    opacity: 0;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.header-container.active .header-logo:before {
    opacity: 0;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.header-container .header-logo:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url('../../img/front/chia_jiann_logo.png') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.header-container.active .header-logo:after {
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.header-menu-group {
    position: absolute;
    display: block;
    right: 80px;
    font-size: 0px;
    top: calc((100% - 60px) / 2);
}

.header-menu-group > * {
    font-size: 18px;
}

.header-lang-group {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 0px;
    margin-right: 30px;
    line-height: 50px;
}

.header-lang-group > * {
    font-size: 14px;
}

.header-lang-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #131922;
    text-decoration: underline;
    text-decoration-color: transparent;

    -webkit-transition: color 0.6s, text-decoration 0.6s;
    -moz-transition: color 0.6s, text-decoration 0.6s;
    -ms-transition: color 0.6s, text-decoration 0.6s;
    transition: color 0.6s, text-decoration 0.6s;
}

.header-lang-item:hover {
    color: #ed1c24 !important;
    text-decoration: underline;
    text-decoration-color: #ed1c24;

    -webkit-transition: color 0.6s, text-decoration 0.6s;
    -moz-transition: color 0.6s, text-decoration 0.6s;
    -ms-transition: color 0.6s, text-decoration 0.6s;
    transition: color 0.6s, text-decoration 0.6s;
}

.header-lang-item.active {
    color: #ed1c24 !important;
    text-decoration: underline !important;
    text-decoration-color: #ed1c24 !important;
}

.header-container.active .header-lang-item {
    color: #131922;
}

.header-lang-item:first-child {
    margin-right: 12px;
    padding-right: 12px;
}

.header-lang-item:last-child {
    font-size: 11px;
}

.header-lang-item:first-child:after {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 14px;
    background: #131922;
    right: 0px;
    top: calc((50px - 14px) / 2);

    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    -ms-transition: background 0.6s;
    transition: background 0.6s;
}

.header-container.active .header-lang-item:first-child:after {
    background: #131922;

    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    -ms-transition: background 0.6s;
    transition: background 0.6s;
}

.header-menu-switch {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 50px;
    cursor: pointer;
    padding-top: calc((50px - 13px) / 2);
    border-radius: 50%;
    overflow: hidden;
    border-top: 1px solid rgba(20, 26, 35, 0.5);
    border-right: 1px solid rgba(20, 26, 35, 0.5);
    border-bottom: 1px solid rgba(20, 26, 35, 0.5);
    border-left: 1px solid rgba(20, 26, 35, 0.5);

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: -webkit-transform 0.6s, border 0.6s;
    -moz-transition: -moz-transform 0.6s, border 0.6s;
    -ms-transition: -ms-transform 0.6s, border 0.6s;
    transition: transform 0.6s, border 0.6s;
}

.header-menu-switch.active {
    border-top: 1px solid rgba(20, 26, 35, 0.5);
    border-right: 1px solid rgba(20, 26, 35, 0.5);
    border-bottom: 1px solid rgba(20, 26, 35, 0.5);
    border-left: 1px solid rgba(20, 26, 35, 0.5);

	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);

	-webkit-transition: -webkit-transform 0.6s, border 0.6s;
	-moz-transition: -moz-transform 0.6s, border 0.6s;
	-ms-transition: -ms-transform 0.6s, border 0.6s;
	transition: transform 0.6s, border 0.6s;
}

.header-menu-line {
	position: absolute;
	display: block;
	height: 1px;
	width: 25px;
	background: #131922;
    right: calc((100% - 25px) / 2);

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch.active .header-menu-line {
    background: #131922;

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch .line1 {
	top: 19px;

	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);

	-webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch.active .line1 {
	top: 23px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch .line2 {
	opacity: 1;
    top: 24px;

	-webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch.active .line2 {
    opacity: 0;

	-webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch .line3 {
    top: 29px;
    width: 19px;
    /* left: calc((100% - 31px) / 2); */

	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);

	-webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch:hover .line3 {
    width: 25px;

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-switch.active .line3 {
	top: 23px;
    width: 25px;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);

	-webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.header-menu-line:last-child {
	margin-bottom: 0px;
}


.not-active.headroom--pinned {
    opacity: 1 !important;
	top: 0px !important;
	background: #131922;

    -webkit-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -moz-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -ms-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
}

.not-active.headroom--pinned .header-menu-switch {
    border: 1px solid  rgba(20, 26, 35, 0.5);
}

.not-active.headroom--pinned .header-menu-line {
    background: #131922;

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.not-active.headroom--pinned .header-lang-item {
    color: #131922;
}

.not-active.headroom--pinned .header-lang-item:first-child:after {
    background: #131922;
}

.not-active.headroom--pinned .header-logo:before {
    opacity: 0;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.not-active.headroom--pinned .header-logo:after {
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}


.not-active.headroom--unpinned {
    opacity: 0 !important;
	top: -90px !important;

    -webkit-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -moz-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -ms-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
}

.not-active.nav-opened .headroom--unpinned {
	opacity: 1 !important;
	top: 0px !important;
	background: #fff !important;

	-webkit-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -moz-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -ms-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
}

.not-active.headroom--top {
	opacity: 1 !important;
	top: 0px !important;
	background: transparent !important;

    -webkit-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -moz-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -ms-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
}

.not-active.headroom--top .header-menu-switch {
    border: 1px solid  rgba(20, 26, 35, 0.5);
}

.not-active.headroom--top .header-menu-line {
    background: #131922;

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.not-active.headroom--top .header-lang-item {
    color: #131922;
}

.not-active.headroom--top .header-lang-item:first-child:after {
    background: #131922;
}

.not-active.headroom--top .header-logo:before {
    opacity: 0;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.not-active.headroom--top .header-logo:after {
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.active.headroom--top {
	opacity: 1 !important;
	top: 0px !important;
	background: transparent !important;

    -webkit-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -moz-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -ms-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
}

.active.headroom--top .header-menu-switch {
    border: 1px solid  rgba(20, 26, 35, 0.5);
}

.active.headroom--top .header-menu-line {
    background: #131922;

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.active.headroom--top .header-lang-item {
    color: #131922;
}

.active.headroom--top .header-lang-item:first-child:after {
    background: #131922;
}

.active.headroom--top .header-logo:before {
    opacity: 0;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.active.headroom--top .header-logo:after {
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}



.not-active.headroom--not-top {
	background: transparent;
	/* background: #fff; */

    -webkit-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -moz-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    -ms-transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
    transition: opacity 0.6s, top 0.6s, background 0.6s, left 0.6s;
}

.not-active.headroom--not-top .header-menu-switch {
    border: 1px solid  rgba(20, 26, 35, 0.5);
}

.not-active.headroom--not-top .header-menu-line {
    background: #131922;

    -webkit-transition: -webkit-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-moz-transition: -moz-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	-ms-transition: -ms-transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
	transition: transform 0.6s, top 0.6s, opacity 0.6s, background 0.6s, width 0.6s;
}

.not-active.headroom--not-top .header-lang-item {
    color: #131922;
}

.not-active.headroom--not-top .header-lang-item:first-child:after {
    background: #131922;
}

.not-active.headroom--not-top .header-logo:before {
    opacity: 0;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.not-active.headroom--not-top .header-logo:after {
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}



.nav-opened .headroom--not-top {
	/* background: #fff !important; */
    background: transparent !important;
	/* background: #fff; */

	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
	-ms-transition: background 0.6s;
	transition: background 0.6s;
}



.content {
    position: relative;
    display: block;
    min-height: 300px;
    width: 100%;
    overflow: hidden;
}


.footer-container {
    position: relative;
    display: block;
    width: 100%;
    padding: 95px 80px;
    background: #e5f1eb;
    color: #9d9d9d;
    text-align: center;
    font-size: 0px;
}

.footer-container > * {
    font-size: 14px;
}

.footer-left {
    position: absolute;
    display: block;
    left: 100px;
    top: 95px;
    width: 365px;
    margin-right: 193px;
    /* height: calc(100% - (95px * 2)); */
}

.footer-left:after {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    background: #bbc6c3;
    top: 0px;
    right: -95px;
}

.footer-logo {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 35px;
}

.footer-serti-group {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0px;
}

.footer-serti-group > * {
    font-size: 16px;
}

.footer-serti {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.footer-serti.fsc-logo {
    width: 56.71%;
    margin-right: 6%;
}

.footer-serti.svlk-logo {
    width: 35.89%;
}

.footer-right {
    position: relative;
    display: block;
    padding: 20px 0px 25px 0px;
    margin-left: calc(365px + 193px);
    width: calc(100% - (365px + 193px));
    text-align: left;
    letter-spacing: 1px;
}

.footer-menu-group {
    position: relative;
    display: block;
    font-size: 0px;
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #bbc6c3;
}

.footer-menu-group > * {
    font-size: 14px;
    line-height: 14px;
}

.footer-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: calc((100% - (90px + 100px + 95px + 55px + 55px + 75px)) / 10);
    margin-left: calc((100% - (90px + 100px + 95px + 55px + 55px + 75px)) / 10);
    color: #131922;

    -webkit-transition: color 0.6s;
    -moz-transition: color 0.6s;
    -ms-transition: color 0.6s;
    transition: color 0.6s;
}

.footer-link:hover {
    color: #ed1c24;

    -webkit-transition: color 0.6s;
    -moz-transition: color 0.6s;
    -ms-transition: color 0.6s;
    transition: color 0.6s;
}

.footer-link:first-child {
    margin-left: 0px;
}

.footer-link:last-child {
    margin-right: 0px;
}

.footer-supp {
    position: relative;
    display: block;
    font-size: 0px;
    color: #131922;
}

.footer-supp > * {
    font-size: 14px;
}

.footer-supp-socmed {
    position: relative;
    display: inline-block;
    vertical-align: top;
    /* margin-left: 60px; */
    margin-left: calc((100% - (336px + (85px * 4))) / 4);
    line-height: 14px;
    color: #131922 !important;
}

.footer-supp-socmed:first-child {
    margin-left: 0px;
}

.footer-supp-socmed:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 14px;
    margin-right: 5px;
}

.footer-supp-socmed.linkedin:before {
    width: 14px;
    background: url('../../img/front/linkedin_icon.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-supp-socmed.instagram:before {
    width: 14px;
    background: url('../../img/front/instagram_icon.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-supp-socmed.youtube:before {
    width: 14px;
    background: url('../../img/front/youtube_icon.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-supp-socmed.facebook:before {
    width: 14px;
    background: url('../../img/front/facebook_icon.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.footer-supp-copy {
    position: absolute;
    display: block;
    right: 0px;
    top: 0px;
    line-height: 14px;
}


.menu-container {
    position: fixed;
    /* display: block; */
    width: 100%;
    height: 100vh;
    background: #fff;
    left: 0px;
    top: 0px;
    z-index: 999;
    font-size: 0px;

    display: none;
}

.menu-container > * {
    font-size: 14px;
}

.menu-side {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    height: 100vh;
    /* padding: 145px 80px 0px; */
    padding: 0px 80px 0px;
}

.menu-side:first-child .mid {
    text-align: left;
    justify-content: left;
}

.menu-link-group {
    position: relative;
    display: block;
}

.menu-item {
    position: relative;
    display: table;
    font-size: 32px;
    line-height: 30px;
    padding-bottom: 5px;
    letter-spacing: 1px;
    overflow: hidden;
    /* border-bottom: 1px solid #131922; */
    /* color: #a6a7a9; */
    color: #131922;
    margin-bottom: 35px;

    -webkit-transition: color 0.6s;
    -moz-transition: color 0.6s;
    -ms-transition: color 0.6s;
    transition: color 0.6s;
}

.menu-item-unhover {
    color: #a6a7a9 !important;

    -webkit-transition: color 0.6s;
    -moz-transition: color 0.6s;
    -ms-transition: color 0.6s;
    transition: color 0.6s;
}

.menu-item:last-child {
    margin-bottom: 0px;
}

.menu-item:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #131922;
    left: -100%;
    bottom: 0px;

    -webkit-transition: left 0.6s;
    -moz-transition: left 0.6s;
    -ms-transition: left 0.6s;
    transition: left 0.6s;
}

.menu-item:after {
    content: '';
    position: absolute;
    display: block;
    width: 300%;
    height: 1px;
    /* background: #a6a7a9; */
    background: #131922;
    left: -300%;
    bottom: 0px;

    -webkit-transition: left 0.6s;
    -moz-transition: left 0.6s;
    -ms-transition: left 0.6s;
    transition: left 0.6s;
}

.menu-item:hover {
    color: #131922;

    -webkit-transition: color 0.6s;
    -moz-transition: color 0.6s;
    -ms-transition: color 0.6s;
    transition: color 0.6s;
}

.menu-item:hover:before {
    left: 0%;

    -webkit-transition: 0.4s left 0s;
    -moz-transition: 0.4s left 0s;
    -ms-transition: 0.4s left 0s;
    transition: 0.4s left 0s;
}

.menu-item:hover:after {
    left: 100%;

    -webkit-transition: 1.5s left 0s;
    -moz-transition: 1.5s left 0s;
    -ms-transition: 1.5s left 0s;
    transition: 1.5s left 0s;
}

.menu-item.active {
    color: #131922 !important;
}

.menu-copy {
    position: absolute;
    display: block;
    font-size: 14px;
    width: 100%;
    padding-left: 80px;
    left: 0px;
    bottom: 65px;
}

.menu-copy.mob {
    display: none;
}

.menu-side.image {
    background: #e5f1eb;
    padding: 0px 80px;
}

.menu-image {
    position: relative;
    display: block;
    max-height: 450px;
}

.menu-image-hover {
    position: relative;
    display: block;
    width: 100%;
}

.menu-image-hover img {
    position: absolute;
    display: block;
    margin: 0px auto;
    top: 0px;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    max-height: 450px;
}

.menu-image-hover img.active {
    opacity: 1;
}

.menu-image-hover img:first-child {
    position: relative;
}

.menu-image-hover img.onhover {
    opacity: 1;

    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.menu-image-hover img.unhover {
    opacity: 0;

    -webkit-transition: 0.6s opacity 0.1s;
    -moz-transition: 0.6s opacity 0.1s;
    -ms-transition: 0.6s opacity 0.1s;
    transition: 0.6s opacity 0.1s;
}

.menu-side.image .menu-copy {
    padding-left: 0px;
    text-align: center;
    font-size: 0px;
}

.menu-side.image .menu-copy > * {
    font-size: 14px;
}

.menu-socmed {
    position: relative;
    display: inline-block;
    vertical-align: top;
    /* margin: 0px 32px; */
    margin: 0px 20px;
    line-height: 14px;
    letter-spacing: 1px;
    color: #131922 !important;
}

.menu-socmed:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 14px;
    margin-right: 7px;
}

.menu-socmed.linkedin:before {
    width: 14px;
    background: url('../../img/front/linkedin_icon.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.menu-socmed.instagram:before {
    width: 14px;
    background: url('../../img/front/instagram_icon.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.menu-socmed.youtube:before {
    width: 14px;
    background: url('../../img/front/youtube_icon.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.menu-socmed.facebook:before {
    width: 14px;
    background: url('../../img/front/facebook_icon.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
}

.menu-hide {
    top: 200px;
    opacity: 0;
}

.wa-icon {
    position: fixed;
    right: 80px;
    bottom: 65px;
    display: block;
    width: 48px;
    height: 48px;
    background: url('../../img/front/whatsapp_icon.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
    z-index: 10;
}

#mCSB_1_container > .c-scrollbar {
    display: none !important;
}



.top-anim {
    top: 0px;
    opacity: 0;
}

@media screen and (min-width : 1025px) {
    .top-show {
        top: 0px !important;
        opacity: 1;

        -webkit-transition: top 1s linear, opacity 2s, left 1.2s, right 1.2s;
        -moz-transition: top 1s linear, opacity 2s, left 1.2s, right 1.2s;
        -ms-transition: top 1s linear, opacity 2s, left 1.2s, right 1.2s;
        transition: top 1s linear, opacity 2s, left 1.2s, right 1.2s;
    }

    .top-show.left {
        left: 0px !important;
    }

    .top-show.right {
        right: 0px !important;
    }
}

.fade-anim {
    top: 0px;
    opacity: 0;
}

.fade-show {
    opacity: 1 !important;

    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    transition: opacity 2s;
}

.auto-fade {
    top: 150px;
    opacity: 0;
}

.auto-left {
    left: -50%;
    opacity: 0;
}

.cursor {
    width: 50px;
    height: 50px;
    border: 1px solid #131922;
    border-radius: 50%;
}

/* Desktops and laptops */
@media screen and (min-width : 1224px) {

}

@media screen and (max-width: 1400px) {
    .menu-item {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .header-container {
        height: 120px;
    }

    .header-logo {
        left: 50px;
    }

    .header-menu-group {
        right: 50px;
    }

    .wa-icon {
        right: 50px;
    }

    .footer-container {
        padding: 50px;
    }

    .footer-left {
        left: 50px;
        top: 50px;
        /* height: calc(100% - (50px * 2)); */
    }

    .footer-left:after {
        right: -50px;
    }

    .footer-right {
        margin-left: calc(365px + 100px);
        width: calc(100% - (365px + 100px));
    }

    .menu-side {
        padding: 0px 50px 0px;
    }
}

@media screen and (max-width: 1200px) {
    .footer-left {
        position: relative;
        display: block;
        margin-bottom: 50px;
        left: 0px;
        top: 0px;
        /* height: 50px; */
    }

    .footer-left:after {
        display: none;
    }

    .footer-right {
        width: 100%;
        margin-left: 0px;
    }

    .footer-menu-group {
        /* padding-bottom: 15px; */
        padding-bottom: 40px;
    }

    .footer-supp-socmed {
        margin-left: calc((100% - (336px + (85px * 4))) / 5);
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .footer-left {
        margin-bottom: 30px;
        width: 300px;
    }

    .menu-socmed {
        margin: 0px 20px 20px;
    }

    .top-anim {
        top: 150px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .header-left {
        left: 30px;
    }

    .wa-icon {
        right: 30px;
    }

    .header-menu-group {
        right: 30px;
    }

    .menu-side {
        display: block;
        width: 100%;
        padding-bottom: 50px;
        padding-left: 20px;
    }

    .menu-side.image {
        display: none;
    }

    .menu-side:first-child .mid {
        text-align: left;
        justify-content: left;
    }

    .menu-item {
        text-align: left;
        /* display: block; */
        /* width: 100%; */
        margin: 0px 0px 30px;
    }

    .menu-copy {
        display: none;
        padding: 0px;
        text-align: left;
    }

    .menu-copy.mob {
        display: block;
        bottom: 50px;
    }

    .footer-left {
        position: relative;
        display: block;
        /* width: calc(100% - 150px); */
        max-width: 296px;
        /* height: 30px; */
        left: 0px;
        top: 0px;
        margin: 0px 0px 30px;
    }

    .footer-right {
        /* text-align: center; */
        width: 100%;
        margin: 0px auto;
    }

    .footer-menu-group {
        padding-bottom: 10px;
        margin-bottom: 30px;
        /* text-align: center; */
    }

    .footer-link {
        margin-bottom: 20px;
    }

    .footer-supp {
        /* text-align: center; */
    }

    .footer-supp-socmed {
        margin-left: 0px;
        /* margin-left: calc((100% - ((65px * 4))) / 11) !important; */
        margin-right: calc((100% - ((65px * 4))) / 6) !important;
        margin-bottom: 20px;
    }

    .footer-supp-copy {
        padding-top: 30px;
        position: relative;
    }
}

@media screen and (max-width : 500px) {
    .header-container {
        height: 90px;
    }

    .header-logo {
        left: 20px;
    }

    .header-menu-group {
        right: 20px;
        top: calc((100% - 40px) / 2)
    }

    .header-lang-group {
        line-height: 40px;
        margin-right: 20px;
    }

    .header-lang-item:first-child:after {
        top: calc((40px - 14px) / 2);
    }

    .header-menu-switch {
        width: 40px;
        height: 40px;
        padding-top: calc((40px - 13px) / 2);
    }

    .header-menu-switch .line1 {
        top: 14px;
    }

    .header-menu-switch.active .line1 {
        top: 18px;
    }

    .header-menu-switch .line2 {
        top: 19px;
    }

    .header-menu-switch .line3 {
        top: 24px;
        width: 21px;
    }

    .header-menu-switch.active .line3 {
        top: 18px;
        width: 21px !important;
    }

    .header-menu-switch:hover .line3 {
        width: 15px;
    }

    .header-menu-line {
        width: 21px;
        right: calc((100% - 21px) / 2)
    }

    .footer-container {
        padding: 40px 20px;
    }

    .footer-left {
        margin: 0px 0px 20px;
    }

    .footer-link {
        /* margin-left: calc((100% - (78px + 85px + 80px)) / 7) !important; */
        margin-right: calc((100% - (78px + 85px + 80px)) / 3) !important;
    }

    .footer-link:first-child {
        margin-left: 0px !important;
    }

    .footer-link:nth-child(3) {
        margin-right: 0px !important;
    }

    .footer-link:nth-child(4) {
        margin-left: 0px !important;
    }

    .footer-link:last-child {
        margin-right: 0px !important;
    }

    .menu-item {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .footer-supp-copy {
        padding-top: 20px;
    }

    .footer-supp-socmed {
        /* margin-left: calc((100% - ((65px * 4))) / 7) !important; */
        margin-left: 0px;
        margin-right: calc((100% - ((65px * 4))) / 4) !important;
    }

    .wa-icon {
        right: 20px;
        bottom: 20px;
    }
}
