@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: #ec3137;
}

/*font*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&amp;display=swap');

.roboto {
	font-family: "Roboto", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}

.roboto-light {
	font-family: "Roboto", sans-serif;
  	font-weight: 300;
  	font-style: normal;
}

.roboto-bold {
	font-family: "Roboto", sans-serif;
  	font-weight: 700;
  	font-style: normal;
}

.roboto-italic {
	font-family: "Roboto", sans-serif;
  	font-weight: 400;
  	font-style: italic;
}

.roboto-black {
	font-family: "Roboto", sans-serif;
  	font-weight: 700;
  	font-style: normal;
}

@font-face
{
    font-family: 'denmark';
    src: url('../../fonts/films.denmark.ttf');
}
.denmark {
	font-family: "denmark", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}

.border-blue {
    border-color: #3d4094;
}

.border-red {
    border-color: #ec3137;
}

.blue {
	color: #3d4094;
}

.red {
	color: #ec3137;
}

.bg-blue {
	background: #3d4094;
}

.bg-red {
	background: #ec3137;
}

.bg-grey {
	background: #222;
}


/* 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;
}

video {
	max-width: 100%;
}


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

.pagination li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 19px;
	margin: 0px 8px;
}

.pagination li * {
	position: relative;
	display: block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	background: transparent;
	color: #222;
	border: 1px solid #222 !important;
	margin: 0px !important;
	padding: 0px !important;
	outline: 0px !important;

	-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 li:hover * {
	background: #ec3137;
	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;
}

.pagination li.active * {
	background: #ec3137 !important;
	color: #fff !important;
}

.page-item:first-child {
	display: none;
}

.page-item:last-child {
	display: none;
}

.page-item[aria-label="« Previous"] {
	font-size: 0px;
}

.page-item[aria-label="Next »"] {
	font-size: 0px;
}

.page-link[aria-label="« Previous"]:parent {
	font-size: 0px;
}

.page-link[aria-label="Next »"]:parent {
	font-size: 0px;
}


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

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

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

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

.header-container {
	position: fixed;
	display: block;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 168px;
	/* background: #222; */
	background: transparent;
	z-index: 10;
}

.header-container.active {
	opacity: 1 !important;
	top: 0px !important;
	background: #fff !important;
}




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

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


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

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

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

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

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

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

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

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



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

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

.not-active.headroom--not-top .header-logo {
	background: url('../../img/front/transcon-indonesia-logo-black-2x.png') no-repeat;

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

.not-active.headroom--not-top .header-nav-list:hover span {
	color: #ec3137;
}

.not-active.headroom--not-top .header-nav-list span {
	color: #222;
}

.not-active.headroom--not-top .header-nav-list.box {
	border: 1px solid #222;
	background: transparent;

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

.not-active.headroom--not-top .header-nav-list.box:hover {
	border: 1px solid #ec3137;
	background: #fff;

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

.not-active.headroom--not-top .header-nav-list.group .after {
	border-left: 2px solid #222;
	border-bottom: 2px solid #222;
}

.not-active.headroom--not-top .header-nav-list.group:hover:after {
	border-left: 2px solid #ec3137;
	border-bottom: 2px solid #ec3137;
}



.nav-opened .headroom--not-top {
	background: transparent !important;

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

.header-logo {
	position: absolute;
	display: block;
	left: 65px;
	top: 0px;
	height: 100%;
	width: 234px;
	background: url('../../img/front/transcon-indonesia-logo-white-2x.png') no-repeat;
	background-position: 50% !important;
	background-size: contain !important;
	z-index: 1;

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

.header-nav-container {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	font-size: 0px;
	text-align: right;
	padding-right: 65px;
	color: #fff;
}

.header-nav-list {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	line-height: 36px;
	top: calc((100% - 36px) / 2);
	margin-left: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.header-nav-list span {
	color: #fff;

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

.header-nav-list:hover span {
	color: #ec3137;

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

.header-nav-list:hover .after {
	border-left: 2px solid #ec3137 !important;
	border-bottom: 2px solid #ec3137 !important;
}

.header-nav-list.clicked span {
	color: #ec3137 !important;
}

.header-nav-list.active span {
	color: #ec3137 !important;
}

.header-nav-list.clicked .after {
	border-left: 2px solid #ec3137 !important;
	border-bottom: 2px solid #ec3137 !important;
}

.header-nav-list.active .after {
	border-left: 2px solid #ec3137 !important;
	border-bottom: 2px solid #ec3137 !important;
}

.header-nav-list:first-child {
	margin-left: 0px;
}

.header-nav-list.group .after {
	content: '';
	position: relative;
	display: inline-block;
	vertical-align: top;
	top: 11px;
	margin-left: 5px;
	cursor: pointer;
	width: 8px;
	height: 8px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;

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

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

.header-nav-list.group:hover:after {
	border-left: 2px solid #ec3137;
	border-bottom: 2px solid #ec3137;

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

.header-nav-list.group.clicked:after {
	border-left: 2px solid #ec3137 !important;
	border-bottom: 2px solid #ec3137 !important;
}

.header-nav-list.group.active:after {
	border-left: 2px solid #ec3137 !important;
	border-bottom: 2px solid #ec3137 !important;
}

.header-nav-list.box {
	border: 1px solid #fff;
	padding: 0px 10px;
	background: transparent;

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

.header-nav-list.box:hover {
	border: 1px solid #ec3137;
	background: #fff;

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

.header-nav-list.box.clicked {
	border: 1px solid #ec3137 !important;
	background: #fff !important;
}

.header-nav-list.box.client {
	margin-left: 15px;
}

.header-nav-drop {
	position: absolute;
	display: none;
	left: -15px;
	top: calc(100% + 1px);
	text-align: left;
	margin: 0px;
	background: #fff;
	border: 1px solid #dedede;
	padding: 10px 0px;
	width: 245px;
}

.header-nav-drop.lang {
	left: -1px;
	width: calc(100% + 2px);
	padding: 0px;
	/* border: 0px; */
}

.header-nav-link {
	position: relative;
	display: block;
	letter-spacing: 0.2px;
	line-height: 22px;
	border-bottom: 1px solid #dedede;
}

.header-nav-link .header-nav-drop-link {
	position: relative;
	display: block;
	padding: 10px 15px 10px 25px;
	color: #222;
	background: transparent;

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

.lang .header-nav-link .header-nav-drop-link {
	padding: 10px;
}

.header-nav-link .header-nav-drop-link:before {
	content: "•";
	position: absolute;
	display: block;
	left: 15px;
	top: 10px;
}

.header-nav-link .header-nav-drop-link.switch:after {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-left: 8px;
	width: 8px;
	height: 8px;
	border-left: 2px solid #222;
	border-bottom: 2px solid #222;
	top: 4px;

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

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

.header-nav-link.no-dot .header-nav-drop-link:before {
	display: none;
}

.header-nav-link .header-nav-drop-link:hover {
	color: #fff;
	background: #ec3137;

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

.header-nav-link .header-nav-drop-link.switch:hover:after {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;

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

.header-nav-link .header-nav-drop-link.active {
	color: #fff !important;
	background: #ec3137 !important;
}

.header-nav-link .header-nav-drop-link.switch.active:after {
	border-left: 2px solid #fff !important;
	border-bottom: 2px solid #fff !important;
}

.header-nav-link.sub .header-nav-drop-link {
	padding-left: 35px;
}

.header-nav-link.sub .header-nav-drop-link:before {
	content: "•";
	position: absolute;
	display: block;
	left: 25px;
	top: 10px;
}

.header-nav-link:last-child {
	border-bottom: 0px;
}

.header-nav-sub-group {
	position: relative;
	display: none;
	/* width: calc(100% + 30px); */
	/* left: -15px; */
	padding: 0px;
	margin: 0px;
	border-top: 1px solid #dedede;
}




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

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

.active.headroom--not-top .header-logo {
	background: url('../../img/front/transcon-indonesia-logo-black-2x.png') no-repeat;

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

.active.headroom--not-top .header-nav-list:hover span {
	color: #ec3137;
}

.active.headroom--not-top .header-nav-list span {
	color: #222;
}

.active.headroom--not-top .header-nav-list.box {
	border: 1px solid #222;
	background: transparent;

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

.active.headroom--not-top .header-nav-list.box:hover {
	border: 1px solid #ec3137;
	background: #fff;

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

.active.headroom--not-top .header-nav-list.group .after {
	border-left: 2px solid #222;
	border-bottom: 2px solid #222;
}

.active.headroom--not-top .header-nav-list.group:hover:after {
	border-left: 2px solid #ec3137;
	border-bottom: 2px solid #ec3137;
}





.content {
	/* padding-top: 200px; */
}

.footer-container {
	position: relative;
	width: 100%;
	border-top: 1px solid #222;
	margin: 0px;
	padding: 50px 0px 110px;
}

.footer-item.footer-nav:before {
	content: '';
	position: absolute;
	display: none;
	height: 100%;
	width: 1px;
	background: #909090;
	/* left: 41.666667%; */
	left: 0%;
	top: 0px;
}

.footer-left {
	padding: 0px 0px 0px 2.34%;
}

.footer-container .row {
	margin-left: 0px;
	margin-right: 0px;
}

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

.footer-connect-logo-ctn {
	line-height: 16px;
	text-transform: uppercase;
	text-align: left;
	font-size: 0px;
}

.footer-connect-logo-ctn * {
	font-size: 13px;
}

.footer-connect-logo-item {
	position: relative;
	display: inline-block;
	height: 50px;
	vertical-align: top;
}

.footer-connect-logo-item.first {
	width: 175px;
	padding-right: 15px;
}

.footer-connect-logo-item.last {
	padding-left: 15px;
	width: calc(100% - 175px);
}

.footer-connect-logo-ctn img {
	max-width: 160px;
}

.footer-connect-logo-ctn .mid {
	justify-content: left;
}

.footer-connect-logo-ctn .first:after {
	content: '';
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	background: #222;
	left: 100%;
	top: 0px;
}

.footer-item {
	/* padding: 0px 3.12%; */
	padding: 0px 30px;
	font-size: 13px;
}

.footer-item:first-child {
	padding-left: 0px;
}

.footer-item.footer-iso {
	text-align: left;
	font-size: 0px;
}

.footer-item a {
	color: #222;

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

.footer-item a:hover {
	color: #ec3137;

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

.footer-connect-item {
	position: relative;
	/* display: block; */
	margin-bottom: 30px;
}

.footer-connect-follow {
	font-size: 0px;
}

.footer-connect-follow * {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	line-height: 13px;
	font-size: 13px;
}

.footer-connect-follow *:first-child {
	width: calc(100% - 155px - 23px);
	max-width: 140px;
}

.footer-connect-follow *:last-child {
	margin-right: 0px;
	width: 155px;
}

.footer-connect-icon {
	font-size: 0px;
}

.footer-connect-icon * {
	font-size: 13px;
}

.footer-connect-icon-item.linkedin {
	width: 13px;
	height: 14px;
	background: url('../../img/front/transcon-indonesia-linkedin-icon-2x.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-connect-icon-item.facebook {
	width: 6px;
	height: 14px;
	background: url('../../img/front/transcon-indonesia-facebook-icon-2x.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-connect-icon-item.instagram {
	width: 13px;
	height: 14px;
	background: url('../../img/front/transcon-indonesia-instagram-icon-2x.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-connect-icon-item.youtube {
	width: 13px;
	height: 14px;
	background: url('../../img/front/transcon-indonesia-youtube-icon-2x.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-connect-icon-item.twitter {
	width: 14px;
	height: 13px;
	background: url('../../img/front/transcon-indonesia-twitter-icon-2x.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-connect-icon-item.x {
	width: 14px;
	height: 14px;
	background: url('../../img/front/transcon-indonesia-x-icon.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.footer-nav-item {
	padding: 0px;
}

.footer-nav-title {
	position: relative;
	display: block;
	line-height: 25px;
	text-transform: uppercase;
}

.footer-nav-link {
	position: relative;
	display: block;
	line-height: 25px;
}

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

.left-anim {
	left: 200px;
	opacity: 0;
}

.right-anim {
	right: 200px;
	opacity: 0;
}

.footer-iso-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	margin-left: 15px;
	max-height: 50px;
}

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

.page-item-error-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	background: red;
	color: #fff;
	margin-bottom: 10px;
}

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

.blur-container {
	position: fixed;
	display: block;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	z-index: 100;
	background: rgba(255, 255, 255, 0.8);
}

.blur-content {
	position: relative;
	display: block;
	width: calc(100% - 60px);
	max-width: 450px;
	/* background: #fff; */
	background: #3d4094;
	color: #fff;
	padding: 50px 20px;
	font-size: 18px;
	text-align: center;
}

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

.blur-close:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	top: 15px;
	left: 0px;
	background: #3d4094;

	-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: 2px;
	top: 15px;
	left: 0px;
	background: #3d4094;

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

.header-menu-switch {
	display: none;
}

.footer-connect.mob {
	display: none;
}

.header-mobile-drop {
	position: fixed;
	display: none;
	width: 100%;
}

.content {
	position: relative;
	display: block;
}

.wa-icon {
	position: fixed;
	display: block;
	width: 56px;
	height: 56px;
	bottom: 50px;
	right: 105px;
	z-index: 9;
}

.wa-icon.active {
	position: absolute !important;
	bottom: -50px !important;
}

.wa-icon-image {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background: url('../../img/front/whatsapp-icon-2x.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.wa-desc {
	position: absolute;
	display: block;
	width: 129px;
	padding: 25px 15px 40px;
	border-radius: 20px;
	background: #41ad4b;
	color: #fff;
	bottom: 20px;
	left: calc((129px - 56px) / 2 * -1);
	border: 5px solid #fff;
	font-size: 14px;
	line-height: 18px;
}

.wa-desc span {
	position: relative;
	display: block;
	font-size: 19px;
	line-height: 24px;
}

.wa-icon-bot {
	position: fixed;
	display: block;
	width: 0px;
	height: 0px;
	left: 0px;
	bottom: 50px;
}

.wa-close {
	position: absolute;
	display: block;
	width: 13px;
	height: 13px;
	cursor: pointer;
	top: 15px;
	right: 15px;
}

.wa-close:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	top: 6px;
	left: 0px;

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

.wa-close:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	top: 6px;
	left: 0px;

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

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

.window-height {
	position: fixed;
	display: block;
	width: 0px;
	height: 100vh;
	opacity: 0;
	left: 0px;
	top: 0px;
}


/* Desktops and laptops */
@media screen and (max-width : 1366px) {
	.header-container {
		height: 150px;
	}

	.header-logo {
		width: 210px;
	}

	.footer-iso-item {
		max-height: 40px;
	}

	.footer-item {
		font-size: 12px;
	}

	.footer-nav {
		padding-right: 0px;
	}
}

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

	.header-nav-container {
		padding-right: 40px;
	}

	.header-nav-list {
		margin-left: 20px;
	}

	.footer-container {
		padding: 50px 0px 80px;
	}

	.footer-left {
		width: 100%;
		max-width: 100%;
		flex: 100%;
		padding-left: 40px;
		padding-right: 40px;
		margin-bottom: 50px;
	}

	.footer-item.footer-iso {
		width: 100%;
		max-width: 100%;
		flex: 100%;
		text-align: center;
	}
}

/* Mobile */
@media screen and (max-width: 768px) {
	.header-menu-switch {
		position: relative;
		display: inline-block;
		vertical-align: top;
		width: 30px;
		height: 14px;
		margin-left: 20px;
		cursor: pointer;
		top: calc((100% - 14px) / 2);

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

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

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

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

	.header-menu-switch-line {
		position: relative;
		display: block;
		width: 100%;
		height: 2px;
		background: #fff;
		margin-bottom: 4px;

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

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

	.header-menu-switch .line1 {
		left: 0px;
		top: 0px;

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

		-webkit-transition: -webkit-transform 0.6s, top 0.6s !important;
		-moz-transition: -moz-transform 0.6s, top 0.6s !important;
		-ms-transition: -ms-transform 0.6s, top 0.6s !important;
		transition: transform 0.6s, top 0.6s !important;
	}

	.header-menu-switch.active .line1 {
		left: 0px;
		top: 6px;

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

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

	.header-menu-switch .line2 {
		opacity: 1;

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

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

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

	.header-menu-switch .line3 {
		left: 0px;
		top: 0px;

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

		-webkit-transition: -webkit-transform 0.6s, top 0.6s !important;
		-moz-transition: -moz-transform 0.6s, top 0.6s !important;
		-ms-transition: -ms-transform 0.6s, top 0.6s !important;
		transition: transform 0.6s, top 0.6s !important;
	}

	.header-menu-switch.active .line3 {
		left: 0px;
		top: -6px;

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

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

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

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

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

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

	.header-mobile-drop {
		height: calc(100vh - 150px);
		top: 150px;
		background: #fff;
		z-index: 10;
		color: #222;
		overflow: auto;
		padding: 0px 0px 30px;
	}

	.header-nav-list {
		margin-left: 10px;
		font-size: 10px;
		line-height: 25px;
		top: calc((100% - 25px) / 2);
		letter-spacing: 0px;
	}

	.header-nav-list.group .after {
		top: 6px;
	}

	.header-nav-list.box.client {
		margin-left: 0px;
	}

	.header-menu-switch {
		margin-left: 10px;
		width: 25px;
	}

	.header-mobile-drop .header-nav-list {
		position: relative !important;
		display: block !important;
		/* text-align: center; */
		margin: 0px auto !important;
		/* top: 0px !important; */
		padding: 10px 0px 10px 40px;
		font-size: 14px;
	}

	.header-mobile-drop .header-nav-list.group .after {
		display: inline-block;
		border-left: 2px solid #222 !important;
		border-bottom: 2px solid #222 !important;
	}

	.header-mobile-drop .header-nav-list.group.active .after {
		display: inline-block;
		border-left: 2px solid #ec3137 !important;
		border-bottom: 2px solid #ec3137 !important;
	}

	.header-mobile-drop div.header-nav-list {
		padding: 10px 0px 0px 40px !important
	}

	.header-mobile-drop .header-nav-list span {
		width: 100%;
		color: #222;
	}

	.header-nav-list.group .after {
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}

	.header-mobile-drop .header-nav-drop {
		border: 0px;
		position: relative;
		display: block !important;
		width: 100%;
		padding: 10px 0px 0px 10px;
	}

	.header-mobile-drop .header-nav-link {
		border-bottom: 0px;
	}

	.header-container.active {
		top: 0px !important;
		background: #fff !important;
		opacity: 1 !important;
	}

	.active .header-nav-list.group .after {
		border-left: 2px solid #222 !important;
		border-bottom: 2px solid #222 !important;
	}

	.active .header-logo {
		background: url('../../img/front/transcon-indonesia-logo-black-2x.png') no-repeat;
	}

	.active .header-nav-list.box {
		border: 1px solid #222 !important;
		background: transparent !important;
	}

	.active .header-nav-list span {
		color: #222 !important;
	}

	.active .header-menu-switch-line {
		background: #222 !important;
	}

	.header-nav-link .header-nav-drop-link.active {
		color: #ec3137 !important;
		background: #fff !important;
	}

	.header-nav-link .header-nav-drop-link:hover {
		color: #ec3137 !important;
		background: #fff !important;
	}

	.footer-nav {
		width: 100%;
		max-width: 100%;
		flex: 100%;
		padding: 0px;
	}

	.footer-item.footer-iso {
		position: relative;
		display: block;
		margin-bottom: 50px;
	}

	.header-nav-list.desk {
		display: none;
	}

	.footer-connect.desk {
		display: none;
	}

	.footer-connect.mob {
		display: block;
		width: 100%;
		text-align: center;
	}

	.footer-connect-item {
		text-align: center;
	}

	.footer-connect-logo-item.last {
		width: 150px;
		text-align: left;
		/* width: 175px; */
	}
}

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

	.header-logo {
		width: 115px;
		left: 20px;
	}

	.header-mobile-drop .header-nav-list {
		position: relative !important;
		display: block !important;
		/* text-align: center; */
		margin: 0px auto !important;
		/* font-size: 10px; */
		font-size: 14px;
		/* top: 0px !important; */
		padding: 8px 0px 8px 20px;
	}

	.header-mobile-drop .header-nav-drop {
		padding: 5px 0px 0px 10px;
	}

	.header-nav-container {
		padding-right: 20px;
		padding-bottom: 8px;
	}

	.header-mobile-drop {
		height: calc(100vh - 100px);
		top: 100px;
		background: #fff;
		z-index: 11;
		color: #222;
		overflow: auto;
		padding: 0px 0px 30px;
	}

	.header-nav-link .header-nav-drop-link.switch:after {
		width: 8px;
		height: 8px;
		border-left: 2px solid #222;
		border-bottom: 2px solid #222;
	}

	.header-nav-link .header-nav-drop-link.switch.active:after {
		border-left: 2px solid #ec3137 !important;
		border-bottom: 2px solid #ec3137 !important;
	}

	.header-nav-link .header-nav-drop-link.switch:hover:after {
		border-left: 2px solid #ec3137 !important;
		border-bottom: 2px solid #ec3137 !important;
	}

	.header-nav-sub-group {
		border: 0px;
	}

	.header-mobile-drop div.header-nav-list {
		padding: 5px 0px 0px 20px !important
	}

	.header-nav-link .header-nav-drop-link {
		padding: 8px 15px 8px 25px;
	}

	.header-nav-link .header-nav-drop-link:before {
		top: 8px;
	}

	.footer-container {
		padding: 30px 0px 50px;
	}

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

	.footer-nav-item {
		width: 50%;
		max-width: 50%;
		margin-bottom: 30px;
	}

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

	.footer-item {
		padding: 0px 20px;
	}

	.footer-left .footer-item {
		padding: 0px;
	}

	.footer-item.footer-iso {
		padding: 0px 20px;
		margin-bottom: 30px;
	}

	.footer-iso-item {
		max-height: 35px;
	}

	.footer-connect-logo-ctn * {
		font-size: 12px;
	}

	.footer-connect-logo-ctn > * {
		width: 50% !important;
		height: 41px;
	}

	.footer-connect-logo-item.first {
		text-align: right;
	}

	.footer-connect-logo-ctn img {
		max-width: 130px;
	}

	.footer-connect-follow * {
		margin-right: 18px;
		font-size: 12px;
	}

	.footer-connect-follow > *:first-child {
		width: calc(100% - 150px - 18px);
	}

	.footer-connect-follow > *:last-child {
		width: 150px;
	}

	.wa-icon {
		width: 45px;
		height: 45px;
		bottom: 50px;
		/* right: 53px; */
		right: 20px;
	}

	.wa-icon.active {
		bottom: -60px !important;
	}

	.wa-desc {
		display: none;
		font-size: 9px;
		line-height: 14px;
		width: 95px;
		padding: 10px 8px 15px;
		left: calc((95px - 35px) / 2 * -1);
		border: 2px solid #fff;
	}

	.wa-desc span {
		font-size: 12px;
		line-height: 21px;
	}

	.wa-close {
		top: 10px;
		right: 10px;
	}

	.page-item-error-item {
		font-size: 14px;
	}

	.blur-content {
		width: calc(100% - 40px);
		font-size: 14px;
		padding: 40px 20px;
	}

	.blur-close {
		right: 0px;
		top: -45px;
	}
}

.object-cover {
    object-fit: cover;
}
