body {
	height: 100%;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #444444;
}

a {
	color: #47b2e4;
}

a:hover {
	color: #73c5eb;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #37517e;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #37517e;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: rgb(98 193 94);
    color: #fff;
    transition: all 0.4s;
}
/*
.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	background: rgb(37, 64, 143);
	color: #fff;
	transition: all 0.4s;
}*/


.back-to-top i:hover {
	background: red;
	color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	background: white;
	border-bottom: 5px solid rgb(37, 64, 143);
}

#header.header-scrolled,
#header.header-inner-pages {
	background: white;
	border-bottom: 5px solid rgb(37, 64, 143);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul {
	display: flex;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 10px 0 10px 28px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: rgb(37, 64, 143);
	transition: 0.3s;
	font-size: 15px;
	letter-spacing: 0.5px;
	font-weight: 500;
	font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: rgb(37, 64, 143);
}

.nav-menu .drop-down ul {
	border-radius: 8px;
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: rgb(37, 64, 143);
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: rgb(37, 64, 143);
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}

	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}

	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}

/* Get Startet Button */
.get-started-btn {
	margin-left: 25px;
	color: #fff;
	border-radius: 50px;
	padding: 6px 25px 7px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	display: inline-block;
	border: 2px solid #47b2e4;
	font-weight: 600;
}

.get-started-btn:hover {
	background: #31a9e1;
	color: #fff;
}

@media (max-width: 768px) {
	.get-started-btn {
		margin: 0 48px 0 0;
		padding: 6px 20px 7px 20px;
	}
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	top: 20px;
	right: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: rgb(37, 64, 143)
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: rgb(37, 64, 143);
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: rgb(37, 64, 143);
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(40, 58, 90, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: rgb(37, 64, 143);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	position: relative;
	overflow: hidden;
	height: 50vh;
	/* padding-top: 90px; */
	padding-bottom: 200px;
}

#hero .bg-hero {
	position: absolute;
	width: 100%;
	height: 100%; 
	left: 0;
}

#hero .title-hero {
	position: absolute;
	color: white;
	font-family: "Jost", sans-serif;
	font-weight: bold;
	margin-top: 80px;
	margin-left: 50px;
}

#hero .penutup {
	position: absolute;
	opacity: 0.8;
	height: 100%;
	width: 100%;
	left: -450px;
}

#hero .button-hero {
	position: absolute;
	top: 110px;
}

#hero .btn-get-started {
	font-family: "Jost", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px 11px 28px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px 0 0 0;
	color: #fff;
	background: red;
}

#hero .btn-get-started:hover {
	background: rgb(37, 64, 143);
}

#hero .btn-watch-video {
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	padding: 10px 0 8px 40px;
	transition: 0.5s;
	margin: 10px 0 0 25px;
	color: red;
	position: relative;
}

#hero .btn-watch-video i {
	color: red;
	font-size: 32px;
	position: absolute;
	left: 0;
	top: 7px;
	transition: 0.3s;
}

#hero .btn-watch-video:hover {
	color: white;
}

#hero .btn-watch-video:hover i {
	color: white;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
	#hero {
		height: 50vh;
		padding-bottom: 140px;
	}

	#hero .bg-hero {
		height: 50vh;
	}

	#hero .penutup {
		left: -250px;
	}

	#hero .title-hero {
		margin-top: 50px;
	}

	#hero .button-hero {
		top: 90px;
	}

	#hero .btn-get-started {
		font-size: 14px;
		margin: 20px 0 0 0;
	}

	#hero .btn-watch-video {
		font-size: 14px;
		margin: 10px 0 0 25px;
	}
}

@media (max-width: 768px) {
	#hero {
		height: 50vh;
		padding-bottom: 150px;
	}

	#hero .bg-hero {
		/* width: 100%; */
		height: 50vh;
	}

	#hero .penutup {
		/* height: 100%;
		width: 100%; */
		left: 0;
		/* top: -30px; */
		background-color: rgb(37, 64, 143);
	}

	#hero .title-hero {
		margin-top: 50px;
	}

	#hero .button-hero {
		top: 90px;
	}
}

@media (max-width: 575px) {
	#hero {
		padding-bottom: 150px;
	}

	#hero .bg-hero {
		height: 50vh;
	}

	#hero .button-hero {
		top: 100px;
	}

	#hero .title-hero {
		margin-top: 60px;
		font-size: 22px;
	}

	#hero .btn-get-started {
		font-size: 14px;
		padding: 7px 20px 7px 20px;
		margin: 20px 0 0 0;
	}

	#hero .btn-watch-video {
		font-size: 14px;
		margin: 10px 0 0 25px;
	}

	#hero .btn-watch-video i {
		font-size: 28px;
	}
}

@media (max-width: 425px) {
	#hero {
		padding-bottom: 270px;
	}

	#hero .bg-hero {
		height: 50vh;
	}

	#hero .btn-get-started {
		font-size: 10px;
		padding: 8px 18px 8px 18px;
	}

	#hero .btn-watch-video {
		font-size: 10px;
		margin: 8px 0 0 10px;
		padding: 14px 0 8px 35px;
	}

	#hero .btn-watch-video i {
		font-size: 26px;
		left: 0;
		top: 9px;
		transition: 0.3s;
	}
}


@media (max-width: 360px) {
	#hero {
		/* height: 50vh; */
		padding-bottom: 150px;
	}

	#hero .bg-hero {
		width: 100%;
		height: 50%;
	}

	#hero .penutup {
		width: 100%;
		height: 50%;
	}

	#hero .title-hero {
		margin-top: 20px;
		left: -20px;
		font-size: 22px;
	}

	#hero .button-hero {
		top: 60px;
		left: -20px;
	}

	#hero .btn-get-started {

		font-size: 10px;
		padding: 8px 18px 8px 18px;
	}

	#hero .btn-watch-video {
		font-size: 10px;
		margin: 8px 0 0 10px;
		padding: 14px 0 8px 35px;
	}

	#hero .btn-watch-video i {
		font-size: 26px;
		left: 0;
		top: 9px;
		transition: 0.3s;
	}
}

@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-bg {
	background-color: #ffffff;
}

.title h2 {
	background-color: yellow;
	width: 500px;
	text-align: left;
	padding-bottom: 30px;
}

.title img {
	margin-bottom: 10px;
}

.title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #37517e;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
	color: #ffffff;
	font-size: 14px;
	/* background-color: yellow; */
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #37517e;
}

/* .section-title h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
} */

/* .section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #47b2e4;
	bottom: 0;
	left: calc(50% - 20px);
} */

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
#page2 {
	position: relative;
	overflow: hidden;
	padding-bottom: 120px;
}

#page2 .list-atas {
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

#page2 .red-corner {
	width: 15%;
	position: absolute;
	bottom: 0;
	left: 0;
}

#page2 .segitiga-biru {
	width: 70%;
	margin-left: 40px;
	position: relative;
	overflow: hidden;
}

#page2 .isi {
	width: 280px;
	position: absolute;
	top: 70px;
	left: 80px;
	font-size: 18px;
	color: white;
	font-style: italic;
}

#page2 .bawah .vsat {
	/* width: 50%; */
	position: absolute;
	bottom: 0px;
	right: -150px;
}

#page2 .bawah .hughes {
	/* width: 50%; */
	position: absolute;
	bottom: 0px;
	right: 40px;
}

@media (max-width: 991px) {
	#page2 {
		padding-bottom: 170px;
		/* background-color: #2d3c42; */
	}

	#page2 .isi {
		width: 200px;
		top: 70px;
		left: 80px;
		font-size: 14px;
	}

	#page2 .segitiga-biru {
		width: 40%;
		position: relative;
		overflow: hidden;
	}

	#page2 .vsat {
		/* width: 30%; */
		position: absolute;
		z-index: 2;
		top: -90px;
		left: 600px;
	}

	#page2 .hughes {
		/* width: 30%; */
		position: absolute;
		z-index: 1;
		top: -280px;
		right: 0;
	}
}

@media (max-width: 768px) {

	#page2 {
		padding-bottom: 170px;
		font-size: 10px;
		/* background-color: #209dd8; */
	}

	#page2 .segitiga-biru {
		width: 50%;
		position: relative;
		overflow: hidden;
	}

	#page2 .vsat {
		/* width: 30%; */
		position: absolute;
		z-index: 2;
		top: -90px;
		left: 370px;
	}

	#page2 .hughes {
		/* width: 30%; */
		position: absolute;
		z-index: 1;
		top: -280px;
		right: 0;
	}

	#page2 .isi {
		width: 200px;
		top: 50px;
		left: 70px;
	}
}

@media (max-width: 575px) {
	#page2 {
		padding-bottom: 600px;
		font-size: 10px;
		/* background-color: #002f44; */
	}

	#page2 .segitiga-biru {
		width: 100%;
		position: absolute;
		z-index: 1;
		width: 60%;
	}

	#page2 .vsat {
		/* width: 30%; */
		position: absolute;
		z-index: 2;
		top: 350px;
		left: 150px;
	}

	#page2 .hughes {
		/* width: 30%; */
		position: absolute;
		z-index: 1;
		top: 170px;
		right: 0;
	}

	#page2 .isi {
		position: absolute;
		/* background-color: yellow; */
		z-index: 2;
		width: 200px;
		top: 50px;
		left: 70px;
	}
}

@media (max-width: 360px) {
	#page2 {
		top: -87px;
		padding-bottom: 600px;
		/* background-color: #002f44; */
		
	}

	#page2 .segitiga-biru {
		width: 100%;
		position: absolute;
		z-index: 1;
		width: 60%;
		left: -10px;
	}

	#page2 .isi {
		position: absolute;
		font-size: 9px;
		z-index: 2;
		width: 150px;
		top: 50px;
		left: 50px;
	}

	#page2 .vsat {
		width: 50%;
		position: absolute;
		z-index: 2;
		top: 350px;
		left: 50px;
	}

	#page2 .hughes {
		width: 30%;
		position: absolute;
		z-index: 1;
		top: 170px;
		right: 0;
	}
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about {
	position: relative;
	overflow: hidden;
	top: -100px;
}

#about .title-about {
	position: relative;
	padding-top: 50px;
}

#about .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#about .title-about-us {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(35, 64, 143);
}

#about .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#about .pesawat {
	width: 20%;
	position: absolute;
	top: -50px;
	right: 0;
}

#about .red {
	color: red;
}

#about .isi-about {
	font-size: 14px;
}

#about .about-pic {
	width: 70%;
}

@media (max-width: 991px) {
	#about .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 30px;
	}

	#about .title-about-us {
		padding-top: 10px;
		margin-left: -35px;
	}

	#about .pesawat {
		width: 30%;
	}
}

@media (max-width: 768px) {
	#about .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#about .title-about-us {
		padding-top: 0px;
		margin-left: -20px;
	}

	#about .isi-about {
		font-size: 12px;
	}

	#about .pesawat {
		width: 30%;
	}
}

@media (max-width: 575px) {
	#about .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#about .title-about-us {
		padding-top: 0px;
		margin-left: -55px;
	}

	#about .pesawat {
		width: 40%;
	}
}

@media (max-width: 425px) {
	#about .title-about-us {
		font-size: 20px;
		padding-top: 0;
		margin-left: -45px;
	}

	#about .isi-about {
		font-size: 10px;
	}

	#about .pesawat {
		top: 0px;
	}
}

@media (max-width: 360px) {
	#about .title-about-us {
		padding-top: 0px;
		margin-left: -40px;
	}
}

/*--------------------------------------------------------------
# Visi and misi
--------------------------------------------------------------*/

#about {
	position: relative;
	overflow: hidden;
}

#about .title-visi {
	position: relative;
	padding-top: 50px;
}

#about .title-visi-misi {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(35, 64, 143);
}

#about .title-misi {
	color: red;
	font-weight: bold;
	font-size: 20px;
}

#about .list-visi-pic {
	width: 50%;
	position: absolute;
	z-index: 2;
	top: -230px;
	right: -110px;
}

#about .isi-about {
	font-size: 14px;
}

#about #visi-misi {
	padding-bottom: 80px;
}

#about .visi-pic {
	width: 80%;
	margin-left: 50px;
}

#about .list-bawah {
	width: 40%;
	position: absolute;
	z-index: -21;
	top: -100px;
	right: -110px;
}

@media (max-width: 991px) {
	#about .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 30px;
	}

	#about .title-visi-misi {
		padding-top: 10px;
		margin-left: -35px;
	}

	#about .visi-pic {
		padding-top: 60px;
	}

	#about .list-visi-pic {
		right: -120px;
		top: -100px;
	}

	#about .list-bawah {
		top: 60px;
		right: -120px;
	}
}

@media (max-width: 768px) {
	#about .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#about .title-visi-misi {
		padding-top: 0px;
		margin-left: -20px;
	}

	#about .visi-pic {
		padding-top: 80px;
	}

	#about .list-visi-pic {
		right: -110px;
		top: -40px;
	}

	#about .list-bawah {
		top: 170px;
		right: -110px;
	}
}

@media (max-width: 575px) {
	#about .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#about .title-visi-misi {
		padding-top: 0px;
		margin-left: -55px;
	}

	#about .list-visi-pic {
		right: -110px;
		top: -40px;
	}

	#about .list-bawah {
		width: 50%;
		top: 160px;
		right: 0px;
	}
}

@media (max-width: 425px) {
	#about .title-visi-misi {
		font-size: 20px;
		padding-top: 0;
		margin-left: -45px;
	}

	#about #visi-misi {
		padding-bottom: 20px;
	}

	#about .visi-pic {
		padding-top: 180px;
	}

	#about .list-visi-pic {
		width: 60%;
		top: 60px;
	}

	#about .list-bawah {
		top: 300px;
		right: 0px;
	}
}

@media (max-width: 360px) {
	#about .title-visi-misi {
		padding-top: 0px;
		margin-left: -40px;
	}

	#about .visi-pic {
		width: 100%;
		margin-top: 350px;
		margin-left: 0px;
		/* margin-right: 100px; */
	}

	#about .list-visi-pic {
		width: 80%;
		top: 420px;
	}

	#about .list-bawah {
		top: 500px;
		right: 0px;
	}
}

/*--------------------------------------------------------------
# Company logo
--------------------------------------------------------------*/
#spirit {
	position: relative;
	overflow: hidden;
	margin-top: -150px;
}

#spirit .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#spirit .red-corner2 {
	width: 20%;
}

#spirit .title-spirit {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(37, 64, 143);
}

#spirit .red {
	color: red;
}

#spirit .isi {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
}

@media (max-width: 991px) {
	#spirit .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 30px;
	}

	#spirit .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 30px;
	}

	#spirit .title-spirit {
		padding-top: 10px;
		margin-left: -40px;
	}
}

@media (max-width: 768px) {
	#spirit .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#spirit .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#spirit .title-spirit {
		padding-top: 0px;
		margin-left: -20px;
	}

	#spirit .isi {
		font-size: 28px;
	}
}

@media (max-width: 575px) {
	#spirit .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#spirit .title-spirit {
		padding-top: 0px;
		margin-left: -55px;
	}

	#spirit .isi {
		font-size: 20px;
	}
}

@media (max-width: 425px) {
	#spirit .title-spirit {
		font-size: 20px;
		padding-top: 0;
		margin-left: -45px;
	}
	
	#spirit .isi {
		font-size: 18px;
	}

}

@media (max-width: 360px) {
	#spirit .title-spirit {
		padding-top: 0;
		margin-left: -40px;
	}
	
	#spirit .isi {
		font-size: 14px;
	}
}


/*--------------------------------------------------------------
# Our Product
--------------------------------------------------------------*/

#product {
	position: relative;
	overflow: hidden;
	/* margin-bottom: 130px; */
}

#product .arah-kiri {
	width: 8%;
	position: absolute;
	left: -20px;
}

#product .list-merahabu {
	width: 80%;
	position: absolute;
	right: 0px;
}

#product .title {
	position: relative;
	padding-top: 130px;
}

#product .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#product .title-product {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(37, 64, 143);
}

#product .isi {
	font-size: 14px;
}

#product .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#product .isi-product {
	position: relative;
}

#product .pesawat2 {
	position: absolute;
	width: 80%;
	top: -90px;
	right: 150px;
	z-index: 3;
}

#product .list-product {
	position: relative;
}

#product .text-gbr {
	width: 55%;
	position: absolute;
	z-index: 2;
}

#product .gbr-product {
	margin-top: 190px;
}

#product .list-bawah {
	width: 50%;
	position: absolute;
	z-index: -1;
	bottom: -50px;
	right: -110px;
}

@media (max-width: 991px) {
	#product .list-title {
		width: 25%;
		position: absolute;

		top: 0px;
		right: 30px;
	}

	#product .title-product {
		padding-top: 10px;
		margin-left: -40px;
	}

	#product .pesawat2 {
		position: absolute;
		width: 100%;
		top: -90px;
		right: 0px;
	}

	#product .text-gbr {
		width: 80%;
	}
}

@media (max-width: 768px) {
	#product .list-title {
		width: 25%;
		position: absolute;
		/* background-color: tomato; */
		top: 0px;
		right: 10px;
	}

	#product .title-product {
		padding-top: 0px;
		margin-left: -20px;
	}

	#product .pesawat2 {
		width: 100%;
		position: absolute;
		top: -50px;
		right: -70px;
	}

	#product .text-gbr {
		width: 90%;
	}

	#product .product1 {
		width: 100%;
	}

	#product .isi {
		font-size: 12px;
	}
}

@media (max-width: 575px) {
	#product .list-title {
		width: 30%;
		position: absolute;
		/* background-color: tomato; */
		top: 0px;
		left: 15px;
	}

	#product .title-product {
		padding-top: 0px;
		margin-left: -55px;
	}

	#product .pesawat2 {
		width: 100%;
		position: absolute;
		top: 0px;
		right: 0px;
	}

	#product .text-gbr {
		width: 90%;
	}

	#product .list-bawah {
		width: 60%;
	}
}

@media (max-width: 425px) {
	#product .title-product {
		font-size: 20px;
		padding-top: 0;
		margin-left: -35px;
	}

	#product .arah-kiri {
		left: -10px;
	}

	#product .list-bawah {
		bottom: 0px;
		right: 0px;
	}
}

@media (max-width: 360px) {
	#product .title{
		padding-top: 50px;
	}

	#product .isi{
		margin-left: 25px;
	}

	#product .gbr-product{
		margin-top: 100px;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
	position: relative;
	overflow: hidden;
	padding-bottom: 400px;
	/* background-color: #209dd8; */
}

#services .list-atas {
	width: 50%;
	position: absolute;
	left: 0px;
}

#services .list-biru {
	width: 50%;
	position: absolute;
	right: 0px;
}

#services .title {
	position: relative;
	padding-top: 100px;
}

#services .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#services .title-services {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(37, 64, 143);
}

#services .isi-services {
	position: absolute;
	left: -120px;
	top: 60px;
}

#services .pesawat3 {
	width: 100%;
}

#services .isi {
	font-size: 14px;
}

#services #isi {
	padding-top: 50px;
	padding-right: 80px;
}

hr {
	width: 100%;
	border: 1px solid rgb(165, 165, 165);
}

#services .service1 {
	width: 80%;
}

.service1 {
	padding-bottom: 10px;
}

.service2 {
	padding-bottom: 10px;
}

.service3 {
	padding-top: 10px;
}

.service4 {
	padding-top: 10px;
}

.list-s1 {
	border-right: 1px solid rgb(165, 165, 165);
	border-bottom: 1px solid rgb(165, 165, 165);
}

.list-s2 {
	border-bottom: 1px solid rgb(165, 165, 165);
}

.list-s3 {
	border-right: 1px solid rgb(165, 165, 165);
}

.list-s4 {
	font-size: 14px;
}

.service-footer {
	padding: 5px;
	font-size: 14px;
}

@media (max-width: 991px) {

	#services {
		position: relative;
		overflow: hidden;
		padding-bottom: 300px;
	}

	#services .list-title {
		width: 25%;
		position: absolute;

		top: 0px;
		right: 30px;
	}

	#services .title-services {
		padding-top: 10px;
		margin-left: -40px;
	}

	#services .isi-services {
		position: absolute;
		left: -130px;
		top: 20px;
	}

	#services #isi {
		padding-top: 90px;
		padding-right: 10px;
	}
}

@media (max-width: 768px) {
	#services .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#services .title-services {
		padding-top: 0px;
		margin-left: -20px;
	}

	#services .isi-services {
		position: absolute;
		left: -30px;
		top: 20px;
	}

	#services #isi {
		font-size: 12px;
		padding-top: 90px;
		padding-right: 10px;
	}

	.list-s4 {
		font-size: 12px;
	}

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

@media (max-width: 575px) {
	#services {
		position: relative;
		overflow: hidden;
		padding-bottom: 320px;
	}

	#services .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#services .title-services {
		padding-top: 0px;
		margin-left: -55px;
	}

	#services .isi-services {
		position: absolute;
		left: -30px;
		top: 80px;
	}

	#services #isi {
		padding-top: 0px;
		padding-right: 10px;
	}

	.list-s4 {
		font-size: 10px;
	}
}


@media (max-width: 425px) {
	#services .title-services {
		font-size: 20px;
		padding-top: 0;
		margin-left: -35px;
	}

	#services #isi {
		padding-top: 40px;
	}
}

@media (max-width: 360px) {
	#services{
		margin-top: -50px;
	}

	#services .title{
		top: -50px;
	}

	#services .isi-services{
		margin-top: -100px;
	}

	#services #isi{
		padding-top: 0px;
	}

	.gbr-services{
		margin-top: -120px;
	}
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
#team {
	position: relative;
	overflow: hidden;
	/* padding-bottom: 500px; */
}

#team .list-team {
	width: 20%;
	position: absolute;
	right: 230px;
}

#team .title {
	position: relative;
	padding-top: 100px;
}

#team .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#team .title-team {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(37, 64, 143);
}

#team .team1 {
	padding-bottom: 10px;
}

#team .isi {
	font-size: 14px;
	padding-top: 100px;
}

#team .our-teams {
	width: 80%;
	height: 400px;
}

@media (max-width: 991px) {
	#team .isi {
		padding-top: 40px;
	}

	#team {
		position: relative;
		overflow: hidden;
	}

	#team .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 30px;
	}

	#team .title-team {
		padding-top: 10px;
		margin-left: -40px;
	}

	#team .our-teams {
		width: 80%;
		height: 350px;
	}
}

@media (max-width: 768px) {
	#team .isi {
		padding-top: 20px;
	}

	#team .list-team {
		right: 150px;
	}

	#team .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#team .title-team {
		padding-top: 0px;
		margin-left: -20px;
	}

	#team .isi {
		font-size: 12px;
	}

	#team .our-teams {
		width: 80%;
		height: 300px;
	}
}

@media (max-width: 575px) {
	#team .isi {
		padding-top: 40px;
	}

	#team .list-team {
		right: 60px;
		width: 40%;
	}

	#team .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#team .title-team {
		padding-top: 0px;
		margin-left: -55px;
	}

	#team .our-teams {
		width: 80%;
		height: 250px;
	}
}

@media (max-width: 425px) {
	#team .title-team {
		font-size: 20px;
		padding-top: 0;
		margin-left: -35px;
	}
}

@media (max-width: 360px) {
	#team .title{
		padding-top: 50px;
	}

	#team .isi{
		padding-top: 0;
	}

	#team .our-teams {
		width: 80%;
		height: 150px;
	}
}

/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
#customers {
	position: relative;
	overflow: hidden;
	padding-bottom: 50px;
}

#customers .title {
	position: relative;
	padding-top: 50px;
}

#customers .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#customers .title-customers {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(37, 64, 143);
}

#customers .list-bawah {
	width: 30%;
	position: absolute;
	z-index: -1;
	top: 50px;
	right: -110px;
}

#customers .customers {
	width: 80%;
	height: 400px;
}

@media (max-width: 991px) {

	#customers {
		position: relative;
		overflow: hidden;
	}

	#customers .list-title {
		width: 25%;
		position: absolute;

		top: 0px;
		right: 30px;
	}

	#customers .title-customers {
		padding-top: 10px;
		margin-left: -40px;
	}

	#customers .list-bawah {
		width: 40%;
	}

	#customers .customers {
		width: 80%;
		height: 250px;
	}
}

@media (max-width: 768px) {
	#customers .list-customers {
		right: 150px;
	}

	#customers .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#customers .title-customers {
		padding-top: 0px;
		margin-left: -20px;
	}

	#customers .list-bawah {
		width: 50%;
	}

	#customers .customers {
		width: 80%;
		height: 200px;
	}
}

@media (max-width: 575px) {

	#customers .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#customers .title-customers {
		padding-top: 0px;
		margin-left: -55px;
	}

	#customers .list-bawah {
		width: 60%;
	}

	#customers .customers {
		width: 80%;
		height: 200px;
	}
}

@media (max-width: 425px) {
	#customers .title-customers {
		font-size: 20px;
		padding-top: 0;
		margin-left: -35px;
	}

	#customers .list-bawah {
		right: 0px;
		bottom: -50px;
	}

	#customers .customers {
		width: 80%;
		height: 200px;
	}
}

@media (max-width: 360px) {
	#customers .customers {
		width: 80%;
		height: 125px;
	}
}

#partners {
	position: relative;
	overflow: hidden;
	padding-bottom: 50px;

}

#partners .title {
	position: relative;
	padding-top: 50px;
}

#partners .list-title {
	position: absolute;
	top: 5px;
	right: 0;
}

#partners .title-partners {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	padding-top: 10px;
	margin-left: -10px;
	color: rgb(37, 64, 143);
}


#partners .list-bawah {
	width: 30%;
	position: absolute;
	z-index: -1;
	top: 50px;
	right: -110px;
}

#partners .partners {
	width: 80%;
	height: 75%;
}

@media (max-width: 991px) {

	#partners {
		position: relative;
		overflow: hidden;
	}

	#partners .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 30px;
	}

	#partners .title-partners {
		padding-top: 10px;
		margin-left: -40px;
	}

	#partners .list-bawah {
		width: 40%;
	}

	#partners .partners {
		width: 80%;
		height: 75%;
	}
}

@media (max-width: 768px) {
	#partners .list-partners {
		right: 150px;
	}

	#partners .list-title {
		width: 25%;
		position: absolute;
		top: 0px;
		right: 10px;
	}

	#partners .title-partners {
		padding-top: 0px;
		margin-left: -20px;
	}

	#partners .list-bawah {
		width: 50%;
	}
}

@media (max-width: 575px) {

	#partners .list-title {
		width: 30%;
		position: absolute;
		top: 0px;
		left: 15px;
	}

	#partners .title-partners {
		padding-top: 0px;
		margin-left: -55px;
	}

	#partners .list-bawah {
		width: 60%;
	}
}

@media (max-width: 425px) {
	#partners .title-partners {
		font-size: 20px;
		padding-top: 0;
		margin-left: -35px;
	}

	#partners .list-bawah {
		right: 0px;
		bottom: -50px;
	}
}

@media (max-width: 360px) {
	#partners .title{
		padding-top: 0;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer .footer-top {
	color: #fff;
	text-align: center;
}

#footer .social-links a {
	font-size: 24px;
	display: inline-block;
	background: #fff;
	color: rgb(37, 64, 143);
	line-height: 1;
	padding: 8px 0;
	margin: 10px;
	border-radius: 50%;
	text-align: center;
	width: 40px;
	height: 40px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: rgb(37, 64, 143);
	color: #fff;
	text-decoration: none;
	border: 1px solid #fff;
}

#footer li {
	display: inline;
	list-style-type: none;
}

#footer li a {
	color: #fff;
	text-decoration: none;
	margin: 0 10px;
}

#footer li a:visited {
	text-decoration: none
}

#footer li a:hover {
	text-decoration: underline
}

#footer .footer-bottom {
	color: #fff;
}

#footer .copyright {
	font-size: 12px;
	color: #fff;
	padding-top: 25px;
}

#footer .logo-footer {
	width: 150px;
}

#footer {
	background: url('http://intaiaero.com/assets/template/img/compro/bg-footer.png');
	background-repeat: no-repeat;
	background-size: cover;
}

#footer .privacy {
	padding-top: 20px;
	font-size: 12px;
	color: #fff;
	margin: auto;
	/* text-align: center; */
}

#footer .menu {
	border-top: 1px solid rgb(53, 53, 53);
	border-bottom: 1px solid rgb(53, 53, 53);
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 2;
}

#footer .menu li a {
	padding: 30px;
	margin-left: -40px;
}

#footer .menu li a {
	text-align: center;
	font-size: 14px;
}

#footer .alamat p {
	margin-bottom: 0;
}

#footer .alamat {
	color: #fff;
	text-align: center;
	font-size: 14px;
}

#footer .privacy a {
	transition: 0.3s;
}

@media (max-width: 991px) {
	#footer .alamat h3 {
		font-size: 20px;
	}

	#footer .menu {
		font-size: 12px;
	}

	#footer .logo-footer {
		margin: auto;
	}

	#footer .copyright {
		justify-content: center;
		margin-top: -20px;
		margin-bottom: 10px;
	}

	#footer .privacy {
		font-size: 12px;
		text-align: center;
		margin-left: -20px;
	}
}

@media (max-width: 360px) {
	#footer .alamat p {
		font-size: 12px;
	}
}


/* PRIVACY */
#privacy .title {
	color: rgb(37, 64, 143);
	font-family: Calibri;
	font-weight: bold;
}

#privacy .sub-title {
	color: rgb(37, 64, 143);
	font-family: Calibri;
	font-weight: bold;
	/* font-size: 24px; */
}

#privacy p,
#privacy ul li,
#privacy ol li {
	font-size: 16px;
	font-variant: normal;
	line-height: 33px;
}

#privacy ol li {
	padding: 5px;
	margin-left: 20 px;
}

#privacy ul {
	list-style: none;
	padding: 0px;
}

#privacy ul li {
	padding: 5px;
	margin-left: 50px;
}

#privacy ul li:before {
	content: "\f152";
	/* FontAwesome Unicode */
	font-family: FontAwesome;
	display: inline-block;
	margin-left: -1.3em;
	/* same as padding-left set on li */
	width: 1.3em;
	/* same as padding-left set on li */
}

.map-container-6 {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
	border: 1px solid black;
}

.map-container-6 iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/* CONTACT */
#contact .title {
	color: rgb(37, 64, 143);
	font-family: Calibri;
	font-weight: bold;
}

#contact .learn a {
	color: rgb(37, 64, 143);
	text-decoration: underline;
	font-weight: bold;
}

#contact .learn a:hover {
	color: red;
}

img {
	pointer-events: none;
}

@media (max-width: 360px) {
	#contact{
		margin-top: -100px;
	}

	#contact .alamat{
		margin-top: 20px;
	}

	#privacy{
		margin-top: -100px;
	}
}