/*
-----------------------------------------------------------------------
  Typography CSS
-----------------------------------------------------------------------
*/
body {
  color: #171b23;
  font-size: 0.9rem;

  font-weight: 400;
  /* line-height: 0.9; */
  margin: 0;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-family: -apple-system, SF UI Text, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #171b23;
  /* */
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
}

a {
  color: #0055ff;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

a:hover,
a:active,
a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #003cb3;
  outline: none;
  text-decoration: none;
}

a img {
  border: none;
}

.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

p {
  color: #777;
  margin-bottom: 30px;
}

p:last-child {
  margin-bottom: 0;
}

:active,
:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
}

::-moz-selection {
  background: #0055ff;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #0055ff;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #0055ff;
  /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #0055ff;
  /* Safari */
  color: #fff;
  text-shadow: none;
}

img {
  height: auto;
  max-width: 100%;
}

iframe {
  border: none !important;
}

textarea:focus,
textarea:active,
input:focus,
input:active {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 30px;
}

table p {
  margin-bottom: 0;
}


/* 自定义公用class */
.no-border {
  border: none !important;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.flex {
  display: flex;
}

/*
-----------------------------------------------------------------------
  Common CSS
-----------------------------------------------------------------------
*/
.container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1400px;
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

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

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 100%;
  }
}

.container.max-width-1700 {
  max-width: 1730px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>[class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}


/* 公用模块title */
.section-title {
  margin-bottom: 73px;
}

@media only screen and (max-width: 1199px) {
  .section-title {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title .subtitle {
  background-color: #f0f0f0;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 31px;
  padding: 14.5px 43.74px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
  .section-title .subtitle {
    font-size: 14px;
    margin-bottom: 18px;
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .section-title .subtitle {
    font-size: 12px;
  }
}

.section-title .title {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.057;
  margin-bottom: 13px;
}

@media only screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 46px;
  }
}

@media only screen and (max-width: 991px) {
  .section-title .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 575px) {
  .section-title .title {
    font-size: 30px;
  }
}

.section-title p {
  color: #171b23;
}

/* 公用模块title  end*/


/* 公用背景图样式 */
.bg-img {
  background: no-repeat center center;
  background-size: cover;
}

.bg-img.bg-img-top {
  background-position: top center;
}

.bg-img-cover {
  background-size: cover;
}

/* 公用背景图样式 end */



.swiper-container {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.swiper-grid-column>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
}


.content-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-items-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-message.alert {
  margin-top: 10px;
}

.form-message.alert .btn-close {
  background-image: none;
}

.row-gutter-0 {
  margin: 0;
}

.row-gutter-0 [class*=col-] {
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 1200px) {
  .row-gutter-10 {
    margin-right: -5px;
    margin-left: -5px;
  }

  .row-gutter-10 [class*=col] {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .row-gutter-80 {
    margin-right: -40px;
    margin-left: -40px;
  }

  .row-gutter-80 [class*=col] {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .row-gutter-60 {
    margin-right: -30px;
    margin-left: -30px;
  }

  .row-gutter-60 [class*=col] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .row-gutter-70 {
    margin-right: -35px;
    margin-left: -35px;
  }

  .row-gutter-70 [class*=col] {
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media only screen and (min-width: 1200px) {
  .row-gutter-20 {
    margin-right: -10px;
    margin-left: -10px;
  }

  .row-gutter-20 [class*=col] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .row-gutter-29 {
    margin-right: -14.5px;
    margin-left: -14.5px;
  }

  .row-gutter-29 [class*=col] {
    padding-left: 14.5px;
    padding-right: 14.5px;
  }
}

.wrapper {
  overflow-x: hidden;
}

/*--------公用按钮   Button Style Css --------*/
/* 主题颜色按钮 */
.btn-theme {
  background-color: #0055ff;
  border-color: #0055ff;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  /* */
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  padding: 21px 37px;
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-theme .icon {
  font-size: 23px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 42px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-theme .icon.icon-img {
  max-width: none;
  width: auto;
}

.btn-theme:hover,
.btn-theme:focus {
  background-color: #0f034a;
  border-color: #0f034a;
  color: #fff;
}

.btn-theme:hover .icon,
.btn-theme:focus .icon {
  right: 40px;
}

.btn-theme.btn-theme-color2 {
  background-color: #0055ff;
  border-color: #0055ff;
}

.btn-theme.btn-theme-color2:hover,
.btn-theme.btn-theme-color2:focus {
  background-color: #0055ff;
  border-color: #0055ff;
}

.btn-theme.btn-black {
  background-color: #333;
  border-color: #333;
}

.btn-theme.btn-black:hover {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.btn-theme.btn-black.btn-border {
  background-color: transparent;
  border-color: #333;
  color: #333;
}

.btn-theme.btn-black.btn-border:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.btn-theme.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.btn-theme.btn-white:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.btn-theme.btn-white.btn-border {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-theme.btn-white.btn-border:hover {
  background-color: #fff;
  border-color: #fff;
  color: #0055ff;
}

.btn-theme.btn-gray {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  color: #000;
}

.btn-theme.btn-gray:hover {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.btn-theme.btn-border {
  background-color: transparent;
  border: 1px solid #0055ff;
  color: #0055ff;
  padding: 5px 25px 5px 25px;
}

.btn-theme.btn-border:hover {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.btn-theme.btn-border.btn-theme-color2 {
  background-color: transparent;
  border-color: #0f034a;
  color: #0f034a;
}

.btn-theme.btn-border.btn-theme-color2:hover {
  background-color: #0f034a;
  border-color: #0f034a;
  color: #fff;
}

.btn-theme.btn-border.btn-gray {
  background-color: transparent;
  border-color: #e8e8e8;
  color: #fcdcea;
}

.btn-theme.btn-border.btn-gray:hover {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.btn-theme.btn-border.btn-white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-theme.btn-border.btn-white:hover {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.btn-theme.btn-round {
  border-radius: 25px;
}

.btn-theme.btn-round.btn-slide:before {
  border-radius: 25px;
}

.btn-theme.btn-slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-theme.btn-slide:before {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  bottom: -40px;
  content: "";
  height: 65px;
  left: -27px;
  position: absolute;
  width: 65px;
  z-index: -1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
}

.btn-theme.btn-slide:after {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  height: 65px;
  position: absolute;
  right: -27px;
  top: -40px;
  width: 65px;
  z-index: -1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn-theme.btn-slide .icon.icon-img {
  right: 42px;
}

.btn-theme.btn-slide:hover:before {
  border-radius: 32.5px;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  width: 100%;
}

.btn-theme.btn-slide:hover:after {
  border-radius: 32.5px;
  height: 100%;
  opacity: 0;
  right: 0;
  top: 0;
  width: 100%;
}

.btn-theme.btn-hover-style {
  background-color: transparent;
  border: 1px solid #3a3a3a;
  color: #333;
  position: relative;
  z-index: 1;
}

.btn-theme.btn-hover-style:before {
  background-color: #0a1039;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-theme.btn-hover-style:hover {
  color: #fff;
}

.btn-theme.btn-hover-style:hover:before {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.btn-theme.btn-hover-style-bg {
  background-color: #0055ff;
  border: 1px solid #0055ff;
  color: #fff;
  position: relative;
  z-index: 1;
}

.btn-theme.btn-hover-style-bg:before {
  background-color: #0a1039;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-theme.btn-hover-style-bg:hover {
  color: #fff;
}

.btn-theme.btn-hover-style-bg:hover:before {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.btn-theme.btn-size-xs {
  border-radius: 19px;
  font-size: 15px;
  line-height: 1.5;
  min-height: 38px;
  min-width: 105px;
  padding: 8px 17px;
}

.btn-theme.btn-size-xs .icon {
  right: 20px;
}

.btn-theme.btn-size-xs.btn-border {
  padding: 7px 18px;
}

.btn-theme.btn-size-sm {
  font-size: 14.4px;
  padding: 5.76px 21.6px;
}

.btn-theme.btn-size-md {
  font-size: 15px;
  min-height: 45px;
  min-width: 150px;
  padding: 12px 22px;
}

.btn-theme.btn-size-md .icon {
  right: 22px;
}

.btn-theme.btn-size-md.btn-border {
  padding: 10px 20px;
}

.btn-theme.btn-size-lg {
  font-size: 20px;
  line-height: 1.4;
  padding: 10px 30px 10px 30px;
}

.btn-theme.btn-size-xl {
  height: 50px;
  min-width: 220px;
  text-align: center;
}

.btn-theme.btn-size-xxl {
  height: 52px;
  min-width: 270px;
  text-align: center;
}

.btn-link {
  color: #000;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.9371;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-link:hover {
  color: #0055ff;
}

/* 公用按钮 end */

/*-------- 内页 Title Title Style Css --------*/
.page-title-area {
  padding-top: 20px;

}

.page-title-area .page-title-content {
  background-color: #F6F6F6;
  padding: 20px;
  margin-bottom: 20px;
}

.page-title-area .page-title-content h2 {
  color: #373737;
  font-size: 2.5rem;
}

.page-title-area .page-title-content ul {
  color: #727272;
  margin-bottom: 0;

}

.page-title-area .page-title-content ul li {
  padding-right: 1px;
  display: inline-block;
  position: relative;
  padding-right: 10px;
}

.page-title-area .page-title-content ul li::after {
  content: ">";
  padding-left: 15px;
}

.page-title-area .page-title-content ul li:last-child::after {
  content: '';
}

.page-title-area .page-title-content ul a {
  color: #727272;
}

.page-title-area .page-title-content ul a:hover {
  color: #2464BB;
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {}


/* 内页 Title Style Css end */



/*-------- Custom Margin Padding Style Css --------*/
.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-15 {
  margin-top: 15px;
}

.mt-18 {
  margin-top: 18px !important;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

@media only screen and (max-width: 1199px) {
  .mt-lg-50 {
    margin-top: 50px !important;
  }

  .mt-lg-70 {
    margin-top: 70px !important;
  }
}

@media only screen and (max-width: 991px) {
  .md-mt-0 {
    margin-top: 0 !important;
  }

  .mt-md-30 {
    margin-top: 30px !important;
  }

  .mt-md-40 {
    margin-top: 40px !important;
  }

  .mt-md-50 {
    margin-top: 50px !important;
  }

  .mt-md-60 {
    margin-top: 60px !important;
  }

  .mt-md-70 {
    margin-top: 70px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sm-mt-0 {
    margin-top: 0 !important;
  }

  .mt-sm-25 {
    margin-top: 25px !important;
  }

  .mt-sm-30 {
    margin-top: 30px !important;
  }

  .mt-sm-50 {
    margin-top: 50px !important;
  }

  .mt-sm-60 {
    margin-top: 60px !important;
  }
}

@media only screen and (max-width: 575px) {
  .mt-xs-0 {
    margin-top: 0px;
  }

  .mt-xs-25 {
    margin-top: 25px !important;
  }

  .mt-xs-30 {
    margin-top: 30px !important;
  }
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-80 {
  margin-right: 80px;
}

.mr--100 {
  margin-right: -100px;
}

@media only screen and (max-width: 991px) {
  .md-mr-0 {
    margin-right: 0 !important;
  }
}

@media only screen and (max-width: 575px) {
  .mr-xs-0 {
    margin-right: 0;
  }

  .mr-xs-15 {
    margin-right: 15;
  }
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-438 {
  margin-bottom: 438px !important;
}

.mb-470 {
  margin-bottom: 470px !important;
}

.mb-471 {
  margin-bottom: 471px !important;
}

@media only screen and (max-width: 1199px) {

  .lg-mb-0,
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-30 {
    margin-bottom: 30px !important;
  }

  .mb-lg-40 {
    margin-bottom: 40px !important;
  }

  .mb-lg-50 {
    margin-bottom: 50px !important;
  }

  .mb-lg-70 {
    margin-bottom: 70px !important;
  }

  .mb-lg-80 {
    margin-bottom: 80px !important;
  }

  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
}

@media only screen and (max-width: 991px) {

  .md-mb-0,
  .md-mb-0 {
    margin-bottom: 0px !important;
  }

  .mb-md-0 {
    margin-bottom: 0px !important;
  }

  .mb-md-10 {
    margin-bottom: 10px !important;
  }

  .mb-md-30 {
    margin-bottom: 30px !important;
  }

  .mb-md-40 {
    margin-bottom: 40px !important;
  }

  .mb-md-50 {
    margin-bottom: 50px !important;
  }

  .mb-md-60 {
    margin-bottom: 60px !important;
  }

  .mb-md-70 {
    margin-bottom: 70px !important;
  }

  .mb-md-80 {
    margin-bottom: 80px !important;
  }

  .mb-md-90 {
    margin-bottom: 90px !important;
  }
}

@media only screen and (max-width: 767px) {

  .mb-sm-0,
  .sm-mb-0 {
    margin-bottom: 0px !important;
  }

  .mb-sm-10 {
    margin-bottom: 10px !important;
  }

  .mb-sm-20 {
    margin-bottom: 20px !important;
  }

  .mb-sm-30 {
    margin-bottom: 30px !important;
  }

  .mb-sm-40 {
    margin-bottom: 40px !important;
  }

  .mb-sm-50 {
    margin-bottom: 50px !important;
  }

  .mb-sm-60 {
    margin-bottom: 60px !important;
  }

  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
}

@media only screen and (max-width: 575px) {
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }

  .mb-xs-30 {
    margin-bottom: 30px !important;
  }

  .mb-xs-50 {
    margin-bottom: 50px !important;
  }
}

@media only screen and (max-width: 479.98px) {
  .mb-xxs-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxs-30 {
    margin-bottom: 30px !important;
  }
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px !important;
}

@media only screen and (max-width: 991px) {
  .ml-md-0 {
    margin-left: 0 !important;
  }

  .md-ml-0 {
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: 479.98px) {
  .ml-xxs-5 {
    margin-left: 5px !important;
  }
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-125 {
  padding-bottom: 125px !important;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

@media only screen and (max-width: 1199px) {
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }

  .pb-lg-30 {
    padding-bottom: 30px !important;
  }

  .pb-lg-70 {
    padding-bottom: 70px !important;
  }

  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
}

@media only screen and (max-width: 991px) {
  .md-pb-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-10 {
    padding-bottom: 10px !important;
  }

  .pb-md-20 {
    padding-bottom: 20px !important;
  }

  .pb-md-30 {
    padding-bottom: 30px !important;
  }

  .pb-md-40 {
    padding-bottom: 40px !important;
  }

  .pb-md-50 {
    padding-bottom: 50px !important;
  }

  .pb-md-60 {
    padding-bottom: 60px !important;
  }

  .pb-md-70 {
    padding-bottom: 70px !important;
  }

  .pb-md-80 {
    padding-bottom: 80px !important;
  }

  .pb-md-90 {
    padding-bottom: 90px !important;
  }

  .pb-md-100 {
    padding-bottom: 100px !important;
  }

  .pb-md-120 {
    padding-bottom: 120px !important;
  }

  .pb-md-170 {
    padding-bottom: 170px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sm-pb-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-20 {
    padding-bottom: 20px !important;
  }

  .pb-sm-30 {
    padding-bottom: 30px !important;
  }

  .pb-sm-50 {
    padding-bottom: 50px !important;
  }

  .pb-sm-60 {
    padding-bottom: 60px !important;
  }

  .pb-sm-70 {
    padding-bottom: 70px !important;
  }

  .pb-sm-80 {
    padding-bottom: 80px !important;
  }

  .pb-sm-100 {
    padding-bottom: 100px !important;
  }

  .pb-sm-170 {
    padding-bottom: 170px !important;
  }
}

@media only screen and (max-width: 575px) {
  .pb-xs-80 {
    padding-bottom: 80px !important;
  }
}

.pl-0 {
  padding-left: 0;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-33 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-130 {
  padding-left: 130px !important;
}

@media only screen and (max-width: 1199px) {
  .lg-pl-0 {
    padding-left: 0 !important;
  }

  .pl-lg-15 {
    padding-left: 15px !important;
  }
}

@media only screen and (max-width: 991px) {
  .md-pl-0 {
    padding-left: 0 !important;
  }

  .md-pl-15 {
    padding-left: 15px !important;
  }

  .pl-md-30 {
    padding-left: 30px !important;
  }

  .pl-md-50 {
    padding-left: 50px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sm-pl-0 {
    padding-left: 0 !important;
  }

  .sm-pl-15,
  .pl-sm-15 {
    padding-left: 15px !important;
  }
}

@media only screen and (max-width: 575px) {
  .xs-pl-15 {
    padding-left: 15px !important;
  }
}

@media only screen and (max-width: 479.98px) {
  .pl-xxs-0 {
    padding-left: 0 !important;
  }
}

.plr-100 {
  padding: 0 100px !important;
}

@media only screen and (max-width: 1199px) {
  .plr-100 {
    padding: 0 !important;
  }
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

@media only screen and (max-width: 1199px) {
  .lg-pt-0 {
    padding-top: 0 !important;
  }

  .pt-lg-40 {
    padding-top: 40px !important;
  }
}

@media only screen and (max-width: 991px) {
  .pt-md-10 {
    padding-top: 10px !important;
  }

  .pt-md-15 {
    padding-top: 15px !important;
  }

  .pt-md-30 {
    padding-top: 30px !important;
  }

  .pt-md-40 {
    padding-top: 40px !important;
  }

  .pt-md-50 {
    padding-top: 50px !important;
  }

  .pt-md-60 {
    padding-top: 60px !important;
  }

  .pt-md-65 {
    padding-top: 65px !important;
  }

  .pt-md-70 {
    padding-top: 70px !important;
  }

  .pt-md-80 {
    padding-top: 80px !important;
  }

  .pt-md-90 {
    padding-top: 90px !important;
  }

  .pt-md-100 {
    padding-top: 100px !important;
  }

  .pt-md-120 {
    padding-top: 120px !important;
  }
}

@media only screen and (max-width: 767px) {
  .pt-sm-10 {
    padding-top: 10px !important;
  }

  .pt-sm-30 {
    padding-top: 30px !important;
  }

  .pt-sm-50 {
    padding-top: 50px !important;
  }

  .pt-sm-60 {
    padding-top: 60px !important;
  }

  .pt-sm-70 {
    padding-top: 70px !important;
  }

  .pt-sm-80 {
    padding-top: 80px !important;
  }

  .pt-sm-90 {
    padding-top: 90px !important;
  }

  .pt-sm-100 {
    padding-top: 100px !important;
  }
}

@media only screen and (max-width: 575px) {
  .pt-xs-30 {
    padding-top: 30px !important;
  }

  .pt-xs-40 {
    padding-top: 40px !important;
  }
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-100 {
  padding-right: 100px;
}

@media only screen and (max-width: 1199px) {
  .lg-pr-0 {
    padding-right: 0 !important;
  }

  .pr-lg-15 {
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sm-pr-0 {
    padding-right: 0 !important;
  }

  .sm-pr-15,
  .pr-sm-15 {
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 991px) {
  .md-pr-15 {
    padding-right: 15px;
  }

  .md-pl-15 {
    padding-left: 15px;
  }
}

.d-contents {
  display: contents;
}

.ml--2 {
  margin-left: -2px !important;
}

.ml-33 {
  margin-left: 33px;
}

.pt-38 {
  padding-top: 38px;
}

.pt-37 {
  padding-top: 37px;
}

/*-------- Scroll To Top Style Css --------*/
.scroll-to-top {
  background-color: #262626;
  border: none;
  border-radius: 50%;
  bottom: 53px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 22px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 50px;
  text-align: center;
  width: 50px;
  z-index: 100;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

@media only screen and (max-width: 575px) {
  .scroll-to-top {
    right: 30px;
    bottom: 15px;
  }
}

@media only screen and (max-width: 479.98px) {
  .scroll-to-top {
    bottom: 70px;
  }
}

.scroll-to-top:hover {
  background-color: #0055ff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

/*
-----------------------------------------------------------------------
	Main Navigation CSS
-----------------------------------------------------------------------
*/
.main-menu {
  -ms-flex-line-pack: center;
  align-content: center;
  /* */
}

.main-menu>li {
  margin-right: 14px;
  padding: 3px 0;
}

.main-menu>li:last-child {
  margin-right: 0;
}

.main-menu>li>a {
  color: #fcdcea;
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 22px;
  padding: 7px 25px;
  position: relative;
  text-transform: uppercase;
}

@media only screen and (max-width: 1399px) {
  .main-menu>li>a {
    margin: 0 18px;
  }
}

.main-menu>li:hover>a,
.main-menu>li.active>a {
  color: #0055ff;
}

.main-menu.menu-capitalize>li>a {
  font-size: 16px;
  text-transform: capitalize;
}

.has-submenu {
  padding-right: 10px;
  position: relative;
}

.has-submenu>a {
  position: relative;
}

.has-submenu>a:after {
  content: "";
  color: #fcdcea;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  font-family: "FontAwesome";
  position: absolute;
  right: 11px;
  top: 7px;
}

.has-submenu:hover>.submenu-nav {
  opacity: 1;
  visibility: visible;
  margin: 0;
  /* margin-top: 15px; */
}

@media only screen and (max-width: 1199px) {
  .has-submenu:hover>.submenu-nav {
    margin-top: 32px;
  }
}

.has-submenu:hover .menu-content .menu-content-inner h4,
.has-submenu:hover .menu-content .menu-content-inner .btn-brand {
  -webkit-transform: none !important;
  transform: none !important;
}

.has-submenu .submenu-nav {
  -webkit-box-shadow: 0 1px 24px 0 rgba(7, 48, 128, 0.09);
  box-shadow: 0 1px 24px 0 rgba(7, 48, 128, 0.09);
  background-color: #2F7AE2;
  color: #fff;
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  /* padding: 20px 0; */
  top: 30px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  width: 250px;
  z-index: 999;
}

/* .has-submenu .submenu-nav:before {
  content: "";
  position: absolute;
  height: 43px;
  width: 100%;
  left: 0;
  bottom: 100%;
} */

@media only screen and (max-width: 1199px) {
  /* .has-submenu .submenu-nav:before {
    height: 37px;
  } */
}

.has-submenu .submenu-nav>li {
  line-height: 1.8;
  position: relative;
}

.has-submenu .submenu-nav>li a {
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1.8;
  padding: 7px 31px;
  position: relative;
}

.has-submenu .submenu-nav>li a:hover {
  color: #fff;
  text-decoration: underline;
}

.has-submenu .submenu-nav>li:hover>a {
  color: #fff;
  text-decoration: underline;
}

.has-submenu .submenu-nav>li:hover:after {
  color: #0055ff !important;
}

.has-submenu .submenu-nav>li.has-submenu {
  position: relative;
}

.has-submenu .submenu-nav>li.has-submenu a:before {
  display: block;
}

.has-submenu .submenu-nav>li.has-submenu:hover>.submenu-nav {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.has-submenu .submenu-nav>li.has-submenu:after {
  content: "";
  color: #171b23;
  font-size: 15px;
  line-height: 1.2;
  font-family: "FontAwesome";
  position: absolute;
  right: 25px;
  top: 12px;
}

.has-submenu .submenu-nav>li.has-submenu .submenu-nav {
  left: 100%;
  top: 0;
  margin-top: -15px;
}

.has-submenu .submenu-nav-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 14px;
  left: 24%;
  max-width: 700px;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav-mega {
    left: 0;
    width: 644px;
  }
}

.has-submenu .submenu-nav-mega .mega-menu-item {
  text-align: left;
  padding-right: 30px;
  padding-left: 0;
  float: left;
  display: block;
  padding-top: 0;
}

.has-submenu .submenu-nav-mega .mega-menu-item.banner-menu-content-wrap {
  width: 40%;
}

.has-submenu .submenu-nav-mega .mega-menu-item:last-child {
  border-right: 0;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li {
  position: relative;
  padding: 0;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li a:hover {
  color: #fff;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.feature a {
  position: relative;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.feature a:before {
  content: "";
  position: absolute;
  font-family: "FontAwesome";
  color: #0055ff;
  right: -20px;
  top: 1px;
  font-size: 12px;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.new a {
  position: relative;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.new a:after {
  background-color: #0055ff;
  content: "New";
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  position: absolute;
  top: 0;
  right: -38px;
  line-height: 1;
  padding: 2px 3px;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li:hover .menu-thumb {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.active a {
  color: #fff;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content {
  padding: 0 !important;
  margin: -1px;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner {
  background-size: cover;
  background-position: center center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner h4,
.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner .btn-brand {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner h4 {
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner h4 span {
  color: #0055ff;
  font-style: italic;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner .btn-brand {
  margin-top: 30px;
  font-weight: 700;
  -webkit-transform: translateY(80%);
  transform: translateY(80%);
}

.has-submenu.full-width {
  position: static;
}

.has-submenu.colunm-two {
  position: relative;
}

.has-submenu.colunm-two .submenu-nav-mega {
  left: 100px !important;
  width: 550px;
}

.has-submenu.colunm-two .submenu-nav-mega .mega-menu-item {
  padding: 0 !important;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

/* Responsive Mobile Menu */
.res-mobile-menu {
  margin: 0;
}

/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/
.header-wrapper {
  /* background: #083382 */
}

.header-area.header-default {
  /* padding: 18px 0 17px; */
  position: relative;
  z-index: 999;
  background: #083382
}

.header-area.header-default .container {
  /* max-width: 1730px; */
}

.header-time {
  height: 40px;
  line-height: 40px;
  width: 100%;
  color: #fff;
  /* background: #083382; */
}

.header-area.header-default .header-logo-area {
  background: #083382 url(../../assets/img/public/kjc-top_bg.jpg) no-repeat center center;
  /* max-width: 175px; */
}

@media only screen and (max-width: 991px) {
  .header-area.header-default .header-logo-area .container {
    padding-right: 0;

  }
}

.header-area.header-default .header-logo-area .search-a {
  margin-bottom: 20px;
}

.header-area.header-default .header-logo-area .search-a a {
  background-color: #2465C7;
  color: #fff;
  padding: 8px;
  margin-right: 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.header-area.header-default .header-logo-area .search-input {
  height: 32px;
  width: 230px;
  border: none;
  padding-left: 10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}



.header-area.header-default .header-logo-area .search-btn {
  height: 32px;
  width: 70px;
  background-color: #187CDE;
  border: none;
  color: #fff;
}

.header-area.header-default .header-logo-area .QRcode {
  margin-left: 20px;
}

.header-area.header-default .header-logo-area .QRcode p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

/* @media only screen and (max-width: 1199px) {
  .header-area.header-default .header-logo-area {
    max-width: 125px;
  }
} */

.header-area.header-default .header-navigation-area {
  /* justify-content: center; */
  height: 45px;
  background: url(../../assets/img/public/nav_bg.png) repeat-x center;
  background-size: contain;
}

.header-area.header-default .header-navigation-area .container {
  height: 100%;
}

.header-area.header-default .header-navigation-area .main-menu {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header-area.header-default .header-navigation-area .main-menu>li {
  margin: 0;
  padding: 0;

}

.header-area.header-default .header-navigation-area .main-menu>li>a {
  color: #fff;
  /* font-weight: 700; */
  font-size: 16px;
  padding: 0;
  margin: 0 !important;
  text-transform: uppercase;
}

@media only screen and (max-width: 1399px) {
  .header-area.header-default .header-navigation-area .main-menu>li>a {
    /* margin: 0 18px; */
    font-size: 15px;
    font-weight: normal;
  }
}

@media only screen and (max-width: 1199px) {
  .header-area.header-default .header-navigation-area .main-menu>li>a {
    font-size: 14px;
    font-weight: normal;
    /* margin: 0 17px; */
  }
}

.header-area.header-default .header-navigation-area .main-menu>li>a:hover {
  color: #fff;
}

.header-area.header-default .header-navigation-area .main-menu>li.active>a {
  color: #fff;
}

.header-area.header-default .header-navigation-area .main-menu>li.active>a:after {
  color: #fff;
}

.header-area.header-default .header-navigation-area .main-menu .has-submenu>a:after {
  color: #fff;
  content: "";
  display: none;
  font-family: "IcoFont";
  font-weight: 400;
  font-size: 14px;
  position: absolute;
  right: -24px;
  top: calc(50% + .5px);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.header-area.header-default .header-navigation-area .main-menu .has-submenu .submenu-nav>li a.srmenu-title {
  display: none;
}

.header-area.header-default .header-navigation-area .main-menu .has-submenu .submenu-nav>li.active>a {
  color: #fff;
  text-decoration: underline;
}

.header-area.header-default .header-navigation-area .main-menu .has-submenu:hover>a {
  color: #fff;
}

.header-area.header-default .header-navigation-area .main-menu .has-submenu:hover>a:after {
  color: #fff;
}


.header-area.header-default.header-style .header-align {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .header-area.header-default.header-style .header-align {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.header-area.header-default.header-style .header-logo-area img {
  width: 100%;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li>a {
  color: #000;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li>a:after {
  display: none;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li>a:hover {
  color: #0055ff;
  text-decoration: none;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li>a:hover:after {
  color: #0055ff;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li>a:hover:before {
  bottom: -5px;
  background-color: #0055ff;
  content: "";
  cursor: pointer;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li.active>a {
  color: #0055ff;
  text-decoration: none;
  position: relative;
}

.header-area.header-default.header-style .header-navigation-area .main-menu>li.active>a:before {
  bottom: -5px;
  background-color: #0055ff;
  content: "";
  cursor: pointer;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
}

.header-area.header-default.header-style .header-navigation-area .main-menu .has-submenu.active>a {
  color: #0055ff;
  text-decoration: none;
  position: relative;
}

.header-area.header-default.header-style .header-navigation-area .main-menu .has-submenu.active>a:before {
  bottom: -5px;
  background-color: #0055ff;
  content: "";
  cursor: pointer;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
}

.header-area.header-default.header-style .header-navigation-area .main-menu .has-submenu:hover>a {
  color: #0055ff;
  text-decoration: none;
}

.header-area.header-default.header-style .header-navigation-area .main-menu .has-submenu:hover>a:after {
  color: #0055ff;
}

.header-area.header-default.header-style .header-navigation-area .main-menu .has-submenu:hover>a:before {
  bottom: -5px;
  background-color: #0055ff;
  content: "";
  cursor: pointer;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
}

.header-area.header-default.header-style.sticky-header.sticky .header-logo-area {
  top: 0;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu>li>a {
  color: #000;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu>li>a:after {
  display: none;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu>li>a:hover {
  color: #0055ff;
  text-decoration: none;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu>li>a:hover:after {
  color: #0055ff;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu .has-submenu .submenu-nav {
  margin-top: 35px;
}

/* .header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu .has-submenu .submenu-nav:before {
  height: 48px;
} */

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu .has-submenu.active>a {
  color: #0055ff;
  text-decoration: none;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu .has-submenu:hover>a {
  color: #0055ff;
  text-decoration: none;
}

.header-area.header-default.header-style.sticky-header.sticky .header-navigation-area .main-menu .has-submenu:hover>a:after {
  color: #0055ff;
}


.header-area.sticky-header.sticky {
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.06);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media only screen and (max-width: 991px) {
  .header-area.sticky-header {
    -webkit-box-shadow: 0 3px 5px 0 rgba(7, 48, 128, 0.3) !important;
    box-shadow: 0 3px 5px 0 rgba(7, 48, 128, 0.3) !important;
  }

  .header-area.sticky-header.sticky .header-navigation-area {
    display: none !important;
  }
}

.header-area.sticky-header.sticky.header-default .header-logo-area {
  display: block;
}


.header-area.header-transparent {
  background-color: transparent;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header-area .btn-menu {
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2464BB;
  height: 52px;
  width: 52px;
  font-size: 28px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header-area .btn-menu .close {
  font-size: 40px;
}

.header-area .btn-menu:hover {
  background-color: #0045cf;
  border-color: #0045cf;
  color: #fff;
}

.btn-menu-slide-close {
  background-color: rgba(33, 35, 49, 0.8);
  height: 100vh;
  opacity: 0;
  position: fixed;
  right: -50%;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 999;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-menu-slide-close .icon-menu-slide-close {
  color: #fff;
  font-size: 32px;
  position: absolute;
  right: 360px;
  top: 45px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-menu-slide-close .icon-menu-slide-close:hover {
  color: #0055ff;
  cursor: pointer;
}

.btn-menu-slide-close.active {
  opacity: 1;
  right: 0;
  visibility: visible;
}

.btn-menu-slide-close.active .icon-menu-slide-close {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/* .header-logo-area {
  max-width: 120px;
  position: relative;
} */

.header-logo-area .logo-light {
  display: none;
}

.off-canvas-area {
  padding: 0;
  z-index: 9999;
}

.off-canvas-area.offcanvas-start {
  width: 350px;
  top: 52px !important;
}

@media only screen and (max-width: 479.98px) {
  .off-canvas-area.offcanvas-start {
    width: 100%;
  }
}

.off-canvas-area .offcanvas-header {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 20px 9px;
}

.off-canvas-area .offcanvas-header .btn-close {
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  margin: 0;
  opacity: 1;
  padding: 0;
  position: relative;
  right: -5px;
  text-align: left;
  top: -1px;
  width: 100%;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.off-canvas-area .offcanvas-header .btn-close i {
  float: right;
  font-size: 28px;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.off-canvas-area .offcanvas-header .btn-close i:hover {
  color: #0055ff;
}

.offcanvas-backdrop {
  top: 52px !important;
}

.off-canvas-area .offcanvas-body {
  padding: 0 0 20px;
}

/* 移动菜单搜索 */
.res-mobile-menu .search {
  display: flex;
  justify-content: center;
  margin: 20px 0;

}

.res-mobile-menu .search .search-input {
  border: 1px solid #c7c7c7;
  height: 35px;
  text-indent: 10px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.res-mobile-menu .search .search-input:focus {
  border: 1px solid #187CDE;
}

.res-mobile-menu .search .search-btn {
  border: none;
  background-color: #187CDE;
  color: #fff;
  padding: 0 15px;
}


/*  移动菜单搜索end*/

/* 移动端menu Start */
.offcanvas-menu {
  position: relative;
  z-index: 1;
}

.offcanvas-menu::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: #fff;
}

.offcanvas-menu ul ul {
  display: none;
}

.offcanvas-menu>ul>li>ul li {
  border-bottom: 0px;
}

.offcanvas-menu>ul>li>ul li a {
  padding: 9px 35px;
  font-weight: 400;
  font-size: 12px;
  color: #575a5f;
}

.offcanvas-menu>ul>li>ul li a.offcanvas-nav-item {
  color: #575a5f;
  font-weight: 400;
}

.offcanvas-menu>ul>li>ul li a.offcanvas-nav-item:after {
  font-size: 14px;
}

.offcanvas-menu>ul>li>ul li>ul li a {
  padding: 8px 45px;
}

.offcanvas-menu li.active>ul {
  display: block;
}

.offcanvas-menu li a {
  border-top: 1px solid #eeeeee;
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 25px;
  position: relative;
  text-transform: capitalize;
}

@media only screen and (max-width: 479.98px) {
  .offcanvas-menu li a {
    font-size: 13px;
  }
}

.offcanvas-menu li a:hover {
  color: #0055ff;
}

.offcanvas-menu a:not(:only-child):after {
  color: #9f9d9d;
  content: "";
  font-family: "IcoFont";
  font-size: 17px;
  font-weight: 400;
  position: absolute;
  right: 24px;
  top: 6px;
}

.offcanvas-menu .active>a:not(:only-child):after {
  content: "";
}


/*-----------------------------------------------------------------------
 移动端menu End 
-----------------------------------------------------------------------*/



/*
-----------------------------------------------------------------------
    Team CSS
-----------------------------------------------------------------------
*/
.team-area.team-default-area {
  background-color: #f7f7f7;
  padding: 141px 0 126px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .team-area.team-default-area {
    padding: 90px 0 78px;
  }
}

@media only screen and (max-width: 767px) {
  .team-area.team-default-area {
    padding: 80px 0 68px;
  }
}

.team-area.team-default-area .section-title .subtitle {
  padding: 14.5px 68.8px;
}

@media only screen and (max-width: 1199px) {
  .team-area.team-default-area .section-title .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .team-area.team-default-area .section-title .title {
    font-size: 30px;
  }
}

.team-member {
  text-align: center;
}

.team-member .thumb {
  position: relative;
  margin-bottom: 34px;
}

@media only screen and (max-width: 767px) {
  .team-member .thumb img {
    width: 100%;
  }
}

.team-member .thumb .member-icons {
  background-color: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  position: absolute;
  padding: 12.5px 20px;
  margin-bottom: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.team-member .thumb .member-icons a {
  border: 1px solid #e7e7e7;
  color: #171b23;
  display: inline-block;
  font-size: 13px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
  .team-member .thumb .member-icons a {
    height: 32px;
    width: 32px;
    line-height: 32px;
  }
}

.team-member .thumb .member-icons a:last-child {
  margin-right: 0;
}

.team-member .thumb .member-icons a:hover {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.team-member .content {
  display: none;
}

.team-member .content .member-info .name {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
  .team-member .content .member-info .name {
    font-size: 24px;
  }
}

.team-member .content .member-info .name a {
  color: #171b23;
}

.team-member .content .member-info .designation {
  color: #0055ff;
  font-weight: 500;
  font-size: 17px;
}

.shape-group .shape-style1 {
  position: absolute;
  top: 88px;
  left: -160px;
  z-index: -1;
}

.shape-group .shape-style2 {
  bottom: -245px;
  position: absolute;
  right: -18px;
  z-index: -1;
}

.team-slider-container .team-slider .swiper-slide.swiper-slide-active .team-member .thumb .member-icons {
  opacity: 1;
  margin-bottom: 0;
}

.team-slider-container .team-slider .swiper-slide.swiper-slide-active .team-member .content {
  display: block;
}

/*
-----------------------------------------------------------------------
  Testimonial CSS
-----------------------------------------------------------------------
*/
.testimonial-area.testimonial-default-area {
  background-color: #c0dfe8;
  padding: 102px 0 123px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .testimonial-area.testimonial-default-area {
    padding: 75px 0 123px;
  }
}

.testimonial-area.testimonial-default-area .thumb-style {
  bottom: 0;
  left: 0;
  position: absolute;
  min-height: 155px;
  width: 100%;
}

.testimonial-slider {
  margin: 0 -15px;
}

.testimonial-slider .slick-slide {
  padding: 30px 15px;
}

.testimonial-slider .slick-dots {
  display: none !important;
}

.testimonial-item .client-content {
  background-color: #fff;
  border-radius: 10px 10px 10px 0px;
  position: relative;
}

.testimonial-item .client-content .inner-content {
  overflow: hidden;
  padding: 32px 18px 31px 30px;
  position: relative;
}

.testimonial-item .client-content .icon {
  max-width: 85px;
  position: absolute;
  top: -7px;
  left: -11px;
}

.testimonial-item .client-content p {
  color: #2d2d2d;
  font-size: 18px;
  font-style: italic;
  line-height: 31px;
  position: relative;
}

.testimonial-item .client-content .shape-group .shape-style1 {
  bottom: -34px;
  left: 0;
  position: absolute;
}

.testimonial-item .client-info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 13px;
}

.testimonial-item .client-info .thumb img {
  border-radius: 50%;
  margin-right: 25px;
  margin-left: 4px;
}

.testimonial-item .client-info .desc {
  margin-top: 8px;
  margin-left: 1px;
}

.testimonial-item .client-info .desc .title {
  color: #3b3a3a;
  /* */
  font-size: 18px;
  margin-bottom: 1px;
}

.testimonial-item .client-info .desc p {
  color: #3b3a3a;
}


/*
-----------------------------------------------------------------------
  Featured CSS
-----------------------------------------------------------------------
*/
.featured-area.featured-default-area {
  padding: 110px 0 100px;
}

@media only screen and (max-width: 991px) {
  .featured-area.featured-default-area {
    padding: 80px 0;
  }
}

.featured-item {
  border: 4px solid #f6f6f6;
  padding: 36px 20px 31px;
  position: relative;
  text-align: center;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.featured-item:hover {
  border-color: #0055ff;
}

.featured-item .icon img {
  margin-bottom: 16px;
}

.featured-item .featured-info .title {
  color: #494949;
  font-size: 24px;
  margin-bottom: 17px;
}

@media only screen and (max-width: 991px) {
  .featured-item .featured-info .title {
    font-size: 20px;
  }
}

.featured-item .featured-info p {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.7;
}

.featured-item .shape-group .shape-style1 {
  bottom: -2px;
  position: absolute;
  right: -4px;
  z-index: -1;
}

/*
-----------------------------------------------------------------------
	Form CSS
-----------------------------------------------------------------------
*/
.contact-form {
  background-color: #f7f7f7;
  padding: 69px;
}

@media only screen and (max-width: 767px) {
  .contact-form {
    padding: 55px 15px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-form {
    padding: 42px 15px;
  }
}

.contact-form .contact-form-wrapper .form-group {
  margin-bottom: 18px;
}

.contact-form .contact-form-wrapper .form-group .form-control {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #6e6d6d;
  /* */
  font-weight: 500;
  font-size: 19px;
  padding: 21px 29px;
}

@media only screen and (max-width: 575px) {
  .contact-form .contact-form-wrapper .form-group .form-control {
    font-size: 15px;
    padding: 12px 29px;
  }
}

.contact-form .contact-form-wrapper .form-group .form-control:focus {
  border-color: #0055ff;
}

.contact-form .contact-form-wrapper .form-group textarea.form-control {
  min-height: 260px;
}

@media only screen and (max-width: 575px) {
  .contact-form .contact-form-wrapper .form-group textarea.form-control {
    min-height: 180px;
  }
}

.contact-form .contact-form-wrapper .form-group .btn-theme {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 1px;
  margin-top: 31px;
  padding: 24px 57.5px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .contact-form .contact-form-wrapper .form-group .btn-theme {
    font-size: 14px;
    padding: 13px 25px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-form .contact-form-wrapper .form-group .btn-theme {
    margin-top: 10px;
  }
}

.comment-form-wrap .section-title .title {
  color: #131b13;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 45px;
  margin-top: 73px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group .form-control {
  background-color: #f7f7f7;
  border-radius: 0;
  border: 1px solid transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  padding: 14.5px 26px;
}

.form-group .form-control:focus {
  border-color: #0055ff;
}

.form-group .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #656565;
  font-weight: 400;
  font-size: 16px;
}

.form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #656565;
  font-weight: 400;
  font-size: 16px;
}

.form-group .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #656565;
  font-weight: 400;
  font-size: 16px;
}

.form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #656565;
  font-weight: 400;
  font-size: 16px;
}

.form-group textarea.form-control {
  min-height: 285px;
}

.form-group .btn-theme {
  /*  */
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 1px;
  margin-top: 21px;
  padding: 17.5px 36px;
  text-transform: capitalize;
}

.form-group .btn-theme i {
  font-size: 19px;
  margin-right: 11px;
}

.subscribe-form {
  margin: 0 35px;
}

@media only screen and (max-width: 991px) {
  .subscribe-form {
    margin: 0;
  }
}

.subscribe-form form {
  position: relative;
}

.subscribe-form form i {
  color: #495057;
  position: absolute;
  top: 15px;
  left: 15px;
}

.subscribe-form form .input-content input {
  width: 100%;
  height: 48px;
  color: #495057;
  font-size: 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 2px 120px 2px 45px;
}

.subscribe-form form .input-content input::-moz-input-placeholder {
  color: #495057;
  opacity: 1;
}

.subscribe-form form .input-content input::-webkit-input-placeholder {
  color: #495057;
  opacity: 1;
}

.subscribe-form form .input-content input:focus {
  border: 2px solid #fcdcea;
}

.subscribe-form form .input-content .mc-news-6 {
  display: none;
}

.subscribe-form form .input-content .submit-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.subscribe-form form .input-content .submit-btn input {
  width: auto;
  height: auto;
  /* */
  font-size: 13px;
  font-weight: 600;
  border: none;
  color: #0055ff;
  padding: 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.subscribe-form form .input-content .submit-btn input:hover {
  color: #0f034a;
}

.login-register-area {
  padding: 110px 0 100px;
}

@media only screen and (max-width: 1199px) {
  .login-register-area {
    padding: 80px 0 90px;
  }
}

@media only screen and (max-width: 991px) {
  .login-register-area {
    padding: 60px 0 70px;
  }
}

.login-register-title h2 {
  /* */
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 15px;
  line-height: 1;
}

.login-register-title p {
  /* */
  font-weight: 400;
  line-height: 1.6;
  color: #999;
  width: 85%;
}

@media only screen and (max-width: 767px) {
  .login-register-title p {
    width: 100%;
  }
}

.login-register-pr {
  padding-right: 100px;
}

@media only screen and (max-width: 1199px) {
  .login-register-pr {
    padding-right: 0;
  }
}

.login-register-pl {
  padding-left: 100px;
}

@media only screen and (max-width: 1199px) {
  .login-register-pl {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .login-register-pl {
    margin-top: 40px;
  }
}

.login-register-border {
  border-right: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
  .login-register-border {
    border: none;
  }
}

.login-register-content.lr-content-padding-mrg {
  margin: auto;
  max-width: 20.8333333333%;
  padding: 76px 0 120px;
}

.login-register-content .login-register-style {
  margin: 33px 0 0;
}

.login-register-content .login-register-style p {
  color: #000;
  /* */
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 35px;
}

.login-register-content .login-register-style form .login-register-input {
  position: relative;
  margin-bottom: 10px;
}

.login-register-content .login-register-style form .login-register-input input {
  color: #495057;
  width: 100%;
  height: 51px;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  /* */
  padding: 2px 80px 2px 16px;
  font-size: 15px;
}

.login-register-content .login-register-style form .login-register-input input::-webkit-input-placeholder {
  color: #495057;
  opacity: 1;
}

.login-register-content .login-register-style form .login-register-input input::-moz-input-placeholder {
  color: #495057;
  opacity: 1;
}

.login-register-content .login-register-style form .login-register-input input:focus {
  border-color: #0055ff;
}

.login-register-content .login-register-style form .login-register-input .forgot {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.login-register-content .login-register-style form .login-register-input .forgot a {
  color: #4bb1cf;
  /* */
  font-size: 15px;
}

.login-register-content .login-register-style form .login-register-paragraph {
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  padding: 15px 0;
  margin: 30px 0 30px;
}

.login-register-content .login-register-style form .login-register-paragraph p {
  /* */
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin: 0;
}

.login-register-content .login-register-style form .login-register-paragraph p a {
  font-size: 14px;
  color: #0055ff;
}

.login-register-content .login-register-style form .login-register-paragraph p a:hover {
  color: #0f034a;
}

.login-register-content .login-register-style form .remember-me-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 19px 0 0px;
}

.login-register-content .login-register-style form .remember-me-btn input {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-right: 10px;
}

.login-register-content .login-register-style form .remember-me-btn label {
  color: #000;

  font-size: 15px;
}

.login-register-content .login-register-style form .btn-style-3 {
  margin: 21px 0 0px;
}

.login-register-content .login-register-style form .btn-style-3 button {

  font-size: 16px;
  border-radius: 3px;
  font-weight: 400;
  color: #fff;
  background-color: #0055ff;
  border: none;
  line-height: 1;
  width: 100%;
  text-align: center;
  padding: 19px 10px 22px;
  text-transform: uppercase;
}

.login-register-content .login-register-style form .btn-style-3 button:hover {
  background-color: #0f034a;
}

.login-register-content .login-register-style .register-benefits {
  background-color: #f3f3f3;
  padding: 40px 30px;
  margin-top: 60px;
}

@media only screen and (max-width: 991px) {
  .login-register-content .login-register-style .register-benefits {
    padding: 30px 20px;
  }
}

.login-register-content .login-register-style .register-benefits h3 {
  color: #000;

  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.login-register-content .login-register-style .register-benefits p {
  line-height: 1.6;

  font-size: 14px;
  color: #666;
  margin: 0 0 28px;
}

.login-register-content .login-register-style .register-benefits ul {
  margin: 0;
}

.login-register-content .login-register-style .register-benefits ul li {

  font-size: 18px;
  color: #000;
  margin: 0 0 16px;
}

@media only screen and (max-width: 1199px) {
  .login-register-content .login-register-style .register-benefits ul li {
    font-size: 15px;
  }
}

.login-register-content .login-register-style .register-benefits ul li:last-child {
  margin: 0 0 0;
}

.login-register-content .login-register-style .register-benefits ul li i {
  font-size: 20px;
  color: #0f034a;
  margin-right: 15px;
  position: relative;
  top: 4px;
}

@media only screen and (max-width: 1199px) {
  .login-register-content .login-register-style .register-benefits ul li i {
    margin-right: 0;
  }
}

.my-account-area {
  padding: 110px 0 100px;
}

@media only screen and (max-width: 1199px) {
  .my-account-area {
    padding: 80px 0 90px;
  }
}

.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .myaccount-tab-menu {
    margin-bottom: 40px;
  }
}

.myaccount-tab-menu.nav-tabs .nav-link {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  border-radius: 0;
  color: #000;

  font-size: 15px;
  display: block;
  padding: 10px 15px;
  text-align: left;
  text-transform: capitalize;
}

.myaccount-tab-menu.nav-tabs .nav-link:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.myaccount-tab-menu.nav-tabs .nav-link.active {
  background-color: #0055ff;
}

.myaccount-tab-menu.nav-tabs .nav-link:hover,
.myaccount-tab-menu.nav-tabs .nav-link.active {
  background-color: #0055ff;
  border-color: #0055ff;
  color: #fff;
}

.myaccount-content {
  border: 1px solid #eeeeee;
  padding: 30px;
}

@media only screen and (max-width: 1199px) {
  .myaccount-content {
    padding: 20px;
  }
}

.myaccount-content form {
  margin-top: -20px;
}

.myaccount-content .check-btn:hover {
  color: #0f034a;
}

.myaccount-content h3 {

  font-weight: 400;
  font-size: 20px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.myaccount-content .welcome a {}

.myaccount-content .welcome a:hover {
  color: #0f034a;
}

.myaccount-content .welcome strong {

  font-weight: 400;
  color: #0055ff;
}

.myaccount-content p {

  line-height: 28px;
  margin-bottom: 2px;
}

.myaccount-content fieldset {
  margin-top: 20px;
}

.myaccount-content fieldset legend {

  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.myaccount-content .account-details-form {
  margin-top: 50px;
}

.myaccount-content .account-details-form .single-input-item {
  margin-bottom: 20px;
}

.myaccount-content .account-details-form .single-input-item label {

  font-size: 14px;
  text-transform: capitalize;
  display: block;
  margin: 0 0 5px;
}

.myaccount-content .account-details-form .single-input-item input {
  border: 1px solid #e8e8e8;
  width: 100%;
  height: 50px;
  background-color: transparent;
  padding: 2px 20px;
  color: #1f2226;

  font-size: 13px;
}

.myaccount-content .account-details-form .single-input-item input:focus {
  border: 1px solid #0055ff;
}

.myaccount-content .account-details-form .single-input-item button {
  border: none;
  background-color: #0055ff;

  font-weight: 400;
  padding: 9px 25px;
  color: #fff;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.myaccount-content .account-details-form .single-input-item button:hover {
  background-color: #0f034a;
}

.myaccount-table {
  white-space: nowrap;

  font-size: 14px;
}

.myaccount-table table th,
.myaccount-table .table th {
  padding: 10px;

  font-weight: 600;
  background-color: #f8f8f8;
  border-color: #ccc;
  border-bottom: 0;
  color: #1f2226;
}

.myaccount-table table td,
.myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #ccc;
}

.myaccount-table table td a,
.myaccount-table .table td a {

  font-size: 14px;
  color: #000;
}

.saved-message {
  background-color: #fff;
  border-top: 3px solid #0055ff;

  font-size: 14px;
  padding: 20px 0;
  color: #333;
}

/*
-----------------------------------------------------------------------
	Contact CSS
-----------------------------------------------------------------------
*/
.contact-page-wrap .container-info {
  padding: 140px 15px 197px;
}

@media only screen and (max-width: 1199px) {
  .contact-page-wrap .container-info {
    padding: 90px 15px 147px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-wrap .container-info {
    padding: 90px 15px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-page-wrap .container-info {
    padding: 70px 15px;
  }
}

.contact-page-wrap .section-title {
  margin-bottom: 122px;
}

@media only screen and (max-width: 767px) {
  .contact-page-wrap .section-title {
    margin-bottom: 80px;
  }
}

.contact-page-wrap .section-title .subtitle {
  padding: 14.5px 37.5px;
  margin-bottom: 38px;
}

.contact-page-wrap .section-title .title {
  font-weight: 500;
  font-size: 38px;
  margin-right: 15px;
  position: relative;
  line-height: 1.36842;
}

@media only screen and (max-width: 767px) {
  .contact-page-wrap .section-title .title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-wrap .section-title .title br {
    display: none;
  }
}

.contact-page-wrap .section-title .title:before {
  bottom: -58px;
  background-color: #0055ff;
  content: "";
  position: absolute;
  height: 5px;
  width: 160px;
}

@media only screen and (max-width: 767px) {
  .contact-page-wrap .section-title .title:before {
    bottom: -35px;
    height: 3px;
  }
}

.contact-page-wrap .section-title .title span {
  font-weight: 700;
}

.contact-page-wrap .contact-info-content .widget-item {
  margin-bottom: 0;
  margin-right: 10px;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info {
  background-color: #f7f7f7;
  position: relative;
  padding: 39.1px 41px;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info .contact-info-item {
  margin-bottom: 21px;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info .contact-info-item .content h4 {
  color: #0055ff;
  font-weight: 600;
  font-size: 18px;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info .contact-info-item .content a {
  color: #6f6f6f;

  font-weight: 600;
  font-size: 18px;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info .contact-info-item .content p {

  font-weight: 600;
  font-size: 18px;
  line-height: 1.66666;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info .contact-info-item.info-item2 {
  margin-bottom: 27px;
}

.contact-page-wrap .contact-info-content .widget-item .widget-info .shape-count {
  color: rgba(23, 27, 35, 0.08);
  font-weight: 700;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contact-page-wrap .contact-info-content .widget-item.bg-theme-style .widget-info {
  background-color: #0055ff;
}

.contact-page-wrap .contact-info-content .widget-item.bg-theme-style .widget-info .contact-info-item .content h4 {
  color: #fff;
}

.contact-page-wrap .contact-info-content .widget-item.bg-theme-style .widget-info .contact-info-item .content a {
  color: #d9daea;
}

.contact-page-wrap .contact-info-content .widget-item.bg-theme-style .widget-info .contact-info-item .content p {
  color: #d9daea;
}

.contact-page-wrap .contact-info-content .widget-item.bg-theme-style .widget-info .shape-count {
  color: rgba(255, 255, 255, 0.07);
}

.contact-map-area {
  height: 800px;
}

@media only screen and (max-width: 1199px) {
  .contact-map-area {
    height: 480px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-map-area {
    height: 320px;
  }
}

.contact-map-area iframe {
  height: 100%;
  width: 100%;
}

/*
-----------------------------------------------------------------------
  Footer CSS
-----------------------------------------------------------------------
*/
.footer-area {
  position: relative;
  z-index: 1;
}

.footer-area .footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-area.default-style {
  background-color: #134383;
}


.footer-area.default-style .footer-main {
  padding: 76px 0 67px;
}

.footer-area.default-style .footer-main h4 {
  color: #fff;
}

.footer-area.default-style .footer-main a {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  padding: 0 10px 15px 0;
}

.footer-area.default-style .footer-main a:hover {
  text-decoration: underline;
}

.footer-area.default-style .footer-bottom {
  background-color: #123C76;
  padding: 14px 0 15px;
  z-index: 1;
  position: relative;
}

.footer-area.default-style .footer-bottom .widget-copyright {
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.footer-area.default-style .footer-bottom .widget-copyright p {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.footer-area.default-style .footer-bottom .widget-copyright p .icofont-heart {
  color: #fff;
}

.footer-area.default-style .footer-bottom .widget-copyright p span {
  color: #a8aaad;
}

.footer-area.default-style .footer-bottom .widget-copyright p a {
  color: #fff;
}

.footer-area.default-style .footer-bottom .widget-copyright p a:hover {
  color: #0055ff;
}