body {
  background:#fff;
  color:#000;
  font-size:13px;
  line-height:24px;
  font-family: 'Raleway blod', sans-serif;
}
/*	############## ##################################################
	2. Header Sections
	################################################################# */

	.header.affix {
		background:rgb(255, 255, 255);
		width:100%;
		top:0;
		right:0;
		padding:0;
		margin:0;
		position: fixed;
		z-index: 9999;
		-webkit-transition: all 0.8s;
		-moz-transition: all 0.8s;
		transition: all 0.8s;
	}
	
	.navbar-default {
		background:none;
		border:none;
		margin-top:20px;
	}
	.navbar-default .navbar-nav > li > a {
		color:#3E60AC;
		text-transform:uppercase;
		font-weight:1000;
	}
	
	.navbar-default .navbar-nav > li > a:hover,
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > li > a:active,
	.navbar-default .navbar-nav > li > a.active {
		color:#E45937;
		border: 1px dashed;
	}
	.navbar-default .navbar-nav > .active > a, 
	.navbar-default .navbar-nav > .active > a:hover, 
	.navbar-default .navbar-nav > .active > a:focus {
		background:none;
		border: 1px dashed #fff;
		color: #FFFFFF;
	}
/*	################################################################
	3. Home Slider Section
	################################################################# */
	.tp-banner-container {
		width:100%;
		position:relative;
		padding:0;
	}
	.tp-banner {
		width:100%;
		position:relative;
	}
	.tp-banner-fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
	}	
	
	.tp-bullets.simplebullets.navbar {
		height: 35px;
		padding: 0px 0px;
	
	}
	.tp-bullets.simplebullets .bullet {
		cursor: pointer;
		position: relative !important;
		background: rgba(0, 0, 0, 0.5) !important;
		-webkit-border-radius: 0;
		border-radius: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		width: 6px !important;
		height: 6px !important;
		border: 5px solid rgba(0, 0, 0, 0) !important;
		display: inline-block;
		margin-right: 2px !important;
		margin-bottom: 14px !important;
		-webkit-transition: background-color 0.2s, border-color 0.2s;
		-moz-transition: background-color 0.2s, border-color 0.2s;
		-o-transition: background-color 0.2s, border-color 0.2s;
		-ms-transition: background-color 0.2s, border-color 0.2s;
		transition: background-color 0.2s, border-color 0.2s;
		float:none !important;
	}
	.tp-bullets.simplebullets .bullet.last {
		margin-right: 0px
	}
	.tp-bullets.simplebullets .bullet:hover,
	.tp-bullets.simplebullets .bullet.selected {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 1) !important;
		width: 6px !important;
		height: 6px !important;
		border: 5px solid #F7C221 !important;
	}
	.tparrows:before {
		font-family: 'revicons';
		color: #fff;
		font-style: normal;
		font-weight: normal;
		speak: none;
		display: inline-block;
		text-decoration: inherit;
		margin-right: 0;
		margin-top: 17px;
		text-align: center;
		width: 55px;
		font-size: 14px;
	}
	.tparrows {
		border-radius:0 !important;
		opacity: 1 !important;
		background-color: #F7C221 !important;
		border-color: #F7C221 !important;
	}
	.slides-navigation a,
	.tp-leftarrow, 
	.tp-rightarrow{ 
		opacity:0.9 !important;
		filter:alpha(opacity=90); /* For IE8 and earlier */
	}
	.slides-navigation a:hover,
	.tp-leftarrow:hover, 
	.tp-rightarrow:hover{
		filter:alpha(opacity=100); /* For IE8 and earlier */
		opacity:1 !important;
	}
	.tparrows {
		border:1px solid #aaaaaa;
		cursor: pointer;
		background: rgba(0, 0, 0, 0) !important;
		width: 60px !important;
		height: 60px !important;
	}
	.tparrows:hover {
		color: #fff;
	}
	.tp-leftarrow:before {
		content: '\e824';
	}
	.tp-rightarrow:before {
		content: '\e825';
	}
	.tparrows.tp-rightarrow:before {
		margin-left: 1px;
	}
	.tparrows:hover {
		background: rgba(0, 0, 0, 0) !important;
	}


	/*	################################################################
	14. Body SECTION
	################################################################# */

	/* STRUCTURE */
	

.h1 a {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-family: 'Dosis', sans-serif;
}

/*effect-underline*/
a.effect-underline:after {
	content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 10px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.effect-underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/*effect-box*/
a.effect-box:after,
a.effect-box:before {
	content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  margin-top: 10px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	
}

a.effect-box:before {
  border-left: 1px solid;
  border-right: 1px solid;
  -webkit-transform: scale(1,0);
	transform: scale(1,0);
}

a.effect-box:after {
  border-bottom: 1px solid;
  border-top: 1px solid;
  -webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.effect-box:hover:after,
a.effect-box:hover:before {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* effect-shine */
a.effect-shine:hover {
  -webkit-mask-image: linear-gradient(-75deg, rgba(15, 3, 3, 0.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}
	.wrapper {
		padding: 5px;
		max-width: 960px;
		width: 95%;
		margin: 20px auto;
	}
	header {
		padding: 0 15px;
	}
	
	footer {
		padding: 0 15px;
	}
	
	blockquote{
		margin:20px;
		padding:10px 10px;
		border-left:3px solid #dadada;
		font-style:italic;
		line-height:2em;
		color: #3E60AC;
	  }
	  
	  blockquote p{
		margin:0;
	  }


	/*	################################################################
	14. Job SECTION
	################################################################# */
html {
  display: flex;
}

body {
  background-size: 200%;
  background-image: linear-gradient(to right top, #ffffff 0%, #f3f3f3 100%);
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Raleway blod', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h2 {
  color: rgb(0, 0, 0);
  text-align: center;
}

*, *:after, *:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

html, body {
  min-height: 100%;
}

h1, h2, h3 {
  font-weight: normal;
}

.placeholder {
  cursor: text;
  position: absolute;
  top: 10px;
  color: #000;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}

input {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.97);
  color: #212121;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.2s ease-in-out;
}
input.ui-full + label, input:focus + label {
  color: #3E60AC;
  font-size: 12px;
  transform: translate3d(0, -25px, 0);
}

label {
  position: absolute;
  color: #000;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}

#choice option {
  color: black;
}

.empty {
  color: rgb(3, 0, 0);
}

#choice {
  font-family: 'Lato';
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  padding-right: 50px;
  margin-top: 5px;
  font-size: .9rem;
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0 none;
  font-size: .8em;
  outline: 0;
}

.right {
  float: right;
}

.inline {
  display: inline-block;
}

a {
  color: #000;
}
a:hover {
  color: #000;
}

@-webkit-keyframes grow {
  0% {
    opacity: 0;
    transform: rotate(0deg) scaleX(0) scaleY(0);
  }
  70% {
    opacity: 1;
    transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
}

@keyframes grow {
  0% {
    opacity: 0;
    transform: rotate(0deg) scaleX(0) scaleY(0);
  }
  70% {
    opacity: 1;
    transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
}
@-webkit-keyframes shrink {
  0% {
    opacity: 1;
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: rotate(0deg) scaleX(0) scaleY(0);
  }
}
@keyframes shrink {
  0% {
    opacity: 1;
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: rotate(0deg) scaleX(0) scaleY(0);
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
.focus {
  font-weight: bold;
}

#refer_pos {
  display: inline-block;
}
.reset {
  color: #000;
  cursor: pointer;
  font-size: .8rem;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px 20px;
  text-align: center;
  display: table;
  transition: all 0.2 ease-in-out;
}
.reset:hover {
  color: #000;
}

@-webkit-keyframes drop {
  0% {
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes drop {
  0% {
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0px);
  }
}
li {
  list-style: none;
}

.positions {
  display: table;
  margin: 50px auto;
  width: 1000px;
  transition: all 0.3s ease-in-out;
  -webkit-animation: fade .3s 1;
          animation: fade .3s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.positions.fadeOut {
  display: none;
  -webkit-animation: fadeOut .4s 1;
          animation: fadeOut .4s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.positions ul {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
.positions .pos-card {
  border-bottom: 1px solid rgb(206, 206, 206);
  cursor: pointer;
  padding: 25px;
  flex-basis: 100%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
.positions .pos-card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.positions .pos-card:hover .date {
  right: 200px;
  font-size: 20px;
}
.positions .pos-card:hover .refer {
  right: 0;
  opacity: 1;
  z-index: 9;
  font-size: 20px;
}
.positions .pos-card:last-child {
  border-bottom: 0 none;
}
.positions .content {
  position: relative;
}
.positions .title {
  margin-bottom: 5px;
  font-size: 15px;
}
.positions .title.new:after {
  content: "New";
  padding: 10px 12px;
  font-size: 10px;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background-color: #E45937;
  border-radius: 10px;
}
.positions .dept {
  color: #000;
  font-size: 20px;
}
.positions .date, .positions .refer {
  font-size: .8rem;
  position: absolute;
  right: 0;
  top: 0;
  display: table;
  bottom: 0;
  margin: auto;
  color: #777;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
}
.positions .refer {
  opacity: 0;
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.positions .refer:hover {
  background-color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
h2 {
  margin-bottom: 30px;
  color:#000;
}

blockquote{
  margin:20px;
  padding:10px 20px;
  border-left:3px solid #dadada;
  font-style:italic;
  line-height:2em;
}

blockquote p{
  margin:0;
}
/*	################################################################
	14. FOOTER SECTION
	################################################################# */
	
	.footer-wrapper {
		display:block;
		padding:10px 0;
		position:relative;
		background-color:#000;
	}
	
	.footer-wrapper img {
		padding: 15px;
	}

	.socialFooter {
     float: left ;

	}
		
	.socialFooter .fa {
		color: rgb(255, 255, 255);
		font-size: 30px;
		margin: 20px 0 20px 10px;
	}
		
	.footer .socialFooter a {
		color: #bbb;
		font-size: 26px;
		padding: 5px;
		margin-right: 10px;
		transition: all 0.2s ease-in-out 0s;
	}
	.footer .socialFooter a:hover {
		color: #414655;
		border-bottom: 3px solid #414655;
	}
	.links a {
		color:rgb(255, 254, 253); 
		font-size: 15px; 
		left: 5px;
	}

	.socialFooter p{
     color: #fff;

	}
	.socialFooter a{
		color: #fff;
	}

	.hovereffect .icon {
		font-size: 31px;
		font-weight: 300;
		height: 75px;
		left: 0;
		line-height: 75px;
		margin: -35px auto 0;
		position: absolute;
		right: 0;
		top:38%;
		text-align: center;
		width: 75px;
		}
		
	.hovereffect h4 {
		text-align:center;
		font-size:20px;
		padding:10px 30px;
		text-transform:uppercase;
		width:auto;
		margin-bottom:0;
		display:block;
		font-weight:700;
		}
		
	.hovereffect h5 {
		text-align:center;
		font-size:12px;
		padding:10px 30px;
		text-transform:uppercase;
		width:auto;
		color:#fff;
		margin-bottom:0;
		display:block;
		font-weight:700;
		}
		
	.hovereffect h4,
	.hovereffect .icon {
		color:#fff;
	}
	.hovereffect .buttons {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		text-align: center;
		width: 100%;
		height:auto;
		bottom: 29%;
		margin-top: -20px;
		-webkit-transform: scale(0.2);
		-moz-transform: scale(0.2);
		-ms-transform: scale(0.2);
		-o-transform: scale(0.2);
		transform: scale(0.2);
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
		.hovereffect:hover .buttons {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		}
		.entry:hover .hovereffect { 
		opacity: 1;
		visibility: visible;
		}
		.entry {
		display:block;
		position:relative;	
	}
	
	
/*	################################################################
	20. Mobile Responsive
	################################################################# */	
	
	@media (max-width: 768px) { {
		.home-content h1 {font-size:31px !important}
		.tparrows,
		.small_title,
		.slider_menu a {display:none}
	} 
	
	ul.nav.navbar-nav.navbar-right {
		background: rgba(0, 0, 0, 0.55);
	}
		
	.tp-caption p {
		margin-top:110px!important;
		line-height:1.3;
		
		}
		
	.tp-caption h2 {
		font-size : 26px!important;
    }	 
	
	
	#slider4container .tparrows:before,
	#slider4container .tparrows:hover,
	#slider4container .tparrows {
		color: #000 !important;
	}
	
	#slider4container .tparrows {
		background:#fff !important;
		background:rgba(255, 255, 255, 0.5) !important;
	}
	#slider4container .tparrows:hover	{
		background:#fff !important
	}
	
	.sliderbigtitle {
	font-size: 26px;
	}
	