/* Theme default css */
body {
  font-family: 'Microsoft YaHei', sans-serif;

  font-weight: normal;
  font-style: normal;
  background: #fff;
}

.font-weight-600 {
  font-weight: 600;
}

.text-white {
  color: #fff;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-32 {
  font-size: 32px;
}

.line-height-30 {
  line-height: 30px;
}

.line-height-35 {
  line-height: 35px;
}

.line-height-40 {
  line-height: 40px;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  color: white;
}

a:hover {
  color: #019ee8;
  text-decoration: none;
}

a,
button {
  outline: none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: none;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Microsoft YaHei', sans-serif;
  color: #313131;
  margin-top: 0px;
  font-weight: 400;
  text-transform: capitalize;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #333;
}

label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}

.defalt-padding {
  padding: 0 0px 0;
}

.page-padding {
  padding: 80px 0;
}

.section-padding {
  padding-bottom: 60px;
}

.bg-color {
  background: #f7f7f7;
}

.bg-white {
  background: #fff;
}

.bg-theme {
  background: #019ee8;
}

.pt-120 {
  padding-top: 120px;
}

/* Start button style */
.sub-btn {
  margin-top: 20px;
}

.read-more-btn {
  color: #0a1f44;
  font-weight: 600;
}

.btn {
  background: #019ee8;
  border: 1px solid #019ee8;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 16px 25px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #0a1f44;
  color: #fff;
  border: 1px solid #0a1f44;
  transition: all 0.3s ease-in-out;
}

/* End button style */
.breadcrumb > .active {
  color: #888;
}

/*Start Variable */
/* End Variable */
/* Start custom-class */
.theme-color {
  color: #019ee8;
}

.theme-color-hover {
  transition: 0.3s;
}
.theme-color-hover:hover {
  color: #019ee8;
}

.text-justify {
  text-align: justify;
}

/* End custom-class */
/* Preloader start */
#loading {
  background-color: #019ee8;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}
#loading .loading-icon .loading-logo {
  width: 200px;
  height: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading #loading-center-absolute {
    width: 60%;
  }
}

/* Preloader end */
/* Start Header style */
/*sticky-header*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

/*End sticky-header*/
#header-top {
  background: #019ee8;
}

.header-top-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-top-area .h-left-area {
  display: flex;
}
.header-top-area .h-left-area li {
  padding: 6px 11px;
  color: #ffffff;
  border-left: 1px solid #f7f7f7;
  font-size: 16px;
  margin-left: 18px;
}
.header-top-area .h-left-area li:first-child {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.header-top-area .h-left-area li i {
  padding-right: 7px;
}
.header-top-area .h-right-area {
  display: flex;
}
.header-top-area .h-right-area li {
  padding: 5px 0px;
  border-right: 1px solid #f7f7f7;
}
.header-top-area .h-right-area li:first-child {
  border-left: 1px solid #f7f7f7;
}
.header-top-area .h-right-area li a {
  color: #ffffff;
  padding: 0px 14px;
  font-size: 18px;
}

/* End Header style */
/* Start Menu style */
.sticky .navbar {
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
  transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link {
  color: #0a1f44;
  font-size: 16px;
  padding: 24px 12px;
  font-family: 'Microsoft YaHei', sans-serif;
  /* font-weight: 700;
  text-transform: uppercase; */
  letter-spacing: 0;
  transition: all 0.3s ease-out 0s;
}

.navbar-light .navbar-nav .active > .nav-link:hover {
  color: #019ee8;
  transition: all 0.3s ease-out 0s;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #019ee8;
  transition: all 0.3s ease-out 0s;
}

.navbar-light .navbar-brand {
  width: 150px;
}
.navbar-light .navbar-brand img {
  width: 100%;
}

.dropdown-menu {
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  background-color: none;
  border: none;
  padding-top: 4px;
  padding-bottom: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  left: -30px;
  overflow: hidden;
}

.dropdown-item {
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  padding: 12px 22px;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0
}
.dropdown-menu li .dropdown-item {
  text-align: center;
  display: block;
}

.dropdown-item

.dropdown-item.active,
.dropdown-item:active {
  background-color: #019ee8;
}

.menu-search-cart li {
  float: left;
}

.menu-search {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 38px;
  color: #333;
  border: 2px solid #f1f1f1;
  border-radius: 100%;
  margin: 16px 0px 13px;
  cursor: pointer;
}

.menu-search-form {
  position: absolute;
  height: 100%;
  width: 100%;
  color: #707070;
  top: 0;
  left: 0;
  text-align: center;
  display: none;
}

.menu-search-form.open {
  display: block;
}

.menu-search-form input {
  width: 100%;
  height: 100%;
  color: #707070;
  text-align: center;
  border: none;
  outline: none;
  padding: 15px 115px 15px 15px;
}

.menu-search-form .menu-search-close {
  position: absolute;
  right: 90px;
  top: 35%;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.menu-tel {
  display: inline-block;
  margin-left: 20px;
  margin-right: 10px;
}

.menu_cart {
  position: relative;
}

.menu_cart > span {
  position: relative;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: #019ee8;
  border: 2px solid #019ee8;
  border-radius: 100%;
  margin: 33px 11px 26px 13px;
  cursor: pointer;
}

.menu_cart > span:before {
  content: '2';
  position: absolute;
  top: 7px;
  right: -13px;
  height: 20px;
  width: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #019ee8;
  border-radius: 100%;
  text-align: center;
}

.menu_cart .shop_feature {
  background-color: #fff !important;
  width: 270px !important;
  padding: 10px 20px 20px !important;
  right: 0px;
  left: auto !important;
}

.menu_cart li {
  width: 100%;
}

.menu_cart .feature_item {
  position: relative;
  color: #363636;
  font-weight: 400;
  overflow: hidden;
  padding: 5px 0px;
}

.menu_cart .featured_image {
  float: left;
  margin-right: 10px;
}

.menu_cart .featured_content {
  display: table;
  font-size: 12px;
}

.menu_cart .featured_content > h3 {
  line-height: 15px;
}

.menu_cart .featured_content > h3 a {
  background-color: #fff;
  color: #000000 !important;
  font-size: 18px;
  font-weight: 500;
  padding: 0px;
  text-decoration: none;
  border: none;
}

.menu_cart .featured_content > h3 a:hover {
  color: #019ee8;
}

.menu_cart .featured_content p {
  color: #696969;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 24px;
  display: inline-block;
  margin-right: 10px;
  margin-top: 2px;
  margin-bottom: 0px;
}

.menu_cart .featured_content > .remove {
  position: absolute;
  top: 12%;
  right: 8%;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
}

.menu_cart .featured_content > .remove:hover {
  color: #019ee8;
}

.menu_cart .cart_total {
  color: #696969;
  font-weight: 400;
  padding: 10px 0px;
  text-transform: capitalize;
}

.menu_cart .cart_total span {
  float: right;
}

.menu_cart .check_out {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  background-color: #019ee8;
  border-radius: 2px;
  padding: 11px 30px;
  transition: 0.25s ease-out;
}
.menu-tel-text p {
  font-size: 14px;
  color: #666;
}
.menu-tel-text h5 {
  font-size: 16px;
}
/* End Menu style */
/* Start Banner style */
#banner {
  padding: 0 0px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#banner .owl-carousel .owl-stage-outer {
  padding: 0;
}
#banner.page-banner {
  padding: 240px 0 140px;
  background-size: cover;
  background-position: center center;
}
#banner .owl-carousel .owl-nav button.owl-next,
#banner .owl-carousel .owl-nav button.owl-prev,
#banner .owl-carousel button.owl-dot {
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 60px;
  height: 60px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
#banner .owl-carousel .owl-dots.disabled,
#banner .owl-carousel .owl-nav {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  z-index: 99;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-content h3 {
  font-size: 24px;
  font-weight: 300;
  color: #232323;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.banner-content h4 {
  color: #0a1f44;
  font-size: 16px;
}
.banner-content h1 {
  font-size: 50px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 33px;
}
.banner-content span {
  color: #019ee8;
}
.banner-content p {
  margin-bottom: 50px;
}
.banner-content ul {
  display: none!important;
}
.banner-content ul li {
  margin-left: 5px;
  font-size: 16px;
  font-weight: 400;
}
.banner-content ul li:first-child {
  margin-left: 0;
}
.banner-content ul li a {
  color: #0a1f44;
}

/* End Banner style */

.section-header {
  position: relative;
}

#Solution .solution-product {
  position: relative;
}

/* Start Services style */
.service-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  background: #fff;
  margin-top: -40px;
  padding: 45px;
  margin-bottom: 50px;
}
.service-area h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 20px;
}
.service-area i {
  font-size: 50px;
  background: #019ee8;
  color: #ffffff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  margin-bottom: 25px;
}
.service-area p {
  margin-bottom: 25px;
}
.service-area:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.services.page3 {
  background: #f7f7f7 url(../images/index_pro_bg.png) no-repeat center bottom;
}
.services.page3 .service-area {
  border: 2px solid transparent;
  border-radius: 12px;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: none;
  padding: 0;
}
.services.page3 .service-area:hover i {
  transform: rotateY(360deg);
}
.services.page3 .service-area p {
  margin-bottom: 0;
}
.services.page3 .service-area i {
  transition: 0.5s;
}
.services.page3 .service-area .service-icon {
  position: relative;
}
.services.page3 .service-area .service-icon img {
  width: 100%;
  display: block;
}
.services.page3 .service-area .service-icon span {
  font-size: 200px;
  color: #ffffff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
}
.services.page3 .service-area .service-icon::before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0;
  border-left: 0px solid red;
  border-right: 340px solid transparent;
  border-bottom: 130px solid #fff;
  z-index: 2;
  transition: 0.5s;
}
.services.page3 .service-area .service-text {
  position: relative;
  padding: 30px;
  background: #fff;
  text-align: left;

  z-index: 10;
}
.services.page3 .service-area .service-text h3 {
  margin-top: -50px;
  font-size: 20px;
  color: #333333;
}
.services.page3 .service-area .service-text h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #666;
  margin-top: 12px;
  margin-bottom: 20px;
}
.services.page3 .service-area .service-text p {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.services.page3 .service-area .service-text .pro_btn {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  color: #666666;
}
.services.page3 .service-area:hover .service-text .pro_btn,
.services.page3 .service-area:hover a,
.services.page3 .service-area:hover h3 {
  color: #019ee8;
}
.services.page3 .service-area:hover .service-text h3::after {
  background: #019ee8;
}
.services.page3 .service-area:hover .service-icon span {
  color: #019ee8;
}
/* End Services style */
/* Start Services-area style */
#services-area {
  background: #019ee8;
}
#services-area .section-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
#services-area .section-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#services-area .service-h h2 {
  color: #0a1f44;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
#services-area .service-h h3 {
  color: #019ee8;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.services-item {
  display: flex;
  background: #ffffff;
  margin-bottom: 20px;
  padding: 50px;
}
.services-item .services-icon i {
  font-size: 50px;
  background: #019ee8;
  color: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 100px;
}
.services-item .services-content {
  margin-left: 28px;
}
.services-item .services-content a {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 15px;
  display: block;
}

.s-box {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.s-box:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

/* End Services-area style */
/* Start Services-Singal style */
.services-s-all-service {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 40px;
}
.services-s-all-service .services-s-title h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 25px 40px;
}
.services-s-all-service .services-s-item a {
  font-size: 16px;
  font-weight: 500;
  color: #0a1f44;
  transition: all 0.3s ease-in-out;
}
.services-s-all-service .services-s-item a:hover {
  color: #019ee8;
}
.services-s-all-service .services-s-item h4 {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.services-s-all-service .services-s-item h4:last-child {
  border-bottom: none;
}

.service-s-about {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 30px;
}
.service-s-about .services-s-title h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.service-s-about p {
  padding: 25px 30px;
}
.service-s-about .services-thumb {
  padding: 25px 35px;
}
.service-s-about .services-thumb img {
  background: #fafafa;
}
.service-s-about .services-download-area {
  padding: 25px 30px;
}
.service-s-about .services-download-area h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 35px;
}
.service-s-about .services-download-area .download-pdf {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.service-s-about .services-download-area .download-pdf a {
  font-size: 14px;
  padding: 20px 15px;
  font-weight: 500;
  color: #2cc374;
  display: flex;
  justify-content: space-between;
}
.service-s-about .services-download-area .download-pdf i {
  margin-left: 15px;
}
.service-s-about .services-download-area .download-pdf h4 {
  font-size: 14px;
  font-weight: 500;
  color: #2cc374;
  margin-right: 30px;
  margin-bottom: 0;
}
.service-s-about .services-download-area .download-zip {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-top: 10px;
}
.service-s-about .services-download-area .download-zip a {
  display: flex;
  padding: 20px 15px;
  color: #019ee8;
  justify-content: space-between;
}
.service-s-about .services-download-area .download-zip h4 {
  font-size: 14px;
  font-weight: 500;
  color: #019ee8;
  margin-right: 30px;
  margin-bottom: 0;
}
.service-s-about .services-download-area .download-zip i {
  margin-left: 15px;
}

.s-contact-info {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.s-contact-info h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.s-contact-info .s-c-info {
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.s-contact-info .s-c-info:last-child {
  border: none;
}
.s-contact-info .s-c-info i {
  font-size: 20px;
  color: #019ee8;
  padding-right: 15px;
}
.s-contact-info .s-c-info .c-info-details h4 {
  color: #0a1f44;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 11px;
}
.s-contact-info .s-c-info .c-info-details h5 {
  font-size: 16px;
}

/*Services-single-rigt style*/
.overview-thumb img {
  width: 100%;
  height: 100%;
}

.service-overview-content h3 {
  font-size: 24px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 42px;
  margin-bottom: 25px;
}

.services-single-work {
  display: flex;
}
.services-single-work .services-single-work-thumb {
  margin-left: 60px;
}
.services-single-work .left-thumb {
  margin-right: 50px;
  margin-top: 30px;
}

.service-s-range-area {
  display: flex;
}
.service-s-range-area .service-s-range-item {
  margin-right: 20px;
  margin-top: 15px;
}
.service-s-range-area .service-s-range-item .range-thumb img {
  width: 100%;
  height: 100%;
}
.service-s-range-area .range-content {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 25px;
}
.service-s-range-area .range-content h5 {
  font-size: 16px;
  color: #0a1f44;
  font-weight: 400;
  padding-bottom: 15px;
}
.service-s-range-area .range-content h4 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
}

.leadership-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.leadership-wrapper .leadership-team-area {
  display: flex;
  padding: 20px 100px 20px 15px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-right: 20px;
}
.leadership-wrapper .leadership-team-area .leadership-content {
  padding-left: 15px;
}
.leadership-wrapper .leadership-team-area .leadership-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}
.leadership-wrapper .leadership-team-area .leadership-content h5 {
  font-size: 16px;
  color: #555;
}

/* End Services-Singal style */
/* Start Work style */
.work-area {
  overflow: hidden;
  position: relative;
}
.work-area .shape {
  position: absolute;
  top: 0;
  right: 0;
}
.work-area .work-thumb {
  position: relative;
}
.work-area .accordion {
  position: relative;
}

.work-content {
  position: relative;
}
.work-content h3 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #019ee8;
  margin-bottom: 15px;
}
.work-content h2 {
  font-size: 30px;
  color: #0a1f44;
  font-weight: normal;
  margin-bottom: 20px;
}
.work-content p {
  margin-bottom: 40px;
  line-height: 35px;
  color: #333;
  font-size: 16px;
}

.work-area .accordion-button {
  font-size: 20px;
  font-family: 'Teko', sans-serif;
  background: #019ee8;
  color: #fff;
  padding: 10px 10px 10px 70px;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  min-height: 60px;
  text-align: left;
}

.work-area .accordion-button::after {
  content: '\f067';
  font-family: 'Font Awesome 6 free';
  font-weight: 600;
  font-size: 16px;
  margin-left: 0;
  background-image: none;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  color: #fff;
}

.work-area .accordion-button:focus {
  box-shadow: none;
}

.work-area .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  content: '\f068';
}

.work-area .accordion-item {
  margin-bottom: 8px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.work-area .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

.work-area .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.work-area .accordion-body {
  border: 0;
  padding: 20px 30px;
  position: relative;
  color: #0a1f44;
  text-align: justify;
}

.work-area .accordion-collapse {
  border: 0;
  background: #fff;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.work-area .accordion-button.collapsed {
  background: #fff;
  color: #0a1f44;
}

.work-area .accordion-button.collapsed:after {
  background: #019ee8;
}

.faq-area {
  background: #fff;
}

.work-area.accordion-bordered .accordion-item {
  border-color: #019ee8;
}

.question-content {
  text-align: center;
}

.question-content p {
  margin-bottom: 40px;
}

.faq-area .icon {
  max-width: 512px;
  margin: 0 auto;
}

.faq-area .icon img {
  width: 100%;
}

.work-info {
  display: flex;
}
.work-info .work-icon i {
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 50px;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
  background: #019ee8;
}
.work-info .work-item h5 {
  font-size: 24px;
  color: #0a1f44;
  font-weight: 500;
  margin-bottom: 15px;
}

/* End Work style */

/* Start Solution style */

.solution {
  background: url(../images/index_solution_bg.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.solution .section-header h2,
.solution .section-header h3 {
  color: #ffffff;
}
.solution .section-header h2::after {
  background: #ffffff;
}
.solution-content .text {
  line-height: 44px;
  font-size: 30px;
  color: #ffffff;
}
.solution-product-item {
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 1);
  padding: 5%;
}
.solution-product-item:hover {
  box-shadow: none;
}
.solution-product-img a {
  display: block;
  position: relative;
  padding-top: 57%;
  overflow: hidden;
}
.solution-product-img a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solution-product-item:hover a img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.solution-product-text a {
  display: block;
  font-size: 16px;
  color: #333;
  margin: 20px 0 10px;
}
.solution-product-text span {
  font-size: 14px;
  color: #666;
}
.solution-product-text p {
  margin-top: 20px;
  margin-bottom: 0;
}
.solution-product-text p a {
  border: 1px #ccc solid;
  color: #666;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin: 0;
}
.solution-product-item:hover .solution-product-text p i {
  transform: translateX(-10px);
  transition: all 0.5s;
}
/* End Solution style */

/* Start Video style */

#video-area {
  background: url(../images/index_video_bg.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.video-area-box a {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 130%;
  overflow: hidden;
}
.video-area-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-area-box a:hover img{
  transform: scale(1.1);
  transition: all 0.3s;
}
/* End Video style */

/* Start Case style */
.case-area {
  background: url(../images/index_case_bg.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.case-thumb {
  position: relative;
}
.case-thumb-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.case-thumb-content a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 4px #1b1d2a solid;
  text-align: left;
  opacity: 0;
}
.case-thumb-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: #1b1d2a;
}
.case-thumb-content a:hover {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
/* End Case style */

/* Start Partner style */
.partner-area {
  background: url(../images/index_partner_bg.png) top center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.partner-area .section-header {
  padding-top: 100px;
}
.partner-area .section-header h2::after {
  display: block;
  margin: 10px auto 15px;
}
.plogo {
  position: relative;
  height: 643px;
}
.plogo .pl {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.plogo .pl img {
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.plogo .pl1 {
  top: 0%;
  left: 16%;
}
.plogo .pl2 {
  top: 48%;
  left: 0;
}
.plogo .pl3 {
  top: 36%;
  left: 26%;
}
.plogo .pl4 {
  bottom: 10%;
  left: 20%;
}
.plogo .pl5 {
  top: 53%;
  left: 39%;
}
.plogo .pl6 {
  top: 6%;
  left: 38%;
}
.plogo .pl7 {
  top: 6%;
  right: 37%;
}
.plogo .pl8 {
  top: 51%;
  right: 39%;
}
.plogo .pl9 {
  bottom: 15%;
  right: 54%;
}
.plogo .pl10 {
  top: 42%;
  right: 26%;
}
.plogo .pl11 {
  bottom: 0;
  right: 25%;
}
.plogo .pl12 {
  top: 6%;
  right: 16%;
}
.plogo .pl13 {
  top: 45%;
  right: 0;
}
.plogo .pl14 {
  width: 192px;
  padding: 31px;
  background-color: rgba(51, 51, 51, 0.2);
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
}
.plogo .pl14 img {
  background-color: #1b1d2a;
  border-radius: 50%;
}

/* Start Project style */
#project {
  overflow: hidden;
}

.project-item {
  transition: all 0.3s;
  margin: 10px;
}
.project-item .p-thumb {
  position: relative;
}
.project-item .p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-item .overlay-item {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.8);
  width: 94%;
  height: 94%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.project-item .overlay-item i {
  background: #019ee8;
  width: 50px;
  height: 50px;
  font-size: 25px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
  margin-left: 15px;
}
.project-item:hover .overlay-item {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.project-item:hover .p-content {
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.project-item:hover .p-content h4 {
  color: #019ee8;
  transition: all 0.3s ease-in-out;
}

/* Start Project style */
/* Project Button style */
.button-group .btn-active {
  color: #019ee8 !important;
}

.button-group .btn {
  background: #ffffff;
  color: #0a1f44;
  border: 1px solid #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.button-group .btn:hover {
  color: #019ee8;
}

/* End Button style */
.bg-theme .project-header h2 {
  color: #ffffff;
  font-weight: 500;
  font-size: 36px;
}
.bg-theme .project-header h3 {
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
}

#project .section-header h2 {
  color: #0a1f44;
}
#project .section-header h3 {
  color: #019ee8;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
}

.project-item {
  position: relative;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.project-item .p-thumb {
  background: #fafafa;
}
.project-item .p-content {
  background: #ffffff;
  padding: 20px 20px;
}
.project-item .p-content h4 {
  font-size: 20px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 20px;
}
.project-item .p-content h5 {
  font-size: 16px;
  color: #8c8c8c;
  margin-bottom: 20px;
}

/* End Project style */
/* Start Question style */
#question-area {
  background: #fafafa;
}

.question-area {
  overflow: hidden;
  position: relative;
}
.question-area .shape {
  position: absolute;
  top: 0;
  left: 0;
}
.question-area .q-area-left {
  position: relative;
}
.question-area .q-area-left img {
  width: 98%;
}

.q-content {
  position: relative;
}
.q-content h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #019ee8;
}
.q-content h2 {
  font-size: 36px;
  color: #0a1f44;
  font-weight: 500;
  margin-bottom: 30px;
}

.form-control {
  padding: 10px 15px;
  font-size: 16px;
  color: #495057;
  border: none;
}

.q-from {
  position: relative;
}
.q-from form .form-group input {
  width: 100%;
  border: 1px solid #fff;
  padding: 12px 10px;
  margin-bottom: 10px;
}
.q-from form .form-group textarea {
  width: 100%;
  border: 1px solid #fff;
  padding: 10px 10px 80px 10px;
}
.q-from .form-group1 {
  width: 100%;
}
.q-from .form-group1 input {
  border: 1px solid #fff;
  padding: 12px 10px;
  margin-bottom: 10px;
}
.q-from .form-group2 {
  width: 100%;
}
.q-from .form-group2 input {
  border: 1px solid #fff;
  padding: 12px 10px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.q-from textarea {
  color: #495057;
  font-size: 16px;
}

.contact-f form .form-group textarea {
  border: 1px solid transparent;
  background: rgba(204, 204, 204, 0.15);
}

/* End Question style */
.sponsor-wrapper {
  padding-top: 60px;
  margin-top: 100px;
  border-top: 1px solid #e76f7a;
}

.sponsor-wrapper.sponsor2 {
  padding-top: 0px;
  margin-top: 0px;
  border-top: none;
  border-bottom: 1px solid #e2e9f7;
  padding: 60px 0;
}

.sponsor-item {
  width: 160px;
  height: 50px;
  margin: 0 auto;
}

/* Start Client style */
#client .section-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}
#client .section-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.client-section {
  background-image: url(../../assets/images/bg/1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.client-section.page3 .item-wrapper {
  border-radius: 12px;
}
.client-section.page3 .item-wrapper p {
  text-align: center;
}
.client-section.page3 .item-wrapper .c-icon {
  text-align: center;
  color: #019ee8;
  padding-bottom: 30px;
}
.client-section.page3 .item-area {
  display: flex;
  width: 237px;
  margin: 0 auto;
}

.item-wrapper {
  background: #ffffff;
  margin-left: 10px;
}
.item-wrapper p {
  padding: 20px 25px;
}
.item-wrapper .c-icon {
  color: #019ee8;
  margin-left: 30px;
  padding-bottom: 30px;
}

.item-area {
  display: flex;
}
.item-area img {
  width: 100%;
  height: 100%;
  margin: 20px;
}
.item-area .client-thumb {
  width: 60px;
  height: 60px;
}

.client-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.client-wrapper .client-title {
  padding: 30px;
}
.client-wrapper .client-title h4 {
  color: #0a1f44;
  font-size: 18px;
  font-weight: 500;
}
.client-wrapper .client-title h5 {
  font-size: 15px;
  color: #8c8c8c;
}
.client-wrapper .client-logo {
  width: 60px;
  height: 60px;
  margin-right: 30px;
}

/* End Client style */

.basic_crumbs_index{
  border-color: rgba(0, 0, 0, 1);
    border-style: solid;
    border-left-width: 0px;
    border-right-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    box-shadow: 0 0 0 #fff;
    background-color: rgba(247, 247, 247, 1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 0.5222%;
    padding-bottom: 0.5222%;
    white-space: nowrap;
    font-family: 微软雅黑;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: normal;
    color: rgba(102, 102, 102, 1);
}
.basic_crumbs_index .normal {
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding-right: 5px;
    white-space: nowrap;
    display: inline-block;
}
.basic_crumbs_index a{
  white-space: nowrap;
    font-family: 微软雅黑;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: normal;
    -webkit-background-clip: text;
    color: rgba(102, 102, 102, 1);
}
/* Start Blog Style */
#blog .section-header h2::after {
  display: block;
  margin: 10px auto 15px;
}
#blog .section-header h2 {
  color: #0a1f44;
}
#blog .section-header h3 {
  color: #444;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
}
#blog .blog-big-img,
#blog .blog-big-img img {
  position: relative;
  overflow: hidden;
}
#blog .blog-big-img:after {
  content: '';
  display: block;
  width: 98%;
  height: 96%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: 5;
}
#blog .blog-big-img img {
  display: block;
  width: 100%;
  z-index: 10;
  margin-left: 13px;
  padding-top: 13px;
  max-height: 300px;
  object-fit: cover;
  overflow: hidden;
}
.blog-big-text span:nth-of-type(1) {
  color: #333;
  font-weight: 500;
}
.blog-big-text span:nth-of-type(1)::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #333;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog.page3 .btn:focus {
  color: white;
  box-shadow: none;
}

.blog-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: 0.3s;
}
.blog-area:hover {
  background: #333;
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.3);
}
.blog-area .b-thumb {
  background: #fafafa;
}

.b-title a {
  font-size: 16px;
  font-weight: 500;
  color: #0a1f44;
  margin-top: 25px;
  margin-bottom: 15px;
  display: block;
  padding: 0px 30px;
  transition: 0.3s;
}
.b-title a:hover {
  color: #019ee8;
}

.b-text {
  display: flex;
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  padding: 0px 30px;
}
.b-text span {
  margin: 0px 10px;
}

.b-content p {
  padding: 0px 30px;
  font-size: 14px;
}
.b-content .button-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.b-left {
  position: relative;
}
.b-left i {
  font-size: 25px;
  color: #555;
}
.b-left .badge-2 {
  position: absolute;
  top: -11px;
  left: 2px;
  background: #019ee8;
  color: #ffffff;
  border-radius: 50%;
  width: 22px;
  display: block;
  height: 22px;
  text-align: center;
  line-height: 13px;
  padding: 4px;
  font-size: 11px;
  letter-spacing: 1px;
}

/* End Blog Style */
/* Start Contact Style */
.c-wrapper {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 40px 25px;
}

.c-left-item {
  background: #f7f7f7;
  padding: 40px 0;
  text-align: center;
  margin-bottom: 35px;
}
.c-left-item i {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}
.c-left-item a {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
.c-left-item h5 {
  font-weight: 700;
}
.c-left-item p {
  font-size: 16px;
}

.contact-f form .f-group input {
  border: 1px solid transparent;
  background: rgba(204, 204, 204, 0.15);
}
.contact-f form .f-group .form-text textarea {
  border: 1px solid transparent;
  background: rgba(204, 204, 204, 0.15);
}
.contact-f .form-group2 input {
  border: 1px solid transparent;
  background: rgba(204, 204, 204, 0.15);
}

.f-c-left h3 {
  font-size: 24px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 15px;
}
.f-c-left h4 {
  font-size: 16px;
  font-weight: 400;
  color: #0a1f44;
  margin-bottom: 15px;
}

.i-left {
  text-align: left;
}

.blog-area:hover *{
  color: #fff;
}
.blog-big-sigle:hover .blog-big-img img{
  transform: scale(1.1);
  transition: all 0.3s;
}

/* Start Map Style */
.map-section {
  position: relative;
  overflow: hidden;
  margin-bottom: -5px;
}

iframe {
  height: 650px;
  width: 100%;
}

#footer-contact {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 20px 0;
  background: transparent;
  width: 100%;
}
#footer-contact .container {
  background-color: white;
  padding: 30px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

/* End Map Style */
/* End Contact Style */
/* Start Footer Style */
#footer {
  background: rgba(27, 29, 42, 1);
  position: relative;
  overflow: hidden;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo .f-logo {
  width: 100px;
  height: auto;
}
.footer-logo span,
.footer-logo a {
  color: rgba(153, 153, 153, 1);
  font-size: 16px;
}
.footer-logo a i {
  font-size: 26px;
  margin-left: 15px;
}
.footer-logo a:hover i {
  color: rgba(255, 255, 255, 0.8);
}
.footer-menu {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.footer-menu ul li h2 a {
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(254, 254, 254, 0.8);
}
.footer-menu ul li h2 a:after {
  content: '';
  display: block;
  width: 15px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
  margin-bottom: 21px;
}
.footer-menu ul li h2 a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}
.footer-menu ul li h2 a:hover:after {
  background-color: rgba(255, 255, 255, 1);
}
.footer-menu ul li a {
  font-size: 14px;
  line-height: 25px;
  font-weight: normal;
  color: rgba(254, 254, 254, 0.6);
}
.footer-contact {
  color: rgba(254, 254, 254, 0.8);
  padding-top: 73px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}
.footer-contact h2 {
  font-size: 20px;
  color: rgba(254, 254, 254, 0.8);
  margin-bottom: 30px;
}
.footer-contact h2 i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}
.footer-contact h2 p {
  margin-bottom: 0;
}
.footer-contact h2 p span {
  font-size: 14px;
  color: rgba(254, 254, 254, 0.8);
}
.footer-contact h2 p a {
  display: block;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
.footer-contact ul li {
  margin-bottom: 20px;
}
.footer-contact ul li:nth-of-type(2){
  margin-bottom: 0
}
.footer-contact ul li span{
  font-size: 14px;
}
.footer-contact ul li:last-child{
  justify-content: space-between;
}
.footer-contact ul li:last-child span{
  text-align:center;color:rgba(255, 255, 255, 0.5);margin-top:12px;
}
.footer-contact ul li .p-2 img{
  width: 120px;
}
.footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-shape img {
  width: 100%;
  height: 100%;
}

.footer-space {
  position: relative;
  z-index: 1;
}

.f-title .read-more-btn {
  color: #ffffff;
}
.f-title .read-more-btn:hover {
  color: #019ee8;
  transition: all 0.3s ease-in-out;
}
.f-title h3 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 20px;
}

.f-title p {
  color: #ffffff;
}

.f-post {
  display: flex;
}
.f-post .post-text {
  margin-left: 20px;
}
.f-post .post-text a {
  font-size: 16px;
  color: #ffffff;
}
.f-post .post-text a:hover {
  color: #019ee8;
  transition: all 0.3s ease-in-out;
}
.f-post .post-text h5 {
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
}

.f-border {
  border-top: 1px solid #888;
  padding-top: 20px;
}

.email input {
  border: 1px solid #888;
  background: none;
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 20px;
  border-radius: 3px;
}
.email :focus {
  background: #fff;
  outline: none;
  box-shadow: none;
  border: 1px solid #fff;
}

.sub-btn i {
  margin-right: 15px;
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.f-bottom p {
  color:rgba(101, 113, 128, 1);font-size: 12px;
  margin-bottom: 0;
}
.f-bottom a {
  color: #019ee8;
}

.footer-space {
  padding: 70px 0px;
}

/* End Footer Style */
/* ScrollUp */
.scrollup {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: none;
  z-index: 999;
  background: #e76f7a;
  border-radius: 50%;
  text-align: center;
}

.scrollup i {
  font-size: 20px;
  color: #fff;
}

/* Start Index-2 Style 
======================*/
/* Start Team Style */
.section-header h2 {
  color: #0a1f44;
}
.section-header h2::after {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #1b1d2a;
  display: inline-block;
  vertical-align: middle;
  margin-left: 26px;
}
.section-header h3 {
  font-size: 16px;
  color: #444444;
  margin-bottom: 15px;
  font-weight: 400;
}

.section-page-header {
  text-align: center;
}
.section-page-header h2 {
  color: #0a1f44;
}
.section-page-header h2::after {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #1b1d2a;
  display: block;
  vertical-align: middle;
  margin: 16px auto;
}
.section-page-header h3 {
  font-size: 16px;
  color: #444444;
  margin-bottom: 15px;
  font-weight: 400;
}
.section-page-padding {
  padding-bottom: 20px;
}

.team-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.team-area:hover {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.team-area .team-thumb {
  padding-top: 25px;
}
.team-area .team-d a {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.team-area .team-d a:hover {
  color: #019ee8;
}
.team-area .team-d h5 {
  font-size: 16px;
  color: #8c8c8c;
  padding-bottom: 10px;
}
.team-area .team-social {
  border-top: 1px solid #f0f0f0;
}
.team-area .team-social .fa-facebook-f {
  color: #3b5998;
}
.team-area .team-social .fa-linkedin-in {
  color: #3b5998;
}
.team-area .team-social .fa-vimeo-v {
  color: #23b6ea;
}
.team-area .team-social .fa-pinterest-p {
  color: #cb1f27;
}
.team-area .team-social i {
  margin-left: 10px;
  padding: 20px 0px;
  font-size: 16px;
}

/* End Team Style */
/* Start Team Single Style */
.team-s-wrapper {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 30px;
}
.team-s-wrapper .team-left-item .team-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-s-wrapper .team-right-details h3 {
  color: #00394f;
  font-size: 24px;
  font-weight: 500;
}
.team-s-wrapper .team-right-details h4 {
  color: #00394f;
  font-size: 16px;
  margin-bottom: 15px;
}
.team-s-wrapper .team-more h3 {
  color: #00394f;
  font-size: 24px;
  font-weight: 500;
  margin: 15px 0px;
}
.team-s-wrapper .team-more-details {
  display: flex;
  margin-top: 30px;
}
.team-s-wrapper .team-more-details .team-address-area h5 {
  font-size: 16px;
  color: #555;
  padding-bottom: 30px;
}
.team-s-wrapper .team-more-details .team-address-location h6 {
  font-size: 16px;
  color: #000;
  margin-left: 40px;
  padding-bottom: 30px;
  text-transform: lowercase;
}
.team-s-wrapper .team-following {
  display: flex;
}
.team-s-wrapper .team-following .fa-twitter {
  color: #23b6ea;
}
.team-s-wrapper .team-following .fa-instagram {
  color: #db4437;
}
.team-s-wrapper .team-following .fa-vimeo-v {
  color: #3b5998;
}
.team-s-wrapper .team-following .fa-behance {
  color: #0084ff;
}
.team-s-wrapper .team-following .fa-linkedin-in {
  color: #0084ff;
}
.team-s-wrapper .team-following .follow-us h5 {
  font-size: 16px;
  color: #555;
  margin-right: 40px;
}
.team-s-wrapper .team-following i {
  margin-right: 20px;
}
.team-s-wrapper .progress-area {
  margin-top: 50px;
}
.team-s-wrapper .progress-area h4 {
  font-size: 16px;
  color: #555;
}
.team-s-wrapper .progress-area h3 {
  font-size: 20px;
  color: #00394f;
  margin-bottom: 30px;
  font-weight: 500;
}
.team-s-wrapper .team-award {
  margin-top: 50px;
}
.team-s-wrapper .team-award h3 {
  font-size: 20px;
  color: #00394f;
  margin-bottom: 30px;
  font-weight: 500;
}
.team-s-wrapper .team-award .award-thumb-area {
  display: flex;
}
.team-s-wrapper .team-award .award-thumb-area .award-thumb {
  margin-right: 40px;
  margin-bottom: 40px;
}
.team-s-wrapper .team-award .award-thumb-area .award-thumb h4 {
  font-size: 16px;
  color: #555;
  padding-top: 15px;
}
.team-s-wrapper .team-award .award-thumb-area .award-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* percentCount */
.percentCount {
  font-family: 'Microsoft YaHei', sans-serif;
  color: #0a1f44;
}

/* End Team Single Style */
/* Start Pricing Style */
#pricing .section-header h2 {
  color: #0a1f44;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
#pricing .section-header h3 {
  color: #019ee8;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.pricing-item {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 30px;
}
.pricing-item .pricing-btn {
  padding-left: 40px;
  padding-bottom: 40px;
}
.pricing-item h6 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  padding: 40px;
}
.pricing-item .price-cost {
  background: #019ee8;
  padding: 40px 40px;
}
.pricing-item .price-cost span {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  padding-left: 15px;
}
.pricing-item .price-cost p {
  font-size: 16px;
  color: #ffffff;
  padding-left: 15px;
}

.price-details {
  padding: 40px;
}
.price-details li {
  padding: 10px 0px;
}
.price-details i {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  background: #019ee8;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}
.price-details .i-box {
  background: #8c8c8c;
}
.price-details .price-b {
  height: 20px;
  width: 20px;
  background: #019ee8;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
}

.pricing.page3 .pricing-item {
  border-radius: 12px;
}
.pricing.page3 .pricing-item h6 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  padding: 30px 0;
}
.pricing.page3 .pricing-item .pricing-btn {
  padding-left: 20px;
  padding-bottom: 30px;
}
.pricing.page3 .pricing-item .price-cost {
  padding: 10px;
}
.pricing.page3 .pricing-item .btn {
  border-radius: 5px;
}
.pricing.page3 .pricing-item.active {
  border: 3px solid #019ee8;
  box-shadow: 0px 15px 20px 0 rgba(0, 0, 0, 0.6);
  transform: scaleX(1.06);
}
.pricing.page3 .pricing-item.active .btn {
  background-color: #0a1f44;
  border: none;
}
.pricing.page3 .price-details {
  padding: 20px;
}
.pricing.page3 .price-details li {
  padding: 10px 0px;
}
.pricing.page3 .price-details i {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  background: #019ee8;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}
.pricing.page3 .price-details .i-box {
  background: #8c8c8c;
}
.pricing.page3 .price-details .price-b {
  height: 20px;
  width: 20px;
  background: #019ee8;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
}

/* End Pricing Style */
/* Start Blog Single Style */
.blog-single-area .b-item-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 40px;
}
.blog-single-area .b-item-area .blog-quote {
  background: #019ee8;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  padding: 30px 50px 60px 55px;
}
.blog-single-area .b-item-area .blog-quote i {
  font-size: 50px;
  text-align: center;
  display: block;
  padding-bottom: 30px;
}
.blog-single-area .blog-single-thumb img {
  width: 100%;
  height: 100%;
}
.blog-single-area .blog-single-thumb-2 {
  margin: 30px 0px 30px 30px;
}
.blog-single-area .blog-single-thumb-2 img {
  width: 100%;
  height: 100%;
}
.blog-single-area .b-s-title {
  padding: 50px 0px 0px 30px;
}
.blog-single-area .b-s-title a {
  font-size: 30px;
  color: #0a1f44;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.blog-single-area .b-s-title a:hover {
  color: #019ee8;
}
.blog-single-area .b-text {
  padding: 20px 0px 15px 30px;
}
.blog-single-area .b-s-content {
  padding-left: 30px;
  padding-right: 40px;
}
.blog-single-area .blog-btn {
  padding: 30px 0px 42px 30px;
}
.blog-single-area .admin-comnt {
  background: #019ee8;
  margin: 30px 0px 30px 30px;
  padding: 30px;
}
.blog-single-area .admin-comnt p {
  color: #ffffff;
  font-size: 18px;
}
.blog-single-area .admin-comnt i {
  margin-right: 15px;
  color: #ffffff;
  font-size: 50px;
}
.blog-single-area .admin-comnt span {
  margin-left: 50px;
}
.blog-article {
  margin-left: 30px;
  padding: 30px 0px;
}
.blog-article .pre-article a,
.blog-article .next-article a {
  font-size: 14px;
  font-weight: 500;
  color: #0a1f44;
  text-transform: uppercase;
}
.blog-article .pre-article p,
.blog-article .next-article p {
  margin-top: 15px;
}
.pre-article i {
  padding-right: 5px;
}
.next-article {
  text-align: right;
}
.next-article i {
  padding-left: 5px;
}

.b-single-social {
  display: flex;
  padding: 30px 0px;
  align-items: center;
}
.b-single-social .signle-btn {
  margin-left: 30px;
}
.b-single-social .signle-btn a {
  color: #0a1f44;
  font-size: 16px;
  padding: 15px 20px;
  margin-right: 10px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.b-single-social .signle-btn a:hover {
  background: #019ee8;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.b-single-social .b-single-social-icon a {
  color: #ffffff;
  font-size: 16px;
}
.b-single-social .b-single-social-icon a .fa-twitter {
  background: #4db2ec;
}
.b-single-social .b-single-social-icon a .fa-instagram {
  background: #019ee8;
}
.b-single-social .b-single-social-icon a .fa-vimeo-v {
  background: #394b8d;
}
.b-single-social .b-single-social-icon a .fa-behance {
  background: #4db2ec;
}
.b-single-social .b-single-social-icon i {
  padding: 17px 20px;
}

.b-admin-post {
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 30px 30px 30px 0px;
}
.b-admin-post .b-admin-thumb {
  margin-left: 30px;
}
.b-admin-post .b-admin-details {
  margin-left: 25px;
}
.b-admin-post .b-admin-details h4 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
}
.b-admin-post .b-admin-details a {
  margin-right: 20px;
  font-size: 16px;
}
.b-admin-post .b-admin-details .fa-twitter {
  color: #4db2ec;
}
.b-admin-post .b-admin-details .fa-instagram {
  color: #019ee8;
}
.b-admin-post .b-admin-details .fa-vimeo-v {
  color: #394b8d;
}
.b-admin-post .b-admin-details .fa-behance {
  color: #7bb8df;
}

.b-comnts-area {
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}
.b-comnts-area .two-comnts {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.b-comnts-area .two-comnts h3 {
  color: #0a1f44;
  font-size: 18px;
  font-weight: 500;
  padding: 30px 0px 30px 30px;
}
.b-comnts-area .two-comnts h4 {
  background: #019ee8;
  padding: 10px 20px;
  color: #ffffff;
  margin-left: 20px;
}
.b-comnts-area .b-comnts-1 {
  display: flex;
  padding: 30px 30px 30px 0px;
}
.b-comnts-area .b-comnts-1 .b-comnts-thumb {
  margin-left: 30px;
}
.b-comnts-area .b-comnts-1 .b-comnts-details {
  margin-left: 20px;
}
.b-comnts-area .b-comnts-1 .b-comnts-details h4 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
}
.b-comnts-area .b-comnts-1 .b-comnts-details h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.b-comnts-area .comnts-border {
  border-bottom: 1px solid #f1f1f1;
}
.b-comnts-area .b-comnts-reply h4 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  margin-left: 10px;
}
.b-comnts-area .b-comnts-reply .comnt-icon i {
  color: #0a1f44;
  font-size: 14px;
}
.b-comnts-area .b-comnts-reply .shop-reply-icon {
  display: flex;
}
.b-comnts-area .b-comnts-reply .shop-reply-icon i {
  color: #f08e25;
}

.b-post-form {
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}
.b-post-form .b-post-form-area {
  padding: 30px;
}
.b-post-form .b-post-form-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 30px;
}

/*Blog Right Side Style*/
.blog-search-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 15px;
  margin-bottom: 30px;
}
.blog-search-area .search-wrapper {
  border: 1px solid #f1f1f1;
}
.blog-search-area .search-wrapper .b-search-icon {
  margin-right: 10px;
}

.post-category-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.post-category-area .post-category-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.post-category-area .post-category a {
  font-size: 16px;
  color: #555555;
  padding: 20px 20px;
  border-bottom: 1px solid #f1f1f1;
  transition: all 0.3s ease-in-out;
}
.post-category-area .post-category a:hover {
  color: #019ee8;
}
.post-category-area .post-category i {
  margin-right: 5px;
}

.most-popular-post {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin: 30px 0px;
}
.most-popular-post .most-popular-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.most-popular-post .most-popular-area {
  padding: 20px;
  border-bottom: 1px solid #f1f1f1;
}
.most-popular-post .most-popular-area .most-popular-content a {
  font-size: 16px;
  color: #555555;
  transition: all 0.3s ease-in-out;
}
.most-popular-post .most-popular-area .most-popular-content a:hover {
  color: #019ee8;
}
.most-popular-post .most-popular-area .most-popular-content h5 {
  font-size: 16px;
  color: #555555;
  margin-top: 10px;
}

.post-gallery {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.post-gallery .post-gallery-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.post-gallery .post-gallery-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.post-gallery .post-gallery-img img {
  padding-bottom: 10px;
}

.popular-tags {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.popular-tags .popular-tags-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.popular-tags .popular-tags-area {
  padding: 20px;
}
.popular-tags .popular-tags-area .popular-tags-list li {
  border: 1px solid #f1f1f1;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.popular-tags .popular-tags-area .popular-tags-list li:hover {
  background: #019ee8;
  border-radius: 2px;
}
.popular-tags .popular-tags-area .popular-tags-list li:hover a {
  color: #ffffff;
}
.popular-tags .popular-tags-area .popular-tags-list li a {
  color: #555555;
  display: block;
}

/* End Blog Single Style */
/* Start Shop Style */
.shop-showing-result {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 22px;
  margin-bottom: 35px;
}
.shop-showing-result .shop-showing-title h4 {
  font-size: 16px;
  color: #0a1f44;
  font-weight: 500;
}
.shop-showing-result .shop-showing-icon i {
  font-size: 18px;
  color: #0a1f44;
}
.shop-showing-result .shop-showing-icon .icon-1 {
  color: #019ee8;
  margin-right: 10px;
}

.shop-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.shop-area .shop-thumb {
  position: relative;
}
.shop-area .shop-thumb img {
  width: 100%;
  height: 100%;
}
.shop-area .shop-thumb .shop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.shop-area .shop-thumb .shop-overlay i {
  background: #019ee8;
  width: 35px;
  height: 35px;
  font-size: 18px;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
}
.shop-area .shop-thumb:hover .shop-overlay {
  opacity: 1;
}
.shop-area .shop-content {
  padding: 20px 30px;
}
.shop-area .shop-content a {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  margin-top: 30px;
}
.shop-area .shop-content h5 {
  font-size: 16px;
  color: #0a1f44;
  margin-top: 20px;
}
.shop-area .shop-content .shop-icon i {
  color: #f08e25;
  padding: 10px 0px;
  margin-top: 10px;
}

.shop-latest {
  margin-left: 15px;
}
.shop-latest a {
  font-size: 16px;
  color: #0a1f44;
}
.shop-latest h5 {
  font-size: 16px;
  color: #0a1f44;
}
.shop-latest i {
  color: #f08e25;
  font-size: 14px;
}

.reply-icon i {
  color: #f08e25;
}

.form-select {
  font-size: 14px;
}

/* Shop Pangination */
.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}
.pagination li a {
  font-size: 18px;
  color: #0a1f44;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  font-weight: 500;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.pagination li a:hover,.pagination li .page-num-current {
  background: #019ee8;
  color: #ffffff;
}

/* Shop Single Style */
.s-product-area {
  padding-top: 15px;
  padding-right: 15px;
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.s-product-area .btn {
  margin-bottom: 30px;
}
.s-product-area .s-product-thumb img {
  padding: 0px 15px;
}
.s-product-area .small-img-group {
  display: flex;
  padding: 15px;
}
.s-product-area .small-img-group img {
  margin-right: 10px;
}
.s-product-area .s-product-details {
  padding-right: 15px;
}
.s-product-area .s-product-details h5 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 10px;
}
.s-product-area .s-product-details .s-product-title h3 {
  font-size: 24px;
  color: #0a1f44;
  font-weight: 500;
}
.s-product-area .s-product-details .s-product-review {
  display: flex;
}
.s-product-area .s-product-details .s-product-review h4 {
  font-size: 16px;
}
.s-product-area .s-product-details .s-product-review .review-icon i {
  font-size: 16px;
  color: #f08e25;
}
.s-product-area .s-product-details .s-product-description h3 {
  font-size: 18px;
  color: #0a1f44;
  margin-top: 15px;
}
.s-product-area .s-product-details .s-product-size-wrapper {
  display: flex;
  margin-top: 30px;
}
.s-product-area .s-product-details .s-product-size-wrapper .s-product-color {
  margin-left: 10px;
}
.s-product-area .s-product-details .s-discount-area {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.s-product-area .s-product-details .s-discount-area .s-discout-nbr input {
  padding: 10px 0px;
  border: 1px solid #f1f1f1;
}
.s-product-area .s-product-details .s-discount-area .s-discount-code input {
  padding: 10px 0px;
  margin-left: 10px;
  border: 1px solid #f1f1f1;
  padding-left: 10px;
}

/* End  Shop Style */
/* Shop Cart Style */
.shop-cart-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.shop-cart-area table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.shop-cart-area table thead td {
  background: #019ee8;
  color: #ffffff;
  padding: 10px 0px;
}

table tbody td {
  border-bottom: 1px solid #f1f1f1;
}
table tbody td input {
  padding: 5px 0px 5px 20px;
  border: 1px solid #f1f1f1;
}
table tbody img {
  margin-top: 35px;
  margin-bottom: 40px;
}
table tbody i {
  color: #019ee8;
  font-size: 18px;
}
table tbody h4,
table tbody h5 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
}

.shop-coupon-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 25px 20px;
  margin: 50px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-coupon-area .shop-coupon-code {
  display: flex;
  align-items: center;
}
.shop-coupon-area .shop-coupon-code input {
  width: 192px;
  border: 1px solid #f0f0f0;
  border-radius: 2px 0px 0px 2px;
  padding: 22px 25px;
  outline: none;
  background-color: transparent;
  color: #696969;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.shop-coupon-area .shop-coupon-code input:last-child {
  width: 150px;
  background: #f7fbff;
  color: #0a1f44;
  padding: 22px 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border-radius: 0px 2px 2px 0px;
}
.shop-coupon-area .shop-checkout a {
  font-size: 14px;
  font-weight: 600;
  color: #0a1f44;
  background: #f7fbff;
  padding: 22px 37px;
  margin-left: 10px;
}

.shop-shipping-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.shop-shipping-area h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
}

.shipping-wrapper {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
}
.shipping-wrapper .calculate-shipping-wrapper {
  width: 49%;
}
.shipping-wrapper .shipping-card-wrapper {
  width: 49%;
}
.shipping-wrapper .shipping-item {
  display: flex;
  margin-top: 30px;
  margin-bottom: 20px;
}
.shipping-wrapper .shipping-item .shipping-country select {
  font-size: 16px;
  color: #555;
  border: 1px solid #f1f1f1;
  padding: 20px 50px 20px 20px;
}
.shipping-wrapper .shipping-item .shipping-post-code select {
  font-size: 16px;
  color: #555;
  border: 1px solid #f1f1f1;
  padding: 20px 50px 20px 20px;
  margin-left: 10px;
}
.shipping-wrapper .shipping-card-wrapper .shipping-card-item .s-card-item {
  display: flex;
  justify-content: space-between;
  border: 1px solid #f1f1f1;
  margin-bottom: 20px;
}
.shipping-wrapper .shipping-card-wrapper .shipping-card-item .s-card-item h4 {
  font-size: 16px;
  color: #555;
  padding: 15px 25px;
}

/* End Shop Cart Style */
/* Start Error Style */
.error-content h1 {
  font-size: 36px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 30px;
}
.error-content p {
  margin: 20px 0px;
}
.strength-box {
  margin-bottom: 60px;
}
.strength-box p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  padding: 10px;
  margin: 0;
  text-align: center;
}
.strength-box-item {
  padding-top: 40px;
}
.strength-box-item img {
  display: block;
  margin: 0 auto;
}
.strength-box-item h3 {
  font-size: 20px;
  text-align: center;
  padding: 10px 0;
}
.strength-box-item p {
  text-align: center;
  padding: 0 20px;
}
.strength-box-item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.culture-box-content {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
}
.culture-box-content h4 {
  font-size: 16px;
  color: #333;
}
.culture-box-content p {
  font-size: 14px;
  color: #657180;
  margin: 0;
}
.honor-box {
  border: 1px solid #eee;
  overflow: hidden;
}
.honor-box img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.honor-box:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.product-list-left__nav h2 {
  background: #1b1d2a;
  padding: 30px 20px;
  color: #ffffff;
  border-top-right-radius: 40px;
  margin-bottom: 0;
}
.product-list-left__nav ul {
  border: 1px solid #e7e7e7;
}
.product-list-left__nav ul li {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: rgba(232, 232, 232, 1);
}
.product-list-left__nav ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  text-decoration: normal;
  color: rgba(85, 85, 85, 1);
  line-height: 48px;
}
.product-list-left__nav ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.product-list-left__contact {
  margin-top: 8.4175%;
  background: #f1f6fc;
  padding: 30px 20px;
  text-align: center;
}
.product-list-left__contact h4 {
  font-size: 20px;
  color: #292e32;
  border-bottom: 1px solid #d4ddee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.product-list-left__contact h3 a {
  color: #333;
  font-size: 22px;
  text-decoration: none;
  font-weight: bold;
}
.product-list-left__contact p {
  font-size: 15px;
  color: #636768;
  margin-top: 10px;
}
.product-list-left__contact .btn-1 {
  display: block;
  margin-top: 20px;
  background: #1b1d2a;
  color: #ffffff;
  line-height: 36px;
  font-size: 16px;
  padding: 0 20px;
}
.product-list-right__box {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.09);
  background-color: rgba(255, 255, 255, 1);
  position: relative;
  z-index: 1;
  padding: 5%;
  display: block;
  height: 100%;
  overflow: hidden;
  color: #333;
}
.product-list-right__box a img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.product-list-right__box a span {
  display: block;
  font-size: 16px;
  color: rgba(51, 51, 51, 1);
  line-height: 24px;
  margin-bottom: 5px;
  margin-top: 15px;
  text-align: center;
}
.product-list-right__box p {
  padding-bottom: 90.5%;
  position: relative;
  overflow: hidden;
}
.product-list-right__box p img {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}
.product-list-right__box:hover a img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.product-list-right__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.result_cur_title {
  font-size: 13px;
  color: #333;
  display: inline-block;
}
.result_current_condition {
  display: inline-block;
  border: 1px solid #ebebeb;
  text-decoration: none;
  height: 32px;
  width: auto;
  min-width: 65px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 11px;
  font-size: 0;
  margin-right: 10px;
}
.result_current_condition i {
  font-size: 12px;
  color: #333;
  line-height: 30px;
  padding: 0 11px;
}
.result_cur_value {
  font-size: 14px;
  color: #333;
  display: inline-block;
  line-height: 30px;
}
.product-list-right__title form {
  display: flex;
  align-items: center;
  border: 1px solid #ebebeb;
}
.product-list-right__title form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  font-size: 22px;
  color: #657180;
}
.product-list-right__title form input {
  height: 40px;
  line-height: 100%;
  border: none;
  text-indent: 10px;
  border-radius: 2px;
  outline: 0;
}
.thumbnail-carousel {
  position: relative;
  margin-top: 20px;
}
.thumbnail-carousel.owl-carousel {
  padding: 0 20px;
}
.thumbnail-item:hover {
  opacity: 0.8;
}

.thumbnail-carousel .active .thumbnail-item.active-thumb {
  opacity: 1;
  border: 3px solid #3498db;
}
.thumbnail-carousel.owl-carousel .owl-nav button.owl-next,
.thumbnail-carousel.owl-carousel .owl-nav button.owl-prev,
.thumbnail-carousel.owl-carousel button.owl-dot {
  position: absolute;
  top: 30%;
  left: 0;
}
.thumbnail-carousel.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0;
}
.detail_content {
  line-height: 30px !important;
  font-size: 16px;
  font-weight: lighter;
  color: #222;
  margin-top: 6px;
  padding: 10px 10px 10px 0;
}
.detail_rqcode div.btn {
  position: relative;
}
.detail_rqcode ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 150px;
}
.detail_rqcode:hover ul {
  display: block;
}
.detail_rqcode ul li {
  position: relative;
  height: 30px;
}
.detail_rqcode ul li span {
  text-align: center;
  font-size: 12px;
  color: #333;
  line-height: 30px;
  text-transform: none;
}
.detail_rqcode ul li img {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 100%;
  display: none;
}
.detail_rqcode ul li:hover img {
  display: block;
}
.pdetail_content_title {
  color: rgba(27, 29, 42, 1);
  border: 1px solid #f0f0f0;
}
.pdetail_content_title span {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 160px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #f0f0f0;
  font-size: 15px;
  line-height: 54px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
  border-top: 4px #333 solid;
}
.pdetail_content_text {
  margin-top: 20px;
}
.page-section-padding {
  padding: 60px 0;
}
.page-product-item {
  margin-bottom: 30px;
}
.page-product-item a {
  background: #fff;
  display: block;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.product-item-img {
  position: relative;
  padding-bottom: 90.5%;
  overflow: hidden;
}
.product-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.product-item-content h3 {
  text-align: center;
  font-size: 18px;
  padding: 15px 0 0;
}
.page-product-item a:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
/* End Error Style */
.page-video-box a {
  position: relative;
  padding-top: 165%;
  overflow: hidden;
  display: block;
}
.page-video-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-video-box a i {
  display: block;
  width: 60px;
  height: 60px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}
.page-video-box a:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.page-video-box a:hover i {
  background: rgba(255, 0, 0, 0.6);
}
.case-content-text .font-size-14 {
  margin-top: 20px;
  display: inline-block;
  height: 26px;
  line-height: 24px;
  border-radius: 5px;
  color: #999;
  padding: 0 8px;
  border: 1px solid #e5e5e5;
}
.as-text-box {
  line-height: 2;
  color: #657180;
}
.as-text-box p {
  line-height: 2;
  color: #657180;
}
/* End Index-2 Style
======================= */ /*# sourceMappingURL=style.css.map */
