
:root {
  --color-primary: #0085ff;
  --color-secondary: #15ACE1;
  --color-light: #F4F7FE;
  --color-dark: #14183E;
  --color-background: #00beff;
}

@font-face {
  font-family: "HELVETICANEUELTPRO-THEX";
  src: url("../fonts/HELVETICANEUELTPRO-THEX.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-ExtraBold-4";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-ExtraBold-4.otf");
  src: url("../fonts/Montserrat-ExtraBold-4.otf") format("opentype");
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

.container-fluid.no-padding {
    padding-left: 0;
    padding-right: 0;
}

/*** five columns layout ***************/
@media (min-width: 768px) {
    .col-sm-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-sm-30 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .col-sm-70 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .col-sm-80 {
        flex: 0 0 80%;
        max-width: 80%;
    }
}

@media (min-width: 992px) {
    .col-md-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-md-30 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .col-md-70 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .col-md-80 {
        flex: 0 0 80%;
        max-width: 80%;
    }
}

@media (min-width: 1200px) {
    .col-lg-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-lg-30 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .col-lg-70 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .col-lg-80 {
        flex: 0 0 80%;
        max-width: 80%;
    }
}

@media (min-width: 2560px) {
  .col-5xl-15 {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .col-5xl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-5xl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-5xl-85 {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .col-5xl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .col-5xl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary) !important;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

a:not([href]):not([class]),a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

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

.overlay {
    position: relative;
    --overlay-opacity: 0.5;
}

.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: var(--overlay-opacity);
}

.btn-link {
    text-decoration: none;
}

.dropdown-item.active,.dropdown-item:active {
    text-decoration: none;
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
}

.card-link:hover {
    text-decoration: none;
}

.list-group-item-action:hover,.list-group-item-action:focus {
    text-decoration: none;
}

.btn-close:hover {
    text-decoration: none;
}

.tooltip {
    text-decoration: none;
}

.popover {
    text-decoration: none;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    text-decoration: none;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 50px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar-nav .dropdown-menu {
  background-color: #fff !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown-item:focus,.dropdown-item:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.dropdown-item.active,.dropdown-item:active {
    background-color: var(--color-primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--color-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .5s;
}

header .navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
}

header.fixed {
  position: fixed;
  top: 0;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  margin-bottom: -10px;
  color: rgba(255, 255, 255, .7);
}

.phone-bar i {
  margin-right: 8px;
  font-size: 20px;
}

.phone-bar strong {
  color: #ff7300;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.logo,
.sticky-top-logo {
  height: 1.561vw;
  min-height: 20px;
}

@media (max-width: 767.98px) {
  .phone-bar {
    margin-bottom: 0;
  }

  .phone-bar i {
    font-size: 18px;
  }

  .phone-bar span {
    font-size: 14px;
  }

  .phone-bar strong {
    font-size: 18px;
  }

  .navbar {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.sticky-top-logo {
  display: none;
}

header.fixed .logo {
  display: none;
}

header.fixed .sticky-top-logo {
  display: block;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    align-items: center;
  }
}

@media (max-width: 1439.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 20px;
  }
}

.navbar-dark .navbar-toggler {
  border-color: transparent;
}

.navbar-right {
  display: flex;
  align-items: center;
  z-index: 200;
}

@media (max-width: 991.98px) {
  .navbar-right {
    position: absolute;
    right: 0;
  }
}

.searchbtn {
  margin-right: 10px;
}

.navbar-menu-btn {
  width: 20px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.navbar-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: all .3s ease;
}

.navbar-menu-btn.close span {
  margin: 0;
  position: absolute;
}

.navbar-menu-btn.close span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  transform-origin: center;
}

.navbar-menu-btn.close span:nth-child(2) {
  display: none;
}

.navbar-menu-btn.close span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  transform-origin: center;
}


.language-button {
  background-color: transparent;
  border: transparent;
  color: #fff;
  padding: 2px 0;
}

.dropdown-toggle.language-button::after {
  margin-left: 2px;
}

.language-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.language-menu {
  border: 1px solid #ff004d;
  right: 0;
  left: auto;
  border-radius: 0 0 4px 4px;
  background: transparent;
  min-width: 8rem;
}

.language-menu .dropdown-item {
  font-size: 14px;
  padding: 8px 16px;
  color: #ff004d;
  text-align: center;
  opacity: 0.8;
}

.language-menu .dropdown-item:hover {
  background-color: #ff004d;
  color: #fff;
  font-weight: bold;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: auto;
  margin-top: .125rem;
}

.top-banners {
  position: relative;
}

.top-banners .swiper {
  height: 100vh;
}

.top-banners .swiper-slide {
  background: linear-gradient(to bottom, #006bb4 0%, #008be9 50%, #33aef0 100%);
  overflow: hidden;
}

.top-banners .swiper-box {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 3s;
  transform: scale(1.1);
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--color-dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--color-dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/


/*** Service ***/
.service-item {
    position: relative;
    padding: 15px;
    background: #FFFFFF;
    transition: .5s;
}

.container.en_us .service-item {
  height: 266px;
}

.service-item:hover {
    background: var(--color-primary);
}

.service-item .service-icon {
    margin: 0 auto 15px auto;
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    background: var(--color-light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--color-primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--color-primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--color-light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--color-light);
}


@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

@media (min-width: 576px) and (max-width: 1439.98px) {
    .container {
        max-width: 95%;
    }
}

@media (min-width: 1440px) {
    .container {
      max-width: inherit;
      width: 85%;
      min-width: inherit;
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}

.case-item:hover img {
    transform: scale(1.2);
}

.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--color-dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--color-primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--color-light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--color-primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: #FFFFFF;
    border: 1px solid var(--color-primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--color-primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--color-primary);
}


/*** Footer ***/
.footer {
    background: url(../images/footer.png) center center no-repeat;
    background-size: contain;
}

@media (min-width: 1200px) {
  .footer .mid-col {
    padding-left: 40px;
  }

  .footer.zh_cn .mid-col {
    padding-left: 60px;
  }
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--color-primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



h2.section-title {
    text-transform: uppercase;
}

.section-title-border {
    position: relative;
    height: 5px;
    width: 30px;
    background: var(--color-primary);
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.section-title-border.border-center {
    margin-left: calc(50% - 27px);
}

.section-title-border::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 50%;
    background: var(--color-primary);
    border-radius: 10px;
    right: -60%;
    top: 0;
}

.section-title-border::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 25%;
    background: var(--color-primary);
    border-radius: 10px;
    right: -100%;
    top: 0;
}


.item-common .img-box {
  border-radius: 5px 5px 0 0;
  background: #d3defd;
  padding: 60px 25px;
  max-height: 260px;
  height: 100%
}

.item-common .content {
  border-radius: 0 0 5px 5px;
  box-shadow: 0 3px 26px rgba(0,0,0,0.06);
  background: #fff;
  padding: 26px 0;
}

.item-common .content p {
  margin-bottom: 0
}

/*==============================================*/
.popular-box {
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 10px 29.7px 0.3px rgba(225, 225, 225, 0.64);
}

.popular-img {
  --bs-aspect-ratio: calc(25 / 18 * 100%);
  pointer-events: auto;
  cursor: pointer;
}

.popular-img > img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}

.popular-img > img {
    /*-webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    transform: scale(1);*/

    width: 100%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: .5s;
    transition: .5s
}

.popular-box:hover .popular-img > img {
    -webkit-transform: scaleX(1.1);
    -moz-transform: scaleX(1.1);
    -ms-transform: scaleX(1.1);
    transform: scaleX(1.1)
}

.popular-box .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: none;
}

.popular-box .mask i {
  font-size: 30px;
  color: #fff;
}

.popular-box:hover .mask {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

.popular-box .img-cap {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.popular-box .img-cap span {
    color: #fff;
    background: rgba(29,37,71,0.5);
    padding: 10px 0;
    display: block;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Cinzel",serif;
    text-align: center;
}

/*=============================================*/
.portfolio-item.item-2 {
  border-radius: 6px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 3px 26px rgba(0,0,0,0.04);
}

.portfolio-item.item-2 .portfolio-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16rem;
  overflow: hidden;
}

.portfolio-item.item-2 .portfolio-img img {
  width: auto;
  max-height: 207px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.portfolio-item.item-2:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.portfolio-single-text h2 {
  font-size: 52px;
  line-height: 69px
}

.portfolio-single-text ul li {
  margin-bottom: 15px
}

.portfolio-single-text ul strong {
  font-weight: 600;
  color: #03004E
}

.portfolio-item.item-2 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 8rem;
  margin: 0;
  padding: 1.2rem 1.2rem;
  transition: all .4s ease;

}

.portfolio-item.item-2 .content h4 {
  text-align: center;
  font-size: 1.375rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color: #333;
}

.portfolio-item.item-2 .content p {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #6C6D74;
}

.portfolio-item.item-2 .content h4,
.portfolio-item.item-2 .content p {
  transition: all .4s ease
}

.portfolio-item.item-2:hover .content {
  background: var(--color-primary);
}

.portfolio-item.item-2:hover .content h4,
.portfolio-item.item-2:hover .content p {
  color: #fff
}

/*==========================================================*/
.section-breadcrumb {
  display: flex;
  align-items: center;
  /*margin-top: 30px;*/
  /*margin-bottom: 1rem;*/
  height: 3.75rem;
}

.section-breadcrumb nav {
  display: flex;
  align-items: center;
}

.section-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.breadcrumb .location-label {
  margin-right: 5px;
}


.pagination-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.page-link {
  color: var(--color-primary);
}

/*==========================================================*/
.section-banners + section {
  margin-top: 50px;
}

.section-banners + section .text-center {
  margin-bottom: 50px;
}

.banner-section {
  position: relative;
  height: 31.25vw;
  min-height: 18rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom, rgba(2, 108, 223, 1) 0%, rgba(0, 255, 255, 1) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.banner-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.banner-section .title-row {
    text-transform: uppercase;
}

.banner-product .title-row {
  position: absolute;
  left: 15%;
  bottom: 55%;
}

.banner-cases .title-row {
  position: absolute;
  left: 10%;
  top: 40%;
    
}

@media (max-width: 576px) {
  .banner-product .title-row {
    left: 5%;
    bottom: 40%;
  }

  .banner-cases .title-row {
    left: 2%;
  }
}

.banner-section .banner-title {
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.banner-section .subtitle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .banner-section .banner-title {
    font-size: 2.4vw;
    letter-spacing: 5px;
  }

  .banner-section .subtitle {
    font-size: 1.5vw;
    letter-spacing: 3.6px;
  }
}

.banner-product {
  background-image: url(../../static/images/inner-banner/product-banner.jpg);
}

.banner-solutions {
  background-image: url(../../static/images/inner-banner/solutions-banner.jpg);
}

.banner-news {
  background-image: url(../../static/images/inner-banner/news-banner.jpg);
}

.banner-services {
  background-image: url(../../static/images/inner-banner/services-banner.jpg);
}

.banner-certificates {
  background-image: url(../../static/images/inner-banner/certificates-banner.jpg);
}

.banner-cases {
  background-image: url(../../static/images/inner-banner/cases-banner.jpg);
}

.banner-contact {
  background-image: url(../../static/images/inner-banner/contact-banner.jpg);
}

/*==========================================================*/
.top-banners .swiper-slide-active .swiper-box {
  transform: scale(1);
}

.top-banners .swiper-text {
  position: absolute;
  top: 47%;
  left: 9.375%;
  color: #fff;
  font-weight: 700 !important;
  font-size: 60px;
  font-family: 'gilroy-bold';
  line-height: 1;
  letter-spacing: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  transform: translateY(-50%);
}

.top-banners .swiper-text.swiper-text-3 {
  left: 48%;
  top: 50%;
}

.top-banners .swiper-text .title {
  font-size: 3.6vw;
  margin-bottom: 1.875rem;
}

.top-banners .swiper-text .subtitle {
  font-size: 2.6vw;
}

.top-banners .swiper-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 10;
}

.top-banners .swiper-dots .swiper-pagination-bullet {
  position: relative;
  margin: 0 5px;
  width: 60px;
  height: 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  z-index: 10;
}

.top-banners .swiper-dots .swiper-pagination-bullet::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
}

.top-banners .swiper-dots .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  transition: width 4s !important;
  background: #ff004d;
}


@media (max-width: 768px) {
  .top-banners .swiper-dots {
    bottom: 10px;
  }
  .top-banners .swiper-dots .swiper-pagination-bullet {
    width: 20px;
  }

  .top-banners .swiper-dots .swiper-pagination-bullet-active {
    width: 60px;
    background: #fff;
  }
}

@media (max-width: 992px) {
  .top-banners .swiper {
    height: calc(100vh - 460px);
    min-height: 48vh;
  }

  .top-banners .swiper-text {
    top: 58%;
  }

  .top-banners .swiper-text.swiper-text-3 {
    left: 44%;
    top: 56%;
  }

  .top-banners .swiper-text .title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .top-banners .swiper-text .subtitle {
    font-size: 20px;
  }
}


.news-container {
  color: #fff;
  background-image: url(../../static/images/home/blue-background.jpg);
  background-repeat: no-repeat;
  background-size:cover;
}

.news-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-box .swiper-container {
  width: 100%;
}

.news-box .news-heading,
.news-box .news-title,
.news-box .news-sub-title,
.news-box a {
  color: #fff;
}

.news-box .news-heading {
  font-size: 40px;
  margin-bottom: 30px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.news-box .news-title {
  font-size: 22px;
  letter-spacing: 0.8px;
  margin-top: 12px;
}

.news-box .news-sub-title {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-box li {
  margin-bottom: 30px;
}

.news-pagination {
  position: absolute;
  display: flex;
  width: 100%;
  left: 0;
  bottom: 40px;
  font-size: 0;
  align-items: center;
  justify-content: center;
}

.news-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 3px;
    border-radius: 1px;
    background: #fff;
    margin: 0 4px;
}

/*=========================================================*/
.sidebar-widget-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 20px;
  font-weight: bold;
  letter-spacing: 0;
  color: #fff;
  background-color: var(--color-primary);
}

.sidebar-widget-header .icon-category {
  margin-right: 8px;
  font-size: 18px;
}

.sidebar-widget-1 {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-widget-1 .side-menus {
  padding-top: 15px;
  padding-bottom: 30px;
}

.sidebar-widget-1 a.category {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  color: #292b2c;
  font-size: 16px;
  font-weight: 400 !important;
}

.sidebar-widget-1 .side-menus > ul > li:hover,
.sidebar-widget-1 .side-menus > ul > li.active,
.sidebar-widget-1 .sub-categories li.active {
  background-color: #f2fcff;
}

.sidebar-widget-1 li.active > a {
  border-right: 3px solid #00ccff;
}

.sidebar-widget-1 .sub-categories li {
  padding-left: 30px;
}

.sidebar-widget-1 .sub-categories li:hover,
.sidebar-widget-1 .sub-categories li.active {
  background-color: var(--color-background);
}

.sidebar-widget-1 .sub-categories li a {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  text-decoration: none;
  color: #666;
  padding: 10px 0px 10px 16px;
}

.sidebar-widget-1 .sub-categories li a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 16px;
  left: 0px;
  background-color: #999;
}

.sidebar-widget-1 .sub-categories li:hover a,
.sidebar-widget-1 .sub-categories li.active a {
  color: #fff;
}

.sidebar-widget-1 .sub-categories li:hover a:before,
.sidebar-widget-1 .sub-categories li.active a:before {
  background-color: #fff;
}


.sidebar-widget-2 {
}

.sidebar-widget-2 .sidebar-widget-header {
  justify-content: center;
  margin-bottom: 15px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: bold; 
  letter-spacing: 1px;
  color: #000;
  background-color: var(--color-background);
}

.sidebar-widget-2.en_us .sidebar-widget-header {
  font-size: 18px;
}

@media (max-width: 1400px) {
  .sidebar-widget-2 .sidebar-widget-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sidebar-widget-2 ul li {
  margin: 0;
  padding-left: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-widget-2 > .side-menus > ul > li > a {
  display: inline-block;
  width: 100%;
  color: #292b2c;
  font-size: 16px;
  font-weight: 400 !important;
}

.sidebar-widget-2 .sub-categories > li > a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  padding: 10px 0px 10px 16px;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.sidebar-widget-2 .sub-categories > li > a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 16px;
  left: 0px;
  background-color: #8E95A5;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.sidebar-widget-2 .sub-categories > li:hover > a {
  padding-left: 30px;
  color: var(--color-primary);
}

.sidebar-widget-2 .sub-categories > li:hover > a:before {
  left: 14px;
  background-color: var(--color-primary);
}

.sidebar-widget-2 .sub-categories > li.active > a {
  color: var(--color-primary);
  font-weight: bold;
}

.sidebar-widget-2 .sub-categories > li.active > a:before {
  background-color: var(--color-primary);
}

/*=========================================================*/
.tags-widget {
  padding: 20px;
  background-color: #f7f8fa;
}

.tag-head-title {
  position: relative;
  cursor: default;
}

.tag-head-title span {
  display: inline-block;
  padding: 10px 0px 10px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.tag-head-title i {
  position: absolute;
  top: 8px;
  right: 10px;
}

.tag-list {
  padding: 15px;
  background-color: #f7f8fa;
  display: none;
}

.tag-list a {
  width: calc(50% - 10px);
  margin-right: 10px;
  color: #333;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  font-size: 13px;
  padding: 6px 15px;
  margin-bottom: 8px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tag-list a:nth-child(2n) {
  margin-right: 0;
}

.tag-list a:hover,
.tag-list a.active {
  background-color: var(--color-background);
  color: #fff;
}

/*====================================================*/
.video-help {
  color: #fff;
}

.video-help .row {
  --bs-gutter-x: 0.5rem;
}

.video-help h4 {
  font-size: 16px;
  padding: 0 10px;
}

.video-help h5 {
  font-size: 14px;
}

.video-help-hd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.video-help-hd h3 {
  padding: 5px 30px;
  font-size: 16px;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 20px;
  background: var(--color-primary);
  box-shadow: 0 0 3px #d5d5d8;
}

.video-help-box,
.video-help-card,
.video-help-embed {
  display: flex;
  align-items: stretch;
  margin-bottom: 1rem;
  padding-bottom: 10px;
}

.video-help-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.15);*/
}

.video-help-tit i:before {
  font-size: 54px !important;
}

.icon-tip-1 {
  background-color: var(--color-primary);
}

.icon-tip-2 {
  background-color: #fe9b00;
}

.icon-tip-3 {
  background-color: #7fd000;
}

.video-help-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  height: 100%;
  border: 1px solid #777;
}

.video-help-cont p {
  margin-bottom: 0;
}

.video-help-cont a {
  margin-right: 8px;
  color: rgba(255,255,255,.5);
  font-weight: normal;
  transition: .3s;
}

.video-help-cont a:hover {
  color: #fff;
}

