
/*Default css*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: clip;
}

p, span {
  font-family: "Microsoft YaHei";
}

h1, h2, h3, h4, h5, a {
  font-family: "Microsoft YaHei";
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

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

.container-fluid {
  max-width: 1180px;
}

/*Preloader*/
.pre-loader {
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.pre-loader div {
  background: rgb(255, 255, 255);
  width: 18px;
  height: 50px;
  margin-left: 10px;
  animation: loader 1.2s infinite;
}

@keyframes loader {
  50% {
    height: 84px;
  }
}
.pre-loader div:nth-child(1) {
  background: #034FFD;
  animation-delay: -0.4s;
  border-radius: 1px;
}

.pre-loader div:nth-child(2) {
  background: #d7398e;
  animation-delay: -0.2s;
  border-radius: 1px;
}

.pre-loader div:nth-child(3) {
  background: #020234;
  animation-delay: 0s;
  border-radius: 1px;
}

#back-to-topbtn {
  position: fixed;
  bottom: 20px;
  right: 24px;
  height: 50px;
  width: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  cursor: pointer;
  z-index: 999;
}

#progress-value {
  display: block;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
}
#progress-value i {
  font-size: 19px;
  color: #000E58;
}

/*******Animation code start********/
/*Ripple animatin one*/
.ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 250, 250, 0.6);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.ripple::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 53px;
  height: 53px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 250, 250, 0.6);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.ripple:after {
  animation-delay: 0.5s;
  content: "";
  position: absolute;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*Ripple one end*/
/*Ripple yellow start*/
.ripple-yellow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 51px;
  height: 51px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 #d7398e;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.ripple-yellow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 51px;
  height: 51px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 #d7398e;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.ripple-yellow:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.ripple-yellow:after {
  animation-delay: 0.5s;
  content: "";
  position: absolute;
}

@keyframes ripple-yellow {
  70% {
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*Ripple yellow end*/
/*Icon tada animation*/
.cta-animation {
  animation: cta-animation 1.5s ease-in-out infinite;
}

@keyframes cta-animation {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/*****Smooth zigzag animgaiton*******/
.smooth-zigzag-animation-2 {
  animation: smooth-zigzag-2 3.8s linear infinite;
}

@keyframes smooth-zigzag-2 {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translate(-10px, -10px);
  }
  50% {
    transform: translate(-5px, -5px);
  }
  75% {
    transform: translate(-10px, 5px);
  }
}
/**Dance animation****/
.dance {
  animation: dance 2.5s alternate infinite;
}

@keyframes dance {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}
/*Line animation*/
@keyframes MOVIE-BG {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
/*******Animation code end********/
/*Topbar v1 start*/
.top-bar {
  background-color: #020234;
  padding-top: 12px;
  padding-bottom: 12px;
}
.top-bar .topbar-slogan {
  color: white;
  font-size: 16px;
  font-weight: 400;
}
.top-bar .right-box .phone-box {
  align-items: center;
  border-right: 2px solid #043f83;
  padding-right: 25px;
}
.top-bar .right-box .phone-box i {
  color: #d7398e;
  padding-right: 7px;
}
.top-bar .right-box .phone-box p {
  color: white;
}
.top-bar .right-box .phone-box p span {
  font-weight: 500;
  padding-left: 8px;
  font-size: 16px;
}
.top-bar .right-box .mail-box {
  align-items: center;
  border-right: 2px solid #043f83;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: 25px;
}
.top-bar .right-box .mail-box i {
  color: #d7398e;
  padding-right: 7px;
}
.top-bar .right-box .mail-box p {
  color: white;
}
.top-bar .right-box .mail-box p span {
  font-weight: 500;
  padding-left: 8px;
  font-size: 16px;
}
.top-bar .right-box .social-link {
  display: flex;
  gap: 13px;
}
.top-bar .right-box .social-link a{
  color: #fff;
}
.top-bar .right-box .social-link a i {
  color: white;
  transition: 0.45s ease;
}
.top-bar .right-box .social-link a i:hover {
  transform: rotate(360deg);
}

/*Header Navbar v1 start*/
.sticky-top {
  top: -120px;
  transition: 500ms;
}

.header-nav .menu-bar {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header-nav .menu-bar .menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 14px 0;
}
.header-nav .menu-bar .menu-content .main-logo {
  max-width: 175px;
}
.header-nav .menu-bar .menu-content .main-logo a img {
  padding-bottom: 2px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list {
  gap: 35px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li {
  position: relative;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a {
  color: #010030;
  font-size: 16px;
  font-weight: 600;
  line-height: 83px;
  position: relative;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a:hover::before {
  width: 97%;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #034FFD;
  transition: all 0.5s;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a i {
  font-size: 12px;
  padding-left: 2px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one {
  border-top: 3px solid #034FFD;
  background: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-width: 240px;
  padding-bottom: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  transition: 0.5s ease;
  z-index: 10;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li:not(:last-child) {
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li {
  margin-bottom: 0;
  padding: 10px 10px;
  transition: 0.45s ease;
  position: relative;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #034FFD;
  left: 14px;
  top: 19px;
  border-radius: 50%;
  transition: 0.45s ease;
  opacity: 0;
  visibility: hidden;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li:hover::before {
  opacity: 1;
  visibility: visible;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li:hover {
  padding-left: 18px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li a {
  transition: 0.35s ease;
  color: #010030;
  font-size: 15px;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 5px;
  line-height: normal;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li a::before {
  background-color: transparent;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon {
  position: absolute;
  z-index: 999;
  top: 16px;
  right: 196px;
  overflow: hidden;
  width: 50px;
  height: 44px;
  padding: 4px 8px;
  border-radius: 3px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  box-sizing: border-box;
  cursor: pointer;
  display: none;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #034FFD;
  margin: 6px 0;
  transition: 0.5s;
  border-radius: 3px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span {
  position: absolute;
  width: calc(100% - 16px);
  top: calc(50% - 8px);
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span:nth-child(1) {
  transform: rotate(45deg);
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span:nth-child(2) {
  display: none;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu.active {
  left: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu {
  -webkit-backdrop-filter: blur(14px) saturate(180%);
          backdrop-filter: blur(14px) saturate(180%);
  padding: 30px 17px;
  background-color: rgba(255, 255, 255, 0.9176470588);
  display: inline-block;
  position: fixed;
  z-index: 9;
  left: -290px;
  top: 0;
  width: 290px;
  height: 100vh;
  overflow-y: auto;
  transition: 0.45s ease-in-out;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul {
  margin-top: 35px;
  border-top: 1px solid #DFDFED;
  padding-top: 8px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li {
  line-height: 1.8;
  border-bottom: 1px solid #DFDFED;
  padding-bottom: 7px;
  margin-bottom: 7px;
  position: relative;
  transition: 0.45s ease;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li:hover a i {
  background-color: #d7398e;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li a {
  color: #000E39;
  font-weight: 600;
  font-size: 15px;
  transition: 0.45s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li a i {
  font-size: 12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 2px;
  background-color: #034FFD;
  color: white;
  transform: rotate(-90deg);
  transition: 0.35s ease;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-top: 3px solid #034FFD;
  padding-top: 0;
  min-width: 220px;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease;
  z-index: 10;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li:not(:last-child) {
  border-bottom: 1px solid #DFDFED;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li {
  margin-bottom: 0;
  padding: 8px 15px;
  transition: 0.45s ease;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li:hover {
  padding-left: 15px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li a {
  transition: 0.35s ease;
  color: #000E39;
  font-size: 15px;
  font-weight: 600;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  background-color: white;
  border: 1px solid rgba(165, 158, 158, 0.2);
  display: block;
  transition: 0.35s ease;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a:hover {
  background-color: #034FFD;
  color: white;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a:hover i {
  color: white;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a i {
  font-size: 15px;
  color: #020234;
  transition: 0.35s ease;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .appointment-btn {
  margin-top: 45px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .appointment-btn a {
  padding: 12px 25px;
  background-color: #034FFD;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .phone-number {
  margin-top: 34px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .phone-number i {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  background-color: #034FFD;
  color: white;
  border-radius: 50%;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .phone-number span {
  font-size: 15px;
  font-weight: 600;
  padding-left: 5px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .email {
  margin-top: 20px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .email i {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: #034FFD;
  color: white;
  border-radius: 50%;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .email span {
  font-size: 14px;
  font-weight: 600;
  padding-left: 5px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .address {
  margin-top: 20px;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .address i {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  background-color: #034FFD;
  color: white;
  border-radius: 50%;
}
.header-nav .menu-bar .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .address span {
  font-size: 15px;
  font-weight: 600;
  padding-left: 5px;
}
.header-nav .menu-bar .menu-content .topbar-cta {
  text-align: end;
}
.header-nav .menu-bar .menu-content .topbar-cta a {
  background-color: #034FFD;
  padding: 15px 30px;
  border-radius: 4px;
  color: white;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  font-family: "Microsoft YaHei";
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.header-nav .menu-bar .menu-content .topbar-cta a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header-nav .menu-bar .menu-content .topbar-cta a::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}

/*Header Navbar end*/
/*Topbar v2 start*/
.top-bar-v2 {
  padding: 17px 0;
  padding-bottom: 60px;
  background-color: #00044B;
}
.top-bar-v2 .address-box span {
  color: white;
}
.top-bar-v2 .address-box span i {
  color: #00A3FD;
  padding-right: 7px;
}
.top-bar-v2 .left-box .top-bar-social {
  text-align: end;
}
.top-bar-v2 .left-box .top-bar-social .title {
  padding-right: 5px;
  color: white;
}
.top-bar-v2 .left-box .top-bar-social a {
  padding-right: 8px;
}
.top-bar-v2 .left-box .top-bar-social a i {
  font-size: 16px;
  color: #00A3FD;
}
.top-bar-v2 .right-box {
  text-align: end;
}
.top-bar-v2 .right-box .contact-info {
  display: flex;
  justify-content: end;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-v2 .right-box .contact-info li:not(:last-child) {
  border-right: 2px solid #38396d;
  padding-right: 16px;
}
.top-bar-v2 .right-box .contact-info li a {
  color: white;
}
.top-bar-v2 .right-box .contact-info li a i {
  font-size: 16px;
  padding-right: 6px;
  color: #00A3FD;
}

/*Topbar v2 end*/
/*Header Navbar v2 start*/
.sticky-header {
  animation-name: fadeInDown;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
  animation-fill-mode: both;
  position: fixed !important;
  top: 42px;
  right: 0;
  left: 0;
  border-radius: 0 !important;
  max-width: 100% !important;
  z-index: 999;
}

.header-nav-v2 {
  max-width: 1180px;
  margin: auto;
  border-radius: 4px;
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: -42px;
  z-index: 999;
  position: relative;
}
.header-nav-v2 .menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 12px;
}
.header-nav-v2 .menu-content .main-logo a img {
  width: 100%;
  padding-bottom: 4px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list {
  gap: 35px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li {
  position: relative;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a {
  color: #010030;
  font-size: 16px;
  font-weight: 600;
  line-height: 86px;
  position: relative;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a:hover::before {
  width: 97%;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #034FFD;
  transition: all 0.5s;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li a i {
  font-size: 12px;
  padding-left: 2px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one {
  border-top: 3px solid #034FFD;
  background: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-width: 240px;
  padding-bottom: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  transition: 0.5s ease;
  z-index: 10;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li:not(:last-child) {
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li {
  margin-bottom: 0;
  padding: 10px 10px;
  transition: 0.45s ease;
  position: relative;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #034FFD;
  left: 14px;
  top: 19px;
  border-radius: 50%;
  transition: 0.45s ease;
  opacity: 0;
  visibility: hidden;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li:hover::before {
  opacity: 1;
  visibility: visible;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li:hover {
  padding-left: 18px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li a {
  transition: 0.35s ease;
  color: #010030;
  font-size: 15px;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 5px;
  line-height: normal;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .desktop-menu .menu-list .drop-down-menu-one li a::before {
  background-color: transparent;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon {
  position: absolute;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  overflow: hidden;
  width: 50px;
  height: 44px;
  padding: 4px 8px;
  border-radius: 3px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  box-sizing: border-box;
  cursor: pointer;
  display: none;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #034FFD;
  margin: 6px 0;
  transition: 0.5s;
  border-radius: 3px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span {
  position: absolute;
  width: calc(100% - 16px);
  top: calc(50% - 8px);
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span:nth-child(1) {
  transform: rotate(45deg);
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span:nth-child(2) {
  display: none;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .hamberger-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu.active {
  left: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu {
  -webkit-backdrop-filter: blur(10px) saturate(180%);
          backdrop-filter: blur(10px) saturate(180%);
  padding: 30px 17px;
  background-color: white;
  opacity: 0.99;
  display: inline-block;
  position: fixed;
  z-index: 9;
  left: -290px;
  top: 0;
  width: 290px;
  height: 100vh;
  overflow-y: auto;
  transition: 0.45s ease-in-out;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul {
  margin-top: 35px;
  border-top: 1px solid #DFDFED;
  padding-top: 8px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li {
  line-height: 1.8;
  border-bottom: 1px solid #DFDFED;
  padding-bottom: 7px;
  margin-bottom: 7px;
  position: relative;
  transition: 0.45s ease;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li:hover a i {
  background-color: #d7398e;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li a {
  color: #000E39;
  font-weight: 600;
  font-size: 15px;
  transition: 0.45s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li a i {
  font-size: 12px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 2px;
  background-color: #034FFD;
  color: white;
  transform: rotate(-90deg);
  transition: 0.35s ease;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-top: 3px solid #034FFD;
  padding-top: 0;
  min-width: 220px;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease;
  z-index: 10;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li:not(:last-child) {
  border-bottom: 1px solid #DFDFED;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li {
  margin-bottom: 0;
  padding: 8px 15px;
  transition: 0.45s ease;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li:hover {
  padding-left: 15px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu ul li .drop-down-menu-mobile li a {
  transition: 0.35s ease;
  color: #000E39;
  font-size: 15px;
  font-weight: 600;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  background-color: white;
  border: 1px solid rgba(165, 158, 158, 0.2);
  display: block;
  transition: 0.35s ease;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a:hover {
  background-color: #034FFD;
  color: white;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a:hover i {
  color: white;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .social-link a i {
  font-size: 15px;
  color: #020234;
  transition: 0.35s ease;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .appointment-btn {
  margin-top: 45px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .appointment-btn a {
  padding: 12px 25px;
  background-color: #034FFD;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .phone-number {
  margin-top: 34px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .phone-number i {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  background-color: #034FFD;
  color: white;
  border-radius: 50%;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .phone-number span {
  font-size: 15px;
  font-weight: 600;
  padding-left: 5px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .email {
  margin-top: 20px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .email i {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: #034FFD;
  color: white;
  border-radius: 50%;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .email span {
  font-size: 15px;
  font-weight: 600;
  padding-left: 5px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .address {
  margin-top: 20px;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .address i {
  font-size: 12px;
  width: 28px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  background-color: #034FFD;
  color: white;
  border-radius: 50%;
}
.header-nav-v2 .menu-content .main-menu .desktop-menu-wrapper .mobile-menu .address span {
  font-size: 15px;
  font-weight: 600;
  padding-left: 5px;
}
.header-nav-v2 .menu-content .topbar-cta {
  text-align: end;
}
.header-nav-v2 .menu-content .topbar-cta a {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  padding: 15px 30px;
  border-radius: 4px;
  color: white;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  font-family: "Microsoft YaHei";
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.header-nav-v2 .menu-content .topbar-cta a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header-nav-v2 .menu-content .topbar-cta a::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #0026E2;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}

/*Header Navbar end v2*/
/****Home v1 start*******/
/*Banner slider v1 start*/
.banner-area-slider .banner-content {
  position: relative;
}
.banner-area-slider .banner-content .next-arrow {
  position: absolute;
  top: 41%;
  right: 30px;
  color: #034FFD;
  font-size: 24px;
  cursor: pointer;
  transition: 0.35s ease;
  width: 55px;
  height: 55px;
  line-height: 57px;
  -webkit-backdrop-filter: blur(6px) saturate(180%);
          backdrop-filter: blur(6px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.397);
  z-index: 2;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  text-align: center;
  border-radius: 50%;
  transition: 0.45s ease;
}
.banner-area-slider .banner-content .prev-arrow {
  position: absolute;
  top: 51%;
  right: 30px;
  color: #034FFD;
  font-size: 24px;
  cursor: pointer;
  transition: 0.35s ease;
  width: 55px;
  height: 55px;
  line-height: 57px;
  -webkit-backdrop-filter: blur(6px) saturate(180%);
          backdrop-filter: blur(6px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.384);
  z-index: 2;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  text-align: center;
  border-radius: 50%;
  transition: 0.45s ease;
}
.banner-area-slider .banner-content .slick-active .banner-content h5 {
  animation-name: flipInX;
  animation-duration: 1.5s;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}
.banner-area-slider .banner-content .slick-active .banner-content h2 {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.banner-area-slider .banner-content .slick-active .banner-content p {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
  animation-fill-mode: both;
}
.banner-area-slider .banner-content .slick-active .banner-content .btn-area {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 1.8s;
  animation-fill-mode: both;
}
.banner-area-slider .banner-content .single-slider {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.banner-area-slider .banner-content .single-slider::before {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(0 0, 58% 0, 50% 100%, 0% 100%);
          clip-path: polygon(0 0, 58% 0, 50% 100%, 0% 100%);
  background: linear-gradient(87deg, rgba(4, 4, 53, 0.925) 0%, rgba(4, 4, 53, 0.767) 63%, rgba(13, 5, 87, 0.11) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-area-slider .banner-content .single-slider .banner-content {
  padding-top: 220px;
  padding-bottom: 220px;
  z-index: 9;
  position: relative;
}
.banner-area-slider .banner-content .single-slider .banner-content h5 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  padding-left: 52px;
  position: relative;
  font-family:"Microsoft YaHei";
}
.banner-area-slider .banner-content .single-slider .banner-content h5::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 6.7px;
}
.banner-area-slider .banner-content .single-slider .banner-content h5::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 10.8px;
}
.banner-area-slider .banner-content .single-slider .banner-content h2 {
  font-weight: 800;
  font-size: 55px;
  color: white;
  text-transform: capitalize;
  line-height: 1.2;
  margin-top: 15px;
}
.banner-area-slider .banner-content .single-slider .banner-content p {
  max-width: 600px;
  color: white;
  line-height: 1.7;
  margin-top: 20px;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area {
  gap: 25px;
  flex-wrap: wrap-reverse;
  margin-top: 35px;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-one {
  padding: 13px 25px;
  padding-top: 14.1px;
  background-color: #034FFD;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-one i {
  padding-left: 10px;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-one::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-one:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-one::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-two {
  gap: 10px;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-two .play-icon {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 59px;
  text-align: center;
  background: #d7398e;
  padding-left: 4px;
  position: relative;
  z-index: 2;
  transition: 0.45s ease;
  cursor: pointer;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-two .play-icon:hover {
  background: white;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-two .play-icon i {
  color: #000E39;
  font-size: 22px;
}
.banner-area-slider .banner-content .single-slider .banner-content .btn-area .btn-two h6 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/*Banner slider end*/
/*Appointment form v1 start*/
.appointment-form {
  background-color: #d7398e;
  padding: 55px 50px;
  max-width: 1160px;
  margin: auto;
  margin-top: -55px;
  border-radius: 5px;
  z-index: 9;
  position: relative;
}
.appointment-form .row {
  --bs-gutter-y: 1rem;
}
.appointment-form h4 {
  font-size: 28px;
  font-weight: 700;
  color: #010030;
  margin-bottom: 5px;
  padding-left: 52px;
  position: relative;
  font-family:"Microsoft YaHei";
}
.appointment-form h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 9px;
  top: 10px;
}
.appointment-form h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 4px;
  top: 16px;
}
.appointment-form input {
  padding: 17px 20px;
  width: 100%;
  border-radius: 5px;
  background-color: #FFF0CC;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  font-family:"Microsoft YaHei";
}
.appointment-form ::-moz-placeholder {
  color: #666666;
}
.appointment-form ::placeholder {
  color: #666666;
}
.appointment-form .nice-select.open .list {
  width: 250px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.appointment-form .nice-select {
  background-color: #FFF0CC;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  height: 59px;
  line-height: 57px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  border: none;
}
.appointment-form .nice-select .ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.appointment-form .nice-select .option {
  font-weight: 400;
  font-family: "Microsoft YaHei";
  color: #010030;
  font-size: 15px;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
}
.appointment-form .nice-select li.option.selected.focus {
  background-color: #DFDFED !important;
}
.appointment-form .nice-select span {
  color: #707070;
  font-weight: 500;
  font-size: 15px;
}
.appointment-form button {
  padding: 15px 20px;
  width: 100%;
  border-radius: 5px;
  border: none;
  background-color: #034FFD;
  color: white;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.appointment-form button::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.appointment-form button:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.appointment-form button::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #000025;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.appointment-form button i {
  padding-left: 10px;
  font-size: 15px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  content: "R";
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
  background: rgba(3, 78, 253, 0.7529411765);
  border-radius: 50%;
}

/*Appointment form end*/
/*About Section v1 Start*/
.about-section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.about-section .container-fluid .row {
  --bs-gutter-x: 3.8rem;
}
.about-section .left-content {
  position: relative;
}
.about-section .left-content .img-box {
  gap: 20px;
}
.about-section .left-content .img-box .img-one {
  width: 355px;
  margin-top: 30px;
}
.about-section .left-content .img-box .img-one img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .left-content .counter-content-x {
  padding: 30px 20px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  width: 270px;
  height: 150px;
  position: absolute;
  right: -0.5px;
  bottom: 40px;
  background-color: white;
}
.about-section .left-content .counter-content-x .counter-icon {
  padding-right: 18px;
}
.about-section .left-content .counter-content-x .counter-icon i {
  font-size: 40px;
  color: rgb(25, 214, 228);
}
.about-section .left-content .counter-content-x .counter-content .time-box {
  gap: 5px;
}
.about-section .left-content .counter-content-x .counter-content .time-box h4 {
  font-size: 37px;
  font-weight: 700;
  color: #020234;
  margin: 0;
}
.about-section .left-content .counter-content-x .counter-content .time-box span {
  font-weight: 700;
  font-size: 26px;
  color: #FFCD05;
}
.about-section .left-content .counter-content-x .counter-content .main-title {
  font-size: 17px;
  font-weight: 600;
  color: #010030;
}
.about-section .left-content .dot-grid {
  position: absolute;
  left: -186px;
  top: -157px;
  z-index: -1;
  width: 400px;
}
.about-section .left-content .dot-grid img {
  width: 100%;
}
.about-section .right-content h3 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  color: #010030;
  padding-left: 50px;
  font-family: "Microsoft YaHei";
}
.about-section .right-content h3::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: 9px;
  top: 6.7px;
}
.about-section .right-content h3::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: 4px;
  top: 10.8px;
}
.about-section .right-content h3 span {
  color: #034FFD;
  position: relative;
}
.about-section .right-content h3 span::after {
  position: absolute;
  content: "";
  width: 130px;
  height: 50px;
  border: 3px solid #034FFD;
  position: absolute;
  bottom: -54px;
  right: -27px;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-clip-path: circle(45.4% at 50% 0);
          clip-path: circle(45.4% at 50% 0);
}
.about-section .right-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #010030;
  line-height: 1.3;
  margin-top: 22px;
}
.about-section .right-content p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin-top: 22px;
}
.about-section .right-content .progress-area {
  width: 100%;
  max-width: 860px;
  margin-top: 34px;
}
.about-section .right-content .progress-area .progressbar-item {
  margin-bottom: 28px;
  max-width: 475px;
}
.about-section .right-content .progress-area .progress-bar {
  margin: 0 0 10px;
  overflow: visible;
  background: transparent;
}
.about-section .right-content .progress-area .progress-number {
  padding-bottom: 2px;
  position: relative;
  margin: 2px 0;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}
.about-section .right-content .progress-area .progress-title {
  z-index: 100;
  font-size: 16px;
  font-weight: 600;
  color: #010030;
  font-family: "Microsoft YaHei";
  margin: 0;
  text-transform: capitalize;
}
.about-section .right-content .progress-area .progress-number-mark {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 6px 7px 5px;
  border-radius: 3px;
  color: white;
  margin-bottom: 4px;
  border-radius: 3px;
  background: #d7398e;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
}
.about-section .right-content .progress-area .down-arrow {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #d7398e;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.about-section .right-content .progress-area .progress-bg {
  height: 9px;
  background: #DFDFED;
  overflow: hidden;
  border-radius: 2px;
}
.about-section .right-content .progress-area .progress-fill {
  height: 9px;
  background: #034FFD;
  width: 0%;
}
.about-section .right-content .btn-area {
  margin-top: 43px;
}
.about-section .right-content .btn-area a {
  padding: 15px 28px;
  font-size: 17px;
  font-weight: 500;
  background-color: #034FFD;
  color: white;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.about-section .right-content .btn-area a i {
  padding-left: 10px;
}
.about-section .right-content .btn-area a::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.about-section .right-content .btn-area a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.about-section .right-content .btn-area a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}

/*About Section end*/
/*Services Section v1 start*/
.services-section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-color: #F2F5F9;
}
.services-section .top-box .title-box {
  max-width: 500px;
  text-align: center;
  margin: auto;
  padding-bottom: 35px;
  position: relative;
  z-index: 5;
}
.services-section .top-box .title-box h4 {
  font-size: 18px;
  font-weight: 500;
  color: #034FFD;
  position: relative;
  display: inline;
  padding-left: 52px;
  font-family: "Microsoft YaHei";
}
.services-section .top-box .title-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 7px;
}
.services-section .top-box .title-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 12px;
}
.services-section .top-box .title-box h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
  margin-top: 14px;
  margin-left: 2px;
  color: #010030;
}
.services-section .services-list {
  z-index: 9;
  /* Slick slide css */
}
.services-section .services-list .slick-slide {
  margin: 15px 14px;
  z-index: 9;
}
.services-section .services-list .slick-list {
  margin: 0 -10px;
}
.services-section .services-list .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
}
.services-section .services-list .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.services-section .services-list .slick-dots li button {
  background: #010030;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.services-section .services-list .slick-dots li button:hover {
  width: 22px;
}
.services-section .services-list .slick-dots li.slick-active button {
  background-color: #034FFD;
  width: 28px;
}
.services-section .services-list .single-service {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  transition: 0.45s ease;
  padding: 60px 40px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.services-section .services-list .single-service::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 3px;
  background-color: #034FFD;
}
.services-section .services-list .single-service::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: 5px;
  transition: 0.45s ease;
}
.services-section .services-list .single-service:hover::before {
  background-color: #020234;
  opacity: 0.75;
}
.services-section .services-list .single-service:hover .service-content .icon-box {
  animation: zoomIn 0.8s ease;
  background-color: white;
}
.services-section .services-list .single-service:hover .service-content h2 {
  color: white;
  animation: slideInUp ease 0.8s;
}
.services-section .services-list .single-service:hover .service-content p {
  color: white;
  animation: slideInUp 1s ease;
}
.services-section .services-list .single-service:hover .service-content .btn-area a {
  color: white;
}
.services-section .services-list .single-service .service-content {
  z-index: 3;
  position: relative;
  text-align: left;
}
.services-section .services-list .single-service .service-content .icon-box {
  width: 85px;
  height: 85px;
  line-height: 78px;
  text-align: center;
  transition: 0.45s ease;
  box-shadow: rgba(1, 25, 92, 0.116) 0px 0px 50px 0px;
  background-color: #ebf2ff;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}
.services-section .services-list .single-service .service-content .icon-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 38px;
  height: 38px;
  display: inline;
}
.services-section .services-list .single-service .service-content h2 {
  font-size: 23px;
  font-weight: 700;
  margin-top: 28px;
  transition: 0.45s ease;
  text-transform: capitalize;
  color: #010030;
  font-family: "Microsoft YaHei";
}
.services-section .services-list .single-service .service-content p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-top: 30px;
}
.services-section .services-list .single-service .service-content .btn-area {
  margin-top: 40px;
}
.services-section .services-list .single-service .service-content .btn-area a {
  text-transform: uppercase;
  color: #010030;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  transition: 0.45s ease;
  position: relative;
  z-index: 2;
  padding-left: 22px;
}
.services-section .services-list .single-service .service-content .btn-area a:hover::before {
  background-color: #d7398e;
}
.services-section .services-list .single-service .service-content .btn-area a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: #77a0ff;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  transition: 0.35s ease-in-out;
}
.services-section .services-list .single-service .service-content .btn-area a i {
  padding-left: 7px;
  font-size: 14px;
}

/*Services Section end*/
/*Why choose us v1 section Start*/
.why-choose-us {
  margin-top: 100px;
  margin-bottom: 100px;
}
.why-choose-us .container-fluid .row {
  --bs-gutter-x: 5rem;
}
.why-choose-us .left-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #034FFD;
  text-transform: capitalize;
  position: relative;
  padding-left: 55px;
  margin-bottom: 0;
  font-family: "Microsoft YaHei";
}
.why-choose-us .left-content h5::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: 9px;
  top: 6.7px;
}
.why-choose-us .left-content h5::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: 4px;
  top: 10.8px;
}
.why-choose-us .left-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #010030;
  margin-top: 20px;
  line-height: 1.4;
  margin-bottom: 0;
  text-transform: capitalize;
}
.why-choose-us .left-content h2 span {
  color: #034FFD;
  font-family:"Microsoft YaHei";
}
.why-choose-us .left-content p {
  color: #666666;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 500px;
}
.why-choose-us .left-content .feature-list-box {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}
.why-choose-us .left-content .feature-list-box .left-box .single-feature {
  margin-bottom: 20px;
}
.why-choose-us .left-content .feature-list-box .left-box .single-feature i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  background-color: #F2F5F9;
  color: #034FFD;
  border-radius: 50%;
}
.why-choose-us .left-content .feature-list-box .left-box .single-feature span {
  font-size: 17px;
  font-weight: 600;
  color: #0b032b;
  padding-left: 6px;
}
.why-choose-us .left-content .feature-list-box .right-box .single-feature {
  margin-bottom: 20px;
}
.why-choose-us .left-content .feature-list-box .right-box .single-feature i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  background-color: #F2F5F9;
  color: #034FFD;
  border-radius: 50%;
}
.why-choose-us .left-content .feature-list-box .right-box .single-feature span {
  font-size: 17px;
  font-weight: 600;
  color: #0b032b;
  padding-left: 6px;
}
.why-choose-us .left-content .btn-wrape-choose {
  margin-top: 25px;
  padding-top: 30px;
  border-top: 1px solid rgba(165, 158, 158, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}
.why-choose-us .left-content .btn-wrape-choose .btn-one a {
  padding: 15px 33px;
  padding-bottom: 16px;
  border-radius: 4px;
  background-color: #034FFD;
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.why-choose-us .left-content .btn-wrape-choose .btn-one a::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.why-choose-us .left-content .btn-wrape-choose .btn-one a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.why-choose-us .left-content .btn-wrape-choose .btn-one a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.why-choose-us .left-content .btn-wrape-choose .btn-one a i {
  padding-left: 10px;
}
.why-choose-us .left-content .btn-wrape-choose .about-one__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.why-choose-us .left-content .btn-wrape-choose .about-one__call .about-one__call-icon {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid rgba(165, 158, 158, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #034FFD;
  font-size: 20px;
  transition: all 500ms ease;
}
.why-choose-us .left-content .btn-wrape-choose .about-one__call .about-one__call-content {
  position: relative;
  margin-left: 10px;
  top: -2px;
}
.why-choose-us .left-content .btn-wrape-choose .about-one__call .about-one__call-content a {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  transition: all 500ms ease;
}
.why-choose-us .left-content .btn-wrape-choose .about-one__call .about-one__call-content p {
  font-size: 14px;
  line-height: 16px;
  margin-top: 0;
}
.why-choose-us .right-content .img-box {
  position: relative;
  margin-top: 25px;
}
.why-choose-us .right-content .img-box img {
  border-radius: 0 90px 0 90px;
  width: 100%;
  transform: translateX(-16px);
}
.why-choose-us .right-content .img-box::before {
  position: absolute;
  content: "";
  width: 530px;
  height: 570px;
  border-radius: 0 90px 0 0;
  right: -39px;
  top: -36px;
  background-color: #034FFD;
  z-index: -1;
}

/*Why choose us section End*/
/*Team member v1 Section start*/
.team-member-section {
  background-color: #F2F5F9;
  padding-top: 100px;
  padding-bottom: 100px;
}
.team-member-section .top-title {
  text-align: center;
  max-width: 500px;
  margin: auto;
  padding-bottom: 30px;
}
.team-member-section .top-title span {
  color: #010030;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}
.team-member-section .top-title span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -33px;
  top: 6.6px;
}
.team-member-section .top-title span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -37px;
  top: 10.8px;
}
.team-member-section .top-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #010030;
  margin-top: 7px;
}
.team-member-section .team-member .slick-slide {
  margin: 17px 16px;
}
.team-member-section .team-member .slick-list {
  margin: 0 -10px;
}
.team-member-section .team-member .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
}
.team-member-section .team-member .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.team-member-section .team-member .slick-dots li button {
  background: #020234;
  width: 8px;
  height: 8px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.team-member-section .team-member .slick-dots li button:hover {
  width: 22px;
}
.team-member-section .team-member .slick-dots li.slick-active button {
  background-color: #034FFD;
  width: 28px;
}
.team-member-section .team-member .team-single {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.3s ease-in;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.team-member-section .team-member .team-single:hover .title-box .social-link li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.team-member-section .team-member .team-single:hover .title-box .icon i {
  transform: rotate(45deg);
}
.team-member-section .team-member .team-single:hover .img-wrapper .img-box::before {
  transform: perspective(400px) rotateX(0);
  opacity: 0.4;
}
.team-member-section .team-member .team-single .img-wrapper {
  border: 4px solid white;
  position: relative;
}
.team-member-section .team-member .team-single .img-wrapper::before {
  position: absolute;
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  z-index: 2;
  width: calc(100% + 20px);
  height: 40px;
  -webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
  background-color: #034FFD;
}
.team-member-section .team-member .team-single .img-wrapper::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -5px;
  width: calc(100% + 20px);
  height: 40px;
  -webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
  background-color: white;
  z-index: 2;
}
.team-member-section .team-member .team-single .img-wrapper .img-box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0d0531;
  transition: 0.45s ease;
  transition-duration: 0.6s;
  transition-property: all;
  opacity: 0;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
}
.team-member-section .team-member .team-single .img-wrapper .img-box img {
  width: 100%;
  height: auto;
}
.team-member-section .team-member .team-single .title-box {
  padding: 20px 25px;
}
.team-member-section .team-member .team-single .title-box .name a h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0B163F;
  margin-bottom: 2px;
}
.team-member-section .team-member .team-single .title-box .name p {
  color: #575757;
  font-size: 16px;
}
.team-member-section .team-member .team-single .title-box .icon {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
  background-color: #d7398e;
  color: white;
  border-radius: 30px;
  border-top: 1px solid white;
  z-index: 99;
  position: relative;
}
.team-member-section .team-member .team-single .title-box .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #d7398e;
  opacity: 0.3;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.team-member-section .team-member .team-single .title-box .icon i {
  transition: 0.45s ease;
  font-size: 18px;
}
.team-member-section .team-member .team-single .title-box .social-link {
  position: absolute;
  bottom: 140px;
  right: 30px;
  z-index: 9;
}
.team-member-section .team-member .team-single .title-box .social-link li:nth-child(1) {
  transition-delay: 0.1s;
}
.team-member-section .team-member .team-single .title-box .social-link li:nth-child(2) {
  transition-delay: 0.2s;
}
.team-member-section .team-member .team-single .title-box .social-link li:nth-child(3) {
  transition-delay: 0.3s;
}
.team-member-section .team-member .team-single .title-box .social-link li:nth-child(4) {
  transition-delay: 0.4s;
}
.team-member-section .team-member .team-single .title-box .social-link li {
  transform: translateY(45px);
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease;
}
.team-member-section .team-member .team-single .title-box .social-link li a {
  width: 37px;
  height: 37px;
  line-height: 39px;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 50%;
  display: block;
  background-color: white;
  transition: 0.45s ease;
}
.team-member-section .team-member .team-single .title-box .social-link li a:hover {
  background-color: #034FFD;
}
.team-member-section .team-member .team-single .title-box .social-link li a:hover i {
  color: white;
}
.team-member-section .team-member .team-single .title-box .social-link li a i {
  color: #034FFD;
  font-size: 16px;
  transition: 0.45s ease;
}

/*Team member Section end*/
/*Pricing plan start*/
.pricing-table {
  margin-top: 100px;
  margin-bottom: 100px;
}
.pricing-table .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}
.pricing-table .top-title {
  text-align: center;
  margin: auto;
  padding-bottom: 20px;
}
.pricing-table .top-title span {
  font-size: 18px;
  font-weight: 500;
  color: #010030;
  position: relative;
  padding-left: 11px;
  position: relative;
}
.pricing-table .top-title span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -33px;
  top: 6.6px;
}
.pricing-table .top-title span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -37px;
  top: 10.8px;
}
.pricing-table .top-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #010030;
  margin-top: 8px;
}
.pricing-table .plan-two {
  background: #034FFD !important;
  border-bottom: 3px solid #034FFD !important;
}
.pricing-table .plan-two:hover {
  border-bottom: 3px solid #d7398e !important;
}
.pricing-table .plan-two .plan-top-bar span {
  font-size: 18px;
  font-weight: 700;
  color: white !important;
  display: block;
  margin-bottom: 10px;
  font-family: "Microsoft YaHei";
}
.pricing-table .plan-two .plan-top-bar h3 {
  font-size: 40px;
  color: #d7398e !important;
  font-weight: 800;
  padding-bottom: 25px;
  border-bottom: 1px solid #8db4eb !important;
  margin-bottom: 25px;
}
.pricing-table .plan-two .plan-top-bar h3 small {
  font-size: 14px;
  font-weight: 400;
  color: white !important;
}
.pricing-table .plan-two .plan-body p {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
  color: white !important;
}
.pricing-table .plan-two .plan-body span {
  font-size: 16px;
  font-weight: 900;
  color: white !important;
  display: block;
  margin-bottom: 40px;
  font-family: "Microsoft YaHei";
}
.pricing-table .plan-two .plan-body .feature-list ul {
  line-height: 2.5;
}
.pricing-table .plan-two .plan-body .feature-list ul li {
  color: white !important;
  font-size: 16px;
  font-weight: 400;
}
.pricing-table .plan-two .plan-body .feature-list ul li i {
  color: white !important;
  padding-right: 7px;
  font-size: 16px;
}
.pricing-table .plan-two .btn-book {
  border-radius: 5px;
  background: #d7398e !important;
  border-radius: 5px;
  color: white;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 10px 30px;
  text-transform: capitalize;
}
.pricing-table .single-plan {
  box-shadow: 0px 13px 114px 0px rgba(0, 0, 0, 0.08);
  padding: 50px 50px;
  border-radius: 5px;
  background-color: white;
  border-bottom: 3px solid white;
  transition: 0.45s ease;
}
.pricing-table .single-plan:hover {
  border-bottom: 3px solid #034FFD;
}
.pricing-table .single-plan .plan-top-bar span {
  font-size: 18px;
  font-weight: 700;
  color: #010030;
  display: block;
  margin-bottom: 10px;
  font-family: "Microsoft YaHei";
}
.pricing-table .single-plan .plan-top-bar h3 {
  font-size: 40px;
  color: #034FFD;
  font-weight: 800;
  padding-bottom: 25px;
  border-bottom: 1px solid #DFDFED;
  margin-bottom: 25px;
}
.pricing-table .single-plan .plan-body p {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
  color: #6b7c93;
}
.pricing-table .single-plan .plan-body span {
  font-size: 16px;
  font-weight: 900;
  color: #010030;
  display: block;
  margin-bottom: 40px;
  font-family: "Microsoft YaHei";
}
.pricing-table .single-plan .plan-body .feature-list ul {
  line-height: 2.5;
}
.pricing-table .single-plan .plan-body .feature-list ul li {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}
.pricing-table .single-plan .plan-body .feature-list ul li i {
  color: #034FFD;
  padding-right: 7px;
  font-size: 16px;
}
.pricing-table .single-plan .btn-area {
  margin-top: 30px;
}
.pricing-table .single-plan .btn-area .btn-book {
  border-radius: 5px;
  background: #034FFD;
  border-radius: 5px;
  color: white;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 10px 30px;
  text-transform: capitalize;
}

/*Pricing plan end*/
/*Testimonial v1 section start*/
#testimonial-section {
  padding: 100px 0;
  background-color: #F2F5F9;
  position: relative;
}
#testimonial-section .main-content .row {
  --bs-gutter-x: 4.5rem;
}
#testimonial-section .main-content .text-box {
  margin-top: 25px;
  z-index: 5;
  position: relative;
}
#testimonial-section .main-content .text-box .sub-title {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 54px;
  color: #010030;
}
#testimonial-section .main-content .text-box .sub-title::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 6.7px;
}
#testimonial-section .main-content .text-box .sub-title::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 10.8px;
}
#testimonial-section .main-content .text-box h3 {
  font-size: 35px;
  font-weight: 700;
  color: #010030;
  text-transform: capitalize;
  line-height: 1.3;
  margin-top: 10px;
}
#testimonial-section .main-content .text-box h3 span {
  color: #034FFD;
  font-family: "Microsoft YaHei";
}
#testimonial-section .main-content .text-box p {
  font-size: 16px;
  color: #666666;
  margin-top: 15px;
}
#testimonial-section .main-content .text-box .book-btn {
  margin-top: 30px;
  padding: 14px 30px;
  background-color: #034FFD;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
#testimonial-section .main-content .text-box .book-btn::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
#testimonial-section .main-content .text-box .book-btn:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#testimonial-section .main-content .text-box .book-btn::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 2px;
  z-index: -1;
  transition: transform 0.35s ease;
}
#testimonial-section .main-content .text-box .book-btn i {
  padding-left: 7px;
  font-size: 14px;
}
#testimonial-section .main-content .slider-box {
  position: relative;
}
#testimonial-section .main-content .slider-box .next-arrow {
  position: absolute;
  bottom: -10px;
  right: 110px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.35s ease;
  width: 75px;
  height: 55px;
  line-height: 55px;
  background-color: #034FFD;
  border-radius: 0 4px 4px 0;
  text-align: center;
  transition: 0.45s ease;
}
#testimonial-section .main-content .slider-box .next-arrow:hover {
  background-color: #034FFD;
  color: white;
}
#testimonial-section .main-content .slider-box .prev-arrow {
  position: absolute;
  bottom: -10px;
  right: 170px;
  border-radius: 4px 0 0 4px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.35s ease;
  width: 68px;
  height: 55px;
  line-height: 55px;
  background-color: #034FFD;
  text-align: center;
  transition: 0.45s ease;
  z-index: 2;
}
#testimonial-section .main-content .slider-box .prev-arrow i {
  color: white;
  padding-right: 20px;
  padding-left: 23px;
  border-right: 1px solid #5383f3;
}
#testimonial-section .main-content .slider-box .prev-arrow:hover {
  background-color: #034FFD;
  color: white;
}
#testimonial-section .main-content .slider-box .slick-slide {
  margin: 16px;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider {
  background: white;
  padding: 35px 40px;
  box-shadow: rgba(18, 18, 240, 0.1) 0px 0px 16px;
  border-radius: 8px;
  position: relative;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider .five-star-wrap i {
  color: #d7398e;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider p {
  line-height: 1.7;
  color: #666666;
  font-size: 17px;
  margin-top: 17px;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider h5 {
  font-size: 22px;
  font-weight: 700;
  color: #010030;
  margin-bottom: 4px;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider span {
  font-size: 16px;
  font-weight: 500;
  color: #034FFD;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider .client-img {
  margin-top: 22px;
  gap: 15px;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider .client-img .client-img-box {
  width: 85px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider .client-img .client-img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #a1a1a3;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider .icon-quoto {
  position: absolute;
  right: 50px;
  bottom: 18px;
}
#testimonial-section .main-content .slider-box .testimonial-slider .single-slider .icon-quoto i {
  font-size: 200px;
  color: #0b032b;
  opacity: 0.06;
}

/*Work process v1 section start*/
.work-process {
  margin-top: 100px;
}
.work-process .row {
  --bs-gutter-y: 2rem;
}
.work-process .top-title {
  max-width: 550px;
  text-align: center;
  margin: auto;
  padding-bottom: 40px;
}
.work-process .top-title span {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
  position: relative;
  color: #010030;
}
.work-process .top-title span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -34px;
  top: 7px;
}
.work-process .top-title span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -37px;
  top: 11px;
}
.work-process .top-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #010030;
  margin-top: 7px;
}
.work-process .single-work {
  transition: 0.45s ease;
  padding: 50px 20px;
  border-radius: 5px;
}
.work-process .single-work:hover {
  box-shadow: 0px 13px 114px 0px rgba(46, 19, 196, 0.178);
}
.work-process .single-work:hover .process-icon {
  background-color: #020234;
  border: 1px solid #020234;
}
.work-process .single-work .count-number {
  left: 107px;
  right: 0;
  top: 50px;
  z-index: 2;
  color: white;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  font-weight: 600;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  background-color: #034FFD;
  position: absolute;
}
.work-process .single-work .process-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 40px;
  border-radius: 100%;
  background-color: rgb(255, 255, 255);
  border: 1px solid #DFDFED;
  transition: 0.45s ease;
  position: relative;
}
.work-process .single-work .process-icon::after {
  left: 0;
  top: 10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: #d7398e;
}
.work-process .single-work .process-icon img {
  max-width: 100%;
  height: auto;
}
.work-process .single-work .process-text h3 {
  color: #010030;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 12px;
  font-family: "Microsoft YaHei";
}
.work-process .single-work .process-text p {
  color: #666666;
  line-height: 1.6;
}
.work-process .arrow-one {
  position: absolute;
  right: -5px;
  bottom: 198px;
  z-index: -1;
}
.work-process .arrow-one img {
  width: 100%;
}

/*Work process section end*/
/****Cta section start****/
.cta-section {
  margin-top: 100px;
}
.cta-section .row {
  --bs-gutter-x: 0;
}
.cta-section .img-box {
  height: 500px;
}
.cta-section .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 4px 4px 0;
}
.cta-section .cta-text-wrap {
  max-width: 640px;
  padding: 35px 40px;
  margin-left: -62px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  border-radius: 8px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.cta-section .cta-text-wrap::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.699);
}
.cta-section .cta-text-wrap .title-wrape {
  z-index: 2;
  position: relative;
}
.cta-section .cta-text-wrap .title-wrape .subtitle {
  text-transform: uppercase;
  color: #020234;
  font-size: 17px;
  font-weight: 600;
  padding-left: 52px;
  position: relative;
}
.cta-section .cta-text-wrap .title-wrape .subtitle::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: 9px;
  top: 7px;
}
.cta-section .cta-text-wrap .title-wrape .subtitle::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: 4px;
  top: 12px;
}
.cta-section .cta-text-wrap .title-wrape .title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: #010030;
  line-height: 1.4;
  padding-top: 12px;
  padding-bottom: 19px;
}
.cta-section .cta-text-wrap .contact-wrap {
  z-index: 2;
  position: relative;
  gap: 25px;
}
.cta-section .cta-text-wrap .contact-wrap .icon {
  width: 50px;
  height: 50px;
  flex: none;
  background: #034FFD;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
  z-index: 0;
}
.cta-section .cta-text-wrap .contact-wrap .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #034FFD;
  opacity: 0.2;
  height: 73px;
  width: 73px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.cta-section .cta-text-wrap .contact-wrap .icon i {
  color: white;
  font-size: 18px;
}
.cta-section .cta-text-wrap .contact-wrap .contact-details h5 {
  font-size: 16px;
  font-weight: 700;
  color: #020234;
  font-family: "Microsoft YaHei";
  margin-bottom: 2px;
}
.cta-section .cta-text-wrap .contact-wrap .contact-details a {
  font-size: 24px;
  font-weight: 700;
  color: #034FFD;
}
.cta-section .cta-text-wrap .button {
  padding: 15px 30px;
  background-color: #034FFD;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-top: 38px;
  display: inline-block;
  border-radius: 4px;
  z-index: 2;
  position: relative;
}
.cta-section .cta-text-wrap .button::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.cta-section .cta-text-wrap .button:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cta-section .cta-text-wrap .button::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 2px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.cta-section .cta-text-wrap .button i {
  padding-left: 8px;
  font-size: 15px;
}

/****Cta section end****/
/*Blog section v1 start*/
.blog-section-v1 {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 80px;
  background: #F2F5F9;
}
.blog-section-v1 .blog-content .container-fluid {
  max-width: 1200px;
}
.blog-section-v1 .blog-content .row {
  --bs-gutter-x: 1.8rem;
}
.blog-section-v1 .blog-content .first-row .text-box {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.blog-section-v1 .blog-content .first-row .text-box span {
  font-size: 16px;
  font-weight: 600;
  color: #034FFD;
  position: relative;
  padding-left: 6px;
}
.blog-section-v1 .blog-content .first-row .text-box span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: -33px;
  top: 6.6px;
}
.blog-section-v1 .blog-content .first-row .text-box span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: -37px;
  top: 10.8px;
}
.blog-section-v1 .blog-content .first-row .text-box h5 {
  font-weight: 700;
  font-size: 35px;
  color: #010030;
  margin-top: 12px;
  line-height: 1.4;
}
.blog-section-v1 .blog-content .first-row .text-box p {
  margin-top: 13px;
}
.blog-section-v1 .blog-content .slick-slide {
  margin: 26px 12px;
}
.blog-section-v1 .blog-content .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
}
.blog-section-v1 .blog-content .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.blog-section-v1 .blog-content .slick-dots li button {
  background: #020234;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.blog-section-v1 .blog-content .slick-dots li button:hover {
  width: 22px;
}
.blog-section-v1 .blog-content .slick-dots li.slick-active button {
  background-color: #034FFD;
  width: 28px;
}
.blog-section-v1 .blog-content .second-row .blog-post {
  margin-top: 17px;
}
.blog-section-v1 .blog-content .second-row .blog-post:hover .single-blog .img-box img {
  transform: translateY(-10px);
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area::before {
  opacity: 0.9;
  transform: perspective(400px) rotateX(0);
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .img-box img {
  transform: scale(1.2) rotate(3deg);
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .post-title a {
  color: white;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .meta-info .date {
  color: #f5f5f5;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .meta-info .space {
  color: #ebebeb;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .meta-info .author {
  color: #ebebeb;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .meta-info i {
  color: #ebebeb;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .meta-info .fa-user {
  color: #ebebeb !important;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .cat-name a {
  color: #010030;
  background: #d7398e;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .btn-area a {
  color: white;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog:hover .text-area .btn-area i {
  color: white;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .img-box {
  transition: 0.45s ease;
  overflow: hidden;
  border: 4px solid white;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .img-box img {
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area {
  position: relative;
  background: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px 19px;
  padding-top: 35px;
  margin-left: 13px;
  margin-right: 13px;
  border-radius: 4px;
  margin-top: -18px;
  transition: 0.45s ease;
  z-index: 99;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #034FFD;
  border-radius: 4px;
  transition: 0.45s ease;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  z-index: -1;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .cat-name {
  position: absolute;
  content: "";
  left: 26px;
  top: -12px;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .cat-name a {
  text-transform: capitalize;
  background-color: #034FFD;
  font-size: 15px;
  font-weight: 500;
  color: white;
  padding: 6px 19px;
  border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transition: 0.45s ease;
  font-family: "Microsoft YaHei";
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .meta-info i {
  font-size: 15px;
  color: #034FFD;
  transition: 0.45s ease;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .meta-info .date {
  font-size: 15px;
  font-weight: 400;
  color: #9BA0B9;
  transition: 0.45s ease;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .meta-info .space {
  font-size: 13px;
  padding: 0 6px;
  transition: 0.45s ease;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .meta-info .author {
  font-size: 15px;
  font-weight: 400;
  color: #9BA0B9;
  transition: 0.45s ease;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .post-title {
  margin-top: 17px;
  margin-bottom: 18px;
  text-transform: capitalize;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .post-title a {
  font-size: 21px;
  font-weight: 600;
  color: #010030;
  transition: 0.45s ease;
  line-height: 1.4;
  font-family: "Microsoft YaHei";
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .btn-area {
  border-top: 2px solid #ebebeb;
  transition: 0.45s ease;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .btn-area a {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  color: #034FFD;
  position: relative;
  transition: 0.45s ease;
  padding-left: 8px;
}
.blog-section-v1 .blog-content .second-row .blog-post .single-blog .text-area .btn-area i {
  margin-top: 13.5px;
  color: #034FFD;
  transition: 0.45s ease;
}

/****Home v2 start*******/
/***Banner slider v2 start****/
.banner-area-slider-v2 {
  margin-top: -45px;
}
.banner-area-slider-v2 .banner-content {
  position: relative;
  z-index: 99;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap {
  position: relative;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap::before {
  position: absolute;
  content: "";
  background: #fcf9f7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one {
  position: absolute;
  right: -42px;
  top: 230px;
  z-index: 9;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box {
  width: 240px;
  z-index: 9;
  position: relative;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box:hover .counter-icon {
  background-color: #d7398e;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-icon {
  padding: 11px;
  border-radius: 50%;
  background-color: #020234;
  border: 6px solid white;
  box-shadow: rgba(81, 127, 219, 0.33) 0px 4px 20px;
  width: 70px;
  height: 70px;
  transition: 0.35s ease-in-out;
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-content {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  width: 235px;
  height: 110px;
  padding-left: 70px;
  border-radius: 5px;
  padding: 16px 26px;
  padding-left: 62px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-content .time-box {
  gap: 5px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-content .time-box h4 {
  font-size: 40px;
  font-weight: 700;
  color: #141D38;
  margin: 0;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-content .time-box span {
  font-weight: 700;
  font-size: 28px;
  color: #d7398e;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .info-box-one .single-box .counter-content .main-title {
  font-size: 17px;
  font-weight: 600;
  color: #00A3FD;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .next-arrow {
  position: absolute;
  top: 45%;
  right: 30px;
  color: #0026E2;
  font-size: 22px;
  cursor: pointer;
  transition: 0.35s ease;
  width: 50px;
  height: 50px;
  line-height: 52px;
  -webkit-backdrop-filter: blur(6px) saturate(180%);
          backdrop-filter: blur(6px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.63);
  z-index: 2;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  text-align: center;
  border-radius: 50%;
  transition: 0.45s ease;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .prev-arrow {
  position: absolute;
  top: 52%;
  right: 30px;
  color: #0026E2;
  font-size: 22px;
  cursor: pointer;
  transition: 0.35s ease;
  width: 50px;
  height: 50px;
  line-height: 52px;
  -webkit-backdrop-filter: blur(6px) saturate(180%);
          backdrop-filter: blur(6px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.61);
  z-index: 2;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  text-align: center;
  border-radius: 50%;
  transition: 0.45s ease;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .slick-active .banner-content-title h5 {
  animation-name: flipInX;
  animation-duration: 1.5s;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .slick-active .banner-content-title h2 {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .slick-active .banner-content-title p {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
  animation-fill-mode: both;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .slick-active .banner-content-title .btn-area {
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-delay: 1.8s;
  animation-fill-mode: both;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .slick-active .slider-img-box img {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper {
  padding-top: 190px;
  padding-bottom: 180px;
  gap: 25px;
  position: relative;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title {
  width: 45%;
  z-index: 9;
  position: relative;
  margin-bottom: 30px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title h5 {
  color: #010030;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  padding-left: 52px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title h5::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #00A3FD;
  left: 9px;
  top: 6.7px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title h5::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #00A3FD;
  left: 4px;
  top: 10.8px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title h2 {
  font-weight: 800;
  font-size: 50px;
  color: #010030;
  text-transform: capitalize;
  line-height: 1.2;
  margin-top: 15px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title h2 span {
  color: #00A3FD;
  font-family: "Microsoft YaHei";
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title p {
  max-width: 470px;
  color: #77879E;
  line-height: 1.7;
  margin-top: 20px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area {
  gap: 25px;
  flex-wrap: wrap-reverse;
  margin-top: 35px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-one {
  padding: 13px 25px;
  padding-top: 15px;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-one i {
  padding-left: 10px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-one::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-one:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-one::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #0026E2;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-two {
  gap: 10px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-two .play-icon {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 59px;
  text-align: center;
  background: linear-gradient(90deg, #d7398e 0%, #d68cb3 100%);
  padding-left: 4px;
  position: relative;
  z-index: 2;
  transition: 0.45s ease;
  cursor: pointer;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-two .play-icon i {
  color: white;
  font-size: 22px;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .banner-content-title .btn-area .btn-two h6 {
  color: #03063d;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.banner-area-slider-v2 .banner-content .slider-bg-wrap .banner-slider-v2 .content-wraper .slider-img-box img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

/***Banner slider end v2****/
/****Features Section v2 start*******/
.feature-section-v2 {
  margin-top: -40px;
  z-index: 992;
  position: relative;
  display: block;
}
.feature-section-v2 .row {
  --bs-gutter-x: 2rem;
}
.feature-section-v2 .feature-wraper {
  counter-reset: count;
}
.feature-section-v2 .feature-wraper .box-one .icon-box {
  background-color: #eaeeff;
}
.feature-section-v2 .feature-wraper .box-two .icon-box {
  background-color: #fff1e2;
}
.feature-section-v2 .feature-wraper .box-three .icon-box {
  background-color: #e5f6ff;
}
.feature-section-v2 .feature-wraper .single-box-wrap {
  padding: 45px 19px 49px 40px;
  display: block;
  z-index: 1;
  text-align: left;
  border-radius: 4px;
  position: relative;
  margin-bottom: 30px;
  transition: 0.5s;
  background: white;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.feature-section-v2 .feature-wraper .single-box-wrap::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.feature-section-v2 .feature-wraper .single-box-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00044B;
  transform: translate3d(0px, 100%, 0px);
  transition: all 500ms ease;
}
.feature-section-v2 .feature-wraper .single-box-wrap:hover::before {
  transform: translate3d(0px, 0, 0px);
}
.feature-section-v2 .feature-wraper .single-box-wrap:hover .feature-shape img {
  opacity: 0.1;
  visibility: visible;
}
.feature-section-v2 .feature-wraper .single-box-wrap:hover .title-box h4 {
  color: white;
}
.feature-section-v2 .feature-wraper .single-box-wrap:hover .title-box p {
  color: #77879E;
}
.feature-section-v2 .feature-wraper .single-box-wrap:hover .icon-box::before {
  background-color: #181c5a;
}
.feature-section-v2 .feature-wraper .single-box-wrap:hover .icon-box img {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.feature-section-v2 .feature-wraper .single-box-wrap .icon-box {
  width: 80px;
  height: 80px;
  line-height: 76px;
  display: inline-block;
  text-align: center;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}
.feature-section-v2 .feature-wraper .single-box-wrap .icon-box img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-section-v2 .feature-wraper .single-box-wrap .title-box {
  margin-top: 30px;
  z-index: 2;
  position: relative;
}
.feature-section-v2 .feature-wraper .single-box-wrap .title-box h4 {
  font-size: 23px;
  font-weight: 600;
  color: #141D38;
  transition: all 0.35s ease;
  font-family: "Microsoft YaHei";
}
.feature-section-v2 .feature-wraper .single-box-wrap .title-box p {
  line-height: 1.6;
  color: #77879E;
  margin-top: 10px;
  transition: all 0.35s ease;
}
.feature-section-v2 .feature-wraper .single-box-wrap .line-bar {
  margin-top: 30px;
  background: linear-gradient(160deg, #0026E2 0%, #00A3FD 100%);
  height: 3px;
  width: 80px;
  position: relative;
  border-radius: 30px;
}
.feature-section-v2 .feature-wraper .single-box-wrap .line-bar::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 3px;
  width: 8px;
  border-radius: 50%;
  background: white;
  border-radius: 10%;
  animation: MOVIE-BG 4s linear infinite alternate;
}
.feature-section-v2 .feature-wraper .single-box-wrap .feature-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.feature-section-v2 .feature-wraper .single-box-wrap .feature-shape img {
  opacity: 0;
  visibility: hidden;
}
.feature-section-v2 .feature-wraper .single-box-wrap .count {
  position: absolute;
  top: 50px;
  right: 54px;
  height: 45px;
  width: 56px;
  text-align: center;
}
.feature-section-v2 .feature-wraper .single-box-wrap .count::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1px #F4F4F4;
  font-size: 60px;
  line-height: 45px;
  font-weight: 700;
  counter-increment: count;
  content: counters(count, ".", decimal-leading-zero);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

/****Features Section end*******/
/******About Section v2 start********/
.about-section-v2 {
  margin-top: 50px;
  margin-bottom: 70px;
}
.about-section-v2 .row {
  --bs-gutter-x: 4rem;
}
.about-section-v2 .img-wrape {
  position: relative;
}
.about-section-v2 .img-wrape .img-one {
  text-align: right;
}
.about-section-v2 .img-wrape .img-one img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.about-section-v2 .img-wrape .img-two {
  margin: -300px 0 0 0;
}
.about-section-v2 .img-wrape .img-two img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: 8px solid white;
}
.about-section-v2 .img-wrape .award-box {
  position: absolute;
  left: 0;
  right: 80px;
  bottom: 30px;
  margin: 0 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  box-shadow: rgba(14, 89, 242, 0.33) 0px 4px 20px;
  border-radius: 4px;
}
.about-section-v2 .img-wrape .award-box .award-shape {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  box-shadow: rgba(14, 89, 242, 0.33) 0px 4px 20px;
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
  z-index: 1;
}
.about-section-v2 .img-wrape .award-box .award-shape .content-wrape {
  gap: 15px;
}
.about-section-v2 .img-wrape .award-box .award-shape .content-wrape .icon {
  width: 50px;
  height: 48px;
  margin-top: -4px;
}
.about-section-v2 .img-wrape .award-box .award-shape .content-wrape .icon img {
  width: 100%;
  height: 100%;
}
.about-section-v2 .img-wrape .award-box .award-shape .content-wrape h2 {
  font-size: 60px;
  font-weight: 700;
  color: white;
  margin: 0;
  width: 60px;
}
.about-section-v2 .img-wrape .award-box .award-shape .content-wrape p {
  font-size: 18px;
  font-weight: 500;
  color: white;
  line-height: 1.3;
}
.about-section-v2 .title-wrape h4 {
  font-size: 20px;
  color: #010030;
  font-weight: 500;
  display: inline-block;
  position: relative;
  font-family: "Microsoft YaHei";
  padding-left: 60px;
}
.about-section-v2 .title-wrape h4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.about-section-v2 .title-wrape h4 span {
  color: #d7398e;
}
.about-section-v2 .title-wrape h2 {
  margin-top: 11px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #141D38;
}
.about-section-v2 .title-wrape p {
  margin-top: 18px;
  line-height: 1.7;
  font-size: 16px;
  color: #77879E;
}
.about-section-v2 .title-wrape .feature-list {
  background-color: white;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  padding: 33px 22px;
  border-radius: 4px;
  margin-top: 37px;
  gap: 50px;
  align-items: center;
  transition: 0.35s ease-in-out;
  position: relative;
}
.about-section-v2 .title-wrape .feature-list::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
  height: 100%;
  background: linear-gradient(160deg, #0026E2 0%, #00A3FD 100%);
}
.about-section-v2 .title-wrape .feature-list .left-wrape ul li:not(:last-child) {
  margin-bottom: 9px;
}
.about-section-v2 .title-wrape .feature-list .left-wrape ul li {
  font-size: 16px;
  font-weight: 600;
  padding-left: 22px;
  font-family: "Microsoft YaHei";
}
.about-section-v2 .title-wrape .feature-list .left-wrape ul li i {
  font-size: 15px;
  color: #d7398e;
  padding-right: 8px;
}
.about-section-v2 .title-wrape .feature-list .right-wrape ul li:not(:last-child) {
  margin-bottom: 9px;
}
.about-section-v2 .title-wrape .feature-list .right-wrape ul li {
  font-size: 16px;
  font-weight: 600;
  padding-left: 22px;
  font-family: "Microsoft YaHei";
}
.about-section-v2 .title-wrape .feature-list .right-wrape ul li i {
  font-size: 15px;
  color: #d7398e;
  padding-right: 8px;
}
.about-section-v2 .title-wrape .btn-wrape {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-section-v2 .title-wrape .btn-wrape .btn-one a {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  color: white;
  font-size: 16px;
  padding: 14px 30px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  z-index: 2;
  position: relative;
}
.about-section-v2 .title-wrape .btn-wrape .btn-one a::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.about-section-v2 .title-wrape .btn-wrape .btn-one a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.about-section-v2 .title-wrape .btn-wrape .btn-one a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: linear-gradient(90deg, #00A3FD 0%, #0026E2 100%);
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.about-section-v2 .title-wrape .btn-wrape .btn-one a i {
  padding-left: 8px;
}
.about-section-v2 .title-wrape .btn-wrape .about-one__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.about-section-v2 .title-wrape .btn-wrape .about-one__call .about-one__call-icon {
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(90deg, #d7398e 0%, #d7398e 100%);
  font-size: 20px;
  transition: all 500ms ease;
}
.about-section-v2 .title-wrape .btn-wrape .about-one__call .about-one__call-content {
  position: relative;
  margin-left: 10px;
  top: -2px;
}
.about-section-v2 .title-wrape .btn-wrape .about-one__call .about-one__call-content a {
  font-size: 16px;
  font-weight: 700;
  color: #00A3FD;
  display: inline-block;
  transition: all 500ms ease;
}
.about-section-v2 .title-wrape .btn-wrape .about-one__call .about-one__call-content p {
  font-size: 14px;
  line-height: 16px;
  margin-top: 0;
  color: #77879E;
}

/******About Section end********/
/*Service section v2 start*/
.services-section-v2 {
  background: #fff;
  margin-top: 0px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.services-section-v2 .slick-slide {
  margin: 15px 20px;
  z-index: 9;
}
.services-section-v2 .slick-list {
  margin: 0 -10px;
}
.services-section-v2 .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
}
.services-section-v2 .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.services-section-v2 .slick-dots li button {
  background: #010030;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.services-section-v2 .slick-dots li button:hover {
  background: #00A3FD;
}
.services-section-v2 .slick-dots li.slick-active button {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  width: 32px;
}
.services-section-v2 .service-text-box {
  padding-right: 15px;
}
.services-section-v2 .service-text-box span {
  font-size: 19px;
  font-weight: 600;
  color: #d7398e;
  text-transform: capitalize;
  padding-left: 50px;
  position: relative;
}
.services-section-v2 .service-text-box span::before {
  width: 42px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  left: 0;
  top: 14px;
  position: absolute;
  content: "";
}
.services-section-v2 .service-text-box h3 {
  font-size: 27px;
  font-weight: 700;
  color: #050641;
  text-transform: capitalize;
  line-height: 1.4;
  margin-top: 16px;
}
.services-section-v2 .service-text-box p {
  color: #77879E;
  line-height: 1.7;
  margin-top: 15px;
}
.services-section-v2 .service-text-box .button {
  margin-top: 35px;
}
.services-section-v2 .service-text-box .button a {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  color: white;
  font-size: 16px;
  padding: 14px 30px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  z-index: 2;
  position: relative;
}
.services-section-v2 .service-text-box .button a::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.services-section-v2 .service-text-box .button a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.services-section-v2 .service-text-box .button a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: linear-gradient(90deg, rgb(25, 195, 254) 0%, rgb(21, 21, 249) 100%);
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.services-section-v2 .services-wraper-slider .slick-slide {
  margin: 20px 16px;
}
.services-section-v2 .services-wraper-slider .single-service {
  transition: all 0.35s ease-in-out;
}
.services-section-v2 .services-wraper-slider .single-service:hover {
  transform: translateY(-5px);
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .img-box {
  padding-left: 24px;
  padding-right: 24px;
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .img-box img {
  width: 100%;
  border-radius: 6px;
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .title-box {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 16px;
  transition: all 0.45s ease-in-out;
  padding-top: 192px !important;
  padding: 30px 30px;
  border-radius: 6px;
  text-align: center;
  margin-top: -160px;
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .title-box h4 {
  margin-bottom: 4px;
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .title-box h4 a {
  font-size: 22px;
  font-weight: 700;
  color: #010030;
  font-family: "Microsoft YaHei";
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .title-box a {
  color: #00A3FD;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}
.services-section-v2 .services-wraper-slider .single-service .content-wrap .title-box a i {
  padding-left: 7px;
}

/**Counter up v2 start**/
.counter-up-v2 {
  margin-top: -97px;
  margin-left: 20px;
}
.counter-up-v2 .container-fluid {
  max-width: 1135px;
}
.counter-up-v2 .row {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 3.7rem;
}
.counter-up-v2 .single-box {
  width: 100%;
  z-index: 9;
  position: relative;
}
.counter-up-v2 .single-box:hover .counter-icon {
  background-color: #d7398e;
}
.counter-up-v2 .single-box .counter-icon {
  padding: 12px;
  border-radius: 50%;
  background-color: #00044B;
  border: 6px solid white;
  box-shadow: rgba(81, 127, 219, 0.33) 0px 4px 20px;
  width: 77px;
  height: 77px;
  transition: all 0.35s ease-in-out;
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
}
.counter-up-v2 .single-box .counter-icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.counter-up-v2 .single-box .counter-content {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  width: 100%;
  height: 130px;
  padding-left: 70px;
  border-radius: 5px;
  padding: 26px 16px;
  padding-left: 62px;
}
.counter-up-v2 .single-box .counter-content .time-box {
  gap: 5px;
}
.counter-up-v2 .single-box .counter-content .time-box h4 {
  font-size: 40px;
  font-weight: 700;
  color: #141D38;
  margin: 0;
}
.counter-up-v2 .single-box .counter-content .time-box span {
  font-weight: 700;
  font-size: 28px;
  color: #d7398e;
}
.counter-up-v2 .single-box .counter-content .main-title {
  font-size: 17px;
  font-weight: 600;
  color: #00A3FD;
}

/***Team member v2 section start****/
.team-member-section-v2 {
  margin-top: 100px;
}
.team-member-section-v2 .title-box {
  max-width: 645px;
  margin: auto;
  text-align: center;
  padding-bottom: 25px;
}
.team-member-section-v2 .title-box span {
  font-size: 19px;
  font-weight: 600;
  color: #d7398e;
  position: relative;
  padding-left: 63px;
  padding-right: 63px;
}
.team-member-section-v2 .title-box span::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.team-member-section-v2 .title-box span::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.team-member-section-v2 .title-box h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  color: #010030;
  margin-top: 10px;
}
.team-member-section-v2 .title-box p {
  margin-top: 12px;
  line-height: 1.7;
  color: #77879E;
}
.team-member-section-v2 .team-member-wrape {
  position: relative;
}
.team-member-section-v2 .team-member-wrape:hover .next-arrow {
  opacity: 1;
  visibility: visible;
  right: 7px;
}
.team-member-section-v2 .team-member-wrape:hover .prev-arrow {
  opacity: 1;
  visibility: visible;
  left: 7px;
}
.team-member-section-v2 .team-member-wrape .next-arrow {
  position: absolute;
  content: "";
  right: -20px;
  top: 35%;
  transform: translateY(-35%);
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.45s ease;
  opacity: 0;
  visibility: hidden;
}
.team-member-section-v2 .team-member-wrape .prev-arrow {
  position: absolute;
  content: "";
  left: -20px;
  top: 35%;
  transform: translateY(-35%);
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.45s ease;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.team-member-section-v2 .team-member-wrape .slick-slide {
  margin: 25px 16px;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap {
  position: relative;
  transition: 0.45s ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap:hover .img-area::before {
  height: 100%;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap:hover .title-area {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap:hover .title-area h2 a {
  color: white;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap:hover .title-area span {
  color: white;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap:hover .social-link ul li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .img-area {
  position: relative;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .img-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: linear-gradient(179.97deg, rgba(14, 99, 255, 0) 20.71%, rgba(9, 9, 119, 0.781) 90.16%);
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  transition-property: all;
  transition: 0.45s;
  transition-timing-function: ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .img-area img {
  width: 100%;
  border-radius: 4px;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .title-area {
  padding: 20px 22px;
  padding-bottom: 25px;
  z-index: 9;
  border-radius: 4px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 20px;
  background-color: white;
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -40px;
  transition: all 0.35s ease;
  position: relative;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .title-area h2 {
  margin-bottom: 2px;
  transition: all 0.35s ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .title-area h2 a {
  font-size: 25px;
  font-weight: 700;
  color: #141D38;
  font-family: "Microsoft YaHei";
  transition: all 0.35s ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .title-area span {
  font-size: 16px;
  font-weight: 500;
  color: #0026E2;
  transition: 0.45s ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul {
  display: flex;
  gap: 10px;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li {
  transform: translateY(57px);
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li a {
  width: 37px;
  height: 37px;
  line-height: 39px;
  text-align: center;
  border-radius: 50%;
  display: block;
  background-color: white;
  transition: all 0.35s ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li a:hover {
  background: linear-gradient(90deg, #d7398e 0%, #d7398e 100%);
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li a:hover i {
  color: white;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .social-link ul li a i {
  color: #0026E2;
  font-size: 16px;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .img-wrape {
  position: relative;
  transition: 0.45s ease;
  overflow: hidden;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .img-wrape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  background: linear-gradient(179.97deg, rgba(14, 99, 255, 0) 20.71%, rgba(0, 4, 75, 0.8470588235));
  left: 0px;
  right: 0;
  bottom: 0px;
  border-radius: 5px 5px 0 0;
  transition-property: all;
  transition: 0.45s;
  transition-timing-function: ease;
}
.team-member-section-v2 .team-member-wrape .single-team-member-wrap .img-wrape img {
  width: 100%;
}

/***Team member section end v2****/
/******Project Section start v2*********/
.project-section-v2 {
  margin-top: 80px;
  position: relative;
}
.project-section-v2 .top-title-box {
  background-color: #00044B;
  padding-top: 100px;
  padding-bottom: 220px;
  position: relative;
}
.project-section-v2 .top-title-box .title-wrape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1150px;
  margin: auto;
}
.project-section-v2 .top-title-box .title-wrape .left-box {
  max-width: 700px;
  z-index: 9;
}
.project-section-v2 .top-title-box .title-wrape .left-box span {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 50px;
  color: white;
  position: relative;
}
.project-section-v2 .top-title-box .title-wrape .left-box span::before {
  width: 42px;
  height: 2px;
  border-radius: 4px;
  background: #d7398e;
  left: 0;
  top: 14px;
  position: absolute;
  content: "";
}
.project-section-v2 .top-title-box .title-wrape .left-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-top: 15px;
  text-transform: capitalize;
}
.project-section-v2 .top-title-box .title-wrape .left-box p {
  line-height: 1.7;
  margin-top: 15px;
  color: #97a2b7;
}
.project-section-v2 .top-title-box .title-wrape .right-box a {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  color: white;
  font-size: 16px;
  padding: 14px 30px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  z-index: 2;
  position: relative;
}
.project-section-v2 .top-title-box .title-wrape .right-box a::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.project-section-v2 .top-title-box .title-wrape .right-box a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.project-section-v2 .top-title-box .title-wrape .right-box a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: linear-gradient(90deg, #00A3FD 0%, #0026E2 100%);
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
}
.project-section-v2 .project-slider-wraper {
  margin-top: -180px !important;
  max-width: 1830px;
  margin: auto;
}
.project-section-v2 .project-slider-wraper .next-arrow {
  position: absolute;
  top: -140px;
  right: 197px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: 0.35s ease;
  font-size: 15px;
  text-transform: uppercase;
  background-color: #0026E2;
  padding: 12px 22px;
  padding-top: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  transition: 0.45s ease;
  display: flex;
  gap: 5px;
}
.project-section-v2 .project-slider-wraper .next-arrow i {
  padding-left: 3px;
  padding-top: 3px;
}
.project-section-v2 .project-slider-wraper .prev-arrow {
  position: absolute;
  top: -140px;
  right: 316px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: 0.35s ease;
  font-size: 15px;
  text-transform: uppercase;
  background-color: #0026E2;
  padding: 12px 22px;
  padding-top: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  transition: 0.45s ease;
  display: flex;
  gap: 5px;
}
.project-section-v2 .project-slider-wraper .prev-arrow i {
  padding-right: 3px;
  padding-top: 3px;
}
.project-section-v2 .project-slider-wraper .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
}
.project-section-v2 .project-slider-wraper .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.project-section-v2 .project-slider-wraper .slick-dots li button {
  background: #010030;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.project-section-v2 .project-slider-wraper .slick-dots li button:hover {
  background: #00A3FD;
}
.project-section-v2 .project-slider-wraper .slick-dots li.slick-active button {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  width: 32px;
}
.project-section-v2 .project-slider-wraper .slick-slide {
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.project-section-v2 .project-slider-wraper .slick-slide {
  margin: 15px 17px;
  z-index: 9;
}
.project-section-v2 .project-slider-wraper .slick-current.slick-center .project-content-box .text-wrape {
  opacity: 1;
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.project-section-v2 .project-slider-wraper .slick-slide.slick-center + .slick-slide {
  transform: scale(0.65) translate(-280px);
  z-index: 10;
}
.project-section-v2 .project-slider-wraper .slick-slide.slick-active {
  transform: scale(0.65) translate(280px);
}
.project-section-v2 .project-slider-wraper .slick-slide.slick-center {
  transform: scale(1);
  z-index: 20;
  position: relative;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .project-img {
  width: 740px;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .project-img img {
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  width: 100%;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: 600px;
  left: 70px;
  bottom: 25px;
  opacity: 0;
  padding: 22px 28px;
  border-radius: 5px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.89);
  -webkit-backdrop-filter: blur(6px) saturate(180%);
          backdrop-filter: blur(6px) saturate(180%);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .title-designation h3 {
  margin-bottom: 3px;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .title-designation h3 a {
  color: #010030;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  display: block;
  position: relative;
  font-family: "Microsoft YaHei";
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .title-designation p {
  line-height: 1.5;
  color: #77879E;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .btn-area {
  margin-top: 2px;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .btn-area a {
  padding: 14px 19px;
  border-radius: 4px;
  display: block;
  font-weight: 500;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  color: white;
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .btn-area a:hover i {
  transform: rotate(90deg);
}
.project-section-v2 .project-slider-wraper .single-project .project-content-box .text-wrape .btn-area a i {
  transition: all 0.35s ease-in-out;
  font-size: 27px;
}

/*****Testimonial Section v2 start*********/
.testimonial-section-v2 {
  margin-top: 130px;
  background-color: white;
}
.testimonial-section-v2 .title-box-wrape {
  max-width: 610px;
  margin: auto;
  text-align: center;
  padding-bottom: 25px;
}
.testimonial-section-v2 .title-box-wrape span {
  font-size: 19px;
  font-weight: 600;
  color: #d7398e;
  position: relative;
  padding-left: 63px;
  padding-right: 63px;
}
.testimonial-section-v2 .title-box-wrape span::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #0026E2;
}
.testimonial-section-v2 .title-box-wrape span::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #0026E2;
}
.testimonial-section-v2 .title-box-wrape h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  color: #010030;
  margin-top: 15px;
  line-height: 1.4;
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-slide {
  margin: 25px 15px;
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-list {
  margin: 0 -10px;
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-dots li button {
  background: #050544;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-dots li button:hover {
  background: #00A3FD;
}
.testimonial-section-v2 .testimonial-slider-wraper .slick-dots li.slick-active button {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  width: 35px;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap {
  background-color: #F4F4F4;
  padding: 35px 35px;
  padding-top: 75px;
  border-radius: 4px;
  position: relative;
  transition: 0.45s ease;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap:hover {
  transform: translateY(-5px);
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .text p {
  line-height: 1.6;
  color: #77879E;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .client-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .client-info .client-name h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 2px;
  color: #010030;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .client-info .client-name span {
  font-size: 15px;
  font-weight: 400;
  color: #00A3FD;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .client-info .client-img {
  width: 80px;
  height: 80px;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .client-info .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 4px solid white;
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .quoto {
  position: absolute;
  left: 35px;
  top: 0;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  border-radius: 5px;
  margin: -25px 0 20px 0;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}
.testimonial-section-v2 .testimonial-slider-wraper .single-testimonial-wrap .quoto i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: white;
  font-size: 30px;
  border-radius: inherit;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  text-align: center;
  display: inline-block;
}

/*****Testimonial Section end v2*********/
/***Appointment form v2 start ******/
.why-choose-us-and-appointment {
  padding-top: 100px;
  margin-top: 80px;
  padding-bottom: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.why-choose-us-and-appointment::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 4, 75, 0.8901960784);
}
.why-choose-us-and-appointment::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 27%;
  height: 100%;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.why-choose-us-and-appointment .main-content-wraper .row {
  --bs-gutter-x: 4rem;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape {
  z-index: 9;
  position: relative;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape span {
  font-size: 19px;
  font-weight: 500;
  color: white;
  padding-left: 55px;
  position: relative;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape span::after {
  position: absolute;
  content: "";
  width: 47px;
  height: 3px;
  left: 0;
  bottom: 5px;
  background-color: #d7398e;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape h4 {
  font-size: 45px;
  font-weight: 700;
  color: white;
  margin-top: 13px;
  line-height: 1.3;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape p {
  line-height: 1.7;
  color: white;
  margin-top: 23px;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box {
  margin-top: 60px;
  margin-left: 25px;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .row {
  --bs-gutter-x: 3.7rem;
  --bs-gutter-y: 2rem;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .single-box {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 6px;
  padding: 25px 30px;
  padding-left: 47px;
  position: relative;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .single-box:hover .icon-box {
  background-color: #00044B;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .single-box:hover .icon-box {
  background: linear-gradient(90deg, #00A3FD 0%, #0026E2 100%);
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .single-box .icon-box {
  padding: 11px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  width: 60px;
  height: 60px;
  position: absolute;
  content: "";
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease-in-out;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .single-box .icon-box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-choose-us-and-appointment .main-content-wraper .left-content-wrape .info-box .single-box h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: "Microsoft YaHei";
  color: #010030;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap {
  z-index: 9;
  position: relative;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 {
  background-color: #F4F4F4;
  border-radius: 4px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 h4 {
  font-size: 30px;
  font-weight: 600;
  color: rgb(6, 14, 59);
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
  font-family: "Microsoft YaHei";
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 input {
  width: 100%;
  height: 55px;
  line-height: 53px;
  padding: 13px 25px;
  border: none;
  background-color: white;
  font-size: 15px;
  font-family: "Microsoft YaHei";
  color: #8b8b8b;
  border-radius: 5px;
  outline: none;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 .nice-select {
  width: 100% !important;
  margin-bottom: 16px;
  line-height: 54px;
  height: 55px;
  font-family: "Microsoft YaHei";
  border: none;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 .nice-select span {
  font-size: 15px;
  color: #7e7e7e;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 .nice-select.open .list {
  width: 250px;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 .nice-select li.option.selected.focus {
  background-color: #DFDFED !important;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 .nice-select .option {
  font-weight: 400;
  font-family: "Microsoft YaHei";
  color: #141D38;
  font-size: 15px;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 select {
  width: 100%;
  height: 55px;
  padding: 13px 25px;
  border: none;
  background-color: white;
  font-size: 15px;
  font-family: "Microsoft YaHei";
  color: #77879E;
  border-radius: 5px;
  outline: none;
  margin-bottom: 15px;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 textarea {
  width: 100%;
  height: 150px;
  padding: 15px 25px;
  border: none;
  background-color: white;
  font-size: 15px;
  font-family: "Microsoft YaHei";
  color: #77879E;
  border-radius: 5px;
  outline: none;
  margin-bottom: 15px;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 button {
  padding: 16px 25px;
  background-color: #00044B;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  border: none;
  margin-top: 10px;
}
.why-choose-us-and-appointment .main-content-wraper .right-box-wrap .form-wrap-v2 button i {
  padding-left: 8px;
}

/*** Appointment form v2 end ******/
/****Workprocess v2 start******/
.workprocess-section-v2 {
  margin-top: 100px;
}
.workprocess-section-v2 .row {
  --bs-gutter-y: 3rem;
}
.workprocess-section-v2 .title-box-wrape {
  padding-bottom: 50px;
  margin: auto;
  text-align: center;
  max-width: 400px;
}
.workprocess-section-v2 .title-box-wrape span {
  font-size: 17px;
  font-weight: 600;
  color: #d7398e;
  position: relative;
  padding-left: 63px;
  padding-right: 63px;
}
.workprocess-section-v2 .title-box-wrape span::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.workprocess-section-v2 .title-box-wrape span::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.workprocess-section-v2 .title-box-wrape h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  color: #010030;
  margin-top: 7px;
  line-height: 1.4;
}
.workprocess-section-v2 .single-process-wrap {
  text-align: center;
  position: relative;
}
.workprocess-section-v2 .single-process-wrap:hover .img-box::after {
  transform: scale(1, 1);
}
.workprocess-section-v2 .single-process-wrap:hover .img-box .check-icon i {
  opacity: 1;
}
.workprocess-section-v2 .single-process-wrap:hover .img-box .number-box span {
  background: linear-gradient(90deg, #d7398e 0%, #d7398e 100%);
}
.workprocess-section-v2 .single-process-wrap .img-box {
  height: 185px;
  width: 185px;
  display: inline-block;
  position: relative;
}
.workprocess-section-v2 .single-process-wrap .img-box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00044B;
  opacity: 0.85;
  border-radius: 50%;
  transform: scale(0, 0);
  transition: 0.45s ease;
}
.workprocess-section-v2 .single-process-wrap .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 1px solid white;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease-in-out;
  position: relative;
}
.workprocess-section-v2 .single-process-wrap .img-box .number-box {
  position: absolute;
  right: -15px;
  top: 7px;
  z-index: 9;
  transition: all 0.35s ease;
}
.workprocess-section-v2 .single-process-wrap .img-box .number-box span {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  padding: 15px;
  font-size: 17px;
  font-weight: 500;
  color: white;
  transition: all 0.35s ease;
  border-radius: 30px 30px 30px 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
.workprocess-section-v2 .single-process-wrap .img-box .check-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.workprocess-section-v2 .single-process-wrap .img-box .check-icon i {
  font-size: 70px;
  color: white;
  opacity: 0;
  transition: 0.45s ease;
}
.workprocess-section-v2 .single-process-wrap h5 {
  font-weight: 600;
  font-size: 20px;
  color: #141D38;
  font-family: "Microsoft YaHei";
  padding-top: 25px;
}
.workprocess-section-v2 .single-process-wrap p {
  line-height: 1.6;
  margin-top: 10px;
  color: #77879E;
}
.workprocess-section-v2 .single-process-wrap .arrow-right {
  position: absolute;
  right: -37px;
  top: 34%;
  transform: translateY(-34%);
}
.workprocess-section-v2 .single-process-wrap .arrow-right img {
  transform: rotate(30deg);
}

/****Workprocess v2 end******/
/****Blog Section v2 start ****/
.blog-section-v2 {
  margin-bottom: 80px;
  margin-top: 0px;
}
.blog-section-v2 .title-wrap {
  background-color: #F2F5F9;
  padding-top: 100px;
  padding-bottom: 170px;
}
.blog-section-v2 .title-wrap .title-box {
  max-width: 645px;
  margin: auto;
  text-align: center;
  padding-bottom: 10px;
}
.blog-section-v2 .title-wrap .title-box span {
  font-size: 18px;
  font-weight: 600;
  color: #d7398e;
  position: relative;
  padding-left: 63px;
  padding-right: 63px;
}
.blog-section-v2 .title-wrap .title-box span::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.blog-section-v2 .title-wrap .title-box span::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
}
.blog-section-v2 .title-wrap .title-box h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  color: #141D38;
  margin-top: 10px;
}
.blog-section-v2 .title-wrap .title-box p {
  margin-top: 12px;
  line-height: 1.7;
  color: #77879E;
}
.blog-section-v2 .blog-slider-wraper {
  display: flex;
  gap: 20px;
  margin-top: -165px;
}
.blog-section-v2 .blog-slider-wraper .slick-slide {
  margin: 20px 15px;
}
.blog-section-v2 .blog-slider-wraper .slick-slide {
  margin: 30px 15px;
}
.blog-section-v2 .blog-slider-wraper .slick-list {
  margin: 0 -10px;
}
.blog-section-v2 .blog-slider-wraper .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}
.blog-section-v2 .blog-slider-wraper .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.blog-section-v2 .blog-slider-wraper .slick-dots li button {
  background: #00044B;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.blog-section-v2 .blog-slider-wraper .slick-dots li button:hover {
  background: #00A3FD;
}
.blog-section-v2 .blog-slider-wraper .slick-dots li.slick-active button {
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  width: 35px;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap {
  padding: 5px;
  border-radius: 4px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  transition: all 0.45s ease;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  transform: translateY(-6px);
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .img-box {
  position: relative;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .img-box img {
  width: 100%;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .img-box .date-box {
  position: absolute;
  right: 17px;
  top: 17px;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .img-box .date-box h4 {
  height: 47px;
  width: 45px;
  background-color: white;
  color: #00A3FD;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0px;
  padding: 5px 2px;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .img-box .date-box h4 span {
  font-size: 12px;
  font-weight: 500;
  display: block;
  color: #00044B;
  transition: all 0.3s ease-out 0s;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap {
  padding-left: 25px;
  padding-right: 25px;
  background-color: white;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .meta-info {
  font-family: "Microsoft YaHei";
  padding-top: 25px;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .meta-info i {
  font-size: 14px;
  padding-right: 3px;
  color: #00A3FD;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .meta-info .space-gap {
  padding: 0 9px;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .meta-info .cate-name {
  color: #77879E;
  font-weight: 400;
  font-family: "Microsoft YaHei";
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap h3 {
  padding-top: 20px;
  padding-bottom: 12px;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap h3 a {
  font-size: 20px;
  font-weight: 600;
  color: #141D38;
  transition: 0.45s ease;
  line-height: 1.4;
  font-family: "Microsoft YaHei";
  display: inline-block;
  max-height: 28px;
  overflow: hidden;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(165, 158, 158, 0.2);
  padding-top: 18px;
  padding-bottom: 18px;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .bottom-area .author {
  color: #77879E;
  font-weight: 400;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .bottom-area .author i {
  font-size: 14px;
  padding-right: 3px;
  color: #00A3FD;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .bottom-area .read-btn {
  font-size: 15px;
  font-weight: 600;
  color: #00A3FD;
  padding-left: 21px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .bottom-area .read-btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3.5px;
  width: 14px;
  height: 14px;
  background-color: #d7398e;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  transition: 0.35s ease-in-out;
}
.blog-section-v2 .blog-slider-wraper .single-blog-wrap .content-wrap .bottom-area .read-btn i {
  padding-left: 7px;
}

/**** Blog Section end v2 ****/
/****Home v2 end*******/
/*Breadcrumb start*/
.bread-crumb {
  padding: 50px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.bread-crumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(2, 2, 52, 0.9647058824), rgba(2, 2, 52, 0.6901960784), rgba(2, 9, 41, 0.281) 100%);
}
.bread-crumb .content-box {
  z-index: 9;
  position: relative;
}
.bread-crumb .content-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  padding-bottom: 6px;
}
.bread-crumb .content-box ul li i {
  color: white;
  font-size: 14px;
  margin-right: 5px;
}
.bread-crumb .content-box ul li a {
  color: #d7398e;
  font-size: 16px;
  font-weight: 600;
}
.bread-crumb .content-box ul li span {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding-left: 6px;
}

/*Counter up start*/
.counter-up {
  padding: 100px 0;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.counter-up::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(0, 15, 88, 0.74) 50%, rgba(3, 18, 97, 0.541) 100%);
}
.counter-up .row {
  --bs-gutter-y: 2.5rem;
}
.counter-up .box-two {
  border-left: 1px dotted rgba(255, 255, 255, 0.678);
  border-right: 1px dotted rgba(255, 255, 255, 0.658);
}
.counter-up .box-three {
  border-right: 1px dotted rgba(255, 255, 255, 0.678);
}
.counter-up .single-box {
  z-index: 9;
  position: relative;
  padding: 5px 0;
}
.counter-up .single-box .counter-icon {
  padding-right: 15px;
}
.counter-up .single-box .counter-icon i {
  font-size: 40px;
  color: rgb(25, 214, 228);
}
.counter-up .single-box .counter-content .time-box {
  gap: 5px;
}
.counter-up .single-box .counter-content .time-box h4 {
  font-size: 37px;
  font-weight: 700;
  color: white;
  margin: 0;
}
.counter-up .single-box .counter-content .time-box span {
  font-weight: 700;
  font-size: 26px;
  color: #d7398e;
}
.counter-up .single-box .counter-content .main-title {
  font-size: 17px;
  font-weight: 500;
  color: #DFDFED;
}

/*Services Section about page*/
.services-section-about-page {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
}
.services-section-about-page .top-box .title-box {
  max-width: 500px;
  text-align: center;
  margin: auto;
  padding-bottom: 35px;
  position: relative;
  z-index: 5;
}
.services-section-about-page .top-box .title-box h4 {
  font-size: 18px;
  font-weight: 500;
  color: #034FFD;
  position: relative;
  display: inline;
  padding-left: 52px;
  font-family: "Microsoft YaHei";
}
.services-section-about-page .top-box .title-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 7px;
}
.services-section-about-page .top-box .title-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 12px;
}
.services-section-about-page .top-box .title-box h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
  margin-top: 14px;
  margin-left: 2px;
  color: #010030;
}
.services-section-about-page .services-list {
  z-index: 9;
  /* Slick slide css */
}
.services-section-about-page .services-list .slick-slide {
  margin: 15px 14px;
  z-index: 9;
}
.services-section-about-page .services-list .slick-list {
  margin: 0 -10px;
}
.services-section-about-page .services-list .slick-dots {
  text-align: center;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
}
.services-section-about-page .services-list .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.services-section-about-page .services-list .slick-dots li button {
  background: #010030;
  width: 9px;
  height: 9px;
  line-height: 19px;
  border-radius: 15px;
  border: none;
  color: transparent;
  transition: 0.45s ease;
}
.services-section-about-page .services-list .slick-dots li button:hover {
  width: 22px;
}
.services-section-about-page .services-list .slick-dots li.slick-active button {
  background-color: #034FFD;
  width: 28px;
}
.services-section-about-page .services-list .single-service {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: 0.45s ease;
  padding: 60px 40px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.services-section-about-page .services-list .single-service::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 3px;
  background-color: #034FFD;
}
.services-section-about-page .services-list .single-service::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: 5px;
  transition: 0.45s ease;
}
.services-section-about-page .services-list .single-service:hover::before {
  background-color: #020234;
  opacity: 0.85;
}
.services-section-about-page .services-list .single-service:hover .service-content .icon-box {
  animation: bounceIn 0.8s ease;
  background-color: white;
}
.services-section-about-page .services-list .single-service:hover .service-content h2 {
  color: white;
  animation: slideInUp ease 0.8s;
}
.services-section-about-page .services-list .single-service:hover .service-content p {
  color: white;
  animation: slideInUp 1s ease;
}
.services-section-about-page .services-list .single-service:hover .service-content .btn-area a {
  color: white;
}
.services-section-about-page .services-list .single-service .service-content {
  z-index: 3;
  position: relative;
  text-align: left;
}
.services-section-about-page .services-list .single-service .service-content .icon-box {
  width: 85px;
  height: 85px;
  line-height: 78px;
  text-align: center;
  transition: 0.45s ease;
  box-shadow: rgba(1, 25, 92, 0.116) 0px 0px 50px 0px;
  background-color: #d8e4ff;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}
.services-section-about-page .services-list .single-service .service-content .icon-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 38px;
  height: 38px;
  display: inline;
}
.services-section-about-page .services-list .single-service .service-content h2 {
  font-size: 23px;
  font-weight: 700;
  margin-top: 28px;
  transition: 0.45s ease;
  text-transform: uppercase;
  color: #010030;
  font-family: "Microsoft YaHei";
}
.services-section-about-page .services-list .single-service .service-content p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-top: 30px;
}
.services-section-about-page .services-list .single-service .service-content .btn-area {
  margin-top: 40px;
}
.services-section-about-page .services-list .single-service .service-content .btn-area a {
  text-transform: uppercase;
  color: #010030;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  transition: 0.45s ease;
  position: relative;
  z-index: 2;
  padding-left: 22px;
}
.services-section-about-page .services-list .single-service .service-content .btn-area a:hover::before {
  background-color: #d7398e;
}
.services-section-about-page .services-list .single-service .service-content .btn-area a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: #77a0ff;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  transition: 0.35s ease-in-out;
}
.services-section-about-page .services-list .single-service .service-content .btn-area a i {
  padding-left: 7px;
  font-size: 14px;
}

/*Services Section end about page*/
/*Services Section service page start*/
.service-page-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F4F4F4;
}
.service-page-section .row {
  --bs-gutter-x: 1.7rem;
  --bs-gutter-y: 3rem;
}
.service-page-section .single-service {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.08);
  transition: 0.45s ease;
  padding: 60px 40px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.service-page-section .single-service::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 3px;
  background-color: #034FFD;
}
.service-page-section .single-service::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: 5px;
  transition: 0.45s ease;
}
.service-page-section .single-service:hover::before {
  background-color: #020234;
  opacity: 0.7;
}
.service-page-section .single-service:hover .service-content .icon-box {
  animation: bounceIn 0.8s ease;
}
.service-page-section .single-service:hover .service-content h2 {
  color: white;
  animation: slideInUp ease 0.8s;
}
.service-page-section .single-service:hover .service-content p {
  color: white;
  animation: slideInUp 1s ease;
}
.service-page-section .single-service:hover .service-content .btn-area a {
  color: white;
}
.service-page-section .single-service .service-content {
  z-index: 3;
  position: relative;
  text-align: left;
}
.service-page-section .single-service .service-content .icon-box {
  width: 85px;
  height: 85px;
  line-height: 78px;
  text-align: center;
  transition: 0.45s ease;
  background-color: #d8e4ff;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}
.service-page-section .single-service .service-content .icon-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 40px;
  height: 40px;
  display: inline;
}
.service-page-section .single-service .service-content h2 {
  font-size: 23px;
  font-weight: 700;
  margin-top: 28px;
  transition: 0.45s ease;
  text-transform: uppercase;
  color: #010030;
  font-family: "Microsoft YaHei";
}
.service-page-section .single-service .service-content p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-top: 20px;
}
.service-page-section .single-service .service-content .btn-area {
  margin-top: 40px;
}
.service-page-section .single-service .service-content .btn-area a {
  text-transform: uppercase;
  color: #171151;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  transition: 0.45s ease;
  position: relative;
  z-index: 2;
  padding-left: 22px;
}
.service-page-section .single-service .service-content .btn-area a:hover::before {
  background-color: #d7398e;
}
.service-page-section .single-service .service-content .btn-area a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: #77a0ff;
  -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
          clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
  transition: 0.35s ease-in-out;
}
.service-page-section .single-service .service-content .btn-area a i {
  padding-left: 7px;
  font-size: 14px;
}

/*Faq Section*/
.faq-section {
  background-color: #020234;
  overflow: hidden;
}
.faq-section .accordion-box h3 {
  color: white;
  font-weight: 600;
  font-size: 27px;
  line-height: 1.4;
  margin-bottom: 25px;
  font-family: "Microsoft YaHei";
  padding-left: 50px;
  position: relative;
}
.faq-section .accordion-box h3::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #d7398e;
  left: 9px;
  top: 13px;
}
.faq-section .accordion-box h3::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #d7398e;
  left: 4px;
  top: 19px;
}
.faq-section .accordion-box .accordion-container {
  position: relative;
}
.faq-section .accordion-box .set {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #DFDFED;
  margin-bottom: 14px;
}
.faq-section .accordion-box .set > a {
  text-decoration: none;
  padding-left: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #020234;
  font-family: "Microsoft YaHei";
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.2s linear;
  cursor: pointer;
}
.faq-section .accordion-box .set > a i {
  background: #034FFD;
  color: white;
  width: 47px;
  height: 47px;
  text-align: center;
  line-height: 47px;
}
.faq-section .accordion-box .set > a.active {
  background-color: #DFDFED;
  color: #010030;
}
.faq-section .accordion-box .content {
  background-color: white;
  display: none;
}
.faq-section .accordion-box .content p {
  padding: 15px 15px;
  padding-left: 28px;
  line-height: 1.7;
  color: #666666;
  font-size: 15px;
}
.faq-section .img-box {
  margin-right: -100px;
  position: relative;
}
.faq-section .img-box::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #00044B;
  opacity: 0.2;
  -webkit-clip-path: polygon(73% 0, 100% 0%, 100% 100%, 62% 100%, 48% 100%);
          clip-path: polygon(73% 0, 100% 0%, 100% 100%, 62% 100%, 48% 100%);
}
.faq-section .img-box img {
  max-width: 100%;
}

/*Service-page-v2*/
.service-area-v2-page {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F2F5F9;
}
.service-area-v2-page .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 3rem;
}
.service-area-v2-page .single-service .content-wrap .img-box {
  padding-left: 24px;
  padding-right: 24px;
}
.service-area-v2-page .single-service .content-wrap .img-box img {
  width: 100%;
  border-radius: 6px;
}
.service-area-v2-page .single-service .content-wrap .title-box {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding-top: 192px !important;
  padding: 30px 30px;
  border-radius: 6px;
  text-align: center;
  margin-top: -160px;
}
.service-area-v2-page .single-service .content-wrap .title-box h4 {
  margin-bottom: 4px;
}
.service-area-v2-page .single-service .content-wrap .title-box h4 a {
  font-size: 22px;
  font-weight: 700;
  color: #010030;
}
.service-area-v2-page .single-service .content-wrap .title-box a {
  color: #00A3FD;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}
.service-area-v2-page .single-service .content-wrap .title-box a i {
  padding-left: 7px;
}

/*Blog page grid start*/
#blog-page-section-sidebar-grid {
  margin-top: 50px;
  margin-bottom: 100px;
}
#blog-page-section-sidebar-grid .container-fluid .row {
  --bs-gutter-x: 3.3rem;
}
#blog-page-section-sidebar-grid .blog-wraper .row {
  --bs-gutter-x: 1.6rem;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post {
  margin-bottom: 45px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area::before {
  opacity: 0.9;
  transform: perspective(400px) rotateX(0);
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .img-box img {
  transform: scale(1.2) rotate(0deg);
}
/* #blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .post-title a {
  color: white;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .meta-info .date {
  color: white;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .meta-info .space {
  color: white;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .meta-info .author {
  color: white;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .meta-info i {
  color: white;
} 
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .meta-info .fa-user {
  color: white !important;
}*/
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .cat-name a {
  color: #fff;
  background: #d7398e;
}
/* #blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .btn-area a {
  color: white;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog:hover .text-area .btn-area i {
  color: white;
} */
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .img-box {
  transition: 0.45s ease;
  overflow: hidden;
  border: 6px solid white;
  border-radius: 4px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .img-box img {
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area {
  position: relative;
  background: white;
  padding: 20px 19px;
  padding-top: 35px;
  border-radius: 4px;
  margin-top: -6px;
  transition: 0.45s ease;
  z-index: 99;
}
/* #blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #034FFD;
  border-radius: 4px;
  transition: 0.45s ease;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  z-index: -1;
} */
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .cat-name {
  position: absolute;
  content: "";
  left: 26px;
  top: -12px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .cat-name a {
  text-transform: capitalize;
  background-color: #034FFD;
  font-size: 15px;
  font-weight: 500;
  color: white;
  padding: 8px 19px;
  border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transition: 0.45s ease;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .meta-info{
  padding-bottom: 15px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .meta-info i {
  font-size: 15px;
  color: #034FFD;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .meta-info .date {
  font-size: 15px;
  font-weight: 400;
  color: #6b7c93;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .meta-info .space {
  font-size: 12px;
  padding: 0 6px;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .meta-info .author {
  font-size: 15px;
  font-weight: 500;
  color: #6b7c93;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .post-title {
  margin-top: 0px;
  margin-bottom: 10px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .post-title a {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #010030;
  transition: 0.45s ease;
  line-height: 1.4;
  text-transform: capitalize;
  font-family: "Microsoft YaHei";
  max-height: 27px;
  overflow: hidden;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .btn-area {
  border-top: 2px solid #DFDFED;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .btn-area a {
  margin-top: 15px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  color: #034FFD;
  position: relative;
  transition: 0.45s ease;
  padding-left: 8px;
}
#blog-page-section-sidebar-grid .blog-wraper .blog-post .single-blog .text-area .btn-area i {
  margin-top: 13.4px;
  color: #034FFD;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination {
  margin-top: 22px;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li {
  margin-left: 10px;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li .page-link {
  width: 40px;
  height: 40px;
  line-height: 27px;
  border: 2px solid #DFDFED;
  color: #010030;
  text-align: center;
  background-color: white;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li .active {
  border: 2px solid #034FFD;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li .prev {
  border-radius: 15px 2px 2px 15px;
  margin-right: 10px;
  border: 2px solid rgb(209, 209, 209);
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li .next {
  border-radius: 2px 15px 15px 2px;
  margin-left: 10px;
  border: 2px solid rgb(209, 209, 209);
}
#blog-page-section-sidebar-grid .sidebar-area {
  position: sticky;
  top: -450px;
}
#blog-page-section-sidebar-grid .sidebar-area .search-form-wrape {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 40px;
}
#blog-page-section-sidebar-grid .sidebar-area .search-form-wrape .search-form {
  position: relative;
}
#blog-page-section-sidebar-grid .sidebar-area .search-form-wrape .search-form input {
  min-height: 60px;
  border: none;
  padding-left: 15px;
  background-color: #F2F5F9;
}
#blog-page-section-sidebar-grid .sidebar-area .search-form-wrape .search-form input:focus {
  outline: none;
}
#blog-page-section-sidebar-grid .sidebar-area .search-form-wrape .search-form button {
  border: none;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 50px;
  width: 50px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 5px;
  transition: all 0.35s ease-in-out;
  font-size: 16px;
  background: #034FFD;
  border-radius: 8px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box {
  margin: 0 0 40px 0;
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  padding-left: 20px;
  padding-right: 30px;
  border-radius: 4px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 13px;
  color: #010030;
  padding-left: 53px;
  position: relative;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-grid .sidebar-area .category-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2.6px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2.6px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li {
  line-height: 1.7;
  border-bottom: 1px dashed #c7c7c7;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li a {
  color: #666666;
  font-family: "Microsoft YaHei";
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  position: relative;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li a i {
  padding-right: 6px;
  font-size: 15px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li a:hover {
  padding-left: 6px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li a:hover .comment-count {
  background-color: #020234;
  color: white;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li a:hover::before {
  left: 4px;
}
#blog-page-section-sidebar-grid .sidebar-area .category-box ul li a .comment-count {
  background-color: #F2F5F9;
  width: 27px;
  height: 27px;
  line-height: 28px;
  font-size: 12px;
  text-align: center;
  color: #020234;
  border-radius: 50%;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin: 0 0 40px 0;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-left: 53px;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single:not(:last-child) {
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-bottom: 21px;
  margin-bottom: 21px;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single {
  display: flex;
  align-items: center;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single:hover .blog-thumb img {
  transform: scale(1.2);
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-thumb {
  min-width: 95px;
  min-height: 95px;
  overflow: hidden;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-thumb img {
  border-radius: 4px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.45s ease;
  transition-delay: 0.2s;
  transition-duration: 0.7s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  max-width: 94px;
  margin-top: 12px;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-content {
  margin-top: -6px;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-content h6 {
  margin-left: 12px;
  margin-bottom: 6px;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-content h6 a {
  color: #020234;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-content .blog-meta-date {
  color: #666666;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 500;
}
#blog-page-section-sidebar-grid .sidebar-area .recent-post-box .blog-single .blog-content .blog-meta-date i {
  font-size: 13px;
  padding-right: 5px;
  color: #034FFD;
}
#blog-page-section-sidebar-grid .sidebar-area .tag-box {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin-top: 40px;
}
#blog-page-section-sidebar-grid .sidebar-area .tag-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  padding-left: 53px;
  border-bottom: 1px solid #DFDFED;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-grid .sidebar-area .tag-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
#blog-page-section-sidebar-grid .sidebar-area .tag-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-grid .sidebar-area .tag-box .tag-list a {
  padding: 9px 17px;
  margin: 5px 3px;
  background-color: #F2F5F9;
  color: #020234;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
}
#blog-page-section-sidebar-grid .sidebar-area .subscribe-form {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin-top: 40px;
}
#blog-page-section-sidebar-grid .sidebar-area .subscribe-form h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  padding-left: 53px;
  border-bottom: 1px solid #DFDFED;
}
#blog-page-section-sidebar-grid .sidebar-area .subscribe-form h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
#blog-page-section-sidebar-grid .sidebar-area .subscribe-form h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-grid .sidebar-area .subscribe-form form input {
  width: 100%;
  height: 50px;
  border: none;
  padding-left: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #F2F5F9;
  outline: none;
}
#blog-page-section-sidebar-grid .sidebar-area .subscribe-form form button {
  color: white;
  height: 50px;
  border: none;
  font-weight: 500;
  width: 170px;
  border-radius: 5px;
  transition: 500ms all ease;
  background-color: #034FFD;
}

/*Blog page list start*/
#blog-page-section-sidebar-list {
  margin-top: 100px;
  margin-bottom: 100px;
}
#blog-page-section-sidebar-list .container-fluid .row {
  --bs-gutter-x: 3.3rem;
}
#blog-page-section-sidebar-list .blog-wraper .row {
  --bs-gutter-x: 1.6rem;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog {
  margin-bottom: 60px;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog:hover .img-box img {
  transform: scale(1.2) rotate(3deg);
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .img-box {
  transition: 0.45s ease;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .img-box img {
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .img-box .cat-name {
  position: absolute;
  content: "";
  left: 25px;
  bottom: 25px;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .img-box .cat-name a {
  text-transform: capitalize;
  background-color: #F2F5F9;
  font-size: 15px;
  font-weight: 500;
  color: #020234;
  padding: 8px 19px;
  border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transition: 0.45s ease;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .img-box .cat-name a i {
  font-size: 14px;
  padding-right: 4px;
  color: #034FFD;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area {
  position: relative;
  background: white;
  padding-top: 20px;
  transition: 0.45s ease;
  z-index: 9;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .meta-info i {
  font-size: 15px;
  color: #034FFD;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .meta-info .date {
  font-size: 15px;
  font-weight: 400;
  color: #6b7c93;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .meta-info .space {
  font-size: 12px;
  padding: 0 6px;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .meta-info .author {
  font-size: 15px;
  font-weight: 500;
  color: #6b7c93;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .post-title {
  margin-top: 16px;
  margin-bottom: 16px;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .post-title a {
  font-size: 25px;
  font-weight: 700;
  color: #010030;
  transition: 0.45s ease;
  line-height: 1.4;
  text-transform: capitalize;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area p {
  color: #666666;
  line-height: 1.7;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .btn-area {
  transition: 0.45s ease;
  margin-top: 25px;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .btn-area a {
  padding: 15px 30px;
  background-color: #034FFD;
  font-size: 16px;
  font-weight: 500;
  color: white;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .btn-area a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .btn-area a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
#blog-page-section-sidebar-list .blog-wraper .blog-post .single-blog .text-area .btn-area i {
  padding-left: 7px;
  font-size: 15px;
}
#blog-page-section-sidebar-list .blog-wraper nav .pagination {
  margin-top: 5px;
  gap: 8px;
}
#blog-page-section-sidebar-list .blog-wraper nav .pagination li {
  gap: 7px;
}
#blog-page-section-sidebar-list .blog-wraper nav .pagination li .page-link {
  width: 40px;
  height: 40px;
  line-height: 27px;
  border: 2px solid #DFDFED;
  color: #010030;
  text-align: center;
  background-color: white;
}
#blog-page-section-sidebar-list .blog-wraper nav .pagination li .active {
  border: 2px solid #034FFD;
}
#blog-page-section-sidebar-list .blog-wraper nav .pagination li .prev {
  border-radius: 15px 2px 2px 15px;
  margin-right: 6px;
  border: 2px solid #DFDFED;
}
#blog-page-section-sidebar-list .blog-wraper nav .pagination li .next {
  border-radius: 2px 15px 15px 2px;
  margin-left: 6px;
  border: 2px solid #DFDFED;
}
#blog-page-section-sidebar-list .sidebar-area {
  position: sticky;
  top: -450px;
}
#blog-page-section-sidebar-list .sidebar-area .search-form-wrape {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 40px;
}
#blog-page-section-sidebar-list .sidebar-area .search-form-wrape .search-form {
  position: relative;
}
#blog-page-section-sidebar-list .sidebar-area .search-form-wrape .search-form input {
  min-height: 60px;
  border: none;
  padding-left: 15px;
  outline: 0;
  background-color: #F2F5F9;
}
#blog-page-section-sidebar-list .sidebar-area .search-form-wrape .search-form button {
  border: none;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 50px;
  width: 50px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 5px;
  transition: all 0.35s ease-in-out;
  font-size: 16px;
  background: #034FFD;
  border-radius: 8px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box {
  margin: 40px 0;
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  padding-left: 20px;
  padding-right: 30px;
  border-radius: 4px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 13px;
  color: #010030;
  padding-left: 53px;
  position: relative;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-list .sidebar-area .category-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2.6px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2.6px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li {
  line-height: 1.7;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li a {
  color: #666666;
  font-family: "Microsoft YaHei";
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  position: relative;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li a i {
  padding-right: 6px;
  font-size: 15px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li a:hover {
  padding-left: 6px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li a:hover .comment-count {
  background-color: #020234;
  color: white;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li a:hover::before {
  left: 4px;
}
#blog-page-section-sidebar-list .sidebar-area .category-box ul li a .comment-count {
  background-color: #F2F5F9;
  width: 27px;
  height: 27px;
  line-height: 28px;
  font-size: 12px;
  text-align: center;
  color: #020234;
  border-radius: 50%;
  transition: 0.45s ease;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  border-radius: 4px;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-left: 53px;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single:not(:last-child) {
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-bottom: 21px;
  margin-bottom: 21px;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single {
  display: flex;
  align-items: center;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single:hover .blog-thumb img {
  transform: scale(1.2);
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-thumb {
  min-width: 95px;
  min-height: 95px;
  overflow: hidden;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-thumb img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  transition: 0.45s ease;
  transition-delay: 0.2s;
  transition-duration: 0.7s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-content {
  margin-top: -6px;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-content h6 {
  margin-left: 12px;
  margin-bottom: 6px;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-content h6 a {
  color: #020234;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-content .blog-meta-date {
  color: #666666;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 500;
}
#blog-page-section-sidebar-list .sidebar-area .recent-post-box .blog-single .blog-content .blog-meta-date i {
  font-size: 13px;
  padding-right: 5px;
  color: #034FFD;
}
#blog-page-section-sidebar-list .sidebar-area .tag-box {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin-top: 40px;
  border-radius: 4px;
}
#blog-page-section-sidebar-list .sidebar-area .tag-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  padding-left: 53px;
  border-bottom: 1px solid #DFDFED;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-list .sidebar-area .tag-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-page-section-sidebar-list .sidebar-area .tag-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-list .sidebar-area .tag-box .tag-list a {
  padding: 9px 17px;
  margin: 5px 3px;
  background-color: #F2F5F9;
  color: #010030;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin-top: 40px;
  border-radius: 4px;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  padding-left: 53px;
  border-bottom: 1px solid #DFDFED;
  font-family: "Microsoft YaHei";
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form form input {
  width: 100%;
  height: 50px;
  border: none;
  padding-left: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #F2F5F9;
  outline: none;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form form button {
  color: white;
  height: 50px;
  border: none;
  width: 170px;
  border-radius: 5px;
  transition: 500ms all ease;
  background-color: #034FFD;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form form button:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#blog-page-section-sidebar-list .sidebar-area .subscribe-form form button::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}

/*Team member page Section start*/
.team-member-page-section {
  background-color: #F2F5F9;
  padding-top: 70px;
  padding-bottom: 70px;
}
.team-member-page-section .top-title {
  text-align: center;
  max-width: 500px;
  margin: auto;
  padding-bottom: 30px;
}
.team-member-page-section .top-title span {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
  font-family: "Microsoft YaHei";
}
.team-member-page-section .top-title span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -33px;
  top: 6.6px;
}
.team-member-page-section .top-title span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: -37px;
  top: 10.8px;
}
.team-member-page-section .top-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #010030;
  margin-top: 7px;
  font-family: "Microsoft YaHei";
}
.team-member-page-section .team-single {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.3s ease-in;
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 4px;
  position: relative;
}
.team-member-page-section .team-single:hover .title-box .social-link li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.team-member-page-section .team-single:hover .title-box .icon i {
  transform: rotate(45deg);
}
.team-member-page-section .team-single:hover .img-wrapper .img-box::before {
  transform: perspective(400px) rotateX(0);
  opacity: 0.4;
}
.team-member-page-section .team-single .img-wrapper {
  border: 4px solid white;
  position: relative;
}
.team-member-page-section .team-single .img-wrapper::before {
  position: absolute;
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  z-index: 2;
  width: calc(100% + 20px);
  height: 40px;
  -webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
  background-color: #034FFD;
}
.team-member-page-section .team-single .img-wrapper::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -5px;
  width: calc(100% + 20px);
  height: 40px;
  -webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 70%, 100% 100%, 0% 100%);
  background-color: white;
  z-index: 2;
}
/* .team-member-page-section .team-single .img-wrapper .img-box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00044B;
  transition: 0.45s ease;
  transition-duration: 0.6s;
  transition-property: all;
  opacity: 0;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
} */
.team-member-page-section .team-single .img-wrapper .img-box img {
  width: 100%;
  height: auto;
}
.team-member-page-section .team-single .title-box {
  padding: 20px 25px;
}
.team-member-page-section .team-single .title-box .name a h4 {
  font-size: 22px;
  font-weight: 700;
  color: #010030;
  margin-bottom: 2px;
}
.team-member-page-section .team-single .title-box .name p {
  color: #666666;
  font-size: 16px;
}
.team-member-page-section .team-single .title-box .icon {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
  background-color: #d7398e;
  color: white;
  border-radius: 30px;
  border-top: 1px solid white;
  z-index: 99;
  position: relative;
}
.team-member-page-section .team-single .title-box .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #d7398e;
  opacity: 0.3;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.team-member-page-section .team-single .title-box .icon i {
  transition: 0.45s ease;
  font-size: 18px;
}
.team-member-page-section .team-single .title-box .social-link {
  position: absolute;
  bottom: 140px;
  right: 30px;
  z-index: 9;
}
.team-member-page-section .team-single .title-box .social-link li:nth-child(1) {
  transition-delay: 0.1s;
}
.team-member-page-section .team-single .title-box .social-link li:nth-child(2) {
  transition-delay: 0.2s;
}
.team-member-page-section .team-single .title-box .social-link li:nth-child(3) {
  transition-delay: 0.3s;
}
.team-member-page-section .team-single .title-box .social-link li:nth-child(4) {
  transition-delay: 0.4s;
}
.team-member-page-section .team-single .title-box .social-link li {
  transform: translateY(45px);
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease;
}
.team-member-page-section .team-single .title-box .social-link li a {
  width: 37px;
  height: 37px;
  line-height: 39px;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 50%;
  display: block;
  background-color: white;
  transition: 0.45s ease;
}
.team-member-page-section .team-single .title-box .social-link li a:hover {
  background-color: #034FFD;
}
.team-member-page-section .team-single .title-box .social-link li a:hover i {
  color: white;
}
.team-member-page-section .team-single .title-box .social-link li a i {
  color: #034FFD;
  font-size: 16px;
  transition: 0.45s ease;
}

/*Team member page Section end*/
/*Project page*/
.project-page-section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.project-page-section .row {
  --bs-gutter-y: 1.5rem;
}
.project-page-section .single-project {
  position: relative;
}
.project-page-section .single-project:hover .img-wrap::before {
  height: 100%;
}
.project-page-section .single-project:hover .text-wrap-area {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.project-page-section .single-project .img-wrap {
  position: relative;
}
.project-page-section .single-project .img-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: linear-gradient(179.97deg, rgba(14, 99, 255, 0) 20.71%, rgba(9, 9, 119, 0.781) 90.16%);
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  transition-property: all;
  transition: 0.45s;
  transition-timing-function: ease;
}
.project-page-section .single-project .img-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border: 2px solid white;
}
.project-page-section .single-project .text-wrap-area {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.project-page-section .single-project .text-wrap-area .text-wrap {
  padding: 22px 25px;
  border-radius: 8px;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  width: 320px;
  position: relative;
}
.project-page-section .single-project .text-wrap-area .text-wrap h4 {
  margin-bottom: 0;
}
.project-page-section .single-project .text-wrap-area .text-wrap h4 a {
  color: white;
  font-weight: 600;
  font-size: 22px;
  font-family: "Microsoft YaHei";
}
.project-page-section .single-project .text-wrap-area .text-wrap span {
  color: white;
  font-weight: 400;
  font-size: 15px;
}
.project-page-section .single-project .text-wrap-area .text-wrap .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.project-page-section .single-project .text-wrap-area .text-wrap .icon a {
  width: 55px;
  height: 50px;
  line-height: 55px;
  text-align: center;
  border-radius: 4px;
  display: block;
  background-color: white;
  transition: all 0.35s ease-in-out;
}
.project-page-section .single-project .text-wrap-area .text-wrap .icon a:hover {
  background-color: #0026E2;
}
.project-page-section .single-project .text-wrap-area .text-wrap .icon a:hover i {
  color: white;
}
.project-page-section .single-project .text-wrap-area .text-wrap .icon a i {
  color: #0026E2;
  font-size: 25px;
  transition: all 0.35s ease-in-out;
}

/*Contact page*/
.contact-form-wrapes {
  background-color: #F2F5F9;
}
.contact-form-wrapes .contact-info-wrape {
  gap: 60px;
  margin-top: 80px;
  margin-bottom: 100px;
  background-color: white;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.contact-form-wrapes .contact-info-wrape .contact-info {
  width: 45%;
}
.contact-form-wrapes .contact-info-wrape .contact-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #010030;
  padding-left: 52px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.contact-form-wrapes .contact-info-wrape .contact-info h3::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 9px;
  top: 11px;
}
.contact-form-wrapes .contact-info-wrape .contact-info h3::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 4px;
  top: 17px;
}
.contact-form-wrapes .contact-info-wrape .contact-info p {
  line-height: 1.7;
  color: #666666;
  padding-bottom: 30px;
}
.contact-form-wrapes .contact-info-wrape .contact-info .contact-info-item {
  margin-bottom: 35px;
  align-items: center;
}
.contact-form-wrapes .contact-info-wrape .contact-info .contact-info-item .inner-icon {
  width: 70px;
  height: 70px;
  line-height: 63px;
  text-align: center;
  border-radius: 50%;
  background-color: #F2F5F9;
}
.contact-form-wrapes .contact-info-wrape .contact-info .contact-info-item .inner-icon img {
  width: 35px;
  height: 35px;
}
.contact-form-wrapes .contact-info-wrape .contact-info .contact-info-item .inner-text {
  line-height: 1.2;
  padding-left: 15px;
}
.contact-form-wrapes .contact-info-wrape .contact-info .contact-info-item .inner-text h4 {
  font-size: 16px;
  font-weight: 500;
  color: #6b7c93;
  margin-bottom: 4px;
  font-family: "Microsoft YaHei";
}
.contact-form-wrapes .contact-info-wrape .contact-info .contact-info-item .inner-text span {
  font-size: 18px;
  font-weight: 700;
  color: #010030;
}
.contact-form-wrapes .contact-info-wrape .contact-form {
  width: 55%;
}
.contact-form-wrapes .contact-info-wrape .contact-form h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #010030;
  padding-left: 51px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.contact-form-wrapes .contact-info-wrape .contact-form h2::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 9px;
  top: 12.5px;
}
.contact-form-wrapes .contact-info-wrape .contact-form h2::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 4px;
  top: 19px;
}
.contact-form-wrapes .contact-info-wrape .contact-form form .single-info input {
  width: 100%;
  line-height: 1;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 16px 18px;
  padding-bottom: 18px;
  border-radius: 4px;
  outline: none;
  margin-bottom: 15px;
  border: none;
}
.contact-form-wrapes .contact-info-wrape .contact-form form .single-info textarea {
  width: 100%;
  line-height: 1;
  padding: 18px 21px;
  border-radius: 4px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  height: 160px;
  outline: none;
}
.contact-form-wrapes .contact-info-wrape .contact-form form .submit-btn {
  padding: 15px 35px;
  background-color: #034FFD;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  color: white;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  transition: 0.45s ease;
}
.contact-form-wrapes .contact-info-wrape .contact-form form .submit-btn:hover {
  background-color: #d7398e;
}

.google-map {
  height: 500px;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 638px;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 638px;
}

.gmap_iframe {
  width: 2048px !important;
  height: 638px !important;
}

/*Service Details start*/
.service-details {
  margin-top: 100px;
  margin-bottom: 100px;
}
.service-details .row {
  --bs-gutter-x: 3.3rem;
}
.service-details .service-details-content img {
  width: 100%;
}
.service-details .service-details-content h3{
    font-size: 18px;
    margin-top: 25px;
    font-weight: bold;
    color: #034FFD;
}
.service-details .service-details-content .service-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 35px;
  color: #010030;
}
.service-details .service-details-content .details-content {
  color: #666666;
  line-height: 1.7;
  margin-top: 15px;
}
.service-details .service-details-content .details-content strong{
    color:#0082ff;
    font-weight: 700;
}
.service-details .service-details-content ul{
    padding-left: 12px;
    margin-bottom: 20px;
    margin-left: 20px;
    color: #666;
    margin-top: 20px;
}
.service-details .service-details-content ul li{
    margin-bottom: 5px;
}
.service-details .service-details-content .info-box {
  margin-top: 45px;
  margin-bottom: 45px;
  gap: 10px;
}
.service-details .service-details-content .info-box .left-content {
  width: 50%;
}
.service-details .service-details-content .info-box .left-content h3 {
  font-size: 25px;
  font-weight: 600;
  color: #010030;
  font-family: "Microsoft YaHei";
}
.service-details .service-details-content .info-box .left-content p {
  color: #666666;
  line-height: 1.7;
  margin-top: 15px;
}
.service-details .service-details-content .info-box .left-content ul {
  margin-top: 16px;
}
.service-details .service-details-content .info-box .left-content ul li {
  line-height: 2.5;
  font-size: 15px;
  font-weight: 500;
  color: #6b7c93;
  font-family: "Microsoft YaHei";
}
.service-details .service-details-content .info-box .left-content ul li i {
  width: 27px;
  height: 27px;
  line-height: 28px;
  text-align: center;
  background-color: #F2F5F9;
  border-radius: 50%;
  margin-right: 7px;
  color: #034FFD;
  font-size: 13px;
}
.service-details .service-details-content .info-box .right-content img {
  max-width: 100%;
  border-radius: 10px;
}
.service-details .service-details-content .cta-box {
  margin-top: 55px;
  padding: 25px 40px;
  background-color: white;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 4px;
  border-left: 4px solid #034FFD;
}
.service-details .service-details-content .cta-box p {
  line-height: 1.6;
  color: #666666;
}
.service-details .service-details-content .cta-box p span {
  font-size: 17px;
  font-weight: 600;
  margin-top: 7px;
  display: block;
  color: #6b7c93;
}
.service-details .service-details-content .cta-box i {
  font-size: 80px;
  color: #020234;
  opacity: 0.6;
}
.service-details .faq-wrapper {
  margin-top: 60px;
}
.service-details .faq-wrapper .accordion-button {
  font-size: 17px;
  background: #034FFD;
  color: white;
  padding: 10px 10px 10px 70px;
  border: 0;
  font-weight: 500;
  border-radius: 0;
  text-transform: capitalize;
  min-height: 60px;
  text-align: left;
  position: relative;
  font-family: "Microsoft YaHei";
  z-index: 2;
}
.service-details .faq-wrapper .accordion-button::after {
  content: "+";
  font-size: 30px;
  margin-left: 0;
  background-image: none;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 43px;
  background: #d7398e;
  border-radius: 5px;
  position: absolute;
  left: 10px;
}
.service-details .faq-wrapper .accordion-button:focus {
  box-shadow: none;
}
.service-details .faq-wrapper .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  content: "-";
}
.service-details .faq-wrapper .accordion-item {
  margin-top: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.service-details .faq-wrapper .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.service-details .faq-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}
.service-details .faq-wrapper .accordion-body {
  border: 0;
  padding: 20px 30px;
  position: relative;
  line-height: 1.7;
  font-family: "Microsoft YaHei";
  color: #666666;
}
.service-details .faq-wrapper .accordion-body:before {
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - 40px);
  background: #d7398e;
  top: 20px;
  left: 11px;
}
.service-details .faq-wrapper .accordion-collapse {
  border: 0;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
.service-details .faq-wrapper .accordion-button.collapsed {
  background: #F2F5F9;
  color: #010030;
  transition: 0.35s ease;
  font-size: 17px;
}
.service-details .faq-wrapper .accordion-button.collapsed:after {
  background: #034FFD;
  color: white;
}
.service-details .faq-wrapper.accordion-bordered .accordion-item {
  border-color: rgba(165, 158, 158, 0.2);
}
.service-details .sidebar-area {
  position: sticky;
  top: -100px;
}
.service-details .sidebar-area .services-list {
  background-color: #F2F5F9;
  padding: 40px 30px;
}
.service-details .sidebar-area .services-list h4 {
  font-size: 20px;
  font-weight: 600;
  color: #010030;
  padding-bottom: 15px;
  padding-left: 52px;
  position: relative;
}
.service-details .sidebar-area .services-list h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
.service-details .sidebar-area .services-list h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 13px;
}
.service-details .sidebar-area .services-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-details .sidebar-area .services-list ul li .active {
  background-color: #034FFD;
  color: white;
}
.service-details .sidebar-area .services-list ul li .active i {
  color: white;
}
.service-details .sidebar-area .services-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 20px;
  border-radius: 3px;
  color: #010030;
  font-size: 16px;
  font-weight: 500;
  transition: 0.45s ease;
  font-family: "Microsoft YaHei";
}
.service-details .sidebar-area .services-list ul li a:hover {
  background-color: #034FFD;
  color: white;
}
.service-details .sidebar-area .services-list ul li a:hover i {
  color: white;
}
.service-details .sidebar-area .services-list ul li a i {
  color: #034FFD;
  transition: 0.45s ease;
  font-size: 16px;
}
.service-details .sidebar-area .author-box {
  margin-bottom: 40px;
  background-color: #F2F5F9;
  margin-top: 50px;
  padding: 25px 10px;
  text-align: center;
}
.service-details .sidebar-area .author-box .author-img {
  max-width: 270px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.service-details .sidebar-area .author-box .author-img img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid white;
}
.service-details .sidebar-area .author-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  color: #010030;
}
.service-details .sidebar-area .author-box span {
  font-size: 17px;
  font-weight: 500;
  color: #034FFD;
}
.service-details .sidebar-area .author-box p {
  color: #666666;
  line-height: 1.7;
  margin-top: 10px;
  padding: 0 15px;
  font-size: 14px;
  text-align: left;
}
.service-details .sidebar-area .author-box ul {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.service-details .sidebar-area .author-box ul li a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: white;
  border-radius: 50%;
  display: block;
  transition: 0.45s ease;
}
.service-details .sidebar-area .author-box ul li a:hover {
  background-color: #034FFD;
}
.service-details .sidebar-area .author-box ul li a:hover i {
  color: white;
}
.service-details .sidebar-area .author-box ul li a i {
  color: #034FFD;
  transition: 0.45s ease;
  font-size: 14px;
}
.service-details .sidebar-area .contact-box {
  padding: 40px 30px;
  background-color: #F2F5F9;
}
.service-details .sidebar-area .contact-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #010030;
  padding-bottom: 15px;
  padding-left: 52px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.service-details .sidebar-area .contact-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
.service-details .sidebar-area .contact-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 13px;
}
.service-details .sidebar-area .contact-box .contact-us .single-contact-info:not(:last-child) {
  margin-bottom: 20px;
}
.service-details .sidebar-area .contact-box .contact-us .single-contact-info {
  display: flex;
  gap: 12px;
}
.service-details .sidebar-area .contact-box .contact-us .single-contact-info .icon {
  padding-top: 6px;
}
.service-details .sidebar-area .contact-box .contact-us .single-contact-info .icon img {
  width: 35px;
  height: 35px;
}
.service-details .sidebar-area .contact-box .contact-us .single-contact-info .contact-info span {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
}
.service-details .sidebar-area .contact-box .contact-us .single-contact-info .contact-info p {
  font-weight: 600;
  color: #020234;
  font-size: 14px;
  padding-top: 2px;
}

/*Blog details start*/
#blog-details-with-sidebar {
  margin-top: 50px;
  margin-bottom: 100px;
}
#blog-details-with-sidebar .container-fluid .row {
  --bs-gutter-x: 3.3rem;
}
#blog-details-with-sidebar .blog-details-content .img-box {
  position: relative;
  overflow: hidden;
}
#blog-details-with-sidebar .blog-details-content .img-box:hover img {
  opacity: 0.9;
  transform: scale(1.1) rotate(0deg);
}
#blog-details-with-sidebar .blog-details-content .img-box img {
  width: 100%;
  border-radius: 6px;
  transition: all 0.3s ease-in-out 0.1s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  overflow: hidden;
}
#blog-details-with-sidebar .blog-details-content .img-box .cat-name {
  position: absolute;
  content: "";
  left: 20px;
  bottom: 25px;
  background-color: #F2F5F9;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 25px;
  color: #020234;
  font-family: "Microsoft YaHei";
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
#blog-details-with-sidebar .blog-details-content .img-box .cat-name i {
  font-size: 14px;
  padding-right: 5px;
  color: #034FFD;
}
#blog-details-with-sidebar .blog-details-content .meta-info {
  margin-top: 30px;
  gap: 15px;
}
#blog-details-with-sidebar .blog-details-content .meta-info i {
  font-size: 15px;
  color: #034FFD;
  padding-right: 5px;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .meta-info .author {
  font-size: 15px;
  font-weight: 500;
  color: #020234;
  background-color: #F2F5F9;
  border-radius: 20px;
  padding: 9px 19px;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .meta-info .date {
  font-size: 15px;
  font-weight: 500;
  color: #020234;
  background-color: #F2F5F9;
  border-radius: 20px;
  padding: 9px 19px;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .meta-info .comment {
  font-size: 15px;
  font-weight: 500;
  color: #020234;
  background-color: #F2F5F9;
  border-radius: 20px;
  padding: 9px 19px;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content h2 {
  margin-top: 40px;
  padding-bottom: 20px;
  font-size: 27px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
}
#blog-details-with-sidebar .blog-details-content .details-text {
  color: #666666;
  line-height: 1.7;
  font-size: 16px;
  margin-top: 20px;
}
#blog-details-with-sidebar .blog-details-content .second-paragraph {
  margin-top: 30px;
}
#blog-details-with-sidebar .blog-details-content .second-paragraph h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #444;
}
#blog-details-with-sidebar .blog-details-content .second-paragraph p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}
#blog-details-with-sidebar .blog-details-content .second-paragraph p strong{
  color: #0082ff;
}
#blog-details-with-sidebar .blog-details-content .second-paragraph ul {
  list-style: square;
  padding-left: 12px;
  margin-bottom: 20px;
  margin-left: 20px;
  color: #666;
}
#blog-details-with-sidebar .blog-details-content .info-box {
  margin-top: 45px;
  margin-bottom: 45px;
  gap: 10px;
  align-items: center;
}
#blog-details-with-sidebar .blog-details-content .info-box .left-content {
  width: 50%;
}
#blog-details-with-sidebar .blog-details-content .info-box .left-content h3 {
  font-size: 25px;
  font-weight: 600;
  color: #020234;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .info-box .left-content p {
  color: #666666;
  line-height: 1.7;
  margin-top: 15px;
}
#blog-details-with-sidebar .blog-details-content .info-box .left-content ul {
  margin-top: 16px;
}
#blog-details-with-sidebar .blog-details-content .info-box .left-content ul li {
  line-height: 2.5;
  font-size: 15px;
  font-weight: 500;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .info-box .left-content ul li i {
  width: 25px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  background-color: #F2F5F9;
  border-radius: 50%;
  margin-right: 7px;
  color: #034FFD;
  font-size: 12px;
}
#blog-details-with-sidebar .blog-details-content .info-box .right-content img {
  max-width: 100%;
  border-radius: 8px;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one {
  margin-top: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-bottom: 30px;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .tag-list h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-right: 4px;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .tag-list a {
  font-size: 14px;
  font-weight: 500;
  color: #020234;
  background-color: #F2F5F9;
  border-radius: 20px;
  padding: 6px 14px;
  transition: 0.45s ease;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn {
  align-items: center;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn span {
  font-weight: 500;
  padding-right: 8px;
  color: #020234;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn span i {
  padding-right: 4px;
  color: #020234;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn .social-share-btn ul li {
  margin-left: 5px;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn .social-share-btn ul li a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  display: block;
  text-align: center;
  border-radius: 50%;
  background-color: #F2F5F9;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn .social-share-btn ul li a:hover {
  background-color: #034FFD;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn .social-share-btn ul li a:hover i {
  color: #F2F5F9;
}
#blog-details-with-sidebar .blog-details-content .footer-wraper-one .share-btn .social-share-btn ul li a i {
  color: #034FFD;
  font-size: 15px;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-bottom: 30px;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .prev-btn a {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  background: #F2F5F9;
  padding: 15px 30px;
  border-radius: 5px;
  transition: 0.45s ease;
  color: #020234;
  font-size: 18px;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .prev-btn a:hover {
  background: #DFDFED;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .prev-btn a h5 {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #020234;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .prev-btn a h5 i {
  padding-right: 5px;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .next-btn a {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  background: #F2F5F9;
  padding: 15px 30px;
  border-radius: 5px;
  transition: 0.45s ease;
  color: #020234;
  font-size: 18px;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .next-btn a:hover {
  background: #DFDFED;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .next-btn a h5 {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #020234;
}
#blog-details-with-sidebar .blog-details-content .next-prev-btn .next-btn a h5 i {
  padding-left: 8px;
}
#blog-details-with-sidebar .blog-details-content .comment-box {
  margin-top: 30px;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-title {
  font-weight: 500;
  font-size: 25px;
  color: #010030;
  margin-bottom: 38px;
  padding-left: 15px;
  position: relative;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-title::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 30px;
  left: 0;
  top: 0;
  background-color: #034FFD;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single {
  display: flex;
  margin-bottom: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px 35px;
  border-radius: 4px;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-img {
  width: 175px;
  height: 114px;
  padding-right: 20px;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-img img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #DFDFED;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #010030;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-content p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-content span {
  color: #6b7c93;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-content span a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  border-radius: 4px;
  margin-left: 15px;
  padding: 4px 12px;
  background-color: #034FFD;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-single .comment-content span a:hover {
  background-color: #d7398e;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .row {
  --bs-gutter-x: 2rem;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form h5 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 23px;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form h5::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 30px;
  left: 0;
  top: 0;
  background-color: #034FFD;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .name-field input {
  width: 100%;
  padding: 15px 20px;
  padding-bottom: 16px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  outline: none;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .email-field input {
  width: 100%;
  padding: 15px 20px;
  padding-bottom: 16px;
  border: none;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .message-field {
  margin-top: 20px;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .message-field textarea {
  width: 100%;
  padding: 15px 20px;
  padding-bottom: 16px;
  border: none;
  height: 150px;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .submit-btn input {
  padding: 10px 25px;
  background-color: #F2F5F9;
  color: #010030;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  border-radius: 4px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: all 0.45s;
}
#blog-details-with-sidebar .blog-details-content .comment-box .comment-form .submit-btn input:hover {
  background-color: #034FFD;
  color: white;
}
#blog-details-with-sidebar .sidebar-area {
  position: sticky;
  top: -400px;
}
#blog-details-with-sidebar .sidebar-area .search-form-wrape {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 40px;
}
#blog-details-with-sidebar .sidebar-area .search-form-wrape .search-form {
  position: relative;
}
#blog-details-with-sidebar .sidebar-area .search-form-wrape .search-form input {
  min-height: 60px;
  border: none;
  padding-left: 15px;
  outline: 0;
  background-color: #F2F5F9;
}
#blog-details-with-sidebar .sidebar-area .search-form-wrape .search-form button {
  border: none;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 50px;
  width: 50px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 5px;
  transition: all 0.35s ease-in-out;
  font-size: 16px;
  background: #034FFD;
  border-radius: 8px;
}
#blog-details-with-sidebar .sidebar-area .category-box {
  margin:0 0 40px 0;
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  padding-left: 20px;
  padding-right: 30px;
  border-radius: 4px;
}
#blog-details-with-sidebar .sidebar-area .category-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 13px;
  color: #010030;
  padding-left: 53px;
  position: relative;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .sidebar-area .category-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2.6px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
#blog-details-with-sidebar .sidebar-area .category-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2.6px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li {
  line-height: 1.7;
  border-bottom: 1px dashed #c7c7c7;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li a {
  color: #666666;
  font-family: "Microsoft YaHei";
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  position: relative;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li a i {
  padding-right: 6px;
  font-size: 15px;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li a:hover {
  padding-left: 6px;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li a:hover .comment-count {
  background-color: #020234;
  color: white;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li a:hover::before {
  left: 4px;
}
#blog-details-with-sidebar .sidebar-area .category-box ul li a .comment-count {
  background-color: #F2F5F9;
  width: 27px;
  height: 27px;
  line-height: 28px;
  font-size: 12px;
  text-align: center;
  color: #020234;
  border-radius: 50%;
  transition: 0.45s ease;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  border-radius: 4px;
  margin-bottom: 40px;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-left: 53px;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .sidebar-area .recent-post-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single:not(:last-child) {
  border-bottom: 1px solid rgba(165, 158, 158, 0.2);
  padding-bottom: 21px;
  margin-bottom: 21px;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single {
  display: flex;
  align-items: center;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single:hover .blog-thumb img {
  transform: scale(1.2);
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-thumb {
  min-width: 95px;
  min-height: 95px;
  overflow: hidden;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-thumb img {
  max-width: 94px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  transition: 0.45s ease;
  transition-delay: 0.2s;
  transition-duration: 0.7s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-content {
  margin-top: -6px;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-content h6 {
  margin-left: 12px;
  margin-bottom: 6px;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-content h6 a {
  color: #020234;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-content .blog-meta-date {
  color: #666666;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 500;
}
#blog-details-with-sidebar .sidebar-area .recent-post-box .blog-single .blog-content .blog-meta-date i {
  font-size: 13px;
  padding-right: 5px;
  color: #034FFD;
}
#blog-details-with-sidebar .sidebar-area .tag-box {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin-top: 40px;
  border-radius: 4px;
}
#blog-details-with-sidebar .sidebar-area .tag-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  padding-left: 53px;
  border-bottom: 1px solid #DFDFED;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .sidebar-area .tag-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-details-with-sidebar .sidebar-area .tag-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-details-with-sidebar .sidebar-area .tag-box .tag-list a {
  padding: 9px 17px;
  margin: 5px 3px;
  background-color: #F2F5F9;
  color: #010030;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form {
  background-color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  margin-top: 40px;
  border-radius: 4px;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 13px;
  color: #010030;
  position: relative;
  padding-left: 53px;
  border-bottom: 1px solid #DFDFED;
  font-family: "Microsoft YaHei";
}
#blog-details-with-sidebar .sidebar-area .subscribe-form h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 9px;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 14px;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form form input {
  width: 100%;
  height: 50px;
  border: none;
  padding-left: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #F2F5F9;
  outline: none;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form form button {
  color: white;
  height: 50px;
  border: none;
  width: 170px;
  border-radius: 5px;
  transition: 500ms all ease;
  background-color: #034FFD;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form form button:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#blog-details-with-sidebar .sidebar-area .subscribe-form form button::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #d7398e;
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.35s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}

/*Team details start*/
.team-details {
  margin-top: 100px;
  margin-bottom: 70px;
}
.team-details .row {
  --bs-gutter-x: 3.2rem;
}
.team-details .img-box img {
  width: 100%;
}
.team-details .content-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #010030;
}
.team-details .content-box .designation {
  font-size: 16px;
  font-weight: 600;
  color: #034FFD;
  margin-top: 20px;
}
.team-details .content-box .contact-info {
  margin-top: 30px;
}
.team-details .content-box .contact-info ul {
  line-height: 2;
  padding-left: 17px;
  position: relative;
}
.team-details .content-box .contact-info ul::before {
  position: absolute;
  content: "";
  width: 3px;
  height: calc(100% - 20px);
  left: 0px;
  top: 11px;
  background: -webkit-linear-gradient(70deg, #d7398e, #034FFD);
}
.team-details .content-box .contact-info ul li {
  font-weight: 500;
  font-size: 16px;
  display: block;
}
.team-details .content-box .contact-info ul li .name {
  font-size: 17px;
  font-weight: 600;
  color: #010030;
  min-width: 80px;
}
.team-details .content-box .contact-info ul li .info {
  font-size: 16px;
  font-weight: 500;
  color: #6b7c93;
  margin-left: 20px;
}
.team-details .content-box p {
  color: #666666;
  line-height: 1.7;
  margin-top: 30px;
}
.team-details .content-box .social-link {
  margin-top: 35px;
}
.team-details .content-box .social-link ul {
  display: flex;
  gap: 10px;
}
.team-details .content-box .social-link ul li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid rgba(165, 158, 158, 0.2);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 500ms ease;
}
.team-details .content-box .social-link ul li a:hover {
  z-index: 1;
  color: white;
}
.team-details .content-box .social-link ul li a::before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0, 0);
  transition: all 500ms ease;
  background: #034FFD;
}
.team-details .content-box .social-link ul li a:hover::before {
  transform: scale(1, 1);
}
.team-details .second-box {
  display: flex;
  gap: 80px;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(165, 158, 158, 0.2);
}
.team-details .second-box .left-content {
  width: 50%;
}
.team-details .second-box .left-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010030;
  padding-left: 52px;
  position: relative;
}
.team-details .second-box .left-content h3::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 9px;
  top: 12px;
}
.team-details .second-box .left-content h3::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  background-color: #034FFD;
  left: 4px;
  top: 18px;
}
.team-details .second-box .left-content p {
  line-height: 1.7;
  color: #666666;
  margin-top: 20px;
}
.team-details .second-box .right-content {
  width: 50%;
  padding-right: 15px;
}
.team-details .second-box .right-content .progress-area .progressbar-item {
  margin-bottom: 28px;
}
.team-details .second-box .right-content .progress-area .progress-bar {
  margin: 0 0 10px;
  overflow: visible;
  background: transparent;
}
.team-details .second-box .right-content .progress-area .progress-number {
  padding-bottom: 2px;
  position: relative;
  margin: 2px 0;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #010030;
}
.team-details .second-box .right-content .progress-area .progress-title {
  z-index: 100;
  font-size: 16px;
  font-weight: 500;
  color: #010030;
  padding-bottom: 2px;
  margin: 0;
  text-transform: capitalize;
  font-family: "Microsoft YaHei";
}
.team-details .second-box .right-content .progress-area .progress-number-mark {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 6px 6px 5px;
  border-radius: 3px;
  color: white;
  margin-bottom: 4px;
  border-radius: 3px;
  background: #d7398e;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
}
.team-details .second-box .right-content .progress-area .down-arrow {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #d7398e;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.team-details .second-box .right-content .progress-area .progress-bg {
  height: 10px;
  background: #DFDFED;
  overflow: hidden;
  border-radius: 12px;
}
.team-details .second-box .right-content .progress-area .progress-fill {
  height: 12px;
  background: #034FFD;
  width: 0%;
}

.team-single-contact-form {
  background-color: #F2F5F9;
  padding-bottom: 100px;
  padding-top: 90px;
}
.team-single-contact-form .title-box {
  margin: auto;
  text-align: center;
  max-width: 500px;
  padding-bottom: 35px;
}
.team-single-contact-form .title-box span {
  font-size: 17px;
  font-weight: 500;
  color: #034FFD;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.team-single-contact-form .title-box span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: -26px;
  top: 9px;
}
.team-single-contact-form .title-box span::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #d7398e;
  left: -22px;
  top: 13px;
}
.team-single-contact-form .title-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #010030;
  text-transform: capitalize;
}
.team-single-contact-form .contact-form {
  margin: auto;
  width: 750px;
}
.team-single-contact-form .contact-form form .single-info {
  margin-bottom: 20px;
}
.team-single-contact-form .contact-form form .single-info input {
  padding: 18px 25px;
  border-radius: 8px;
  border: none;
  background-color: white;
  width: 100%;
  outline: none;
  color: #666666;
  font-size: 15px;
  font-weight: 500;
}
.team-single-contact-form .contact-form form .single-info textarea {
  width: 100%;
  padding: 20px 25px;
  border: none;
  outline: none;
  background-color: white;
  height: 220px;
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
}
.team-single-contact-form .contact-form form .submit-btn {
  padding: 18px 40px;
  background-color: #034FFD;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  margin: auto;
  display: block;
}

/*Team details end*/
.bread-crumb-optional {
  margin-top: -45px;
  padding: 150px 0;
  padding-top: 195px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.bread-crumb-optional::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(2, 2, 52, 0.9647058824), rgba(2, 2, 52, 0.7882352941), rgba(2, 9, 41, 0.137) 100%);
}
.bread-crumb-optional .content-box {
  z-index: 9;
  position: relative;
}
.bread-crumb-optional .content-box h3 {
  font-size: 52px;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  padding-bottom: 6px;
}
.bread-crumb-optional .content-box ul li i {
  color: white;
  font-size: 14px;
}
.bread-crumb-optional .content-box ul li a {
  color: #d7398e;
  font-size: 16px;
  font-weight: 600;
}
.bread-crumb-optional .content-box ul li span {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding-left: 6px;
}

/*Project Details start*/
.project-details {
  margin-top: 100px;
  margin-bottom: 100px;
}
.project-details .row {
  --bs-gutter-x: 3.3rem;
}
.project-details .service-details-content img {
  width: 100%;
  border-radius: 4px;
}
.project-details .service-details-content .service-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 35px;
  color: #010030;
}
.project-details .service-details-content .details-content {
  color: #666666;
  line-height: 1.7;
  margin-top: 15px;
}
.project-details .service-details-content .info-box {
  margin-top: 45px;
  margin-bottom: 45px;
  gap: 10px;
}
.project-details .service-details-content .info-box .left-content {
  width: 50%;
}
.project-details .service-details-content .info-box .left-content h3 {
  font-size: 25px;
  font-weight: 600;
  color: #010030;
  font-family: "Microsoft YaHei";
}
.project-details .service-details-content .info-box .left-content p {
  color: #666666;
  line-height: 1.7;
  margin-top: 15px;
}
.project-details .service-details-content .info-box .left-content ul {
  margin-top: 16px;
}
.project-details .service-details-content .info-box .left-content ul li {
  line-height: 2.5;
  font-size: 15px;
  font-weight: 500;
  color: #6b7c93;
  font-family: "Microsoft YaHei";
}
.project-details .service-details-content .info-box .left-content ul li i {
  width: 27px;
  height: 27px;
  line-height: 28px;
  text-align: center;
  background-color: #F2F5F9;
  border-radius: 50%;
  margin-right: 7px;
  color: #034FFD;
  font-size: 13px;
}
.project-details .service-details-content .info-box .right-content img {
  max-width: 100%;
  border-radius: 10px;
}
.project-details .sidebar-area {
  position: sticky;
  top: -100px;
}
.project-details .sidebar-area .services-list {
  background-color: #F2F5F9;
  padding: 40px 30px;
}
.project-details .sidebar-area .services-list h4 {
  font-size: 22px;
  font-weight: 700;
  color: #010030;
  padding-bottom: 25px;
  padding-left: 52px;
  position: relative;
}
.project-details .sidebar-area .services-list h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
.project-details .sidebar-area .services-list h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 13px;
}
.project-details .sidebar-area .services-list .single-info:not(:last-child) {
  border-bottom: 1px solid rgb(221, 221, 221);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.project-details .sidebar-area .services-list .single-info .icon {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-right: 20px;
  background-color: white;
  border-radius: 4px;
}
.project-details .sidebar-area .services-list .single-info .icon i {
  color: #034FFD;
  font-size: 21px;
}
.project-details .sidebar-area .services-list .single-info .title-wrap span {
  font-size: 15px;
  color: #666666;
  font-weight: 400;
  display: block;
}
.project-details .sidebar-area .services-list .single-info .title-wrap h5 {
  font-size: 17px;
  font-weight: 600;
  color: #010030;
  font-family: "Microsoft YaHei";
  margin-bottom: 0;
  padding-top: 5px;
}
.project-details .sidebar-area .contact-box {
  margin-top: 40px;
  padding: 40px 30px;
  background-color: #F2F5F9;
}
.project-details .sidebar-area .contact-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #010030;
  padding-bottom: 15px;
  padding-left: 52px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.project-details .sidebar-area .contact-box h4::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 9px;
  top: 8px;
}
.project-details .sidebar-area .contact-box h4::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #034FFD;
  left: 4px;
  top: 13px;
}
.project-details .sidebar-area .contact-box .contact-us .single-contact-info:not(:last-child) {
  margin-bottom: 20px;
}
.project-details .sidebar-area .contact-box .contact-us .single-contact-info {
  display: flex;
  gap: 12px;
}
.project-details .sidebar-area .contact-box .contact-us .single-contact-info .icon {
  padding-top: 6px;
}
.project-details .sidebar-area .contact-box .contact-us .single-contact-info .icon img {
  width: 35px;
  height: 35px;
}
.project-details .sidebar-area .contact-box .contact-us .single-contact-info .contact-info span {
  color: #666666;
  font-weight: 400;
  font-size: 16px;
}
.project-details .sidebar-area .contact-box .contact-us .single-contact-info .contact-info p {
  font-weight: 600;
  color: #020234;
  font-size: 17px;
  padding-top: 2px;
}

/*Footer section v1*/
#footer-section {
  background-color: #020234;
  position: relative;
}
#footer-section .row {
  --bs-gutter-y: 4rem;
}
#footer-section h4 {
  color: white;
  padding-bottom: 15px;
  font-size: 19px;
  font-weight: 600;
  font-family: "Microsoft YaHei";
}
#footer-section .box-1 {
  max-width: 330px;
}
#footer-section .box-1 p {
  line-height: 1.7;
  color: #DFDFED;
  margin-top: 22px;
  margin-bottom: 30px;
}
#footer-section .box-1 .wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-width: 300px;
}
#footer-section .box-1 .wrapper input {
  width: 100%;
  padding: 11px 18px;
  padding-bottom: 12px;
  padding-right: 70px;
  color: #010030;
  font-size: 18px;
  border: none;
  outline: none;
}
#footer-section .box-1 .send-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
  background: #034FFD;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.35s ease-in-out;
}
#footer-section .box-1 .send-btn:hover {
  background: #d7398e;
}
#footer-section .box-1 .send-btn:hover i {
  color: #00061E;
}
#footer-section .box-1 .send-btn i {
  font-size: 22px;
  padding-right: 4px;
  color: rgb(255, 255, 255);
  padding-bottom: 14px;
  transition: 0.35s ease-in-out;
}
#footer-section .box-2 {
  padding-left: 10px;
}
#footer-section .box-2 ul li {
  line-height: 2.2;
}
#footer-section .box-2 ul li:hover a {
  padding-left: 21px;
}
#footer-section .box-2 ul li:hover a::before {
  left: 3px;
}
#footer-section .box-2 ul li a {
  color: #DFDFED;
  font-weight: 400;
  padding-left: 18px;
  font-size: 15px;
  position: relative;
  transition: 0.45s ease;
}
#footer-section .box-2 ul li a::before {
  position: absolute;
  content: "\f054";
  left: 0;
  font-size: 15px;
  top: -5.4px;
  color: #034FFD;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  transition: 0.45s ease;
}
#footer-section .box-3 ul li {
  line-height: 2.2;
}
#footer-section .box-3 ul li a {
  color: #DFDFED;
  font-size: 15px;
  transition: 0.45s ease;
}
#footer-section .box-3 ul li a:hover {
  padding-left: 5px;
}
#footer-section .box-4 {
  margin-left: 42px;
}
#footer-section .box-4 ul li {
  color: #DFDFED;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
#footer-section .box-4 ul li img {
  width: 40px;
  height: 40px;
  margin-right: 6px;
}
#footer-section .box-4 ul li span {
  padding-left: 12px;
}
#footer-section .copyright-section {
  border-radius: 6px 6px 0 0;
  padding: 18px 30px;
  margin-top: 0px;
  flex-wrap: wrap-reverse;
  gap: 18px;
}
#footer-section .copyright-section span {
  margin-top: 4px;
  display: block;
  font-weight: 500;
  font-size: 16px;
}
#footer-section .copyright-section span a {
  color: #d7398e;
  font-weight: 700;
  font-size: 16px;
}
#footer-section .copyright-section .copyright-text {
  color: #DFDFED;
}
#footer-section .copyright-section .social-link ul {
  display: flex;
  justify-content: end;
  gap: 11px;
  margin-right: 130px;
}
#footer-section .copyright-section .social-link ul li a {
  width: 40px;
  height: 40px;
  line-height: 43px;
  border-radius: 50%;
  box-shadow: rgba(255, 255, 255, 0.15) 0px 2px 8px;
  text-align: center;
  display: block;
}
#footer-section .copyright-section .social-link ul li a i {
  font-size: 16px;
  color: #DFDFED;
}
#footer-section .copyright-section .social-link ul li a:hover i {
  animation: fadeInUp 0.6s;
}

/****Footer section v2 Start****/
#footer-section-v2 {
  padding-top: 100px;
  position: relative;
  background-color: #00061E;
}
#footer-section-v2 .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
#footer-section-v2 .bg-img img {
  opacity: 0.07;
  width: 100%;
  height: 100%;
}
#footer-section-v2 .row {
  --bs-gutter-y: 4rem;
}
#footer-section-v2 h4 {
  color: white;
  padding-bottom: 15px;
  font-size: 21px;
  font-weight: 600;
  font-family: "Microsoft YaHei";
}
#footer-section-v2 .box-1 {
  position: relative;
  max-width: 340px;
}
#footer-section-v2 .box-1 p {
  line-height: 1.7;
  color: #DFDFED;
  margin-top: 30px;
  margin-bottom: 30px;
}
#footer-section-v2 .box-1 .wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-width: 260px;
}
#footer-section-v2 .box-1 .wrapper form {
  position: relative;
}
#footer-section-v2 .box-1 .wrapper form input {
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
}
#footer-section-v2 .box-1 .wrapper form button {
  position: absolute;
  right: 5px;
  top: 4px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0026E2 0%, #00A3FD 100%);
  color: white;
  border: none;
}
#footer-section-v2 .box-2 {
  padding-left: 10px;
}
#footer-section-v2 .box-2 ul li {
  line-height: 2.2;
}
#footer-section-v2 .box-2 ul li:hover a {
  padding-left: 21px;
}
#footer-section-v2 .box-2 ul li:hover a::before {
  left: 3px;
}
#footer-section-v2 .box-2 ul li a {
  color: #DFDFED;
  font-weight: 500;
  padding-left: 18px;
  font-size: 15px;
  position: relative;
  transition: 0.45s ease;
}
#footer-section-v2 .box-2 ul li a::before {
  position: absolute;
  content: "\f054";
  left: 0;
  font-size: 15px;
  top: -5.4px;
  color: #00A3FD;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  transition: 0.45s ease;
}
#footer-section-v2 .box-3 {
  z-index: 2;
  position: relative;
}
#footer-section-v2 .box-3 ul li {
  line-height: 2.2;
}
#footer-section-v2 .box-3 ul li a {
  color: #DFDFED;
  font-weight: 500;
  padding-left: 18px;
  font-size: 15px;
  position: relative;
  transition: 0.45s ease;
}
#footer-section-v2 .box-3 ul li a::before {
  position: absolute;
  content: "\f054";
  left: 0;
  font-size: 15px;
  top: -5.4px;
  color: #00A3FD;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  transition: 0.45s ease;
}
#footer-section-v2 .box-4 {
  margin-left: 42px;
  z-index: 2;
  position: relative;
}
#footer-section-v2 .box-4 ul li {
  color: #DFDFED;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
#footer-section-v2 .box-4 ul li img {
  width: 40px;
  height: 40px;
  margin-right: 6px;
}
#footer-section-v2 .box-4 ul li span {
  padding-left: 12px;
}
#footer-section-v2 .copyright-section {
  padding: 18px 30px;
  margin-top: 95px;
  border-top: 1px solid #00044B;
  flex-wrap: wrap-reverse;
  gap: 18px;
  z-index: 2;
  position: relative;
}
#footer-section-v2 .copyright-section span {
  margin-top: 4px;
  display: block;
  font-weight: 500;
  font-size: 16px;
}
#footer-section-v2 .copyright-section span a {
  color: #d7398e;
  font-weight: 700;
  font-size: 16px;
}
#footer-section-v2 .copyright-section .copyright-text {
  color: #DFDFED;
  text-align: center;
}
#footer-section-v2 .copyright-section .social-link ul {
  display: flex;
  justify-content: end;
  gap: 11px;
  margin-right: 130px;
}
#footer-section-v2 .copyright-section .social-link ul li a {
  width: 40px;
  height: 40px;
  line-height: 43px;
  border-radius: 50%;
  box-shadow: rgba(255, 255, 255, 0.15) 0px 2px 8px;
  text-align: center;
  display: block;
}
#footer-section-v2 .copyright-section .social-link ul li a i {
  font-size: 16px;
  color: #DFDFED;
}
#footer-section-v2 .copyright-section .social-link ul li a:hover i {
  animation: fadeInUp 0.6s;
}

/****Footer v2 end****//*# sourceMappingURL=style.css.map */
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li {
  min-width: 40px;
  height: 40px;
  line-height: 27px;
  border: 2px solid #DFDFED;
  color: #010030;
  text-align: center;
  background-color: white;
  padding: 0 6px;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li a{
  display: block;
  text-align: center;
  margin-top: 3px;
  color: #010030;
}
#blog-page-section-sidebar-grid .blog-wraper nav .pagination li b{
  display: block;
  text-align: center;
  margin-top: 4px;
  color: #034FFD;
}
.blog-details-content .cta-box {
  margin-top: 55px;
  padding: 25px 40px;
  background-color: white;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 4px;
  border-left: 4px solid #034FFD;
}
.blog-details-content .cta-box p {
  line-height: 1.6;
  color: #666666;
  font-size: 14px;
  text-align: justify;
}
.blog-details-content .cta-box p span {
  font-size: 15px;
  font-weight: 600;
  margin-top: 7px;
  display: block;
  color: #d7398e;
}
.blog-details-content .cta-box i {
  font-size: 80px;
  color: #020234;
  opacity: 0.6;
  margin-left: 20px;
}
