:root {
  --thm-font: "Barlow", sans-serif;
  --thm-reey-font: "reeyregular";
  --thm-gray: #7b7981;
  --thm-gray-rgb: 123, 121, 129;
  --thm-primary: #2B82A5;
  --thm-primary-rgb: 25, 137, 251;
  --thm-black: #1b1825;
  --thm-black-rgb: 27, 24, 37;
  --thm-base: #ffffff;
  --thm-base-rgb: 255, 255, 255;
  --thm-extra: #42d9be;
  --thm-extra-rgb: 66, 217, 190;
  --thm-bdr-color: #dae3e9;
  --thm-bdr-color-rgb: 218, 227, 233;
  --thm-bdr-radius: 8px;
  --header_height: 146px;
}

i {
  font-style: normal;
}

.base-color {
  color: var(--thm-primary);
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--thm-primary);
  color: var(--thm-base);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 18px 60px 18px;
  border-radius: 8px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.2em;
  z-index: 1;
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--thm-black);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  transform: scaleY(1);
}

.thm-btn:hover {
  color: var(--thm-base);
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.rd-navbar-fullwidth .rd-navbar-aside-outer {
  position: relative;
  z-index: 1000;
}

.page-header .rd-navbar.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-brand .brand__name .logo-black {
  display: block !important;
}
.page-header .rd-navbar.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-brand .brand__name .logo-white {
  display: none !important;
}
.page-header:hover {
  background: #fff;
}
.page-header:hover .rd-navbar-fullwidth .rd-navbar-nav > li a,
.page-header:hover .rd-navbar-static .rd-navbar-nav > li a {
  color: #333333;
}
.page-header:hover .rd-navbar-fullwidth .rd-navbar-nav > li > .rd-navbar-submenu-toggle::after,
.page-header:hover .rd-navbar-static .rd-navbar-nav > li > .rd-navbar-submenu-toggle::after {
  color: #333333;
}
.page-header:hover .unit-lang {
  color: #333333;
}
.page-header:hover .btn-search i {
  color: #333333;
}

.btn-search {
  font-style: normal;
}
.btn-search i {
  font-style: normal;
  font-size: 18px;
  color: #fff;
}

.unit-lang {
  position: relative;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.unit-lang img {
  margin-right: 10px;
}
.unit-lang .unit-lang__box {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 120px;
  z-index: 100000;
  text-align: center;
  padding-top: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.unit-lang .unit-lang__box::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.unit-lang .unit-lang__box li {
  border-bottom: 1px #ccc solid;
}
.unit-lang .unit-lang__box li:last-child {
  border-bottom: none;
}
.unit-lang .unit-lang__box li a {
  display: block;
  padding: 5px 0;
  color: #333;
  font-size: 16px;
}
.unit-lang .unit-lang__box li a img {
  height: 25px;
}
.unit-lang:hover .unit-lang__box {
  display: block;
}

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 500ms ease, opacity 500ms ease;
}
.search-popup.active {
  transform: translateY(0%);
}
.search-popup .search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.75;
  cursor: pointer;
}
.search-popup .search-popup__content {
  width: 100%;
  max-width: 560px;
}
.search-popup .search-popup__content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}
.search-popup .search-popup__content form input[type=search],
.search-popup .search-popup__content form input[type=text] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup .search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--thm-primary);
}
.search-popup .search-popup__content .thm-btn i {
  margin: 0;
}

.rd-navbar-fullwidth .rd-navbar-nav > li:not(.active) > a:hover {
  color: #2B82A5;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li a {
  color: #000;
}

.rd-navbar-fullwidth .rd-navbar-nav > li > .rd-navbar-submenu-toggle::after {
  color: #2B82A5 !important;
}

.rd-navbar-fullwidth .rd-navbar-nav > li.rd-nav-item:hover > .rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth .rd-navbar-nav > li.rd-nav-item:hover > a.rd-nav-link {
  color: #2B82A5;
}

.banner-news {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.banner-news .col-md-3 {
  border-right: 1px #fff solid;
  margin-bottom: 40px;
}
.banner-news .col-md-3:last-child {
  border-right: none;
}
.banner-news .col-md-3 h4 {
  color: #2B82A5;
  font-size: 18px;
  margin-bottom: 10px;
}
.banner-news .col-md-3 a {
  display: block;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 992px) {
  .banner-news{
    bottom: 30px;
  }
  .banner-news .row .col-md-3:nth-of-type(2),
  .banner-news .row .col-md-3:nth-of-type(3),
  .banner-news .row .col-md-3:nth-of-type(4) {
    display: none;
  }
  .banner-news .col-md-3{
    border-right: 0;
  }
}
.section-blogs {
  margin: 100px 0 0;
  position: relative;
}
.section-blogs::before {
  content: "";
  background: rgba(238, 238, 244, 0.7);
  position: absolute;
  top: 0;
  left: 130px;
  bottom: 14.125rem;
  width: 50%;
  border-bottom: 1px solid #dddfe7;
}
@media screen and (max-width: 992px) {
  .section-blogs::before {
    display: none;
  }
}
.section-blogs .section__header h2 {
  margin-left: 300px;
}
@media screen and (max-width: 992px) {
  .section-blogs .section__header h2 {
    margin-left: 0;
  }
}

.post-modern {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.post-modern .post-modern__main {
  border: 0;
}

.section-abouts {
  background: linear-gradient(to right, #0b3c75 50%, #fff 50%);
}
@media screen and (max-width: 992px) {
  .section-abouts {
    background: transparent;
  }
}
.section-abouts h4 {
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .section-abouts h4 {
    background: linear-gradient(to right, #0b3c75 50%, #0b3c75 50%);
    padding: 20px;
  }
}
.section-abouts .section-abouts__text {
  padding-left: 100px;
}
@media screen and (max-width: 992px) {
  .section-abouts .section-abouts__text {
    padding-left: 0;
  }
}
.section-abouts .section-abouts__text p {
  font-size: 16px;
  color: #333;
  line-height: 26px;
}
.section-abouts .section-abouts__text a {
  display: block;
  margin-top: 20px;
  color: #2B82A5;
}

.section-timelines {
  background: url(../images/news_bg.png) bottom center no-repeat;
}
.section-timelines .section-timelines__box {
  background: url(../images/timeline.png) no-repeat center top;
  background-size: 100% 69%;
    padding-top: 11px;
}
@media screen and (max-width: 768px) {
  .section-timelines .section-timelines__box {
    background: none;
  }
}
.section-timelines .section-timelines__box .timeline-item {
  margin-top: -14px;
  text-align: center;
  height: 24vh;
}
@media screen and (max-width: 992px) {
  .section-timelines .section-timelines__box .timeline-item {
    overflow-y: scroll;
  }
}
@media screen and (max-width: 768px) {
  .section-timelines .section-timelines__box .timeline-item {
    height: auto;
    overflow: auto;
  }
}
.section-timelines .section-timelines__box .timeline-item h2 {
  font-size: 18px;
  color: #333;
}
.section-timelines .section-timelines__box .timeline-item h2::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px #2B82A5 solid;
  border-radius: 50%;
  margin: 5px auto;
}
.section-timelines .section-timelines__box .timeline-item .text {
  margin: 5px auto 0;
  font-size: 16px;
  color: #333;
  line-height: 26px;
  max-width: 240px;
}

.section-bussness {
  background: url(../images/bussness-bg.png) left center no-repeat;
  background-size: calc(416 / 1920 * 100vw) 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1366px) {
  .section-timelines .section-timelines__box .timeline-item .text {
    max-width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .section-bussness {
    background: none;
  }
}
.section-bussness .section-bussness__single {
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .section-bussness .section-bussness__single {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .section-bussness .section-bussness__single .section__header {
    margin-top: 80px;
  }
}
.section-bussness .section-bussness__single .row {
  background: url(../images/bussness-bg-2.png) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .section-bussness .section-bussness__single .row {
    background: none;
  }
}
.section-bussness .section-bussness__single .row .col-md-6:nth-of-type(2), .section-bussness .section-bussness__single .row .col-md-6:nth-of-type(4) {
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .section-bussness .section-bussness__single .row .col-md-6:nth-of-type(2), .section-bussness .section-bussness__single .row .col-md-6:nth-of-type(4) {
    padding-left: 15px;
  }
}
.section-bussness .section-bussness__single .row .section-bussness__box {
  min-height: 240px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .section-bussness .section-bussness__single .row .section-bussness__box {
    min-height: auto;
    padding-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
.section-bussness .section-bussness__single .row .section-bussness__box p {
  max-width: 460px;
}

.lip-box {
  font-size: 18px;
  color: #333;
  text-align: center;
  padding: 40px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.lip-box h4 {
  font-size: 18px;
  color: #2B82A5;
  margin-bottom: 10px;
  font-weight: normal;
}
.lip-box h4:nth-of-type(2) {
  color: #333;
  margin-top: 10px;
}
.lip-box h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}
.lip-box h6 img {
  max-width: 100%;
}
.lip-box p {
  font-size: 14px;
  color: #666;
  line-height: 27px;
}

.section-message {
  background: #f5f5f7;
  width: 100%;
  overflow: hidden;
}
.section-message .section-message__single {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section-message .section-message__single .section-message__single__content {
  padding-right: 40px;
}
.section-message .section-message__single .section-message__single__content h3 {
  font-size: 30px;
  color: #0b3c75;
  line-height: 42px;
}
.section-message .section-message__single .section-message__single__content input {
  background: transparent;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 0;
  border-bottom: #000 1px solid;
  border-radius: 0;
  font-size: 18px;
  color: #333;
  padding: 15px 0;
}
.section-message .section-message__single .section-message__single__content input::placeholder {
    color: #333;
}
.section-message .section-message__single .section-message__single__content select {
  background: transparent;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 0;
  border-bottom: #000 1px solid;
  border-radius: 0;
  font-size: 18px;
  color: #333;
  padding: 15px 0;
}
.section-message .section-message__single .section-message__single__content textarea {
  margin-top: 15px;
  background: transparent;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 0;
  border-bottom: #000 1px solid;
  border-radius: 0;
  font-size: 18px;
  color: #333;
  padding: 15px 0 0 2px;
}
.section-message .section-message__single .section-message__single__content textarea::-moz-placeholder {
  font-size: 18px;
  color: #333;
}
.section-message .section-message__single .section-message__single__content textarea::placeholder {
  font-size: 18px;
  color: #333;
}
.section-message .section-message__single .section-message__single__content button {
  background: #0b3c75;
  padding: 10px 60px;
  color: #fff;
  font-size: 16px;
  box-shadow: none;
  border: none;
}
.section-message .section-message__single .section-message__single__content button:hover {
  background: #2B82A5;
  box-shadow: none;
  border: none;
}

.footer-corporate__main {
  background: #1d1d1b;
}
.footer-corporate__main h4.heading-bordered {
  font-size: 16px;
  color: #2B82A5;
}
.footer-corporate__main .list-xxs li a {
  font-size: 14px;
}
.footer-corporate__main .website-intro {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.15);
}

.shanwai-map__item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.shanwai-map__item .map-single {
  padding: 40px 20px 0 0;
}
.shanwai-map__item .map-single .map-single__title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 20px;
}

.section-page-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #2B82A5;
  margin-top: 20px;
}

.breadcrumbs-customs {
  position: relative;
  height: 100vh;
}
.breadcrumbs-customs .breadcrumbs-custom__texts {
  max-width: 50%;
  position: absolute;
  bottom: 0;
}
.breadcrumbs-customs .breadcrumbs-custom__texts .breadcrumbs-custom__intro {
  background: white;
}
.breadcrumbs-customs .breadcrumbs-custom__text {
  position: relative;
}

.has-bg {
  position: relative;
}

.banner {
  --heading_color: #fff;
  --h3_color: #fff;
  --h1_color: #fff;
  --corner_s: 5.125rem;
  height: 100vh;
  overflow: hidden;
  padding-bottom: var(--pb, 3.875rem);
}
.banner .banner__subtitle {
  font-size: 20px;
}
.banner .banner__title {
  font-size: 42px;
}
@media print, screen and (max-width: 62em) {
  .banner .banner__title {
    padding: 30px 0;
    font-size: 26px;
  }
}

@media print, screen and (min-width: 62em) {
  .banner {
    --pb: 0;
    --h: calc(100vh - var(--header_height));
    max-height: 100%;
  }
}
.banner:before {
  background: linear-gradient(var(--deg, 0deg), #000 0, hsla(0, 0%, 100%, 0) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: var(--w, 100%);
  z-index: 2;
}

@media print, screen and (min-width: 62em) {
  .banner:before {
    --deg: 90deg;
    --w: 86.7%;
  }
}
.has-bg > .container {
  position: relative;
  z-index: 10;
}

.of-cover {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.lg\:block {
  display: block;
}

.has-bg > .of-cover,
.has-bg > video {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  z-index: 1;
}

.banner__wrapper {
  position: relative;
  padding-top: 300px;
}

@media print, screen and (min-width: 62em) {
  .banner__wrapper {
    padding-left: 2.3125rem;
  }
}
.flex-col-reverse {
  flex-direction: column-reverse;
}

.banner__subtitle {
  font-weight: 600;
  margin-bottom: var(--mb, 0.25rem);
  text-transform: uppercase;
}

@media print, screen and (min-width: 62em) {
  .banner__subtitle {
    --mb: 15px;
  }
}
.corner {
  height: var(--corner_s, 5.125rem);
  pointer-events: none;
  position: absolute;
  width: var(--corner_s, 5.125rem);
}

.corner--bottom {
  border-bottom: var(--corner_w, 0.625rem) solid var(--red);
}

.banner__wrapper .corner {
  bottom: 0;
  left: 0;
}

@media print, screen and (min-width: 62em) {
  .banner__wrapper .corner {
    bottom: -1.875rem;
    left: 0;
  }
}
.banner__description {
  background: #fff;
  color: var(--black);
  padding: 2.875rem var(--gutter);
  position: relative;
}

@media print, screen and (min-width: 62em) {
  .banner__description {
    margin-top: 5.625rem;
    max-width: 48.125rem;
    padding: 3.375rem 5.9375rem 3.3125rem 0;
  }
}
.banner__description {
  position: absolute;
  bottom: 0;
}

.banner__description:before {
  background: #fff;
  bottom: 0;
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 24vw;
}

.banner__description_text {
  font-size: 20px;
  color: #333;
}
@media print, screen and (max-width: 62em) {
  .banner__description_text {
    padding: 20px;
    font-size: 16px;
  }
}

.corner {
  height: var(--corner_s, 5.125rem);
  pointer-events: none;
  position: absolute;
  width: var(--corner_s, 5.125rem);
}

.banner__description .corner {
  right: -0.625rem;
  top: -0.625rem;
}

.corner--right {
  border-right: var(--corner_w, 0.625rem) solid #0b3c75;
}

.corner--top {
  border-top: var(--corner_w, 0.625rem) solid #0b3c75;
}

.corner--bottom {
  border-bottom: var(--corner_w, 0.625rem) solid #0b3c75;
}

.corner--left {
  border-left: var(--corner_w, 0.625rem) solid #0b3c75;
}

.section-top_client {
  height: 100%;
  box-shadow: var(--shadow, 0 0 6.1875rem 0 rgba(0, 0, 0, 0.1));
}
.section-top_client .top_client_text {
  padding: 40px;
}
.section-top_client .top_client_text .top_client_title {
  color: #000;
  font-size: 32px;
  text-align: center;
}
.section-top_client .top_client_text .top_client_desc {
  color: #333;
}

.section-top_clients {
  box-shadow: var(--shadow, 0 0 6.1875rem 0 rgba(0, 0, 0, 0.1));
}
.section-top_clients .top_clients_img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-top_clients .top_clients_img a {
  display: block;
  width: 100%;
  height: 100%;
}
.section-top_clients .top_clients_img a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-top_clients .top_clients_text {
  padding: 20px 10px 20px 0;
}
.section-top_clients .top_clients_text .top_clients_title {
  margin-top: 10px;
  color: #000;
  font-size: 20px;
  text-align: left;
}
.section-top_clients .top_clients_text .top_clients_desc {
  color: #333;
  font-size: 14px;
}

.post-modern__text {
  font-size: 14px;
}

.post-modern__title a {
  color: #000;
  font-weight: bold;
}

.section-detail__top {
  padding-top: 200px;
}
.section-detail__top .detail-header__img {
  position: relative;
}
.section-detail__top .detail-header__img .detail-header__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40vw;
  background-color: #fff;
  padding: 40px;
}
@media screen and (max-width: 992px) {
  .section-detail__top .detail-header__img .detail-header__info {
    width: 80%;
  }
}
.section-detail__top .detail-header__img .detail-header__info h2 {
  margin-top: 40px;
  font-weight: bold;
}

.box-promo {
  width: 100%;
  height: 400px;
}

.thumbnail-classic a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.thumbnail-classic a img {
  max-width: 100%;
  max-height: 100%;
  transform: scale(1);
  transition: all 1s ease;
  will-change: transform;
}
.thumbnail-classic a p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 1s ease;
  will-change: opacity;
}
.thumbnail-classic a:hover img {
  transform: scale(0.8) !important;
}
.thumbnail-classic a:hover p {
  opacity: 1;
}

.page-single__content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.page-single__content h3 {
  font-size: 30px;
  color: #0b3c75;
  line-height: 42px;
}
.page-single__content input {
  background: transparent;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 0;
  border-bottom: #000 1px solid;
  border-radius: 0;
  font-size: 18px;
  color: #333;
  padding: 15px 0;
}
.page-single__content select {
  background: transparent;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 0;
  border-bottom: #000 1px solid;
  border-radius: 0;
  font-size: 18px;
  color: #333;
  padding: 15px 0;
}
.page-single__content textarea {
  margin-top: 15px;
  background: transparent;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 0;
  border-bottom: #000 1px solid;
  border-radius: 0;
  font-size: 18px;
  color: #333;
  padding: 15px 0 0 2px;
}
.page-single__content textarea::-moz-placeholder {
  font-size: 18px;
  color: #333;
}
.page-single__content textarea::placeholder {
  font-size: 18px;
  color: #333;
}
.page-single__content button {
  background: #0b3c75;
  padding: 10px 60px;
  color: #fff;
  font-size: 16px;
}
.page-single__content button:hover {
  background: #2B82A5;
}

.section-case__dropdown {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section-case__dropdown .dropdown-toggle {
  background: transparent;
  color: #000;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-case__dropdown .dropdown-toggle i {
  color: var(--thm-primary);
  font-size: 40px;
  margin-left: 15px;
}
.section-case__dropdown .dropdown-toggle::after {
  display: none;
}
.section-case__dropdown .dropdown-toggle.show i {
  transform: rotate(180deg);
}
.section-case__dropdown ul {
  padding: 0;
}
.section-case__dropdown ul li a {
  color: #000;
  display: block;
  padding: 10px 20px;
}
.section-case__dropdown ul li.active a, .section-case__dropdown ul li:hover a {
  color: var(--thm-primary);
}

.section-service__one .heading-4 {
  line-height: 1.2;
}
.section-service__one ul li {
  display: flex;
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
}
.section-service__one ul li::before {
  content: "";
  flex: 0 0 10px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--thm-primary);
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 8px;
}

.section-service__two {
  position: relative;
  padding-top: 0;
}
.section-service__two .container {
  position: relative;
}
.section-service__two .service__two-text {
  position: absolute;
  bottom: 60px;
  left: 60px;
  width: 50%;
  padding: 32px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-service__two .service__two-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 82px;
  height: 82px;
  border-left: #0b3c75 10px solid;
  border-bottom: #0b3c75 10px solid;
}

.section-service__three ul {
  margin-top: 40px;
}
.section-service__three ul li {
  display: flex;
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
}
.section-service__three ul li::before {
  content: "";
  flex: 0 0 10px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--thm-primary);
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 8px;
}

.section-service__six .service__five-box {
  margin-top: 30px;
}
.section-service__six .service__five-box .text {
  padding-right: 60px;
}
@media screen and (max-width: 991px) {
  .section-service__six .service__five-box .text {
    padding-right: 0;
  }
}
.section-service__six .service__five-box .text h4 {
  min-height: 60px;
  margin: 30px 0 20px;
}
.section-service__six .service__five-box .text p {
  font-size: 16px;
  line-height: 1.5;
}

.swiperTimeline .swiper-slide {
  padding: 20px;
  text-align: center;
}
.swiperTimeline .swiper-slide .timeline-item {
  margin-top: 20px;
}
.swiperTimeline .swiper-slide .timeline-item::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #2B82A5;
  border-radius: 50%;
  margin: 0 auto;
}
.swiperTimeline .swiper-slide.swiper-slide-active .timeline-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.swiperTimeline .swiper-slide.swiper-slide-active .timeline-item h2 {
  color: #2B82A5;
}
.swiperTimeline::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2B82A5;
}
@media screen and (max-width: 991px) {
  .rd-navbar-megamenu .position-absolute{
    position: relative!important;
  }
  .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a, .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:active, .rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-title a:focus{
    color: #333!important;
  }
  .rd-navbar-megamenu .row.mt-5{
    margin-top: 0
  }
  .banner{
    height: calc(100vh - 56px);
    padding-bottom: 0;
  }
  .banner__wrapper{
    margin-left: 20px;
  }
 .section-blogs{
  margin: 0;
  padding-bottom: 0;
 }
 .section-abouts{
  padding-top: 0;
 }
 .section-message .section-message__single .section-message__single__content{
  padding: 20px
 }
 .section-message .section-message__single .section-message__single__content .row .col-md-12 .d-flex{
  display: block !important;
 }
 .section-service__two .service__two-text{
  width: 100%;
  padding: 40px;
  font-size: 18px;
  bottom: 25px;
  left: 25px;
 }
 .section-service__two img{
  height: 500px;
  object-fit: cover;
 }
 .section-top_client .top_client_text .top_client_title,
 .section-top_clients .top_clients_text .top_clients_title{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 行数 */
  -webkit-box-orient: vertical;
 }
 .post-modern__text,
 .section-top_clients .top_clients_text .top_clients_desc{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 行数 */
  -webkit-box-orient: vertical;
 }
  .section-detail__top .detail-header__img{
    background: #F0EEF6;
    display: flex;
    align-items: flex-start;
    height: 80vh;
    overflow: hidden;
  }
 .section-detail__top .detail-header__img img{

 }
 html .page .group-sm .text-main{
  display: flex;
  align-items: center;
 }
}

.post-modern__title a:hover{
  font-size: 20px;
  border-bottom: none;
}


/*# sourceMappingURL=index.css.map */