/* =======

	Template Name: Alif Bootstrap
	Author: Shafiq Hammad
	Version: 1.0

======== */
/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap");
:root {
  --font: "Sora", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  /*color: var(--body-color);*/
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 13px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}

.main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-wrapper {
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 12px;
  margin-top: 8px;
}

.sticky {
  width: 100%;
  position: fixed;
  z-index: 99;
}

.sticky .navbar-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0px 20px;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 70px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .main-btn.login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .main-btn.login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.hero {
  background: var(--primary-color);
  padding-top: 180px;
  padding-bottom: 130px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero {
    padding-top: 150px;
  }
}

.hero-content {
  max-width: 780px;
  margin: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-content {
    margin-bottom: 50px;
  }
}

.hero-content .hero-title {
  color: var(--white);
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 38px;
    line-height: 48px;
  }
}

.hero-content .hero-desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 30px;
  padding-right: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .hero-desc {
    padding-right: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .hero-content .hero-desc {
    font-size: 16px;
    line-height: 28px;
  }
}

.hero-content .main-btn {
  background: var(--white);
  color: var(--primary-color);
}

.hero-content .main-btn:hover {
  background: var(--heading-color);
  color: var(--white);
}

.hero-image {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-image {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
}

.hero-image .video-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.hero-image .video-btn {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-image .video-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ===== Features CSS ===== */
.features {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-title span {
    font-size: 16px;
  }
}

.section-title h2 {
  font-weight: 600;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 38px;
    line-height: 45px;
  }
}

.section-title p {
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-feature {
  margin-bottom: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-feature:hover {
  background: var(--primary-color);
}

.single-feature:hover .feature-icon {
  background: var(--white);
  color: var(--primary-color);
}

.single-feature:hover .feature-icon::before {
  background: var(--white);
}

.single-feature:hover .feature-title {
  color: var(--white);
}

.single-feature:hover .feature-desc {
  color: var(--white);
  opacity: 0.8;
}

.single-feature .feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-feature .feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.single-feature .feature-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-feature .feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.single-feature .feature-desc {
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== About CSS ===== */
.about {
  background: #f3f4fe;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .about {
    padding: 80px 0;
  }
}

.about-content .section-title {
  margin-bottom: 40px;
}

.about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.about-content .main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.about-image-wrapper {
  text-align: center;
}

.about-image {
  display: inline-block;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-image {
    margin-top: 80px;
  }
}

.about-image .image {
  border-radius: 0px 90px 90px 90px;
}

.about-image .shape {
  position: absolute;
  z-index: -1;
}

.about-image .shape.shape-1 {
  left: -40px;
  top: -40px;
}

.about-image .shape.shape-2 {
  right: -40px;
  bottom: 0;
}

/* ===== Pricing CSS ===== */
.pricing {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .pricing {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-pricing {
  margin-bottom: 40px;
  background: var(--white);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
  padding: 0px 30px 45px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.single-pricing::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 170px;
  background: var(--primary-color);
  opacity: 0.2;
}

.single-pricing.active::after {
  opacity: 1;
}

.single-pricing.active .pricing-header h3,
.single-pricing.active .pricing-header h4 {
  color: var(--white);
}

.single-pricing .pricing-header {
  padding: 50px 0;
}

.single-pricing .pricing-header h3 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
}

.single-pricing .pricing-header h4 {
  font-weight: 600;
  font-size: 32px;
  color: var(--primary-color);
}

.single-pricing .pricing-body {
  margin-top: 40px;
  margin-bottom: 40px;
}

.single-pricing .pricing-body li {
  margin-bottom: 18px;
}

.single-pricing .main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}

.single-pricing .border-btn {
  border: 1px solid #d4deff;
  color: var(--primary-color);
  background: var(--white);
}

.single-pricing .border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}

/* ===== FAQ CSS ===== */
.faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #f3f4fe;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.single-faq {
  background: var(--white);
  border: 1px solid #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
          box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px;
}

.single-faq .faq-icon {
  max-width: 50px;
  width: 100%;
  margin-right: 20px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.single-faq .faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.single-faq .faq-content h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 12px;
}

/* ===== Testimonials CSS ===== */
.testimonials {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .testimonials {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-testimonial {
  padding: 30px;
  -webkit-box-shadow: 0px 0px 25px #ebeffd;
          box-shadow: 0px 0px 25px #ebeffd;
  background: var(--white);
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  border-radius: 12px;
}

.single-testimonial .testimonial-content {
  margin-top: 10px;
  margin-bottom: 25px;
}

.single-testimonial .testimonial-info h4 {
  font-weight: 600;
  font-size: 18px;
}

.single-testimonial .testimonial-info p {
  font-size: 14px;
  color: #969696;
}

.single-testimonial .testimonial-quote {
  position: absolute;
  right: 30px;
  top: -25px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
}

/* ===== Team CSS ===== */
.team {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-team {
  margin-bottom: 40px;
  background: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px 15px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.single-team::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: var(--primary-color);
}

.single-team .team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}

.single-team .team-image {
  border-radius: 50%;
}

.single-team .team-image img {
  width: 100%;
  border-radius: 50%;
}

.single-team .shape {
  position: absolute;
  z-index: -1;
}

.single-team .shape.shape-1 {
  top: 0;
  left: 0;
}

.single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.single-team .team-info {
  text-align: center;
  margin-bottom: 20px;
}

.single-team .team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.single-team .team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

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

.single-team .team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.single-team .team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.contact {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}

.single-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  max-width: 450px;
}

.single-contact-info .contact-icon {
  max-width: 50px;
  width: 100%;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  margin-right: 24px;
}

.single-contact-info .contact-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.single-contact-info .contact-meta{
    width: calc(100% - 90px - 50px);
}
.single-contact-info .contact-meta h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.single-contact-info .contact-meta p {
  font-size: 16px;
  line-height: 28px;
}
.single-contact-info .contact-wechat{
    width: 90px;
}

.contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 50px 40px;
  }
}

.contact-form-wrapper .contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
}

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

.contact-form-wrapper .form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: var(--primary-color);
}

.map-container {
  position: relative;
  margin-top: -120px;
}

/* ===== Footer CSS ===== */
.footer {
  background: var(--heading-color);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.widget {
  margin-bottom: 50px;
}

.widget .footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.widget .footer-logo img {
  width: 100%;
}

.widget .widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 30px;
  max-width: 260px;
}

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

.widget .widget-socials a {
  font-size: 16px;
  color: var(--white);
  opacity: 0.5;
  margin-right: 20px;
}

.widget .widget-socials a:hover {
  opacity: 1;
}

.widget .widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.widget .widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: var(--white);
  opacity: 0.5;
}

.widget .widget-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ====== Blog CSS ====== */
.blog {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .blog {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.single-blog {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  margin-bottom: 30px;
}

.blog-image a {
  display: block;
}

.blog-image a img {
  width: 100%;
}

.blog-image .blog-tag {
  display: inline-block;
  background: var(--heading-color);
  color: var(--white);
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.blog-content {
  background: var(--white);
  padding: 30px 20px;
}

.blog-content h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.blog-content h3 a {
  color: inherit;
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  font-size: 14px;
  line-height: 24px;
}

.blog-content .main-btn {
  padding: 10px 24px;
  margin-top: 20px;
}



/*250603start*/
.news1{
width: 100%;
background: rgb(48, 86, 211); padding:122px 0 36px 0;
}
.news1 .en{
width: 100%; text-align: center;
color: rgb(255, 255, 255);
font-size: 18px;
font-weight: 700;
line-height: 24px;
}
.news1 .zh{
width: 100%; text-align: center;
color: rgb(255, 255, 255);
font-size: 42px;
font-weight: 700;
line-height: 56px;
margin: 12px 0 0 0;
}


@media (max-width:992px) {
.news1{
padding:96px 0 36px 0;
}
.news1 .en{
font-size: 16px;
line-height: 22px;
}
.news1 .zh{
font-size: 32px;
line-height: 40px;
margin: 10px 0 0 0;
}
}





{width: 100%;
color:#637381;
font-size: 14px;
font-weight: 400;
line-height: 24px;
	
	
}


.news2{display: block; width: 100%; padding:40px 0 62px 0;}
.news2 .sect{ display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; width: 100%;}
.news2 .left{ display: block; width: 16.92%;}
.news2 .right{ display: block; width: 78.76%;}
.news2 .right .sect{ display: block; width: 100%;color:#212B36; position: relative; padding: 55px 51px 0 51px;
font-size: 14px;
font-weight: 400;
line-height: 24px;}
.news2 .right .sect::after{left: 0;
top: 0; content: '';
position: absolute;
width: 100%;
height: 348px; z-index: 1;
background: linear-gradient(180.00deg, rgb(243, 244, 254),rgba(243, 244, 254, 0));
border-radius: 4px;
}
.news2 .right .pic{width: 100%; text-align: center;  margin-top: 40px;  position: relative; z-index: 6;   color: #212B36;}
.news2 .right .pic *{font-size:16px; line-height: 26px; }
.news2 .right .title{ display: block; width: 100%;color:#212B36; text-align: center; position: relative; z-index: 6;
font-size: 28px;
font-weight: 400;
line-height: 36px;}
.news2 .right .info{ display: flex; flex-wrap: wrap; justify-content:center; width: 100%;color:#637381; position: relative; z-index: 6;
font-size: 14px;
font-weight: 400; padding: 19px 0 23px 0;
line-height: 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.15);

}
.news2 .right .info .s{ display: flex; align-items: center; margin:5px 16px; cursor: pointer;}
.news2 .right .info .s:first-child{ margin-left:0 !important;}
.news2 .right .info .s:last-child{ margin-right:0 !important;}
.news2 .right .info .s img{ display: block; width: 20px; height: 20px; margin-right: 6px;}
.news2 .right .info .s .bds_more{ display: flex; align-items: center; padding:0 !important; margin:0 !important;font-size: 14px;font-weight: 400;line-height: 20px;color:#637381; background:none !important;}
.news2 .page{
border-top: 1px solid rgba(0, 0, 0, 0.15);
 display:flex; align-items: center; justify-content: space-between; width: 100%; position: relative; padding:24px 0 0 0;margin-top: 40px;}
.news2 .page .a{ display: inline-flex; flex-wrap: wrap; flex-direction: column; color:#212B36;font-size: 14px;line-height: 24px;}
.news2 .page .a span{ width:100%; overflow: hidden;white-space: nowrap; text-overflow:ellipsis; }
.news2 .page .a:hover{ color:#3056D3;}
.news2 .page .a.prev{ width:50%; padding-right:80px;}
.news2 .page .a.next{ width:50%; padding-left:80px; text-align: right;}
.news2 .page .a.renter{ white-space: nowrap; z-index: 6; position: absolute; left:50%; top:50%; transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); padding-top: 24px; background: url(../../assets/images/news/renter.svg) center top no-repeat; background-size:20px auto !important; margin-top:10px; }
.news2 .page .a.renter:hover{ background: url(../../assets/images/news/renter1.svg) center top no-repeat;}
.news2 .right1{ display: block; width: 78.76%;}


@media (max-width:992px) {
.news2 .left{ width: 100%;}
.news2 .right{ width: 100%; margin-top:30px; }
.news2 .right .sect{padding:35px 30px 0 30px;}
.news2 .right .title{font-size: 22px;line-height: 30px; }
.news2 .page{ flex-wrap: wrap;}
.news2 .page .a{ font-size:14px; line-height:24px;}
.news2 .page .a.prev{ width:100%; padding:0 80px 0 0;}
.news2 .page .a.next{ width:100%; padding:0 80px 0 0; text-align: left; margin-top:6px;}
.news2 .page .a.renter{ left:100%; margin-top:12px; transform: translate(-100%,-50%); -ms-transform: translate(-100%,-50%); }
.news2 .right1{ width: 100%; margin-top:30px; }

.news2 .right .pic *{font-size:14px; line-height: 24px;}
}
@media (max-width:567px) {
.news2 .right .info .s:first-child{ justify-content: center; width:100%; margin:6px 6px;}
}


.slide1{ display:block; width: 100%;}
.slide1 .ul{ display:block; width: 100%;}
.slide1 .li{ display:block; width: 100%; margin-bottom:10px; }
.slide1 .li a{ width: 100%; position: relative;
background: rgb(243, 244, 254);
border-radius: 4px;
display: flex;
justify-content: flex-start;
align-items: center;
padding: 13px 16px;
color: rgb(33, 43, 54);
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.slide1 .li a img{ display: block; width: 24px; height: 24px; margin-right: 8px;}
.slide1 .li a .img2{display: none;}
.slide1 .li a::after{content: "";display: none;width: 0;height: 0;position: absolute;left: 100%;top: 50%;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 7px solid #3056D3;
margin-top: -7px;}
.slide1 .li:hover a{ color: #3056D3;}
.slide1 .li.on a{ background:#3056D3;color: #fff;}
.slide1 .li.on a::after{display: block;}
.slide1 .li.on a .img2{display: block;}
.slide1 .li.on a .img1{display: none;}
.open{ display: none; justify-content: center; text-align: center; width: 100%;color: #3056D3;background: rgb(243, 244, 254);/* border: 1px solid rgba(0, 0, 0, 0.15); */border-radius: 4px;
font-size: 14px;
font-weight: 700;padding: 5px 14px;
line-height:32px;}
.open span{ display: inline-flex;}
.open font{ display: none;}
.open span,
.open font{ position: relative; padding-right:20px;}
.open span::after,
.open font::after{ display: block; content:''; position: absolute; right:0; top:50%; width:8px; height:8px; border-top:2px solid #3056D3;border-left:2px solid #3056D3; transform: rotate(-135deg); -ms-transform: rotate(-135deg); margin-top: -5px; }
.open.active span::after,
.open.active font::after{transform: rotate(45deg); -ms-transform: rotate(45deg); margin-top: -2px; }
.open.active span{ display: none;}
.open.active font{ display: inline-flex;}


@media screen and (max-width:992px) {
.slide1 .ul{ display: flex; flex-wrap: wrap; justify-content: space-between;}	
.slide1 .li{ width: 48%; display:none;}	
.slide1 .li a{padding: 10px 14px; font-size:14px;line-height: 22px; }
.slide1 .li a img{ width: 22px; height: 22px; margin-right: 6px;}
.slide1 .li:nth-child(1),
.slide1 .li:nth-child(2),
.slide1 .li:nth-child(3),
.slide1 .li:nth-child(4){ display:block;}	
.slide1.show .li{ display: block;}
.open{ display: flex;}


}





.page_section{width: 100%; padding-top:14px;}
.page_section .pcpage{display: flex;justify-content: center;align-items: center; }
.page_section .pcpage a{display: flex;justify-content: center;align-items: center; width:30px; height:30px; font-size: 16px; line-height: 28px; color: #333; margin:0 5px; border:1px solid #E5E5E5; border-radius:0 !important;}
.page_section .pcpage span{ padding:0 6px;}
.page_section .pcpage a:hover,
.page_section .pcpage a.on{ background:#3056D3; border:1px solid #3056D3; color: #fff;}
.page_section .pcpage .btn1{ margin:0 25px; background: url(../../assets/images/news/Page1.svg) center no-repeat; background-size:auto 24px !important; }
.page_section .pcpage .btn1.on,
.page_section .pcpage .btn1:hover{ background: url(../../assets/images/news/Page2.svg) center no-repeat #3056D3; }
.page_section .pcpage .prev{ margin-left:0; transform: rotateY(180deg); -ms-transform: rotateY(180deg);}
.page_section .pcpage .next{margin-right:26px;}
.page_section .phpage{display: none;}

@media screen and (max-width:992px) {
.page_section .pcpage{display: none;}
.page_section .phpage{display: flex;justify-content: center;align-items: center;}
.page_section .phpage a{width: 30px;height: 30px;display: flex; background: url(../../assets/images/news/Page1.svg) center no-repeat; background-size:auto 24px !important;border:1px solid #E5E5E5;}
.page_section .phpage a:hover{ background: url(../../assets/images/news/Page2.svg) center no-repeat;}
.page_section .phpage span{margin: 0 20px;font-size: 16px;color: #333;}
.page_section .phpage .prev{ transform: rotateY(180deg); -ms-transform: rotateY(180deg);}
}






.nexslist .u1{ display: block; width: 100%;}
.nexslist .u1 .li{ display: block; width: 100%; }
.nexslist .u1 .a{ width: 100%; display: flex; align-items: center; 
background: rgb(255, 255, 255);
border-radius: 8px;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);display: flex;
align-items: center;
padding: 24px 30px;
 margin-bottom: 16px;
}
.nexslist .u1 .a .info{ display: block; width: 100%;}
.nexslist .u1 .a .tit{ width: 100%;
color: rgb(33, 43, 54);
font-size: 18px;
font-weight: 700;
line-height: 30px; overflow: hidden;text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp:1;
}
.nexslist .u1 .a .p{ width: 100%; 
color: rgb(99, 115, 129);
font-size: 14px;
font-weight: 400;
line-height: 24px;
margin: 16px 0 0 0; overflow: hidden;text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp:2;
}
.nexslist .u1 .a .date{ display:inline-flex; flex-direction: column; justify-content:center; align-items: flex-end; min-width:92px; margin-left: 30px; border-left: 1px solid rgba(0,0,0,0.1);
color: rgb(48, 86, 211);
font-size: 16px;
font-weight: 400;
line-height: 20px; height: 94px;
}
.nexslist .u1 .a .date span{ display: inline-flex;
color: rgb(48, 86, 211);
font-size: 24px;
font-weight: 400;
line-height: 18px; margin-bottom: 16px;
}
.nexslist .u1 .a:hover .tit{
color: rgb(48, 86, 211);
}

@media screen and (max-width:767px) {
.nexslist .u1 .a{ flex-wrap: wrap; padding:20px 16px;box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
 margin-bottom: 16px;}	
 .nexslist .u1 .a .tit{ 
 font-size: 16px;
 line-height:26px;
 }
.nexslist .u1 .a .p{ margin-top:8px;}
.nexslist .u1 .a .date{ min-width:initial; flex-direction: row; margin:15px 0 0 0; padding:15px 0 0 0 ;
font-size: 14px; justify-content: flex-start;
line-height: 20px; height: auto; border-left:0; border-top: 1px solid rgba(0,0,0,0.1);
}
.nexslist .u1 .a .date span{
font-size: 20px;
line-height: 20px; margin:0 8px 0 0;
}

}




.mbx1{ display: block; color:#212B36;font-size:14px; line-height:24px; padding:6px 0 20px 0;}
.mbx1 a{ color: #212B36;}
.mbx1 i{ padding:0 6px;}
.mbx1 a:hover{ color: #3056D3; text-decoration: underline;}

@media screen and (max-width:992px) {
.mbx1{ display:none;}
}


/*250603end*/



/*250609start*/
.news2 .left{position: sticky;top: 115px;}
.nexslist .u1 .a{ align-items: flex-start;}
.nexslist .u1 .a .date{ min-width: inherit; padding:0 0 0 30px; white-space: nowrap;}
.nexslist .u1 .a .date span{ font-size:20px;margin-bottom: 14px;}
.news2 .right .pic{ width:100%;padding:0 12.9%;}

@media screen and (max-width:992px) {
.news2 .left{position: static;top: 0;}
}
@media screen and (max-width:767px) {
.nexslist .u1 .a .date{ min-width: inherit;padding: 15px 0 0 0;}
.nexslist .u1 .a .date span{ font-size:18px;margin-bottom:0;}
.news2 .right .pic{ width:100%;  padding:0;}
}



/*250609end*/



/* 250611start */
@media (max-width:992px) {
.news2 .right .sect {padding: 35px 0 0 0;}
.news2 .right .title{padding:0 30px;}
.news2 .right .info{width:-webkit-calc(100% - 60px); width:-moz-calc(100% - 60px); width:calc(100% - 60px); margin-left: 30px; margin-right:30px; }
}
@media (max-width:567px) {
.news2 .right .info{ justify-content:space-around;}	
.news2 .right .info .bdsharebuttonbox{ display:none;}
.news2 .right .info .s:first-child{ width: auto;}
.news2 .right .info .s{ margin:6px 0;}
}


/* 250611end */




