:root {
  --color-blue: #285B99;
  --color-green: #059B68;
  --color-red: #D91D1D;
  --color-orange: #F3A848;
  --color-white: #FFFFFF;
  --color-black: #2D2D2D;
  --color-medium-gray: #888888;
  --color-light-gray: #F7F7F7;
}
html {
  position: relative;
  min-height: 100%;
}
a {
  color: Currentcolor;
  text-decoration: underline;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}
a:hover {
  color: Currentcolor;
}
body {
  background-color: var(--color-light-gray);
  font-family: 'Barlow';
  font-size: 16px;
  line-height: 24px;
}
section {
  padding: 80px 0px;
  position: relative;
  z-index: 999;
}

/* Color */
.color-blue {
  color: var(--color-blue);
}
.color-green {
  color: var(--color-green);
}
.color-red {
  color: var(--color-red);
}
.color-orange {
  color: var(--color-orange);
}
.color-white {
  color: var(--color-white);
}
.color-black {
  color: var(--color-black);
}
.color-medium-gray {
  color: var(--color-medium-gray);
}
.color-light-gray {
  color: var(--color-light-gray);
}

/*Navbar*/
.navbar {
  position: fixed;
  top: 0px;
  min-height: 60px;
  width: 100%;
  padding: 8px 0px;
  background-color: var(--color-white);
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
  align-items: start;
  box-shadow: 0 3px 3px 0 rgba(0,0,0,0.05);
  border-radius: 2px;
  z-index: 1000;
}
.navbar-light .navbar-toggler {
  border: 0;
}
.nav-item {
  padding-right: 16px ;
  padding-left: 16px ;
}
.nav-link.active, .nav-link.active:hover {
  box-shadow: inset 0 -2px 0 0 var(--color-blue);
  color: var(--color-black) !important;
}
.nav-link:hover {
  box-shadow: inset 0 -2px 0 0 var(--color-medium-gray);
}
.nav-link {
  padding-right: 1px !important;
  padding-left: 1px !important;
  font-family: 'Noto Serif';
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-medium-gray) !important;
  text-decoration: none;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

/* Typography */
a.text-link {
  font-family: 'Noto Serif';
  font-weight: 700;
  color: var(--color-black);
  text-decoration: underline;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}
a.text-link:hover {
  font-family: 'Noto Serif';
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: underline;
}
h1 {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.5px;
  line-height: 48px;
  margin: 0px;
  padding: 0px;
}
h2 {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin: 0px;
  padding: 0px;
}
h3 {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin: 0px;
  padding: 0px;
}
h4 {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 24px;
  margin: 0px;
  padding: 0px;
}
h5 {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 24px;
  margin: 0px;
  padding: 0px;
}
h6 {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0px;
  padding: 0px;
}
.text-body {
  font-family: 'Barlow';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}
.text-small {
  font-family: 'Barlow';
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16px;
  line-height: 19px;
}
.paper {
  background: var(--color-white);
  box-shadow: 0 15px 25px 0 rgba(0,0,0,0.07);
}
.no-padding {
  padding: 0px !important;
}

/* Hero */
.hero {
  height: 700px;
  position: relative;
  background-color: var(--color-blue);
  background-image: url('../images/bg-hero.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.hero .container {
  position: relative;
  z-index: 99;
}
.hero h1 {
  text-align: center;
  color: var(--color-white);
}

/* Button */
.btn {
  font-family: 'Noto Serif';
  font-weight: 700;
  font-size: 16px;
  border-radius: 3px;
  padding: 12px 24px;
  text-decoration: none;
  border:0;
  transition: background-image 0.5s;
  box-shadow: 0 3px 3px 0 rgba(0,0,0,0.05);
}
.btn-outline-white {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  box-shadow: 0;
}
.btn-outline-white:hover {
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-blue);
}
.btn-primary {
  color: var(--color-white) !important;
  background-image: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue) 100%);
}
.btn-primary:hover {
  background: none;
  background-image: linear-gradient(90deg, #4684CE 0%, #1E4D87 100%);
}

/* Feature */
.home-feature {
  padding: 0 0 80px 0;
  margin-top: -32px;
}
.feature-box {
  background: var(--color-white);
  box-shadow: 0 15px 25px 0 rgba(0,0,0,0.07);
  padding: 32px;
  height: 100%;
}
.home-feature .col-6 {

  margin-bottom: 16px;
}

.feature-caption {
  color: var(--color-medium-gray);
  line-height: 22px;
}
.feature-icon img {
  width: 56px;
  height: 56px;
}

.feature-icon,.feature-title, .feature-caption {
  margin-bottom: 8px;
}
.feature-more {
  font-size: 13px;
}

/* Our Mission */
.home-mission {
  position: relative;
  background-image: url('../images/bg-our-mission.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-mission:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.home-mission .paper {
  position: relative;
  z-index: 99;
  padding: 80px;
}

/* Footer */
.footer {
  background-color: #3A3F45;
  color: var(--color-white);
  font-size: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Subpage Hero */
.subpage-hero {
  padding: 80px 0 110px;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.subpage-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.subpage-hero .container {
  position: relative;
  z-index: 99;
}
.subpage-hero h1 {
  /* text-shadow: 2px 2px 8px rgba(0,0,0,0.3); */
}
.subpage-hero.company {
  background-image: url('../images/bg-company.jpg');
}
.subpage-hero.services {
  background-image: url('../images/bg-services.jpg');
}
.subpage-hero.executive {
  background-image: url('../images/bg-executive.jpg');
}
.subpage-hero.employment {
  background-image: url('../images/bg-employment.jpg');
}
.subpage-hero.contact {
  background-image: url('../images/bg-contact.jpg');
}
.subpage-content {
  padding: 0px;
  margin-top: -32px;
}
.subpage-content .paper {
  padding: 24px;
}

/* Executive */
.executive-thumb {
  background-color: var(--color-light-gray);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.executive-detail {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.executive-detail-padding {
  padding: 24px;
}
.executive-detail ul {
  margin: 0px;
  padding: 0px;
  list-style-type: square;
  list-style-position: outside;
  font-weight: 400;
  counter-reset: foo;
  display: table;
}
.executive-detail ul > li {
    counter-increment: foo;
    display: table-row;
}
.executive-detail ul > li::before {
    content: '-';
    display: table-cell;
    text-align: right;
    padding-right: 3px;
}
.exerprience-list > .row, .additional-list > .row  {
  font-size: 15px;
  border-bottom: #E1E1E1 1px solid;
  padding:8px 0;
  margin-left: 0px;
  margin-right: 0px;
}
/* Services */
.services .services-list .col-12 {
  margin-bottom: 16px;
}
.services .services-list .col-12 .paper {
  height: 100%;
}
.services-thumb {
  max-height: 250px;
}
.services-detail {
  position: relative;
  padding: 40px 40px 40px 40px;
}
.services-icon {
  background-color: var(--color-white);
  position: absolute;
  left: 40;
  top: -60px;
}
.services-icon img {
  width: 60%;
}

/* Employment */
.position-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: #E1E1E1 solid 1px;
}
.position-title {
  box-shadow: inset 4px 0 0 0 var(--color-blue);
  padding-left: 24px;
  height: 60px;
}
.position-title h3 {
  margin-top: -5px;
}
.position-detail {
  padding-left: 24px;
}
.position-detail ul , .position-detail li{
  margin: 0px;
  padding: 0px;
}
.position-detail ul > li {
    counter-increment: foo;
    display: table-row;
}
.position-detail ul > li::before {
    content: '-';
    display: table-cell;
    text-align: right;
    padding-right: 3px;
}

/* Tabs */
.nav-tabs {
  border: 0;
  position: relative;
	z-index: 0;
}
.nav-tabs:before {
	background-color: #E1E1E1;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	z-index: -1;
	top: calc(50% - 1px);
	left: 0;
}
.nav-tabs .nav-item {
  padding: 0;
}
.nav-tabs .tab-link {
  color: var(--color-medium-gray);
  border: 0;
  background-color: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(225,225,225,0.50);
}
.nav-tabs .tab-link.active {
  color: var(--color-white);
  background-color: var(--color-blue);
  box-shadow: none;
}
.nav-tabs .nav-item:first-child .tab-link {
  border-radius: 4px 0 0 4px;
}
.nav-tabs .nav-item:last-child .tab-link {
  border-radius: 0 4px 4px 0;
}
/* Input */
input.form-control {
  background: var(--color-white);
  border: 2px solid #E1E1E1;
  border-radius: 4px;
  height: 45px;
}
textarea.form-control {
  background: var(--color-white);
  border: 2px solid #E1E1E1;
  border-radius: 4px;
}
.form-group label {
  color: var(--color-medium-gray);
}

/* Modal */
#landing .modal-content {
  background: transparent;
}

#landing .modal-body {
  padding: 0;
}

#landing .close {
  width: 35px;
  height: 35px;
  background-color: #FFFFFF;
  border-radius: 200px;
  margin-right: -20px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1000;
  padding-bottom: 3px;
  opacity: 1;
}


/*Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 48px;
    line-height: 72px;
  }
  .wrapper {
    margin-top: 82px;
    margin-bottom: calc(510px + 60px);
    height: 100%;
  }
  .home-mission {
    margin-bottom: -84px;
  }
  .subpage-content .paper {
    padding: 80px;
  }
  .executive-profile .row {
    position: relative;
    min-height: calc(350px + 0px);
  }
  .executive-thumb {
    width: 60%;
    max-width: 60%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .executive-detail {
    width: 55%;
    max-width: 55%;
    position: absolute;
    bottom: 40px;
    left: 0;
  }
  .services-detail {

  }
  .services-icon {
    width: 100px;
    height: 100px;
  }
  .nav-tabs .tab-link{
    width: 270px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero h1 {
    font-size: 48px;
    line-height: 72px;
  }
  .wrapper {
    margin-top: 82px;
    margin-bottom: calc(510px + 60px);
  }
  .subpage-content .paper {
    padding: 80px;
  }
  .executive-profile .row {
    position: relative;
    min-height: calc(285px + 0px);
  }
  .executive-thumb {
    width: 60%;
    max-width: 60%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .executive-detail {
    width: 55%;
    max-width: 55%;
    position: absolute;
    bottom: 40px;
    left: 0;
  }
  .services-detail {
    padding-top: 40px;
  }
  .services-icon {
    width: 100px;
    height: 100px;
  }
  .nav-tabs .tab-link{
    width: 200px;
  }
  .home-mission {
    margin-bottom: -60px;
  }
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    height: 500px;
  }
  .wrapper {
    margin-top: 82px;
    margin-bottom: calc(492px + 80px);
  }
  .services-detail {
    padding-top: 40px;
  }
  .services-icon {
    width: 100px;
    height: 100px;
  }
  .services-detail {
    padding-top: 40px;
  }
  .services-icon {
    width: 100px;
    height: 100px;
  }
  .home-mission {
    margin-bottom: -62px;
  }
}


/* Extra small devices (portrait phones, less than 576px) */
@media (min-width: 0px) and (max-width: 767.98px) {
  h1 {
    font-size: 26px;
    letter-spacing: 0.5px;
    line-height: 39px;
  }
  h2 {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 27px;
  }
  .wrapper {
    margin-top: 74px;
    margin-bottom: calc(498px + 0px);
  }
  .home-mission {
    margin-bottom: -33px;
  }
  .hero {
    height: 500px;
  }
  .navbar {
    min-height: none;
    padding-top:8px;
    padding-bottom: 8px;
  }
  .navbar-brand img {
    max-height: 48px;
  }
  .container {
    width: 100%;
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .footer {
    font-size: 12px;
    padding: 15px 0 24px;
  }
  .footer .col-12 {
    margin-bottom: -4px;
  }
  .footer .col-12 .mt-2 {
    margin-top: 0px !important;
  }
  .services-detail {
    padding-top: 40px;
  }
  .services-icon {
    width: 80px;
    height: 80px;
    top: -40px;
  }
}
