@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: 5px;
    height: 5px;
}

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

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

/*font*/
@font-face
{
    font-family: 'gotham';
    src: url('../../fonts/Gotham-Bold.ttf');
}

@font-face
{
    font-family: 'roboto';
    src: url('../../fonts/Roboto-Regular.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-family1 {
	font-family: raleway;
}


.color1 {
	color: #5c5c5c;
}

.color2 {
	color: #074995;
}

.background1 {
	color: #5c5c5c;
}

.background2 {
	color: #074995;
}



.blur-container {
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	color: #0092dd;
	font-size: 16px;
	line-height: 24px;
	font-family: roboto;
}

.blur-content {
	position: relative;
	display: table;
	width: calc(100% - 50px);
	margin: auto;
	border: 1px solid #0092dd;
	padding: 30px 20px;
	text-align: center;
	max-width: 400px;
}

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

.blur-close:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #0092dd;
	left: 0px;
	top: 12px;

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

.blur-close:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #0092dd;
	left: 0px;
	top: 12px;

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



.page-item-error-container {
	position: relative;
	display: block;
}

.page-item-error-item {
	position: relative;
	display: block;
	margin-bottom: 10px;
	padding: 7px 15px;
	background: #ff0000;
	color: #fff;
	font-size: 14px;
	font-family: roboto;
}

.page-item-error-item:last-child {
	margin-bottom: 30px;
}


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

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

.pagination-item > * {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: transparent;
	line-height: 33px;
	text-align: center;
	color: #222;
	
	-webkit-transition: color 0.4s, background 0.4s;
	-moz-transition: color 0.4s, background 0.4s;
	-ms-transition: color 0.4s, background 0.4s;
	transition: color 0.4s, background 0.4s;
}

.pagination-item.active > * {
	background: #0092dd !important;
	color: #fff !important;
}

.pagination-item > *:hover {
	background: #0092dd;
	color: #fff;

	-webkit-transition: color 0.4s, background 0.4s;
	-moz-transition: color 0.4s, background 0.4s;
	-ms-transition: color 0.4s, background 0.4s;
	transition: color 0.4s, background 0.4s;
}

.prev-page {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 30px;
	margin-right: 25px;
	
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.prev-page > * {
	position: absolute;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: url('../../img/front/article/right-arrow-icon.png') no-repeat;
	background-position: 50% !important;
	background-size: 15px 11px !important;
	border-radius: 50%;
}

.next-page {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 30px;
	margin-right: 0px;
}

.next-page > * {
	position: absolute;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: url('../../img/front/article/right-arrow-icon.png') no-repeat;
	background-position: 50% !important;
	background-size: 15px 11px !important;
	border-radius: 50%;
}



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

.window-width {
	width: 100vw;
	height: 0px;
	left: 0px;
	top: 0px;
	position: absolute;
	display: block;
}

/* 
	Opening CSS
 */

.opening-container {
	position: fixed;
	display: block;
	/* display: none; */
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: #0092dd url('../../img/front/loading/center-image.png') no-repeat;
	background-position: 50% !important;
	color: #fff;
	z-index: 10;
}

.opening-container:before {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 196px;
    bottom: 0px;
    left: -200px;
    background: url('../../img/front/loading/corner-image.png') no-repeat;
    /* background-position: 50% !important; */
    background-position: -558px 0px;
    background-size: 558px 196px !important;
    /* background-size: contain !important; */
    z-index: 1;
    
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    
    -webkit-animation: openingbefore 2.8s linear infinite;
    -moz-animation: openingbefore 2.8s linear infinite;
    -ms-animation: openingbefore 2.8s linear infinite;
    animation: openingbefore 2.8s linear infinite;
}

@keyframes openingbefore {
    0% { 
        left: -200px;
        background-position: -558px 0px;
    }
    10% { 
        left: -200px;
        background-position: -558px 0px;
    }
    90% { 
        left: 558px;
        background-position: 200px 0px;
    }
	100% { 
        left: 558px;
        background-position: 200px 0px;
    }
}

.opening-container:after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 196px;
    top: 0px;
    right: -200px;
    background: url('../../img/front/loading/corner-image.png') no-repeat;
    /* background-position: 50% !important; */
    /* background-size: contain !important; */
    background-position: -558px 0px;
    background-size: 558px 196px !important;
    
    -webkit-animation: openingafter 2.8s linear infinite;
    -moz-animation: openingafter 2.8s linear infinite;
    -ms-animation: openingafter 2.8s linear infinite;
    animation: openingafter 2.8s linear infinite;
}

@keyframes openingafter {
    0% { 
        right: -200px;
        background-position: -558px 0px;
    }
    10% { 
        right: -200px;
        background-position: -558px 0px;
    }
    90% { 
        right: 558px;
        background-position: 200px 0px;
    }
	100% { 
        right: 558px;
        background-position: 200px 0px;
    }
}

.opening-percentage {
	position: relative;
	display: table;
	font-size: 48px;
	font-family: gotham;
	letter-spacing: 7px;
	font-weight: bold;
}

.opening-footer {
	position: absolute;
	display: block;
	font-size: 11px;
	font-family: roboto;
	text-align: center;
	width: 120px;
	left: calc(50% - 60px);
	bottom: 50px;
}

.opening-footer-img {
	position: relative;
	display: block;
	width: 120px;
	margin-bottom: 20px;
}

.opening-footer span {
	position: relaive;
	display: block;
	line-height: 10px;
}
	

/* Master CSS */

body {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
}

.table {
	position: relative;
	height: 100%;
	width: 100%;
	
	align-items: center;
    display: flex;
    justify-content: center;
}

.container {
	position: relative;
	display: block;
	background: #fff;
	opacity: 1;
	left: 0px;
	
	/* -webkit-transform: scale(2); */
	/* -moz-transform: scale(2); */
	/* -ms-transform: scale(2); */
	/* transform: scale(2); */
	
	/* -webkit-transition: opacity 0.4s; */
	/* -moz-transition: opacity 0.4s; */
	/* -ms-transition: opacity 0.4s; */
	/* transition: opacity 0.4s; */

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

.container.contact-active {
	left: -600px;

	height: 100vh !important;
	overflow: hidden;
	
	-webkit-transition: left 0.8s;
	-moz-transition: left 0.8s;
	-ms-transition: left 0.8s;
	transition: left 0.8s;
}

body.opened .container {
	/* opacity: 1; */
	/* -webkit-transform: scale(1); */
	/* -moz-transform: scale(1); */
	/* -ms-transform: scale(1); */
	/* transform: scale(1); */

	/* -webkit-transition: opacity 0.4s; */
	/* -moz-transition: opacity 0.4s; */
	/* -ms-transition: opacity 0.4s; */
	/* transition: opacity 0.4s; */
}

.header-container {
	position: fixed;
	display: block;
	height: 90px;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 3;
	background: transparent;

	/* -webkit-transition: right 0.8s; */
	/* -moz-transition: right 0.8s; */
	/* -ms-transition: right 0.8s; */
	/* transition: right 0.8s; */

}

.header-container.untop {
	background: #fff;

	/* -webkit-transition: right 0.8s; */
	/* -moz-transition: right 0.8s; */
	/* -ms-transition: right 0.8s; */
	/* transition: right 0.8s; */
}

.header-logo {
	position: absolute;
	display: block;
	left: 60px;
	top: 30px;
	width: 150px;
	height: 31px;
	background: url('../../img/front/indotank-logo.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;

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

.header-container.untop .header-logo {
	background: url('../../img/front/indotank-logo.png') no-repeat !important;
	background-size: contain !important;
	background-position: 50% !important;
}

.header-right-container {
	position: absolute;
	display: block;
	right: 60px;
	top: 30px;
	font-size: 0px;

	-webkit-transition: right 0.8s;
	-moz-transition: right 0.8s;
	-ms-transition: right 0.8s;
	transition: right 0.8s;
}


.container .header-container {
	left: 0px;
	
	-webkit-transition: left 0.8s, opacity 0.4s, top 0.4s, background 0.4s;
	-moz-transition: left 0.8s, opacity 0.4s, top 0.4s, background 0.4s;
	-ms-transition: left 0.8s, opacity 0.4s, top 0.4s, background 0.4s;
	transition: left 0.8s, opacity 0.4s, top 0.4s, background 0.4s;
}

.container.contact-active .header-container {
	left: -600px;
	
	-webkit-transition: left 0.8s;
	-moz-transition: left 0.8s;
	-ms-transition: left 0.8s;
	transition: left 0.8s;
}


.header-right-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-left: 30px;
}

.header-right-item:first-child {
	margin-left: 0px;
}

.header-right-item.lang {
	color: #fff;
	line-height: 30px;
	text-align: center;
	font-size: 11px;
	font-family: roboto;
	font-weight: bold;
	height: 30px;
}

.header-right-item.lang:before {
	content: '';
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	left: calc(50% - 15px);
	top: calc(50% - 15px);
	border-radius: 50%;
	background: transparent;

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

.header-right-item:hover.lang:before {
	background: #da241d;
	
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	-ms-transition: background 0.3s;
	transition: background 0.3s;
}

.header-right-item.active.lang:before {
	background: #da241d !important;
}

.header-right-item.en.lang:before {
	content: "EN";
}

.header-right-item.id.lang:before {
	content: "ID";
}


.headroom--pinned {
    /*display: block;*/
    opacity: 1 !important;
    top: 0px !important;
    -webkit-transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
}
.headroom--unpinned {
    /*display: none;*/
    opacity: 0 !important;
    top: -90px !important;
    -webkit-transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.2s, top 0.4s, background 0.4s, left 0.4s;
}



.nav-switch {
	top: 7px;
	cursor: pointer;

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

	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	-ms-transition: -ms-transform 0.4s;
	transition: transform 0.4s;
}

.nav-switch.active {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);

	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	-ms-transition: -ms-transform 0.4s;
	transition: transform 0.4s;
}

.nav-switch-line {
	position: relative;
	display: block;
	height: 2px;
	width: 24px;
	background: #fff;
	margin-bottom: 5px;
}

.nav-switch .line1 {
	top: 0px;

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

	-webkit-transition: -webkit-transform 0.4s, top 0.4s;
	-moz-transition: -moz-transform 0.4s, top 0.4s;
	-ms-transition: -ms-transform 0.4s, top 0.4s;
	transition: transform 0.4s, top 0.4s;
}

.nav-switch.active .line1 {
	top: 7px;

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

	-webkit-transition: -webkit-transform 0.4s, top 0.4s;
	-moz-transition: -moz-transform 0.4s, top 0.4s;
	-ms-transition: -ms-transform 0.4s, top 0.4s;
	transition: transform 0.4s, top 0.4s;
}

.nav-switch .line2 {
	opacity: 1;

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

.nav-switch.active .line2 {
	opacity: 0;

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

.nav-switch .line3 {
	top: 0px;

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

	-webkit-transition: -webkit-transform 0.4s, top 0.4s;
	-moz-transition: -moz-transform 0.4s, top 0.4s;
	-ms-transition: -ms-transform 0.4s, top 0.4s;
	transition: transform 0.4s, top 0.4s;
}

.nav-switch.active .line3 {
	top: -7px;

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

	-webkit-transition: -webkit-transform 0.4s, top 0.4s;
	-moz-transition: -moz-transform 0.4s, top 0.4s;
	-ms-transition: -ms-transform 0.4s, top 0.4s;
	transition: transform 0.4s, top 0.4s;
}

.nav-switch-line:last-child {
	margin-bottom: 0px;
}

.content {
	position: relative;
	display: block;
	min-height: 100vh;
}

.contact-switch {
	position: fixed;
	display: block;
	width: 42px;
	height: 42px;
	right: 60px;
	bottom: 30px;
	border-radius: 50%;
	border: 3px solid transparent;
	/* border: 3px solid #fff; */
	background: url('../../img/front/contact-us-icon.png') no-repeat;
	background-size: 36px auto !important;
	background-position: 50% !important;
	cursor: pointer;
	z-index: 1;
	opacity: 1;

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

.container.contact-active .contact-switch {
	display: none;
	opacity: 0;

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

.contact-switch:before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #fff;
	left: calc(0% - 3px);
	top: calc(0% - 3px);
	box-shadow: 0px 0px 8px #222;
}

.contact-switch:hover:before {
	/* width: 120%;
	height: 120%;
	left: calc(-10% - 3px);
	top: calc(-10% - 3px); */

	-webkit-animation: contactHover 0.3s;
    -moz-animation: contactHover 0.3s;
    -ms-animation: contactHover 0.3s;
    animation: contactHover 0.3s;
}

@keyframes contactHover {
    0% { 
        width: 100%;
		height: 100%;
		left: calc(0% - 3px);
		top: calc(0% - 3px);
    }
    33% { 
        width: 120%;
		height: 120%;
		left: calc(-10% - 3px);
		top: calc(-10% - 3px);
	}
	66% { 
        width: 86%;
		height: 86%;
		left: calc(7% - 3px);
		top: calc(7% - 3px);
    }
	100% { 
        width: 100%;
		height: 100%;
		left: calc(0% - 3px);
		top: calc(0% - 3px);
    }
}

.nav-container {
	position: fixed;
	display: none;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	background: rgba(0, 146, 221, 0.8);
	font-size: 0px;
	text-align: center;
	z-index: 2;
}

.nav-content {
	position: relative;
	display: block;
	width: calc(100% - 60px);
	/* height: 100%; */
	font-size: 0px;
	text-align: center;
}

.nav-group {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 50px);
	max-width: 380px;
	text-align: left;
}

.nav-group:first-child {
	margin-right: 50px;
}

.nav-group:last-child {
	margin-left: 50px;
}

.nav-item {
	position: relative;
	display: block;
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
	padding: 0px 0px 10px 0px;
	margin-bottom: 10px;
	letter-spacing: 4.5px;
	font-weight: bold;
	color: #fff;
	font-family: roboto;
}

.nav-item-border {
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: 0px;
	left: 0%;
	overflow: hidden;
}

.nav-item-border:before {
	content: "";
	position: absolute;
	display: block;
	width: 200%;
	height: 100%;
	background: #da241d;
	left: 100%;
	top: 0px;
	
	-webkit-transition: 0s left 0.4s;
	-moz-transition: 0s left 0.4s;
	-ms-transition: 0s left 0.4s;
	transition: 0s left 0.4s;
}

.nav-item-border:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	left: 300%;
	top: 0px;
	
	-webkit-transition: 0s left 0.4s;
	-moz-transition: 0s left 0.4s;
	-ms-transition: 0s left 0.4s;
	transition: 0s left 0.4s;
}

.nav-container.active .nav-item-border:before {
	left: -200%;

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

.nav-container.active .nav-item-border:after {
	left: 0%;

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

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

.nav-item-title {
	position: relative;
	display: table;
	cursor: pointer;
	font-size: 24px;
	letter-spacing: 4px;
	padding: 0px 0px 0px 5px;
}

.nav-item-title span {
	position: relative;
	display: block;
}

a.nav-item-title:before {
	content: "";
	position: absolute;
	display: block;
	width: 0%;
	height: 23px;
	background: #da241d;
	left: 0px;
	top: 12px;
	opacity: 0;

	-webkit-transition: width 0.4s, opacity 0.4s;
	-moz-transition: width 0.4s, opacity 0.4s;
	-ms-transition: width 0.4s, opacity 0.4s;
	transition: width 0.4s, opacity 0.4s;
}

a.nav-item-title:hover:before {
	width: 100%;
	opacity: 1;

	-webkit-transition: width 0.4s, opacity 0.4s;
	-moz-transition: width 0.4s, opacity 0.4s;
	-ms-transition: width 0.4s, opacity 0.4s;
	transition: width 0.4s, opacity 0.4s;
}


a.nav-item-title.active:before {
	width: 100% !important;
	opacity: 1 !important;
}

.nav-item-title.contact-click:before {
	content: "";
	position: absolute;
	display: block;
	width: 0%;
	height: 23px;
	background: #da241d;
	left: 0px;
	top: 12px;
	opacity: 0;

	-webkit-transition: width 0.4s, opacity 0.4s;
	-moz-transition: width 0.4s, opacity 0.4s;
	-ms-transition: width 0.4s, opacity 0.4s;
	transition: width 0.4s, opacity 0.4s;
}

.nav-item-title.contact-click:hover:before {
	width: 100%;
	opacity: 1;

	-webkit-transition: width 0.4s, opacity 0.4s;
	-moz-transition: width 0.4s, opacity 0.4s;
	-ms-transition: width 0.4s, opacity 0.4s;
	transition: width 0.4s, opacity 0.4s;
}

.nav-item-list {
	position: relative;
	display: table;
	font-size: 18px;
	padding-left: 18px;
	letter-spacing: 3px;
}

.nav-item-list:after {
	content: "•";
	position: absolute;
	display: block;
	left: 0px;
	line-height: 28px;
	top: 0px;
}

.nav-item-list:before {
	content: "";
	position: absolute;
	display: block;
	width: 0%;
	height: 18px;
	background: #da241d;
	left: 0px;
	top: 12px;
	opacity: 0;

	-webkit-transition: width 0.4s, opacity 0.4s;
	-moz-transition: width 0.4s, opacity 0.4s;
	-ms-transition: width 0.4s, opacity 0.4s;
	transition: width 0.4s, opacity 0.4s;
}

.nav-item-list span {
	position: relative;
	display: block;
}

.nav-item-list:hover:before {
	width: 100%;
	opacity: 1;
	
	-webkit-transition: width 0.4s, opacity 0.4s;
	-moz-transition: width 0.4s, opacity 0.4s;
	-ms-transition: width 0.4s, opacity 0.4s;
	transition: width 0.4s, opacity 0.4s;
}

.nav-item-list.active:before {
	width: 100% !important;
	opacity: 1 !important;
}

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

.footer-container {
	/* position: relative; */
	position: absolute;
	display: table;
	left: 60px;
	/* padding-bottom: 30px; */
	bottom: 30px;
	font-size: 11px;
	font-family: roboto;
	color: #fff;
	z-index: 2;
}

.footer-icon-group {
	position: relative;
	display: block;
	font-size: 0px;
	margin-bottom: 10px;
}

.footer-icon-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-right: 25px;
	height: 12px;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-icon-item.facebook {
	width: 7px;
	background: url('../../img/front/facebook-icon.png') no-repeat;
}

.footer-icon-item.instagram {
	width: 12px;
	background: url('../../img/front/instagram-icon.png') no-repeat;
}

.footer-icon-item.twitter {
	width: 12px;
	background: url('../../img/front/twitter-icon.png') no-repeat;
}

.footer-container span {
	position: relative;
	display: block;
}


.line80 {
	position: fixed;
	left: 0px;
	top: 75vh;
	width: 0px;
	height: 0px;
	opacity: 0;
}



.header-container.untop .header-logo {
	background: url('../../img/front/article/indotank-logo.png') no-repeat !important;
	background-size: contain !important;

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

.header-container.untop .container.menu-active .header-logo {
	background: url('../../img/front/indotank-logo.png') no-repeat !important;
	background-position: 50% !important;
}

.header-container.untop .header-right-item.lang {
    color: #222;

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

.header-container.untop .container.menu-active .header-right-item.lang {
    color: #fff;
}

.header-container.untop .header-right-item.lang:hover {
    color: #fff;
    
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    transition: color 0.3s;
}

.header-container.untop .header-right-item.lang.active {
    color: #fff !important;
}

.header-container.untop .nav-switch-line {
    background: #222;


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

.header-container.untop .nav-switch.active .nav-switch-line {
    background: #fff;


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


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

}

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

	.header-right-container {
		right: 30px;
	}

	.footer-container {
		left: 30px;
	}

	.contact-switch {
		right: 30px;
	}

	.nav-group {
		max-width: none;
	}
}

/* Mobile */
@media screen and (max-width: 768px) {
	.nav-group {
		width: calc(50% - 25px);
	}

	.nav-group:first-child {
		margin-right: 25px;
	}

	.nav-group:last-child {
		margin-left: 25px;
	}

	.nav-item-title {
		font-size: 18px;
	}

	a.nav-item-title:before {
		top: 8px;
	}

	.nav-item-list {
		font-size: 14px;
	}

	.nav-item-list:after {
		line-height: normal;
	}

	.nav-item {
		letter-spacing: 3px;
	}

	.container.contact-active {
		left: -100%;
	}

	.nav-item-list:before {
		height: 15px;
		top: 6px;
	}
}

@media screen and (max-width: 768px) and (orientation: landscape) {
	
}

@media screen and (max-width: 768px) and (orientation: portrait) {
	
}

@media screen and (max-width : 500px) {
	.header-logo {
		left: 25px;
	}

	.header-right-container {
		right: 25px;
	}

	.footer-container {
		left: 25px;
	}

	.contact-switch {
		right: 25px;
	}

	.nav-content {
		width: calc(100% - 25px);
	}

	.nav-group {
		display: block;
		margin: 0px !important;
		width: 100%;
	}

	.nav-item {
		border-bottom: 0px;
		margin-bottom: 10px;
	}

	.nav-item-border {
		height: 0px;
	}

	.nav-item-title {
		margin-bottom: 7px;
	}

	.nav-item-list {
		margin-bottom: 8px;
	}

	.nav-item-list:nth-child(3) {
		margin-bottom: 20px;
	}

	.opening-container { 
		background-size: contain !important;
	}
}