@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700'); 
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900');

/*@import url("responsive.css");*/

* {
    padding: 0;
    margin: 0;
}

body {
    background: #f2f9ff; 
    color: #222;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Noto Sans JP', sans-serif; */
    -webkit-font-smoothing: antialiased
}

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}
/*
@viewport {
    width: device-width;
}
*/

a {
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #424242;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

strong{
    font-weight: 500;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

h2 {
    font-size: 26px;
    font-weight: 500;
}

p {
    line-height: 24px;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    color: #ff9c00;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn {
    white-space: normal;
    cursor: pointer;
}

.btn:focus, .btn:active {
    outline: inherit;
}

textarea:focus, input:focus {
    color: #ffffff;
    outline: none;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.theme-color{
  background: #468fe2;
}

/********************************************/

.top-bar{
  background: #11618a;
  color: #fff;
  font-weight: 300;
  padding: 4px 0 5px 0;
  position: relative;
  z-index: 100;
}

.text-top-left{
  font-size: 14px;
  padding: 12px 5px 10px 5px;
}

.search-area{
  overflow: hidden;
}

.search-area .search-container {
  float: right;
}

.search-area input[type=text] {
  padding: 6px;
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  border: 1px solid #dce1db;
}

.search-area input {
  height:30px;
  background: #136792;
  width: 210px;
}

.search-area input::placeholder {
  color: #b5c7d7;
  font-size: 15px;
  font-weight: 400;
 }

.search-area .search-container button {
  display: inline-block;
  float: right;
  padding: 3px 12px 3px 12px;
  margin-top: 8px;
  margin-right: 5px;
  background: #fff;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.search-area .search-container button:hover {
  background: #ccc;
}

.search-area .search-container i{
  color: #136792;
}

/*--------Main Menu---------*/

.header-area {
    padding: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5b9ce4+0,3c78b9+100 */
    background: #5b9ce4; /* Old browsers */
    background: -moz-linear-gradient(top, #5b9ce4 0%, #3c78b9 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #5b9ce4 0%,#3c78b9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #5b9ce4 0%,#3c78b9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b9ce4', endColorstr='#3c78b9',GradientType=0 ); /* IE6-9 */
    /* border-bottom: 1px solid #e3e3e3;  */
    position: relative;
    z-index: 1000;
}

.header-area .navbar {
    padding: 0 1rem;
    z-index: 100;
}

.navbar-brand{ 
    margin-top: -5px;
    margin-left: -14px;
 }

 .logo{ 
  width: 90%;
} 

.main-menu{
    margin-right: -40px;
    padding: 10px 0;
}

.main-menu li{
    display: inline-block;
}

.main-menu li a{
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin:0 20px;
    color: #fff;
}

.main-menu li a:hover, .main-menu li a:focus, .main-menu li a:active, .user li a:hover, .user li a:focus{
    color: #91fc29;
    border-radius: 2px;
}

.main-menu li:not(:first-child)::before{
    content: url(../img/main-menu-separetor.png);
    /* content: "|"; */
    color: #fff;
    font-weight: 200;
    position: absolute;
    margin-top: 12px;
    /*margin-left: 100px;*/
}

.main-menu .dropdown-menu{
  margin-top: 2px;
  border-radius: 0 0 4px 4px;
  border: 0;
  padding-bottom: 20px;
  /* background: #407cbe; */
  background: rgb(64, 124, 190, .9);
}

.overflow-y-scroll{
  max-height: 275px;
  overflow-x: hidden;
  overflow-y: scroll; 
}

.main-menu .dropdown-menu a{
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.main-menu .dropdown-menu a:hover, .main-menu .dropdown-menu a:focus{
  background: none;
  color: #91fc29;
}

.main-menu .dropdown-item{
  padding: .2rem .5rem .1rem .5rem; 
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

/*---------Hero Area---------*/

.breadcrumb-container{
  background: #d0effe;
  /* border-bottom: 1px solid #fff;  */
}
ul.breadcrumb {
  padding: 11px 0 0 15px;
  list-style: none;
  background: transparent;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}
ul.breadcrumb li+li:before { 
  padding: 8px;
  color: black;
  /*content: ">"*/
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900; 
  content: "\f054";
  font-size: 14px;
}
ul.breadcrumb li a {
  color: #333;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #2d82be;
  text-decoration: underline;
}

.hero-area {
  background: url(../img/bg-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 45% 55%;
  /* 
  background: #1f97d2; 
  background: -moz-linear-gradient(top, #1f97d2 0%, #1b8cc6 100%); 
  background: -webkit-linear-gradient(top, #1f97d2 0%,#1b8cc6 100%); 
  background: linear-gradient(to bottom, #1f97d2 0%,#1b8cc6 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f97d2', endColorstr='#1b8cc6',GradientType=0 );
   */
  z-index: 10;
}

.bg-container{
  position: relative;
  z-index: 10;
}

.cloud-01, .cloud-02, .cloud-03, .cloud-04{
  position: absolute;
}

.cloud-01{
  margin-top: 40px;
  margin-left: -30px;
}
.cloud-02{
  margin-top: 280px;
  margin-left: 170px;
}
.cloud-03{
  margin-top: 35px;
  margin-left: 430px;
}
.cloud-04{
  right: 0;
  margin-top: 35px;
  margin-right: -20px;
}

.glow{
  position: absolute;
  margin: -30px 0 0 250px; 
}

.model{
  bottom: 0;
  z-index: 2;
}

/* .cloud{
  background-image: url('../img/cloud.png');
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 10% 100%; 
} */

.hero-left h2{
  font-size: 54px;
  line-height: 48px;
  color: #fff;
  margin-top: 140px;
  text-transform: uppercase;
}

.hero-left .first-letter{
  display: inline-block;
  color: #1e92cd;
  background: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  margin-right: 4px;
  box-shadow: #1874a3 3px 3px;
}

.hero-left .other-letter{
  font-size: 52px;
  text-shadow: #1874a3 2px 2px;
}

.hero-left h4{
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 1.4px;
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
  text-shadow: #1874a3 2px 1px;
}

.hero-right{
  margin-top: 30px;
}

/*-------Service Area-------*/

.title-area h2{
  font-size: 52px;
  font-weight: 600;
  margin-top: 40px;
  text-transform: uppercase;
  text-shadow: #d0d6da 2px 2px;
}

.title-area h2 span{
   color: #1c79a7;
}  

.title-area p{
  font-size: 20px;
  font-weight: 300;
}

.services-area{

}

.service-single {
  padding: 20px;
  position: relative;
  min-height: 365px;
  text-align: center;
  box-shadow: 0 0 18px #c6daf0;
}
.service-single:hover {
  background: #1874a3;
  color: #fff;
  transition: .7s;
  cursor: pointer;
}

.service-single h4 {
  color: #1c79a7;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 15px;
  min-height: 120px;
}
.service-single:hover h4 {
  color: #ffffff;
}
.service-single p{
  font-weight: 500;
}

.service-single h4.service-01:before {
  content: url('../img/icon-service-01.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-01:before {
  content: url('../img/icon-service-01-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-02:before {
  content: url('../img/icon-service-02.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-02:before {
  content: url('../img/icon-service-02-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-03:before {
  content: url('../img/icon-service-03.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-03:before {
  content: url('../img/icon-service-03-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-04:before {
  content: url('../img/icon-service-04.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-04:before {
  content: url('../img/icon-service-04-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-05:before {
  content: url('../img/icon-service-05.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-05:before {
  content: url('../img/icon-service-05-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-06:before {
  content: url('../img/icon-service-06.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-06:before {
  content: url('../img/icon-service-06-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-07:before {
  content: url('../img/icon-service-07.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-07:before {
  content: url('../img/icon-service-07-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

.service-single h4.service-08:before {
  content: url('../img/icon-service-08.png');
  margin: -5px 0 0 10px;
  display: block;
}
.service-single:hover h4.service-08:before {
  content: url('../img/icon-service-08-hover.png');
  margin: -5px 0 0 10px;
  display: block;
}

/*-------Strong Points-------*/

.strong-points-area {
  background: url(../img/bg-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 45% 55%;
}

.title-area-2 h2{
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  color: #91e873;
  text-shadow: #1c74a0 2px 2px;
}

.title-area-2 h2 span{
  color: #fff;
}

.strong-points-area {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.strong-points-area h3{
  line-height: 36px;
  color: #fff;
  font-weight: 500;
}

.strong-points-area h3 span{
  border-bottom: 3px solid #fff;
}

/*-------Translation Fields-------*/

.trans-field-body h3{
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  padding: 15px;
  color: #fff;
  background: #2189bd;
  min-height: 86px;
}

.trans-field-body p{
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  min-height: 230px;
  border: 1px solid #888;
  border-bottom: 6px solid #2189bd;
}

/*-------Archive-------*/

.archive-area{
  background: url(../img/bg-02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 45% 55%;
}

.archive-body{
  color: #222;
  background: #fff;
  padding: 30px 30px 20px 30px;
  margin-bottom: 60px;
}

.archive-body p{
  padding-left: 30px;
  font-weight: 500;
}  

.archive-body p:not(:last-child){
  padding-bottom: 15px;
  border-bottom: 1px dashed #2398d4;
}

.archive-body p:before{
  content: url(../img/bullet-archive.png);
  position: absolute;
  margin: 0 0 0 -30px;
}

.archive-body span{
  color: #444;
}

/*-------Partner-------*/

.partner-container{
  background: #eee;
  padding-bottom: 20px;
  border-bottom: 1px solid #0a7bc1;
}

.partner-iteam {
  width: 12.5%;
  float: left;
  padding: 15px 15px 0 0; 
}

.partner-logo{
  border: 1px solid #e6e6e6; 
}

.btn-collaps{
  margin-top: -7px;
}

.partner-logo{
  /* transform-origin: center center; */
  /* -webkit-transition: width 2s, height 4s;  */
  /* transition: width .5s, height .5s; */
  transition: transform 0.8s ease-in-out;
  -webkit-transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
}

.partner-logo:hover{
  z-index: 2;
  transform: rotateY(360deg);
}
/*-------About B-Cause-------*/

.about-area{
  background: url(../img/bg-03.jpg); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 45% 55%;
}

.about-body{
  padding: 0 30px;
  margin-bottom: 70px;
}

.about-single{
  position: relative;
  margin-top: 30px;
}

.about-single{
  /* transform-origin: center center; */
  /* -webkit-transition: width 2s, height 4s;  */
  /* transition: width .5s, height .5s; */
  transition: all 200ms ease-in;
  transform: scale(1); 
}

.about-single:hover{
  box-shadow: 0px 0px 120px #333;
  z-index: 2;
  transition: all 200ms ease-in;
  transform: scale(1.1);
}

.about-single .card{
  border: 0;
  border-radius: 0;
}

.about-single .card-body h5{
  font-size: 16px;
}

.about-single .card-img-top {
  width: 100%;
  border-top-left-radius: calc(0rem - 1px);
  border-top-right-radius: calc(0rem - 1px);
}

/*---------Footer---------*/

.footer-upper{
  margin-top: 80px;
}

.footer-con{
  background: #265897;
  color: #fff;
}

.footer-wrap{
  background: url(../img/bg-footer.png) no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 40% 50%;
}

.footer-wrap h3{
  font-size: 20px;
  color: #fff;
}

.footer-title-02{
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}

.footer-wrap h4{
  font-size: 18px;
  padding-bottom: 10px;
  color: #fff;
}

footer ul li{
  list-style-position: inside;
}

footer ul li a{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

footer ul li a:hover{
    color: #91e873;
    text-decoration: underline;
}

.logo-footer{
  width: 60%;
  margin-top: 80px;
}

.copyright{
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  background: #265897;
}

.copyright-wrap{
  padding-top: 15px;
  border-top: 1px solid #fff;
}

.copyright a:hover{
    color: #91e873;
}

/*---------Footer End---------*/

/*---------Translation Page---------*/

.translation-single{
  background: #fff;
  margin-top: 40px;
}

.translation-title{
  padding: 10px 12px 9px 12px;
  position: relative;
  padding-left: 50px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5b9ce4+0,4588d1+100 */
  background: #5b9ce4; /* Old browsers */
  background: -moz-linear-gradient(top, #5b9ce4 0%, #4588d1 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #5b9ce4 0%,#4588d1 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #5b9ce4 0%,#4588d1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b9ce4', endColorstr='#4588d1',GradientType=0 ); /* IE6-9 */
}

.translation-title img{
  position: absolute;
  left: 10px;
  top: 10px;
}

.translation-title h4{
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.translation-body img{
  padding: 20px 0 20px 20px;
}

.translation-body p{
  padding: 20px 20px 15px 10px;
  font-weight: 500;
}

.translation-body ul{
  padding: 20px 20px 15px 20px;
}

.translation-body ul li{  
  list-style-type: decimal;
  font-weight: 500;
}

.translation-body p span{
  color: #0a7bc1;
  font-weight: 700;
}

.quality-assurance{
  text-align: center;
  padding: 20px 30px 5px 30px;
  background: #fff;
}

.process-bg{
  background: #eee;
}

.process-container{
  width: 100%;
  padding: 20px;
  font-weight: 500;
}

.process-left{
  width: 10%;
  float: left;
}

.process-middle{
  width: 70%;
  float: left;
  margin-left: 15px;
}

.process-right{
  float: right;
  width: 18%;
  right: 0;
}

.process-container span{
  color: #0a7bc1;
}

.step{
  padding: 4px 2px 4px 2px;
  border: 1px solid #59b6e5;
  border-radius: 2px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  color: #2d82be;
}

.arrow-down{
  bottom:0;
}

.process-middle h3{
  font-size: 20px;
  color: #2d82be;
}

.process-middle ul li{
  list-style-image: url(../img/bullet-squre.png);
  list-style-position: inside;
  padding: 5px 0;
  text-indent: -15px;
  margin-left: 18px;
}

.page-top-link{
  display: block;
  overflow: hidden;
  /* border-bottom: 1px solid #e5e5e5; */
}  
.page-top-nav{
  float: right;
  text-transform: uppercase;
}
.page-top-nav ul li a{
  color: #333;
}
.page-top-nav ul li a:hover{
  color: #2d82be;
}
.page-top-nav li:not(:first-child)::before{
  content: '|';
  position: absolute;
  margin-top: 7px;
}

.trans-wanted{
  background: #fff;
}

.title-trans-wanted h2{
  display: inline-block;
  font-size: 48px;
  font-weight: 600;
  padding: 8px 30px;
  text-transform: uppercase;
  border: 4px solid #444;
  text-shadow: #d0d6da 2px 2px;
}

.title-trans-wanted h2 span{
   color: #1c79a7;
} 

.body-trans-wanted{
  font-size: 20px;
}
.body-trans-wanted a{
  color: #2d82be;
  line-height: 30px;
}

/*-------FAQ Accordion-------*/

.card-header a{
  color: #000;
  font-weight: 600;
}

.btn-faq{
  position: absolute;
  font-weight: 600;
  color: #1c79a7;
  bottom: 0;
  float: right;
}

.btn-faq a{
  color: #1c79a7;
}

.btn-faq a:hover{
  color: #ff9c00;
}

.faq-area{
  padding-bottom: 60px;
}

.faq-area #accordion .card{
  margin-top: 10px;
  border-radius: 0;
  background-color: #f5f9fd;
}

.faq-area .card-body{
  background: #fff;
}

.q-before{
  background: #1c79a7;
  padding: 4px 15px 6px 15px;
  margin-right: 20px;
  border-radius: 4px;
  color: #fff;
}

.a-before{
  background: #fff;
  padding: 4px 15px 6px 15px;
  margin-right: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #1c79a7;
}

.faq-area .accordion .card .card-header a{
  position: relative;
}

.faq-area .accordion .card .card-header a i{
  float: right;
  display: none;
}

.faq-area .accordion .card .card-header a[aria-expanded="true"] i.fa-chevron-up{
  display: block;
  margin-top: 6px;
}
.faq-area .accordion .card .card-header a[aria-expanded="false"] i.fa-chevron-down{
  display: block;
  margin-top: 8px;
}
/*
.accordion .card-header:after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900; 
    content: "\f077";
    float: right; 
}
.accordion .card-header.collapsed:after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900; 
    content: "\f078";
}
*/
.accordion-title, .accordion-description{
  line-height: 30px;
}

.faq-area .card-body {
    border-bottom: 1px solid #ccc;
}

/*---------Japanese top page---------*/

.services-field h3, .services-field-2 h3{
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  padding: 15px;
  color: #fff;
  background: #2189bd;
  min-height: 60px;
}

.services-field p{
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  min-height: 260px;
  border: 1px solid #888;
  border-bottom: 6px solid #2189bd;
}

.services-field-2 p{
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  min-height: 170px;
  border: 1px solid #888;
  border-bottom: 6px solid #2189bd;
}

.services-field a, .services-field-2 a{
  color: #222;
}
/* 
.services-field a:hover, .services-field-2 a:hover{
  color: #1978a8;
}

.services-field a h3:hover, .services-field-2 a h3:hover{
  color: #85f25f;
} */

.btn-lang-service{
  position: absolute;
  border-radius: 2px;
  color: #fff;
  background: #2189bd;
  padding: 2px 2px 2px 10px;
  bottom: 40px;
  right: 20px;;
}

.btn-lang-service:hover{
  color: #e6ed25;
}

.price-table-title{
  padding: 10px 12px 9px 15px;
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5b9ce4+0,4588d1+100 */
  background: #5b9ce4; /* Old browsers */
  background: -moz-linear-gradient(top, #5b9ce4 0%, #4588d1 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #5b9ce4 0%,#4588d1 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #5b9ce4 0%,#4588d1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b9ce4', endColorstr='#4588d1',GradientType=0 ); /* IE6-9 */
}

.price-table-title h4{
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.price-note ul li{
  list-style: none;
  margin-left: 5px;
}

/* .translation-body tbody tr:nth-child(odd){
  background-color: #f6f6ef;
} */

.price-note ul li:before{
  /* content: "＊"; */
  /* font-family: 'Font Awesome\ 5 Free'; */
  /* content: "\f0a9"; */
  /* content: "\f35a"; */
  /* content: "\f621"; */
  font-family: 'FontAwesome';
  content: "\f069"; 
  position: absolute;
  margin-left: -20px;
  margin-top: 5px;
  padding-right: 10px;
  font-size: 9px;
  color: #2189bd;
}

.title-area-3 h2{
  font-size: 36px;
  font-weight: 600;
  margin-top: 40px;
  text-transform: uppercase;
  text-shadow: #d0d6da 2px 2px;
}

.title-area-3 h2 span{
   color: #1c79a7;
} 

/*---------Narration Page---------*/

.narration-example table.table-bordered{
  border:1px solid #d8d8d8;
  margin-top:20px;
}
.narration-example table.table-bordered > thead > tr > th{
  border:1px solid #d8d8d8;
}
.narration-example table.table-bordered > tbody > tr > td{
  border:1px solid #d8d8d8;
}

.narration-example .id-narrator{
font-size: 13px;
color: #444;
border-radius: 5px;
border: 1px solid #71add7;
padding: 1px 1px 2px 1px;
width: 106px;
left: 0;
right: 0;
margin: auto;
}

.narration-example table tr td{
text-align: center;
}

.narration-example table thead{
color: #444;
background: #eee;
padding-top: -10px;
}

.narration-example table tbody{
background: #fff;
}

.btn-sound{
background: #71add7;
color: #fff;
font-size: 12px;
padding: 4px 14px 6px 14px;
/*border: 1px solid #666;*/
}

.btn-play{
background: #71add7;
color: #fff;
font-size: 12px;
padding: 2px 6px 4px 6px;
/*border: 1px solid #666;*/
}

.btn-play i{
font-size: 11px;
}

.btn-close{
background: #71add7;
color: #fff;
}

/*---------Career Page---------*/

.img-hiring{
  opacity: .95;
}

.career-top h4{
  font-size: 30px;
  text-align: center;
  border-bottom: 2px solid #222;
  display: inline-block;
  padding-bottom: 3px;
  padding: 30px 10px 3px 10px;
}

.career-top p{
  font-size: 20px;
  /* font-weight: 500; */
}

.career-catagory-title h2{
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 4px solid #222;
  display: inline-block;
}

.career-catagory{
  text-align: center;
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  background: #2189bd;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estimation-catagory a{
  text-align: center;
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  background: #2189bd;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estimation-catagory a:hover{
  color: #eee;
  background: #1a6991;
}

/*---------FAQ Page---------*/

.faq-title{
  border-bottom: 1px solid #666;
  padding-bottom: 3px;
}

.faq-text{
  max-width: 600px;
}

.faq-content{
  width: 100%;
}

.faq-left-q{
  text-align: center;
  float: left;
  width: 6%;
  background: #2189bd;
  color: #fff;
  padding: 6px 15px 8px 15px;
  border-radius: 4px;
}

.faq-left-a{
  text-align: center;
  float: left;
  width: 6%;
  background: #fff;
  border: 1px solid #666;
  padding: 4px 15px 6px 15px;
  border-radius: 4px;
}

.faq-right{
  float: left;
  margin-left: 20px;
  width: 85%;
}

/*---------Cloud Page---------*/

.cloud-para p{
  font-size: 16px;
}

.cloud-para p a{
  color: #505ee4;
  font-weight: 500;
}

.cloud-para ul li{
  margin-bottom: 12px;
  color: #fff;
  background: #2189bd;
  padding: 6px 10px;
  font-weight: 500;
}

.cloud-para ul li a{
  color: #fff;
}

/*---------About Page---------*/

.about-left h3{
  font-size: 20px;
}

.office-address{
  padding: 10px;
  display: block;
  overflow: hidden;
}

.office-address{
  background: url(../img/title-subpage-repeat.png) repeat-x;
  background-position: bottom left;
  border: 1px solid #ccc;
  border-top: 4px solid #2d82be;
  padding: 10px 0;
  text-align: center;
  min-height: 240px;
}  

.flag{
  border: 1px solid #ccc;
}

.office-address h4{
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  /*text-transform: uppercase;*/
  padding: 0 15px;
}

.office-address p{
  padding: 0 15px;
}

.office-address hr{
  background: #ccc;
}

.logo-about{
  margin-left: 10px;
}

/*---------Privacy Page---------*/

.rule-box-title{
  /* background: url(../img/title-subpage-repeat.png) repeat-x; */
  background-position: bottom left;
  border: 1px solid #ccc;
  border-top: 4px solid #2d82be;
  padding: 10px 0;
  text-align: center;
} 

.rule-box-body{
  border: 1px solid #ccc;
  padding: 10px 15px;
} 

.rule-box-body ul li{
  list-style: decimal;
  list-style-position: outside;
} 

/*---------Sitemap Page---------*/

.hero-sitemap {
  background: url(../img/hero-sitemap.jpg);
  padding: 40px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65% 65%;
}

/*---------Under Construction---------*/

.pg-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    padding: 100px 0;
}
.pg-content {
    text-align: center;
}
.pg-content h1 {
    font-size: 25px;
    margin: 0;
}
.pg-content img {
    max-width: 80px;
    margin-top: 30px;
}






