@import url("https://fonts.googleapis.com/css2?family=Tai+Heritage+Pro:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-primary: #002F5F;
  --c-secondary: #BEA154;
  --c-dark: #232729;
}

html,
body {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
  font-weight: 400;
}

body {
  font-size: 16px;
  line-height: 1.6363636364;
  color: var(--c-primary);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  body {
    font-size: 22px;
  }
}

a {
  color: var(--c-primary);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--c-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Tai Heritage Pro", serif;
  font-weight: normal;
}

h2 {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 38px;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 42px;
  }
}

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

h1 {
  font-size: 40px;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 45px;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1400px) {
  h1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1600px) {
  h1 {
    font-size: 62px;
  }
}

.title-1 {
  font-size: 40px;
}
@media screen and (min-width: 992px) {
  .title-1 {
    font-size: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .title-1 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1400px) {
  .title-1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1600px) {
  .title-1 {
    font-size: 62px;
  }
}

.bg-banner-type h1 {
  font-size: 42px;
}
@media screen and (min-width: 992px) {
  .bg-banner-type h1 {
    font-size: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .bg-banner-type h1 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .bg-banner-type h1 {
    font-size: 65px;
  }
}
@media screen and (min-width: 1600px) {
  .bg-banner-type h1 {
    font-size: 82px;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1400px) {
  h3 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1600px) {
  h3 {
    font-size: 36px;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1540px;
  }
}

.banner-item p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .banner-item p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-item p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .banner-item p {
    font-size: 26px;
  }
}

.pt-100 {
  padding-top: 56px;
}
@media screen and (min-width: 768px) {
  .pt-100 {
    padding-top: 72px;
  }
}
@media screen and (min-width: 768px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.pt-60 {
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .pt-60 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .pt-60 {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .pt-60 {
    padding-top: 60px;
  }
}

.link a {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid var(--link-hover-color, var(--c-secondary));
  display: inline-block;
  padding: 10px 0;
  color: var(--link-color, var(--c-primary));
}
.link a:hover {
  color: var(--link-hover-color, var(--c-secondary));
  border-bottom-color: var(--link-color, var(--c-primary));
}

.link-small a {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid var(--link-hover-color, var(--c-secondary));
  display: inline-block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--link-color, var(--c-primary));
}
.link-small a:hover, .link-small a:focus {
  color: var(--link-hover-color, var(--c-secondary));
  border-bottom: 2px solid var(--link-color, var(--c-primary));
}

.quote-text h4 {
  font-size: 24px;
}
@media screen and (min-width: 576px) {
  .quote-text h4 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .quote-text h4 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .quote-text h4 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .quote-text h4 {
    font-size: 36px;
  }
}

.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 24px;
  z-index: 99;
}
@media screen and (min-width: 1400px) {
  .header {
    top: 34px;
  }
}
@media screen and (min-width: 1600px) {
  .header {
    top: 48px;
  }
}
@media screen and (min-width: 992px) {
  .header .container {
    width: 100%;
    max-width: 1758px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.header .container .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .container .row > * {
  width: auto;
}
.header .col-log {
  max-width: calc(100% - 60px);
}
.header .logo {
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  z-index: 999;
}
.header .logo a {
  display: block;
  max-width: 260px;
}
@media screen and (min-width: 1200px) {
  .header .logo a {
    max-width: 320px;
  }
}
@media screen and (min-width: 1400px) {
  .header .logo a {
    max-width: 420px;
  }
}
@media screen and (min-width: 1600px) {
  .header .logo a {
    max-width: 500px;
  }
}
.header .logo a img {
  display: block;
  max-width: 100%;
  height: auto;
}
.header .logo .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .header .logo .tags {
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .header .logo .tags {
    font-size: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .header .logo .tags {
    font-size: 18px;
  }
}
.header .col-navigation {
  padding: 0;
  width: 0;
}
@media screen and (min-width: 992px) {
  .header .col-navigation {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.navigation-outer ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
@media screen and (min-width: 992px) {
  .navigation-outer ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .navigation-outer ul.menu {
    gap: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .navigation-outer ul.menu {
    gap: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .navigation-outer ul.menu {
    gap: 40px;
  }
}
.navigation-outer ul.menu > li {
  position: relative;
}
.navigation-outer ul.menu > li > a {
  padding: 10px 0;
  display: block;
  font-size: 22px;
  line-height: 1.34;
  font-weight: var(--f-weight, 500);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
@media screen and (min-width: 992px) {
  .navigation-outer ul.menu > li > a {
    font-weight: var(--f-weight, normal);
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .navigation-outer ul.menu > li > a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .navigation-outer ul.menu > li > a {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .navigation-outer ul.menu > li > a {
    font-size: 22px;
  }
}
.navigation-outer ul.menu > li > a:hover {
  font-weight: var(--f-weight, normal);
  color: var(--c-secondary);
}
@media screen and (min-width: 992px) {
  .navigation-outer ul.menu > li > a:hover {
    color: var(--c-secondary);
    font-weight: var(--f-weight, normal);
  }
}
.navigation-outer ul.menu > li .caret-desktop {
  font-size: 14px;
  padding-left: 2px;
}
@media screen and (max-width: 991px) {
  .navigation-outer ul.menu > li .caret-desktop {
    display: none;
  }
}
.navigation-outer ul.menu > li .caret {
  cursor: pointer;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.navigation-outer ul.menu > li .caret:hover {
  color: var(--c-secondary);
}
@media screen and (min-width: 992px) {
  .navigation-outer ul.menu > li .caret {
    display: none;
  }
}
.navigation-outer ul.menu > li .submenu {
  top: 100%;
  list-style: none;
  display: none;
  padding: 12px 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .navigation-outer ul.menu > li .submenu {
    position: absolute;
    -webkit-transition: all 0.16s ease-in-out;
    transition: all 0.16s ease-in-out;
    left: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 100%;
    width: 240px;
    background-color: var(--c-white);
    display: block !important;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.12);
  }
}
.navigation-outer ul.menu > li .submenu a {
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  line-height: 1;
  font-weight: normal;
  font-size: 18px;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .navigation-outer ul.menu > li .submenu a {
    font-weight: normal;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .navigation-outer ul.menu > li .submenu a {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1400px) {
  .navigation-outer ul.menu > li .submenu a {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
  }
}
.navigation-outer ul.menu > li:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.navigation-outer ul.menu > li:last-child {
  --f-weight: 900;
}

@media screen and (max-width: 991px) {
  .navigation-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
    height: 100%;
    background: rgb(245, 248, 248);
    background: radial-gradient(circle, rgb(245, 248, 248) 0%, rgb(233, 248, 248) 100%);
    z-index: 99;
    padding: 130px 0px 40px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .menu-open .navigation-outer {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .navigation-outer .menu-nav {
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--c-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10%;
    overflow: auto;
  }
  .navigation-outer .menu-nav .menu {
    padding-top: 20px;
  }
  .navigation-outer .menu-nav .has-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 10px;
  }
  .navigation-outer .menu-nav .has-child > ul.submenu {
    min-width: 100%;
  }
}
.navigation-outer .menu-nav .menu {
  width: 100%;
  max-width: 520px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .navigation-outer .menu-nav .menu {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .navigation-outer .menu-nav .menu {
    padding: 0;
    max-width: 100%;
    margin: 0;
  }
}

.toggle-menu {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  z-index: 999;
}
.toggle-menu span {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  height: 3px;
  left: 0;
  border-bottom: 3px solid var(--c-primary);
  z-index: 999;
  cursor: pointer;
  -webkit-transition: top 0.3s 0.3s, opacity 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, opacity 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s, top 0.3s 0.3s, opacity 0.3s 0.3s;
  transition: transform 0.3s 0s, top 0.3s 0.3s, opacity 0.3s 0.3s, -webkit-transform 0.3s 0s;
}
.toggle-menu span:nth-child(2) {
  top: calc(50% - 9px);
}
.toggle-menu span:nth-child(3) {
  width: 70%;
  top: calc(50% + 9px);
}

.menu-open {
  overflow: hidden;
}
.menu-open .toggle-menu span {
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  border-color: var(--c-primary);
}
.menu-open .toggle-menu span:nth-child(1) {
  opacity: 0;
}
.menu-open .toggle-menu span:nth-child(2) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-open .toggle-menu span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
}
.menu-open .menus {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}
.membership-awards {
  padding-top: 48px;
}
.membership-awards .swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.membership-awards .swiper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.membership-awards .swiper .swiper-wrapper .siwper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  .membership-awards {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .membership-awards {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .membership-awards {
    padding-top: 80px;
  }
}
.membership-awards .title {
  padding-bottom: 32px;
}

.footer {
  text-align: center;
  padding-top: 120px;
}
.footer .logo {
  padding-bottom: 32px;
}
.footer .logo p {
  font-size: 16px;
}
.footer .social-info {
  padding-top: 32px;
  padding-bottom: 52px;
}
.footer .privacy-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  gap: 20px;
  margin-bottom: 10px;
}
.footer .privacy-menu ul li a {
  font-size: 16px;
  text-decoration: none;
  padding: 4px 0;
  display: block;
  text-align: center;
}
.footer .copyright-text {
  font-size: 16px;
}
.footer .copyright-text {
  padding-bottom: 32px;
}

.last-footer {
  background-color: var(--c-black);
  padding-top: 20px;
  padding-bottom: 20px;
}
.last-footer .icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  gap: 20px;
}
.last-footer .icon-text p {
  margin: 0;
  color: var(--c-white);
}
.last-footer .icon-text a {
  color: var(--c-white);
}

.contact-detail a {
  font-weight: bold;
}

.bg-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bg-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .bg-image::after {
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.bg-image::before {
  content: "";
  width: 1px;
  margin-right: -1px;
  padding: 0 0 42%;
  min-height: 100vh;
}
.bg-image img {
  width: 100%;
  height: auto;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) {
  .bg-image img {
    opacity: 1;
  }
}
.bg-image .banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
  padding-top: 148px;
  padding-bottom: 48px;
}

.swiper.bannerSwiper .swiper-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  z-index: 9;
  width: 100%;
  left: 0;
  bottom: 32px;
  right: 0;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 992px) {
  .swiper.bannerSwiper .swiper-controls {
    width: 100%;
    max-width: 1758px;
    padding-left: 24px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper.bannerSwiper .swiper-controls {
    bottom: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .swiper.bannerSwiper .swiper-controls {
    bottom: 50px;
  }
}
@media screen and (min-width: 1600px) {
  .swiper.bannerSwiper .swiper-controls {
    bottom: 70px;
  }
}
@media screen and (min-width: 1600px) {
  .swiper.bannerSwiper .swiper-controls {
    bottom: 70px;
  }
}

body .swiper .swiper-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .swiper .swiper-controls .swiper-pagination {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto;
  --swiper-pagination-bullet-horizontal-gap: 8px;
}
@media screen and (min-width: 768px) {
  body .swiper .swiper-controls .swiper-pagination {
    --swiper-pagination-bullet-horizontal-gap: 16px;
  }
}
@media screen and (min-width: 992px) {
  body .swiper .swiper-controls .swiper-pagination {
    --swiper-pagination-bullet-horizontal-gap: 20px;
  }
}
body .swiper .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
  background-color: var(--pag-color, var(--c-primary));
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  opacity: 1;
}
body .swiper .swiper-controls .swiper-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
body .swiper .swiper-controls .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
body .swiper .swiper-controls .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--pag-hover-color, var(--c-secondary));
}
body .swiper .swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--pag-color, var(--c-primary));
  opacity: 1;
  width: 60px;
}

.banner-item h1, .banner-item h2 {
  font-size: 48px;
  line-height: 1.137254902;
}
@media screen and (min-width: 576px) {
  .banner-item h1, .banner-item h2 {
    font-size: 62px;
  }
}
@media screen and (min-width: 992px) {
  .banner-item h1, .banner-item h2 {
    font-size: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .banner-item h1, .banner-item h2 {
    font-size: 5.1vw;
  }
}
.search-form .form-item {
  max-width: 357px;
  width: 100%;
  position: relative;
}
.search-form .form-item .bi.bi-search {
  font-size: 24px;
  position: absolute;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 30px;
}
.search-form .form-item .search-input {
  position: relative;
  z-index: 1;
  height: 42px;
  border-radius: 32px;
  border: 2px solid var(--c-primary);
  background-color: transparent;
  font-size: 18px;
  width: 100%;
  padding: 8px 20px 8px 72px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--c-primary);
}
@media screen and (min-width: 768px) {
  .search-form .form-item .search-input {
    font-size: 20px;
    height: 52px;
  }
}
@media screen and (min-width: 1200px) {
  .search-form .form-item .search-input {
    font-size: 24px;
    border: 3px solid var(--c-primary);
    height: 64px;
  }
}
.search-form .form-item .search-input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--c-primary);
  font-family: "Tai Heritage Pro", serif;
}
.search-form .form-item .search-input::-moz-placeholder {
  opacity: 1;
  color: var(--c-primary);
  font-family: "Tai Heritage Pro", serif;
}
.search-form .form-item .search-input:-ms-input-placeholder {
  opacity: 1;
  color: var(--c-primary);
  font-family: "Tai Heritage Pro", serif;
}
.search-form .form-item .search-input::-ms-input-placeholder {
  opacity: 1;
  color: var(--c-primary);
  font-family: "Tai Heritage Pro", serif;
}
.search-form .form-item .search-input::placeholder {
  opacity: 1;
  color: var(--c-primary);
  font-family: "Tai Heritage Pro", serif;
}

@media screen and (min-width: 1400px) {
  .we-are-cc-content {
    padding-right: 12px;
  }
}

.our-expertise {
  padding-bottom: 72px;
}
.our-expertise .swiper-controls {
  padding-top: 42px;
}
.our-expertise .title {
  padding-bottom: 25px;
}
.our-expertise .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--c-primary);
}
.our-expertise .swiper-slide::before {
  width: 1px;
  margin-right: -1px;
  padding: 0 0 100%;
  content: "";
}
.our-expertise .expertise-card {
  width: 100%;
  margin-top: auto;
  color: var(--c-white);
  padding: 24px;
  --link-color: var(--c-white);
  --link-hover-color: var(--c-secondary);
}
@media screen and (min-width: 768px) {
  .our-expertise .expertise-card {
    padding: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .our-expertise .expertise-card {
    padding: 30px;
  }
}
.our-expertise .expertise-card h4 {
  font-size: 34px;
}
@media screen and (min-width: 768px) {
  .our-expertise .expertise-card h4 {
    font-size: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .our-expertise .expertise-card h4 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1400px) {
  .our-expertise .expertise-card h4 {
    font-size: 38px;
  }
}
@media screen and (min-width: 1600px) {
  .our-expertise .expertise-card h4 {
    font-size: 42px;
  }
}
.our-expertise .expertise-card h4.t-small {
  font-size: 24px;
}

.quote-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quote-text h4 {
  line-height: 1.5555555556;
  padding-bottom: 20px;
}
.quote-text p {
  display: inline-block;
  padding: 10px 0;
  border-bottom: 2px solid var(--c-secondary);
}
.quote-text .quote-span {
  font-family: "Tai Heritage Pro", serif;
  font-size: 72px;
  padding-right: 16px;
  line-height: 1;
  margin-left: -0.1em;
}
@media screen and (min-width: 992px) {
  .quote-text .quote-span {
    font-size: 102px;
  }
}

.legal-expertise {
  background-size: cover;
  background-position: center center;
  color: var(--c-white);
  padding-top: 100px;
  padding-bottom: 80px;
}
.legal-expertise .small-title {
  color: var(--c-secondary);
  padding-bottom: 32px;
}
.legal-expertise .quote-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.legal-expertise .quote-text h4 {
  color: var(--c-white);
}
.legal-expertise .quote-text .quote-span {
  font-size: 82px;
}
@media screen and (min-width: 1200px) {
  .legal-expertise .quote-text .quote-span {
    font-size: 102px;
  }
}
@media screen and (min-width: 1400px) {
  .legal-expertise .quote-text .quote-span {
    font-size: 182px;
  }
}
.legal-expertise .swiper-controls {
  --pag-color: var(--c-white);
  padding-top: 48px;
  padding-left: 89px;
}

.legal-services-sec .title {
  padding-bottom: 32px;
}

.items-include {
  --col-size: 100%;
  --li-gap: 0px;
}
@media screen and (min-width: 768px) {
  .items-include {
    --col-size: 50%;
    --li-gap: 24px;
  }
}
@media screen and (min-width: 992px) {
  .items-include {
    --li-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .items-include {
    --li-gap: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .items-include {
    --li-gap: 74px;
  }
}
.items-include ul {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0 var(--li-gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.items-include ul li {
  padding: 10px 12px;
  border-bottom: 2px solid var(--c-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(var(--col-size) - var(--li-gap) / 2);
}
.items-include ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--c-secondary);
  margin-right: 20px;
  margin-top: calc(5px + 0.7em);
}
.items-include ul li:first-child {
  border-top: 2px solid var(--c-primary);
}
@media screen and (min-width: 768px) {
  .items-include ul li:nth-child(2) {
    border-top: 2px solid var(--c-primary);
  }
}
.items-include ul li span, .items-include ul li a {
  display: block;
  padding: 12px 0;
  font-family: "Tai Heritage Pro", serif;
}

.inner-banner {
  padding-top: 120px;
}
@media screen and (min-width: 768px) {
  .inner-banner {
    padding-top: 160px;
  }
}
@media screen and (min-width: 992px) {
  .inner-banner {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .inner-banner {
    padding-top: 240px;
  }
}

.people-detail {
  padding-top: 80px;
}

#filter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  #filter form {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1400px) {
  #filter form {
    gap: 10px 20px;
  }
}
@media screen and (min-width: 1600px) {
  #filter form {
    gap: 10px 30px;
  }
}
#filter form label {
  font-weight: bold;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  #filter form label {
    width: auto;
  }
}
#filter form .or-saperator {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 576px) {
  #filter form .or-saperator {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
#filter form .form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  #filter form .form-item {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  #filter form .form-item {
    width: calc(50% - 40px);
  }
}
@media screen and (min-width: 992px) {
  #filter form .form-item {
    width: auto;
  }
}
#filter form .form-item select, #filter form .form-item input {
  width: 100%;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: var(--c-secondary);
  border-radius: 0;
  padding: 10px 16px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
#filter form .form-action {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  #filter form .form-action {
    padding-top: 0;
  }
}
#filter form .form-action button {
  padding: 12px 40px;
  border: 2px solid var(--c-primary);
  font-weight: bold;
  border-radius: 32px;
  font-size: inherit;
  background-color: transparent;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  line-height: 1;
}
@media screen and (min-width: 1600px) {
  #filter form .form-action button {
    padding: 14px 60px;
  }
}
#filter form .form-action button:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}

#team-member .row > div {
  padding-top: 50px;
  padding-bottom: 50px;
}

.team-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.team-member .member-image {
  width: calc(50% - 12px);
}
.team-member .member-content {
  width: calc(50% - 12px);
  font-size: 16px;
}

.pagination-outer .paginationContainer .results_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.pagination-outer .paginationContainer .results_links span.paginationLink {
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  color: var(--c-primary);
  cursor: pointer;
}
.pagination-outer .paginationContainer .results_links span.paginationLink:hover, .pagination-outer .paginationContainer .results_links span.paginationLink.current {
  border-color: var(--c-primary);
}
.pagination-outer .paginationContainer .results_links span.paginationLink.nav_prev, .pagination-outer .paginationContainer .results_links span.paginationLink.nav_next {
  font-size: 32px;
}

.detail-banner {
  background: rgb(245, 248, 248);
  background: radial-gradient(circle, rgb(245, 248, 248) 0%, rgb(233, 248, 248) 100%);
}
.detail-banner .member-banner-image img {
  width: 100%;
  max-width: 400px;
}
.detail-banner .title-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  line-height: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}
.detail-banner .title-date h1 {
  margin-bottom: 0;
}
.detail-banner .title-date p {
  padding-top: 10px;
  margin-bottom: 0.8em;
}
.detail-banner .detail-text p {
  margin-bottom: 10px;
}
.detail-banner .social-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-banner .social-detail .social-link a {
  font-size: 52px;
  display: block;
}
.detail-banner .social-detail .social-link a i {
  display: block;
}
.detail-banner .social-detail .link-btn a {
  padding: 12px 40px;
  border: 2px solid var(--c-primary);
  font-weight: bold;
  border-radius: 32px;
  font-size: inherit;
  background-color: transparent;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  line-height: 1;
}
@media screen and (min-width: 1600px) {
  .detail-banner .social-detail .link-btn a {
    padding: 14px 60px;
  }
}
.detail-banner .social-detail .link-btn a:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.bio-caption-left ul {
  padding-left: 1em;
}
.bio-caption-left ul li::marker {
  color: var(--c-secondary);
}

.two-awards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 24px;
}
.two-awards img {
  max-width: calc(50% - 12px);
}

.accordion {
  --bs-accordion-color: var(--c-primary);
}
.accordion .accordion-item {
  border: none;
  border-bottom: 2px solid var(--c-primary);
  border-radius: 0;
}
.accordion .accordion-item:first-child {
  border-top: 2px solid var(--c-primary);
}
.accordion .accordion-item .accordion-header .accordion-button {
  font-size: 26px;
  color: var(--c-primary);
  border-radius: 0;
  background-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 26px 16px;
  --bs-accordion-btn-icon: url("../image/accordion-down.svg");
  --bs-accordion-btn-active-icon: url("../image/accordion-down.svg") ;
}
.accordion .accordion-item .accordion-body {
  padding-top: 10px;
  padding-bottom: 30px;
}

.bg-banner-type {
  background: rgb(245, 248, 248);
  background: radial-gradient(circle, rgb(245, 248, 248) 0%, rgb(233, 248, 248) 100%);
}
.bg-banner-type .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-include ul li::marker {
  color: var(--c-secondary);
}

.news-overview .row {
  gap: 60px 0;
}
@media screen and (min-width: 1200px) {
  .news-overview .row {
    gap: 60px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .news-overview .row {
    gap: 60px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .news-overview .row .news-item {
    width: calc(33.3333% - 20px);
  }
}
@media screen and (min-width: 1600px) {
  .news-overview .row .news-item {
    width: calc(33.3333% - 40px);
  }
}

.news-card {
  padding: 30px 12px;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-color: var(--c-primary);
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .news-card {
    padding: 32px 20px;
  }
}

@media screen and (min-width: 1200px) {
  .contact-info {
    font-size: 26px;
  }
}
@media screen and (min-width: 1400px) {
  .contact-info {
    font-size: 32px;
  }
}

.contact-form .form-group {
  margin-bottom: 16px;
  --control-height: 56px;
}
@media screen and (min-width: 768px) {
  .contact-form .form-group {
    --control-height: 64px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 992px) {
  .contact-form .form-group {
    --control-height: 70px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-form .form-group {
    margin-bottom: 30px;
    --control-height: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .contact-form .form-group {
    --control-height: 90px;
    margin-bottom: 40px;
  }
}
.contact-form .form-group .form-control {
  height: var(--control-height);
  border-radius: var(--control-height);
  border: 2px solid var(--c-primary);
  padding: 12px calc(var(--control-height) / 2);
  font-size: 1em;
  color: var(--c-primary);
}
.contact-form .form-group .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--c-primary);
}
.contact-form .form-group .form-control::-moz-placeholder {
  opacity: 1;
  color: var(--c-primary);
}
.contact-form .form-group .form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--c-primary);
}
.contact-form .form-group .form-control::-ms-input-placeholder {
  opacity: 1;
  color: var(--c-primary);
}
.contact-form .form-group .form-control::placeholder {
  opacity: 1;
  color: var(--c-primary);
}
.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 20px calc(var(--control-height) / 2);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .contact-form .form-group textarea.form-control {
    border-radius: 30px;
    padding-top: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .contact-form .form-group textarea.form-control {
    padding-top: 24px;
    border-radius: 40px;
  }
}
.contact-form .form-action {
  --control-height: 56px;
}
@media screen and (min-width: 768px) {
  .contact-form .form-action {
    --control-height: 64px;
  }
}
@media screen and (min-width: 992px) {
  .contact-form .form-action {
    --control-height: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-form .form-action {
    --control-height: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .contact-form .form-action {
    --control-height: 90px;
  }
}
.contact-form .form-action .btn {
  line-height: var(--control-height);
  border-radius: var(--control-height);
  border: 2px solid var(--c-primary);
  padding: 0 calc(var(--control-height) / 2);
  font-size: 1em;
  color: var(--c-white);
  background-color: var(--c-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  width: 100%;
  max-width: 220px;
}
@media screen and (min-width: 992px) {
  .contact-form .form-action .btn {
    max-width: 315px;
  }
}
.contact-form .form-action .btn:hover {
  background-color: var(--c-secondary);
}

.map {
  min-height: 280px;
}/*# sourceMappingURL=style.css.map */