/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: Cormorant;
  src: url(https://diakoptics.com/mdata/authortt/tkmlegal-jp/media/contents/original_Cormorant-Regular.ttf?r=1600922514);
}
@font-face {
  font-family: WorkSans;
  src: url(https://diakoptics.com/mdata/authortt/tkmlegal-jp/media/contents/original_WorkSans-Regular.ttf?r=1600922514);
}



body {
  font-family: Cormorant, sans-serif;
  color: #777;
}

.contact-container {/* position: absolute; */bottom: 0;top: 0;left: 0;right: 0;display: flex;padding-top: 30px;/* justify-content: center; */align-items: center;flex-direction: column;text-align: center;}

a {
  color: #43aea0;
}

a:hover {
  color: #00d3b8;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: Cormorant, sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #BA5139;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #BA5139;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  /* background: #2d6760; */
}

#header.header-scrolled {
  background: #f0f8ff;
  height: 80px;
  padding: 10px 0;
}

#header .logo
{
	text-align:center;
    color:black;
}


#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

#main {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: black;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: WorkSans, sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #BA5139;
  text-decoration: none;
}

.nav-menu .active > a
{
	border-bottom:solid;
}


.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  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: ease all 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: #25564f;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #70b9b0;
}

.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";
  }


}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: white;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: black;
  font-family:WorkSans, sans-serif;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #BA5139;;
  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: "\eaa0";
}

.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-toggle {
  position: fixed;
  right: 15px;
  top: 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: black;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #f0f8ff;
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: black;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 60vh;*/
  /* background: url("../img/hero-background.jpg") top center;
  background-size: cover; */
  /*position: relative;*/
  /*margin-bottom: -60px;*/
  margin-top: 80px;
}

#hero:before {
  content: "";
  /* background: rgba(112, 185, 176, 0.85); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  /*position: absolute;*/
  /*bottom: 0;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  display: flex;
  padding-top: 30px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40pt;
  font-weight: bold;
  line-height: 56px;
  color: black;
}

#hero h2 {
  color: black;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 300;
}

#hero .btn-get-started {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  border: 1px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #fff; 
  color: #70b9b0;
  border: 1px solid #70b9b0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }



}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #555;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f6fafa;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
 #about .container{
	 height:auto !important;
 }
 .cls_our_team{
	 height:auto !important;
	 padding: 10px;
	}	
	
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }

#hero
{
	/*height:415px;*/
}
.cls_contact_us_form
{
	height:80vh !important;
}

.cls_about_right 
{
	margin-left: 0px !important;
	width: auto !important;
	height: auto !important;
}

.cls_about_left img
{
	max-width: 100% !important;
}

#our_services
{
	/* padding-top:475px; */
}
#sec_footer
{
	/* padding-top:490px; */
}

.cls_copyright {
	padding-top: 0px !important;
}
.cls_about_left
{
	text-align:left !important;
	padding-top:10px;
}

.cls_about_left img {
}

.cls_about_left img {
    width: 100%;
}
.cls_icon_inbox_left
{
	border:none !important;
}


.cls_icon_inbox_right
{
	border:none !important;
}

.cls_icon_inbox_center
{
	border:none !important;
}


.cls_about_us_sec
{
	margin-left:3px;
}
.cls_about_us_bottom_img_left img
{
	width:100%;
}

.cls_about_us_bottom_img_right img
{
	width:100%;
}
.cls_about_us_team_img_right
{
	width:100%;
	height:auto !important;
}



.cls_about_us_team_img_right img
{
	width:100% !important;
}

.cls_section_title 
{
	margin-left:0px !important;
}


.cls_section_subject
{
	margin-left:15px !important;
}
.cls_offices_right
{
	text-align:left !important;
}

.cls_offices_right img {
    width: 1005;
}

.cls_section_learn_more
{
	margin-left:15px !important;
}


}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
#our_services
{
	/* padding-top:380px; */
}
#sec_footer
{
	/* padding-top:450px; */
}
#hero{
	/*height: 300px;*/
}
}

@media (max-width: 415px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
#our_services
{
	/* padding-top:330px; */
}
#sec_footer
{
	/* padding-top:370px; */
}
#hero .hero-container h1{
	font-size: 24px;
	line-height: 1.5rem;
}	

}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #70b9b0;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.services .icon i {
  color: #70b9b0;
  font-size: 42px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .title a {
  color: #777;
  font-family: WorkSans;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: darkorange;
}

.services .description {
  line-height: 24px;
  font-size: 22px;
  font-weight:bold;
  color:black;
}

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(1, 41, 42, 0.5), rgba(7, 56, 57, 0.5)), url("../img/call-to-action-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: #70b9b0;
  border: 2px solid #70b9b0;
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #777;
  border-radius: 4px;
  text-transform: uppercase;
  background: white;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #70b9b0;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  background: #073839;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all .3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
}

.portfolio .portfolio-item .portfolio-info h3 a {
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  margin: 4px;
}

.portfolio .portfolio-item .portfolio-info a i:hover {
  color: #70b9b0;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #70b9b0 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #70b9b0;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #70b9b0;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #70b9b0;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #92cac3;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #3c8b81;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  color: #70b9b0;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  color: #888;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #70b9b0;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #70b9b0;
}

.contact .social-links a:hover {
  background: #70b9b0;
  color: #fff;
}

.contact .info {
  color: #777;
}

.contact .info i {
  font-size: 32px;
  color: #70b9b0;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form button[type="submit"] {
  background: #70b9b0;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #92cac3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -10px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #073839;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# TRONG
--------------------------------------------------------------*/
.cls_btn_contact_us
{
	border-radius: 50px;
    background: #BA5139;
    color: white !important;
}

.cls_span_title
{
	margin-bottom: -7px;
	font-family: WorkSans;

}	

#about .container
{
	 background: url("https://diakoptics.com/mdata/authortt/tkmlegal-jp/media/contents/original_about-us-background.jpg?r=1600922592") top center;
     background-size: cover;
     /*height:600px;*/
     padding: 35px 15px;
}

.cls_about_left
{
	text-align:right;
    display: table-cell;
    vertical-align: middle;
}

.cls_about_right
{
	 background: url("https://tkmlegal.jp/contents/712737312700520/image/original_about-us-right.jpg?r=1600922592") top center;
	 background-size: cover;
	 height:400px;
	 width:500px;
	 margin-left:-90px;
	 display:flex;
	 align-items:center;
}

.cls_about_right_contents
{
	
}
.cls_section_title
{
	font-family: WorkSans;
	text-transform: uppercase;
	font-size: 14px;
}

.cls_section_subject
{
	font-family: Cormorant;
	font-weight:bold;
	font-size:30px;
	padding:15px 0px;
}
.cls_section_desc
{
	font-family: WorkSans;
	font-size:15px;
}

.cls_about_container
{
	padding: 30px;
    color: #000;
    background: #fff;
}
.cls_section_learn_more
{
	padding-top:10px;
    
}

.cls_section_learn_more_btn
{
	border-radius: 50px;
    background: white;
    color:#BA5139 !important;
    border-color:#BA5139;
    font-family:WorkSans;
    font-size:15px;
}
.cls_section_learn_more_btn:hover
{
	color:white !important;
	background:#BA5139;
}

.section-our-services-title
{
	color: black;
	text-align:left;
}
.section-our-services-container
{
	padding-top:45px;
	font-family: WorkSans;
	color:black;
	
}
.cls_description
{
	text-align: left;
	font-size:14px;
}
.cls_title a
{
	font-family:Cormorant;
	color:black;
    font-weight:bold;
	font-size:20px;
}
.icon {
  margin-top: 15px;
}
.cls_icon_inbox_center
{
	
    text-align: center;
	border-color:gray;
    
	border-bottom:solid #9E9E9E thin;
   
}

.cls_icon_inbox_left
{
	
    text-align: center;
	border-color:gray;
   	border-bottom:solid #9E9E9E thin;
    border-right:solid #9E9E9E thin;
}
.cls_icon_inbox_right
{
	
    text-align: center;
	border-color:gray;
   	border-bottom:solid #9E9E9E thin;
    border-left:solid #9E9E9E thin;
}
.cls_border_no_bottom
{
	border-bottom:none;
}
.cls_border_right
{
	border-right:solid #9E9E9E thin;
}
.cls_offices
{
	background:#E8E8E7;
}
.cls_offices_right
{
	text-align:right;
}
#our_team
{
	 
	 color:white;
     
}
.cls_our_team
{
	background: url("https://diakoptics.com/mdata/authortt/tkmlegal-jp/media/contents/original_about-us-background.jpg?r=1600922592") top center;
     background-size: cover;
     height:680px;

}
.cls_section_our_team_learn_more_btn
{
	border-radius: 50px;
    background: none;
    color: white !important;
    border-color: white;
    font-family: WorkSans;
    font-size: 15px;
}
.cls_section_our_team_desc
{
	font-family: WorkSans;
    font-size: 15px;
}
.cls_section_our_team_subject
{
    font-family: Cormorant;
    font-weight: bold;
    font-size: 30px;
    padding: 15px 0px;
}
.section-our-team-title
{
    font-family: Cormorant;
    font-weight: bold;
    font-size: 30px;
    padding: 15px 0px;
}
.cls_section_our_team_learn_more_btn:hover
{
	color:white !important;
	background:#BA5139;
}
.cls_footer_phone
{
	font-family:WorkSans;
	color:black;
	font-size:24px;
	padding: 20px 0px;
}
.cls_footer_phone a
{
	color:#BA5139;
}
.sec_footer_logo
{
	background: url("https://diakoptics.com/mdata/authortt/tkmlegal-jp/media/contents/original_about-us-background.jpg?r=1600922592") top center;
     background-size: cover;
	height:200px;
	
}

.sec_footer_sitemap
{
	font-family:WorkSans;
	font-size:15px;
	text-align:right;
	color:black;
}
.sec_footer_sitemap ul
{
	list-style-type:none;
}

.sec_footer_sitemap ul li a
{
	color:black;
}

.cls_copyright
{
	font-family:WorkSans;
	font-size:12px;
    color:black;
	text-align:right;
	padding-top:40px;
}
.cls_copyright a
{
	color:#BA5139;
}


.cls_copyright_container
{

}


.cls_breadcrumb
{
	background:#E8E8E7 ;
	font-family:WorkSans;
	padding: 20px 0px;
	color:black;
}
.cls_breadcrumb a
{
	color:#BA5139;
}

.cls_about_us_started
{
	border-radius: 50px;
    background: #BA5139;
    color: white !important;
    border-color: #BA5139;
    font-family: WorkSans;
    font-size: 15px;
}
.cls_about_us_sub_title
{
	padding:20px 0px;
	text-align:left;
	font-family:WorkSans;
	font-size:12px;
	color:black;
	text-transform: uppercase;
}
.cls_about_us_sub_subject
{
	text-align:left;
	font-family:Cormorant;
	font-weight:bold;
	font-size:30px;
	color:black;
	padding:20px 0px;
	
}

#about_us_team
{
	background: url("https://diakoptics.com/mdata/authortt/tkmlegal-jp/media/contents/original_about-us-background.jpg?r=1600922592") top center;
     background-size: cover;
	/*height:400px;*/
}
.cls_about_us_page
{	
	padding-top:60px;
}

.cls_contact_us_form
{
	 margin-bottom: 0px !important;
    margin-top: 40px;
	height:60vh !important;
}
section#form-contact{
    margin-top:35px;
}

/*carousel-home*/


        .carousel-container {
            max-width: 1140px;
            margin: 0 auto;
        }

        .carousel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
         .carousel-header h2{
             margin-bottom: 0 !important;
         }

        .nav-arrows {
            display: flex;
            width: 20%;
            gap: 20px;
        }

        .arrow {
            width: 40px;
            height: 40px;
            border: none;
            background: none;
            cursor: pointer;
            position: relative;
            transition: opacity 0.3s;
        }

        .arrow:hover {
            opacity: 0.7;
        }

        .arrow.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .arrow::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: #000;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .arrow::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border-top: 2px solid #000;
            top: 50%;
            transform: translateY(-50%);
        }

        .arrow-left::before {
            border-left: 2px solid #000;
            left: 5px;
            transform: translateY(-50%) rotate(-45deg);
        }

        .arrow-right::before {
            border-right: 2px solid #000;
            right: 5px;
            transform: translateY(-50%) rotate(45deg);
        }

        .carousel-title {
            font-size: 18px;
            font-weight: 600 !important;
            letter-spacing: 1px;
            flex: 1;
            text-align: center;
        }

        .progress-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .progress-text {
            font-size: 18px;
            color: #666;
        }

        .progress-bar {
            width: 200px;
            height: 3px;
            background: #e0e0e0;
            position: relative;
            border-radius: 2px;
        }

        .progress-fill {
            height: 100%;
            background: #c94c4c;
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .owl-carousel {
            padding: 20px 0;
        }

        .owl-item {
            transition: all 0.3s ease;
        }

        .owl-item.center .card {
            transform: scale(1.15);
            z-index: 10;
        }

        .card {
            background: white;
            box-shadow: 0 !important;
            transition: all 0.3s ease;
            border:0 !important;
        }

        .card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: height 0.3s ease;
        }

        .owl-item.center .card-image {
            height: 380px;
        }

        .card-content {
            padding: 30px;
            text-align: center;
        }

        .card-category {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #000;
        }

        .card-title {
            font-size: 28px;
            line-height: 1.4;
            font-weight: 500;
            color: #1a1a1a;
        }

        /* Hide default Owl Carousel navigation */
        .owl-nav {
            display: none;
        }

        .owl-dots {
            display: none;
        }

        @media (max-width: 1024px) {
            .owl-item.center .card {
                transform: scale(1.08);
            }

            .owl-item.center .card-image {
                height: 320px;
            }
        }

        @media (max-width: 768px) {
            .carousel-header {
                flex-direction: column;
                gap: 15px;
            }

            .nav-arrows {
                order: 1;
            }

            .carousel-title {
                order: 2;
                font-size: 16px;
            }

            .progress-container {
                order: 3;
            }

            .owl-item.center .card {
                transform: scale(1);
            }

            .card-image,
            .owl-item.center .card-image {
                height: 250px;
            }

            .card-content {
                padding: 20px;
            }

            .card-title {
                font-size: 20px;
            }

            .progress-bar {
                width: 120px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .card-title {
                font-size: 18px;
            }
        }
        
/*#----end---        */