/* General CSS */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; 
  padding: 0; 
  margin: 0;
}

body {
  font-family: 'Century Gothic', Arial, sans-serif;
  background-color: #fff;
  font-weight: 300;
  font-size: 1.5em;
}

b, strong {
  font-weight: 700;
}

ul, ol {
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

a, input, textarea, button, svg, #wrapper, 
.border-btn:before, .border-btn span, 
.navbar-nav > li:after, .page-switcher .nav-pills > li:before, 
#th-page-body, .page-body, .tab-content, .tab-content>.tab-pane, 
.staff-member, .staff-member-info, .staff-member-info-inner,
.form-image-control, .form-pdf-control,
.footer-btm-part a.dev-by:after {
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

a, a:hover, a:focus, a:visited, a:active {
  color: #fff;
  text-decoration: none;
}

input:focus, textarea:focus {
  outline: 0;
}

.clr {
  clear: both;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0.5em;
  position: relative;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
    padding: 0;
  } 
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  } 
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  } 
}

#preloader {
  z-index: 111;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

#preloader .wheel {
  width: 49px;
  height: 49px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  border: 3px solid #1a2d4b;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  -ms-animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
}

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

@-o-keyframes spin {
  100%{ -o-transform: rotate(360deg); transform: rotate(360deg); }
}

@-ms-keyframes spin {
  100%{ -ms-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes spin {
  100%{ -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-moz-keyframes spin {
  100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
}

#wrapper {
  opacity: 0;
}

/* Navbar */

.navbar {
  background: #fff;
  border-radius: 0;
  margin-bottom: 0;
  border: 0;
}

.navbar-header, .navbar-brand {
  height: 75px;
  margin: 0 !important;
}

.navbar-collapse {
  margin: 0 !important;
}

.navbar-brand {
  padding: 10px
}

.navbar-toggle {
  padding: 21.5px 10px;
}

.navbar-nav > li a {
  font-size: 1.3em;
  color: #122744;
  font-weight: 300;
}

.navbar-nav > li a.active {
  font-weight: 700;
}

.navbar-toggle .icon-bar {
  background-color: #1a2d4b;
}

.navbar-brand img {
  height: 100%;
}

.navbar-nav > li a:focus, .navbar-nav > li a:hover {
  background: none;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  background-color: transparent;
}

.dropdown-menu {
  border: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: #1a2d4b;
  border-radius: 0;
  border-top: 1px solid #fff;
}

.dropdown-menu > li a {
  font-size: 1.1em;
}

@media (max-width: 767.99px) {
  .navbar {
    border: 0;
  }
  
  .navbar-nav .open .dropdown-menu {
    display: block !important;
  }

  .navbar-collapse {
    position: absolute;
    width: 100%;
    z-index: 111;
    background: #fff;
    left: 0px;
  }
  
  .navbar-collapse, .dropdown-menu {
    text-align: center;
  }
  
  #header {
    position: fixed;
    z-index: 111;
    width: 100%;
    left: 0;
    top: 0;
  }
  
  #header, .navbar-collapse {
    border-bottom: 1px solid #e6e2e2;
  }
  
  #th-page-heroimg .heroimg-inner, #th-home-heroimg .heroimg-inner {
    margin-top: 75px;
  }
  
  .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu>li>a {
    padding: 5px 15px 5px 15px;
  }
}

@media(min-width: 768px) {
  .navbar, .navbar-nav, .navbar-header {
    height: auto;
  }
  
  .dropdown-menu {
    border-top: 1px solid #1a2d4b;
  }
  
  .navbar-nav > li:after {
    content: '';
    position: absolute;
    bottom: -0px;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .navbar-nav > li:hover::after {
    border-bottom: 10px solid #1a2d4b;
  }
  
  .navbar-nav > li a {
    font-size: 1.1em;
  }
  
  .dropdown-menu > li a {
    color: #fff;
    font-size: 1em;
  }
  
  .dropdown-menu > li a:hover, .dropdown-menu > li a:focus {
    text-decoration: underline;
    color: #fff;
  }
  
  .navbar-header {
    margin: 0 auto;
    float: none;
    text-align: center;
  }
  
  .navbar-brand {
    height: 83px;
    padding: 15px;
    float: none;
    display: inline-block;
    padding-bottom: 0;
  }
  
  .navbar-collapse {
    text-align: center;
  }
  
  .navbar-nav {
    display: block;
    float: none;
    margin: 0 auto;
  }
  
  .navbar-nav > li {
    float: none;
    display: inline-block;
    padding: 10px 0;
  }
}

@media(min-width: 768px) and (max-width: 991.99px) {
  li.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
  }
  
  .navbar-nav > li {
    max-width: auto;
  }
  
  .navbar-nav > li > a {
    padding: 10px 9px;
  }
}

/* Pagination */

.pagination {
  padding: 10px 0;
  padding-top: 25px;
  margin: 0;
}

.news-container-2 + .pagination {
  padding: 10px;
  padding-top: 25px;
}

.pagination a {
  color: #f09c48 !important
}

/* Pages */

section {
  padding: 0;
}

p {
  margin: 1em auto;
  font-size: 1.1em;
  margin-top: 0;
}

.border-btn {
  display: inline-block;
  color: #fff;
  border: 2px solid;
  border-radius: 5px;
  padding: 0.75em 2em;
  font-size: 1.2em;
  position: relative;
  overflow: hidden;
}

.border-btn span {
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.border-btn:before {
  transform: rotateZ(90deg);
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #fff;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.border-btn:hover span {
  color: #f09c48;
}

.border-btn:hover {
  background-color: #fff;
}

.border-btn:hover::before {
  height: 100%;
  transform: rotateZ(0deg);
}

/* Home */

#th-home-heroimg {
  background: url(../img/bg-singapore.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-height: 700px) {
  #th-home-heroimg {
    padding-top: 3em;
  }
}

@media (min-width: 768px) {
  #th-home-heroimg {
    min-height: calc(100vh - 155px);
    min-height: -webkit-calc(100vh - 155px);
    min-height: -moz-calc(100vh - 155px);
    min-height: -ms-calc(100vh - 155px);
    min-height: -o-calc(100vh - 155px);
  }
}

@media (min-height:1200px) {
  #th-home-heroimg {
    max-height: 950px;
    min-height: auto;
    background: url(../img/bg-singapore.jpg) center 35% no-repeat;
    background-size: cover;
  }
  
  #th-home-heroimg .heroimg-inner {
    padding-top: 250px;
  }
  
  #th-home-heroimg .heroimg-footer {
    padding-top: 200px;
    padding-bottom: 250px;
  }
}

.heroimg-overlay {
  background-color: rgba(26, 45, 75, 0.40);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

#th-home-heroimg .heroimg-overlay, #th-home-facts .heroimg-overlay, #th-home-careers .heroimg-overlay {
  background-color: rgba(26, 45, 75, 0.50);
}

.heroimg-inner, .heroimg-footer {
  text-align: center;
  position: relative;
}

.heroimg-inner {
  padding-top: 10%;
}

.heroimg-inner h1 {
  text-transform: uppercase;
  font-size: 2.5em;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 3px;
}

.heroimg-inner h3 {
  font-size: 1.5em;
  color: #fff;
  margin: 0 auto;
  font-weight: 300;
}

.heroimg-footer {
  padding-top: 10%;
  padding-bottom: 4em;
}

@media (min-width: 500px) {
  .heroimg-inner h1 {
    font-size: 4em;
  }
  
  .heroimg-inner h3 {
    font-size: 2em;
  }
  
  .border-button {
    font-size: 1.2em;
  }
}

#th-home-whoweare, #th-home-news {
  background-color: #f6f6f6;
  padding: 40px 0 20px 0;
  text-align: center;
}

@media (min-width: 768px) {
  #th-home-whoweare, #th-home-news {
    padding: 80px 0 60px 0;
  }
}

#th-home-whoweare h2, #th-home-news h2 {
  color: #1a2d4b;
  text-align: center;
  margin: 0;
  margin-bottom: 40px;
}

.whoweare-bl {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  width: 240px;
  min-width: 51%;
  padding: 10px;
}

@media (min-width: 500px) {
  #th-home-whoweare h2, #th-home-news h2 {
    font-size: 2.7em;
  }
}

@media (min-width: 768px) {
  .whoweare-bl {
    width: 32%;
    min-width: auto;
  }
}

.whoweare-ic {
  width: 100%;
}

.whoweare-ic h3 {
  font-size: 1.5em;
  margin: 1em 0;
  display: inline-block;
  width: 100%;
  color: #1a2d4b;
  font-weight: normal;
  max-width: 210px;
}

.whoweare-ic img {
  width: 40%;
  min-width: 125px;
  max-width: 250px;
}

.whoweare-bl p {
  max-width: 300px;
}

#th-home-facts {
  background: #1a2d4b url(../img/bg-istanbul.jpg) bottom center no-repeat;
  background-size: cover;
  color: #c7cad1;
  padding: 80px 0 80px 0;
  position: relative;
}

body.no-mobile #th-home-facts {
  background-attachment: fixed;
}

#th-home-facts h2, #th-home-careers h2 {
  text-align: center;
  color: #f09c48;
  margin: 0px auto 40px auto;
}

@media (min-width: 500px) {
  #th-home-facts h2, #th-home-careers h2 {
    font-size: 2.7em;
    max-width: 500px;
  }
}

#th-home-facts p {
  color: #fff;
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

#th-home-facts .facts-swiper {
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

#th-home-facts .swiper-wrapper {
  align-items: center;
}

#th-home-facts .swiper-container {
  width: 90%;
}

@media (min-width: 992px) {
  #th-home-facts {
    padding: 80px 0 80px 0;
  }
  
  #th-home-facts .facts-swiper {
    width: 650px;
    width: calc(100% - 320px);
    width: -webkit-calc(100% - 320px);
    width: -moz-calc(100% - 320px);
    width: -ms-calc(100% - 320px);
    width: -o-calc(100% - 320px);
  }
  
  #th-home-facts h2 {
    width: 300px;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
}

#th-home-facts .swiper-button-prev {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ3Ny4xNzUgNDc3LjE3NSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDc3LjE3NSA0NzcuMTc1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCI+CjxnPgoJPHBhdGggZD0iTTE0NS4xODgsMjM4LjU3NWwyMTUuNS0yMTUuNWM1LjMtNS4zLDUuMy0xMy44LDAtMTkuMXMtMTMuOC01LjMtMTkuMSwwbC0yMjUuMSwyMjUuMWMtNS4zLDUuMy01LjMsMTMuOCwwLDE5LjFsMjI1LjEsMjI1ICAgYzIuNiwyLjYsNi4xLDQsOS41LDRzNi45LTEuMyw5LjUtNGM1LjMtNS4zLDUuMy0xMy44LDAtMTkuMUwxNDUuMTg4LDIzOC41NzV6IiBmaWxsPSIjYzdjYWQxIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

#th-home-facts .swiper-button-next {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ3Ny4xNzUgNDc3LjE3NSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDc3LjE3NSA0NzcuMTc1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCI+CjxnPgoJPHBhdGggZD0iTTM2MC43MzEsMjI5LjA3NWwtMjI1LjEtMjI1LjFjLTUuMy01LjMtMTMuOC01LjMtMTkuMSwwcy01LjMsMTMuOCwwLDE5LjFsMjE1LjUsMjE1LjVsLTIxNS41LDIxNS41ICAgYy01LjMsNS4zLTUuMywxMy44LDAsMTkuMWMyLjYsMi42LDYuMSw0LDkuNSw0YzMuNCwwLDYuOS0xLjMsOS41LTRsMjI1LjEtMjI1LjFDMzY1LjkzMSwyNDIuODc1LDM2NS45MzEsMjM0LjI3NSwzNjAuNzMxLDIyOS4wNzV6ICAgIiBmaWxsPSIjYzdjYWQxIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

#th-home-facts .swiper-slide-inner {
  padding: 0 1em;
}

#th-home-facts .swiper-slide-inner p {
  font-style: italic;
  text-align: center;
}

.testimonial-author {
  text-align: right;
}

.author-i, .testimonial-author img {
  display: inline-block;
  vertical-align: middle;
}

.testimonial-author img { 
  width: 100px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(6, 21, 45, 0.95);
  -webkit-box-shadow: 0px 0px 10px rgba(6, 21, 45, 0.95);
  -moz-box-shadow: 0px 0px 10px rgba(6, 21, 45, 0.95);
  -ms-box-shadow: 0px 0px 10px rgba(6, 21, 45, 0.95);
  -o-box-shadow: 0px 0px 10px rgba(6, 21, 45, 0.95);
}

.author-i {
  padding: 0.5em;
  text-align: left;
  color: #fff;
}

@media (max-width: 640px) {
  .author-i, .testimonial-author img {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

#th-home-news {
  background: #fff;
  position: relative;
}

#th-home-news .bg-star {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 95%;
  max-height: 576px;
  max-width: 90%;
}

#th-home-news h2 {
  color: #90969c;
}

#th-home-news .news-container {
  padding-bottom: 10px;
}

.news-bl {
  width: 98%;
  display: inline-block;
  vertical-align: top;
  padding: 10px;
  text-align: left;
  max-width: 500px;
}

@media (min-width: 768px) {
  .news-bl {
    width: 32%;
  }
  
  .tab-pane .news-bl {
    width: 49.5%;
  }
}

.news-bl img {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
}

.read-more {
  margin-left: 15px;
}

.go-back {
  display: block;
}

.go-back, .go-back:hover, .go-back:focus,
.read-more, .read-more:focus, .read-more:hover,
#th-1col-body a {
  color: #f09c48 !important;
}

.go-back:hover, .go-back:focus,
.read-more:focus, .read-more:hover {
  text-decoration: underline;
}

.news-bl h4 a {
  color: inherit;
  font-weight: 700;
  margin: 0;
}

.news-bl a:hover {
  text-decoration: underline;
}

#th-home-careers {
  background: url('../img/bg-careers.jpg') bottom center no-repeat;
  background-size: cover;
  position: relative;
  padding: 40px 0 25px 0;
  color: #fff;
  text-align: center;
}

#th-home-careers p {
  max-width: 700px;
}

#th-home-careers strong {
  color: #f19d47;
}

#th-home-careers ul {
  font-size: 1.1em;
  display: inline-block;
  text-align: left;
  list-style: none;
  margin: 1em auto;
  margin-top: 0;
  padding: 0 1em;
}

#th-home-careers ul > li {
  padding-left: 25px;
  background: url('../img/pointed-star.png') 0 0 no-repeat;
  padding: 0px 0px 15px 30px;
  background-size: 20px;
}

@media (min-width: 992px) {
  #th-home-careers {
    padding: 80px 0 65px 0;
  }
}

@media (min-width: 768px) {
  #th-home-careers p {
    text-align: left;
  }
}

/* Pages */

#th-page-body, #th-1col-body {
  padding: 40px 0;
}

#th-page-heroimg[data-page=about] {
  background: url(../img/about.jpg) center no-repeat;
}

#th-page-heroimg[data-page=investments] {
  background: url(../img/investments.jpg) center no-repeat;
}

#th-page-heroimg[data-page=geography] {
  background: url(../img/geography.jpg) center no-repeat;
}

#th-page-heroimg[data-page=industries] {
  background: url(../img/industries.jpg) center no-repeat;
}

#th-page-heroimg[data-page=insights] {
  background: url(../img/insights.jpg) center no-repeat;
}

#th-page-heroimg[data-page=team] {
  background: url(../img/team.jpg) center no-repeat;
}

#th-page-heroimg[data-page=contact] {
  background: url(../img/contact.jpg) center no-repeat;
}

#th-page-heroimg[data-page=terms] {
  background: url(../img/terms.jpg) center no-repeat;
}

#th-page-heroimg, 
#th-page-heroimg[data-page=about], 
#th-page-heroimg[data-page=investments], 
#th-page-heroimg[data-page=geography], 
#th-page-heroimg[data-page=industries], 
#th-page-heroimg[data-page=insights], 
#th-page-heroimg[data-page=team], 
#th-page-heroimg[data-page=contact],
#th-page-heroimg[data-page=terms] {
  background-size: cover;
  position: relative;
}

#th-page-heroimg .heroimg-inner {
  padding: 60px 0;
}

.page-switcher {
  display: none;
  width: 300px;
  float: left;
  border-right: 3px solid #1a2d4b;
}

@media (max-width: 767.99px) {
  #th-page-body, #th-1col-body, .tab-pane > p, .page-body h3, #th-1col-body h3 {
    text-align: justify !important;
  }
  
  #th-page-body .tab-pane ul, #th-page-body .tab-pane ol, #th-1col-body ul, #th-1col-body ol {
    text-align: left;
    display: inline-block;
  } 
}

@media (min-width: 768px) {
  #th-page-body, #th-1col-body {
    padding: 80px 0;
  }

  #th-page-heroimg .heroimg-inner {
    padding: 120px 0;
  }
}

@media (min-width: 992px) {
  .page-switcher {
    display: block;
  }
  
  #th-page-body, #th-1col-body {
    min-height: calc(100vh - 688px);
    min-height: -webkit-calc(100vh - 688px);
    min-height: -moz-calc(100vh - 688px);
    min-height: -ms-calc(100vh - 688px);
    min-height: -o-calc(100vh - 688px);
  }
  
  .page-body {
    width: 650px;
    width: calc(100% - 300px);
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: -ms-calc(100% - 300px);
    width: -o-calc(100% - 300px);
    float: left;
    padding: 0 2em;
  }
}

@media (min-width: 1200px) {
  .page-body {
    width: 800px;
    width: calc(100% - 300px);
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: -ms-calc(100% - 300px);
    width: -o-calc(100% - 300px);
  }
}

.page-switcher .nav-pills {
  text-align: right;
}

.page-switcher .nav-pills > li {
  padding-right: 10px;
}

.page-switcher .nav-stacked>li+li {
  margin: 0;
}

.page-switcher .nav-pills > li > a {
  color: #1a2d4b;
  font-size: 1.1em;
}

.page-switcher .nav-pills > li:before {
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.page-switcher .nav-pills > li:hover::before {
  border-right: 10px solid rgba(26, 45, 75, 0.25);
}

.page-switcher .nav-pills > li.active::before,
.page-switcher .nav-pills > li.active:hover::before{
  border-right: 10px solid #1a2d4b;
}

.nav-pills>li>a, .nav-pills>li>a:focus, .nav-pills>li>a:hover,
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  background-color: transparent;
  color: #1a2d4b;
}

.page-body h3, #th-1col-body h3 {
  margin: 0 0 25px 0;
  font-weight: 700;
}

.page-body ul, .page-body ol, #th-1col-body ul, #th-1col-body ol {
  margin: 1em auto;
  font-size: 1.1em;
  margin-top: 0;
}

.tab-pane > p, .page-body h3, #th-1col-body h3 {
  padding: 0 1em;
  text-align: center;
}

@media (max-width: 767.99px) {
  #th-1col-body {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.darkbl-link {
  color: #333 !important;
}

.darkbl-link:hover, .darkbl-link:focus  {
  color: #333 !important;
  text-decoration: underline;
}

@media (min-width: 768px) {
  #th-1col-body h3 {
    text-align: left;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .tab-pane > p, .page-body h3 {
    padding: 0;
    text-align: left;
  }
}

#th-1col-body .container {
  max-width: 700px;
}

#th-1col-body .date {
  display: block;
  margin-bottom: 10px;
  font-style: italic;
}

#th-1col-body img.main-pic {
  max-width: 100%;
  padding: 0 0 20px 0;
}

@media (min-width: 768px) {
  #th-1col-body img.main-pic {
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  #th-1col-body img { 
    display: block;
  }
  
  #th-1col-body img.main-pic {
    float: left;
    width: 65%;
    padding: 2px 20px 20px 0px;
  }
  
  img.align-right {
    display: block;
    float: right;
    padding: 15px 0 15px 15px;
    max-width: 55%;
  }
  
  img.align-left {
    display: block;
    float: left;
    padding: 15px 15px 15px 0;
    max-width: 55%;
  }
  
  img.align-center {
    display: block;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  #th-1col-body img.main-pic {
    margin-left: -10%;
  }
}

#th-1col-body img.in-top {
  padding-top: 0;
}

#th-1col-body img.in-bottom {
  padding-bottom: 0;
}

/* Portfolio */

.portfolio-container {
  text-align: center;
}

.portfolio-container-inner {
  display: inline-block;
  width: 100%;
}

.portfolio-item {
  background-color: #1a2d4b;
  color: #fff;
  display: inline-block;
  position: relative;
  width: 90%;
  margin-top: 1em;
}

.portfolio-item .inner {
  padding: 2em 1em;
  text-align: center;
  width: 100%;
}

@media(min-width: 768px) {
  .portfolio-item {
    width: 50%;
    min-height: 200px;
    float: left;
    margin: 0;
  }
  
  .portfolio-item .inner {
    padding: 1em;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  
  .portfolio-container-inner {
    display: inline-block;
  }
}

@media(min-width: 1200px) {
  .portfolio-item {
    width: 33.33%;
    min-height: 250px;
  }
  
  .portfolio-container {
    text-align: left;
  }
}

.portfolio-item img {
  width: 155px;
  margin-bottom: 1em;;
  display: inline-block;
}

#item-1.portfolio-item img {
  width: 200px;
}

.portfolio-item a {
  color: #fff;
}

.portfolio-item a:hover {
  text-decoration: underline;
}

.portfolio-item:nth-child(3n+1) {
  background-color: #30415c;
}

.portfolio-item:nth-child(3n+2) {
  background-color: #47576f;
}

.portfolio-item:nth-child(3n+3) {
  background-color: #5e6b80;
}

@media (min-width: 768px) {
  .portfolio-item:nth-child(4n+1), .portfolio-item:nth-child(4n+4) {
    background-color: #30415c;
  }
  .portfolio-item:nth-child(4n+2), .portfolio-item:nth-child(6n+3) {
    background-color: #47576f;
  }
}

@media (min-width: 1200px) {
  .portfolio-item:nth-child(6n+1), .portfolio-item:nth-child(6n+5) {
    background-color: #30415c;
  }
  .portfolio-item:nth-child(6n+2), .portfolio-item:nth-child(6n+6) {
    background-color: #47576f;
  }
  .portfolio-item:nth-child(6n+3), .portfolio-item:nth-child(6n+4) {
    background-color: #5e6b80;
  }
}

.portfolio-item:hover {
  background-color: #1a2d4b !important;
}

/* Team */

.member-pic {
  max-width: 245px;
  display: inline-block;
  padding: 0 10px 10px 10px;
}

@media (min-width: 768px) {
  .member-pic {
    max-width: 175px;
    float: left;
    padding: 5px 15px 15px 0;
  }
}

/* Map */

.world-map {
  width: 100%;
  height: 300px;
  margin-bottom: 1em;
}

@media (min-width: 640px) {
  .world-map {
    height: 400px;
  }
}

/* Staff */

.staff-member {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  background-color: #a2aab9;
  position: relative;
  cursor: pointer;
}

.staff-member > p {
  margin: 0;
}

.staff-member:nth-child(2) {
  margin-top: 0;
}

.staff-member:hover, .staff-member.active {
  background-color: #1a2d4b;
  color: #fff;
}

.staff-member-info {
  width: 100%;
}

.staff-member-info-inner {
  padding: 20px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .staff-member-info-inner {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .staff-member {
    text-align: left;
  }
}

/* Contact Form */

textarea {
  resize: none;
}

input, textarea {
  background-color: #fcfcfc;
  padding: 0.5em;
  border: 1px solid #a9a9a9;
  border-left: 2px solid #b1b1b1;
  border-top: 2px solid #b1b1b1;
  box-shadow: 2px 2px 1px #f3f3f3;
  -webkit-box-shadow: 2px 2px 1px #f3f3f3;
  border-radius: 5px;
  font-style: italic;
}

input:focus, textarea:focus {
  box-shadow: 2px 2px 1px #c1c0c0;
  -webkit-box-shadow: 2px 2px 1px #c1c0c0;
}

textarea.error, input.error {
    border-color: #a94442;
}

textarea.valid, input.valid {
    border-color: #3c763d;
}

input::placeholder,
textarea::placeholder{
  color: #d6d6d6;
}

button[type=submit], input[type=submit] {
  border: 0;
  background-color: #1a2d4b;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
  height: 39px;
}

button[type=submit]:hover, input[type=submit]:hover {
  background-color: #f09c48;
}

.alert {
  padding: 10px;
  margin-bottom: 5px;
  border-width: 2px;
  border-radius: 5px;
}

#th-1col-body .alert, #th-page-body .alert {
  width: 98%;
  margin: 5px auto;
}

#th-page-body .alert {
  max-width: 685px;
  margin: 5px 7.5px;
}

#contact-form {
  text-align: center;
}

#contact-form input, #contact-form textarea, #resume-form input, #resume-form textarea {
  width: 98%;
  float: left;
  margin: 1%;
}

@media (min-width: 768px) {
  #contact-form input, #resume-form input {
    width: 48%;
  }
}

#contact-form button[type=submit] {
  margin: 1%;
}

#contact-form > p, #resume-form > p {
  color: #f09c48;
}

/* Newsletter */

#th-newsletter {
  position: relative;
  padding: 40px 0 40px 0;
  text-align: center;
}

#th-newsletter .bg-newsletter {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.05;
  z-index: -1;
}

#th-newsletter h2 {
  color: #1a2d4b;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
  font-weight: bold;
}

#th-newsletter h2:before {
  content: '';
  height: 3px;
  background-color: #1a2d4b;
  top: 0px;
  margin-top: -40px;
  width: 60%;
  left: 50%;
  margin-left: -30%;
  position: absolute;
}

#th-newsletter h2:after {
  content: '';
  top: 3px;
  margin-top: -40px;
  width: 0;
  height: 0;
  left: 50%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1a2d4b;
  margin-left: -10px;
  position: absolute;
}

#th-newsletter input[type=email] {
  width: 60%;
  max-width: 350px;
  margin-top: 5px;
  margin-right: 5px;
}

#th-newsletter form > div > input {
  width: 47.6%;
  float: left;
  margin: 5px;
}

@media (max-width: 767.99px) {
  #th-newsletter input[type=email] {
    margin-top: 1.2%;
    margin-right: 1.2%;
  }
  
  #th-newsletter form > div > input {
    margin: 1.2%;
  }
}

#th-newsletter form > div {
  max-width: 470px;
  margin: 0 auto;
}

/* Resume Submission */

#resume-form {
  max-width: 700px;
  text-align: center;
}

#resume-form button[type=submit] {
  direction: inline-block;
  vertical-align: top;
  margin: 1% 0;
}

.form-image-control, .form-pdf-control {
  border: 0;
  background-color: #1a2d4b;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  margin: 1%;
}

.form-pdf-control {
  height: 39px;
  line-height: 1.6;
}

input[type=file].error + .form-image-control, input[type=file].error + .form-pdf-control {
  background-color: #a94442;
}

input[type=file].valid + .form-image-control, input[type=file].valid + .form-pdf-control {
  background-color: #3c763d;
}

.form-image-control p, .form-pdf-control p {
  margin-bottom: 0;
  font-size: 1em;
  font-weight: normal;
}

.form-image-control:hover, .form-pdf-control:hover {
  background-color: #f09c48;
}

.form-image-control img, .form-pdf-control img {
  width: 100%;
  border-radius: 5px;
}

.file-input {
  width: 0.1px !important;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

/* Footer */

#th-footer-menu {
  background: url(../img/footer-bg.jpg) center no-repeat;
  background-color: #ebebeb;
  background-size: cover;
  text-align: center;
  padding: 1em 0 2em 0;
}

#th-footer-menu ul>li>a {
  color: #424242;
}

.footer-menu-col {
  width: 98%;
  list-style: none;
  display: inline-block;
  font-size: 1.1em;
  vertical-align: top;
  margin: 0;
  padding: 0 10px;
}

.footer-menu-col li {
  padding: 0.25em 0;
}

.footer-menu-col li.menu-col-head {
  color: #424242;
  font-weight: 700;
  padding: 0.75em 0;
  font-size: 1.4em;
}

.footer-menu-col li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-menu-col {
    width: 32%;
    padding: 10px;
  }
}

#th-footer-copyright {
  background-color: #1a2d4b;
  text-align: center;
  padding: 1em 0;
  padding-bottom: 2em;
}

.footer-btm-part {
  width: 100%;
  display: inline-block;
  font-size: 1.1em;
  vertical-align: middle;
}

.footer-logo {
  max-width: 140px;
  padding: 1em;
}

.footer-contacts {
  display: inline-block;
  font-size: 1em;
  vertical-align: middle;
  color: #fff;
  padding: 1em 0;
  max-width: 350px;
}

@media (min-width: 768px) and (max-width:991.999px) {
  .footer-contacts {
    max-width: 210px;
  }
}

@media (min-width: 992px) and (max-width:1199.999px) {
  .footer-contacts {
    max-width: 240px;
  }
}

.footer-contacts a {
  margin-top: 0.5em;
  display: inline-block;
  font-weight: 700;
}

.footer-contacts a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  #th-footer-copyright {
    padding-bottom: 1em;
  }
  
  .footer-btm-part {
    width: 48%;
  }
  
  .footer-contacts {
    text-align: left;
  }
}

.social-icon-wrap {
  display: inline-block;
  width: 52px;
  height: 52px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0);
  border-radius: 50%;
}

.social-icon-wrap:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.footer-btm-part .social-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.footer-btm-part span {
  color: #fff;
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-btm-part a.dev-by {
  color: #fff;
  position: relative;
  text-decoration: none;
  padding-top: 10px;
}

.footer-btm-part a.dev-by:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.footer-btm-part a.dev-by:hover::after {
  background-color: #f09c48;
}

.footer-btm-part a.dev-by:hover {
  color: #f09c48;
}

@media (min-width: 1200px) {
  .footer-btm-part:nth-child(2n+2) {
    padding-left: 350px;
  }
}

.empea-member img, .empea-member span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: bold;
}

.empea-member img {
  width: 100px;
}

@media (min-width: 1200px) {
  .empea-member {
    position: absolute;
    margin-left: 475px;
    margin-top: -25px;
  }
}