/* ===========================
Index Of css

01. Variables CSS
02. Normalize CSS
03. Header CSS
04. Hero CSS
05. Features CSS
06. Achievement CSS
07. Testimonial CSS
08. Pricing CSS
09. Faq CSS
10. Blog CSS
11. Clients CSS
12. Team CSS
13. Portfolio CSS
14. Contact CSS
15. Error CSS
16. Mail Success CSS
17. Footer CSS
========================== */
/*======================================
    Variables
========================================*/
/*======================================
    Normalize CSS
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

html {
  scroll-behavior: smooth;
}

/*======================================
    二维码弹窗样式
========================================*/
.qrcode-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrcode-modal.hidden {
  display: none;
}

.qrcode-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.qrcode-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

#qrcode-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#qrcode-close:hover {
  background-color: #f5f5f5;
  color: #333;
}

.qrcode-modal-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.qrcode-modal-desc {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.qrcode-modal-img-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#qrcode-modal-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.qrcode-modal-features {
  margin-top: 20px;
}

.qrcode-modal-feature {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.qrcode-modal-feature svg {
  margin-right: 8px;
  color: #1677ff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
  .qrcode-modal-content {
    margin: 20px;
    padding: 20px;
    max-width: 100%;
  }
  
  .qrcode-modal-title {
    font-size: 18px;
  }
  
  #qrcode-modal-img {
    width: 160px;
    height: 160px;
  }
  
  .qrcode-modal-feature {
    font-size: 12px;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #888;
  overflow-x: hidden;
  font-size: 15px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 24px;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #3865F2;
  border-color: #3865F2;
}

select {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: #081828;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  background-color: -internal-light-dark(white, #3b3b3b);
  cursor: default;
  margin: 0em;
  font: 400 14px;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(#767676, #858585);
  -o-border-image: initial;
  border-image: initial;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: #081828;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-75 {
  margin-bottom: 75px;
}

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

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

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

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

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

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

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

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

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

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

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Bread Crumbs */
.breadcrumbs {
  position: relative;
  padding-bottom: 100px;
  padding-top: 180px;
  z-index: 2;
  text-align: left;
  background-color: #3865F2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs {
    padding-bottom: 60px;
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding-bottom: 60px;
    padding-top: 120px;
  }
}

.breadcrumbs .breadcrumbs-content {
  position: relative;
  text-align: center;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  position: relative;
  line-height: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 28px;
    line-height: 42px;
  }
}

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

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
  text-align: center;
  margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs .breadcrumb-nav {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb-nav {
    margin-top: 8px;
  }
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
  text-transform: capitalize;
}

.breadcrumbs .breadcrumb-nav li:after {
  content: "\ea5c";
  font-family: lineIcons;
  font-size: 10px;
  position: absolute;
  top: 4px;
  right: -7px;
}

.breadcrumbs .breadcrumb-nav li:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumbs .breadcrumb-nav li:last-child::after {
  display: none;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li a {
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  text-decoration: underline;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 300px;
  position: relative;
  z-index: 5;
}

.section-title h3 {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #3865F2;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 25px;
  line-height: 42px;
  text-transform: capitalize;
  position: relative;
  font-weight: 800;
}

.section-title p {
  font-size: 15px;
  line-height: 40px;
  font-size: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    padding: 0px 200px;
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    padding: 0px 20px;
    margin-bottom: 70px;
  }

  .section-title h3 {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .section-title p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .section-title {
    padding: 0px 10px;
    margin-bottom: 60px;
  }

  .section-title h3 {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 18px;
  }

  .section-title p {
    font-size: 14px;
  }
}

.section-title.align-right {
  padding: 0;
  padding-left: 600px;
}

.section-title.align-right h2:before {
  display: none;
}

.section-title.align-right h2:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: #3865F2;
  content: "";
}

.section-title.align-left {
  padding: 0;
  padding-right: 600px;
}

.section-title.align-left h2:before {
  left: 0;
  margin-left: 0;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #3865F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #fff !important;
  position: fixed;
  bottom: 55px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #081828;
}

/* Overlay */
.overlay {
  position: relative;
  z-index: 1;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #081828;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

/* Pagination CSS */
.pagination {
  text-align: left;
  margin: 40px 0 0 0;
  display: block;
}

.pagination.center {
  text-align: center;
}

.pagination.right {
  text-align: right;
}

.pagination.left {
  text-align: left;
}

.pagination .pagination-list {
  display: inline-block;
  overflow: hidden;
}

.pagination .pagination-list li {
  margin-right: 5px;
  display: inline-block;
  margin-top: 10px;
}

.pagination .pagination-list li:last-child {
  margin-right: 0px;
}

.pagination .pagination-list li a {
  background: #fff;
  color: #081828;
  font-weight: 400;
  font-size: 14px;
  border-radius: 5px;
  padding: 8px 20px;
  text-align: center;
  border: 1px solid #eee;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
  background: #3865F2;
  color: #fff;
  border-color: transparent;
}

.pagination .pagination-list li a i {
  font-size: 13px;
}

.blog-grids.pagination {
  margin-top: 50px;
  text-align: center;
}

.button .btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  background-color: #3865F2;
  color: #fff;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  margin-right: 5px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn i {
  display: inline-block;
  margin-right: 5px;
}

.button .btn:last-child {
  margin: 0;
}

.button .btn:hover {
  color: #fff;
  background-color: #081828;
  -webkit-box-shadow: 0px 4px 4px #0000000f;
  box-shadow: 0px 4px 4px #0000000f;
}

.button .btn-alt {
  background-color: #081828;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn-alt {
    padding: 10px 30px;
  }
}

@media (max-width: 767px) {
  .button .btn-alt {
    padding: 10px 30px;
  }
}

.button .btn-alt:hover {
  background-color: #3865F2;
  color: #fff;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

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

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #3865F2;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*======================================
	Start Header CSS
========================================*/
.header {
  width: 100%;
  background: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header {
    padding: 18px 0 !important;
  }

  .header .mobile-menu-btn .toggler-icon {
    background-color: #fff;
  }

  .header .button {
    margin: 0 !important;
  }

  .header .navbar-collapse {
    position: absolute;
    top: 67px !important;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }

  .header .navbar .navbar-nav .nav-item a:hover {
    color: #3865F2 !important;
  }

  .header .navbar .navbar-nav .nav-item a.active {
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item {
    margin: 0;
  }

  .header .navbar-nav .nav-item:hover a {
    color: #3865F2;
  }

  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }

  .header .navbar-nav .nav-item a::before {
    display: none;
  }

  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }

  .header .navbar-nav .nav-item .sub-menu li.active {
    background: #fff !important;
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }

  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: #fff !important;
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }

  .header .navbar-nav .nav-item a:hover {
    color: #3865F2;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 18px 0 !important;
  }

  .header .mobile-menu-btn .toggler-icon {
    background-color: #fff;
  }

  .header .navbar-collapse {
    position: absolute;
    top: 58px !important;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }

  .header .navbar .navbar-nav .nav-item a:hover {
    color: #3865F2 !important;
  }

  .header .navbar .navbar-nav .nav-item a.active {
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item {
    margin: 0;
  }

  .header .navbar-nav .nav-item:hover a {
    color: #3865F2;
  }

  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }

  .header .navbar-nav .nav-item a::before {
    display: none;
  }

  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }

  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }

  .header .navbar-nav .nav-item .sub-menu li.active {
    background: #fff !important;
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }

  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }

  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: #fff !important;
    color: #3865F2 !important;
  }

  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }

  .header .navbar-nav .nav-item a:hover {
    color: #3865F2;
  }
}

@media (max-width: 767px) {
  .header .button {
    display: none;
  }
}

.header .button .btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
}

.header .button .btn:hover {
  background-color: #fff;
  color: #3865F2;
}

.header .navbar-brand img {
  height: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-brand img {
    height: 35px;
  }
}

@media (max-width: 767px) {
  .header .navbar-brand img {
    height: 35px;
  }
}

.header.sticky .navbar-brand .Logo.svg {
  opacity: 0;
  visibility: hidden;
}

.header.sticky .navbar-brand .dark-logo {
  opacity: 1;
  visibility: visible;
}

.header.sticky .button .btn {
  background-color: #3865F2;
  color: #fff;
  border-color: transparent;
}

.header.sticky .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
}

.navbar-expand-lg .navbar-nav {
  margin: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}

.header .navbar .navbar-nav .nav-item a.active {
  color: #fff;
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: #3865F2;
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #081828;
}

.header .navbar .navbar-nav .nav-item .sub-menu a.active {
  color: #fff;
}

.sticky .navbar .navbar-nav .nav-item .sub-menu a.active {
  color: #fff;
}

.sticky .navbar .mobile-menu-btn .toggler-icon {
  background: #333;
}

/*===== NAVBAR =====*/
.navbar-area {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 0;
}

.navbar-area.sticky {
  position: fixed;
  z-index: 99;
  background: #3865F2;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fff;
  padding: 0px 0;
}

.navbar-area .dfImg {
  display: inline-block;
}

.navbar-area.sticky .dfImg {
  display: none;
}

.navbar-area .wImg {
  display: none;
}

.navbar-area.sticky .wImg {
  display: inline-block;
}


.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding-left: 0;
  border-radius: 0;
}

.navbar-brand img {
  width: 180px;
}

.mobile-menu-btn {
  padding: 0px;
}

.mobile-menu-btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mobile-menu-btn .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

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

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

.navbar-nav .nav-item {
  z-index: 1;
  position: relative;
  margin-right: 40px;
}

.navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}

.navbar-nav .nav-item:hover a {
  color: #fff;
}

.sticky .navbar-nav .nav-item:hover a {
  color: #3865F2;
}

.navbar-nav .nav-item a {
  font-size: 17px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding: 35px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav .nav-item a::after {
  opacity: 0;
  visibility: hidden;
}

.navbar-nav .nav-item:hover a:before {
  width: 100%;
}

.navbar-nav .nav-item a.active {
  color: #fff;
}

.navbar-nav .nav-item a.dd-menu::after {
  content: "\ea58";
  font: normal normal normal 1em/1 "LineIcons";
  position: absolute;
  right: 17px;
  font-size: 10px;
  top: 50%;
  margin-left: 5px;
  margin-top: 0px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    right: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 18px;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover>.sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover>.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  padding: 30px;
  min-width: 240px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 20px #0000001a;
  box-shadow: 0px 5px 20px #0000001a;
  position: absolute;
  top: 110% !important;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0 0 4px 4px;
  border-radius: 5px;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100% !important;
}

.navbar-nav .nav-item .sub-menu .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.navbar-nav .nav-item .sub-menu .nav-item:last-child {
  margin: 0;
}

.navbar-nav .nav-item .sub-menu .nav-item a {
  padding: 0;
  color: #888;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.navbar-nav .nav-item .sub-menu .nav-item a:hover {
  color: #3865F2;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu>li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu>li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu>li.active>a {
  color: #3865F2 !important;
}

.navbar-nav .nav-item .sub-menu>li>a {
  font-weight: 400;
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #222;
  font-weight: 400;
}

.navbar-nav .nav-item .sub-menu>li:first-child a {
  border: none;
}

.add-list-button {
  display: inline-block;
  margin-left: 10px;
}

.add-list-button .btn i {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}

/*======================================
     End Header CSS
  ========================================*/
/*======================================
    Hero Area CSS
========================================*/
.hero-area {
  position: relative;
  padding: 152px 0 60px 0;
  background: #3865F2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area {
    padding: 150px 0 60px 0;
  }
}

@media (max-width: 767px) {
  .hero-area {
    padding: 120px 0 50px 0;
  }
  .hero-image{
    display:none!important;
  }
}

.hero-area .hero-image img {
  width: 100%;
}

.hero-area .hero-image video {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-image {
    margin-top: 40px;
  }
}

.hero-area .hero-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-area .hero-content h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 50px;
  color: #fff;
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}

.hero-area .hero-content h1 span {
  display: block;
}

.hero-area .hero-content p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 40px;
  color: #fff;
}

.hero-area .hero-content .button {
  margin-top: 40px;
  display:flex;
  /* align-items:center; */
  gap:24px;
  flex-wrap:wrap;
  flex-direction: column;

}

.hero-area .hero-content .button .btn {
  background-color: #fff;
  color: #3865F2;
  width:300px;
}

.hero-area .hero-content .button .btnLhight{
  width:300px;
  text-align:center
}

.hero-area .hero-content .button .line{
  border-top: 1px solid #eee;
  width:300px;
}

.hero-area .hero-content .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.hero-area .hero-content .button .btn.btn-alt {
  background-color: #ffffff6b;
  color: #fff;
}

.hero-area .hero-content .button .btn.btn-alt:hover {
  background-color: #fff;
  color: #3865F2;
}

@media (max-width: 767px) {
  .hero-area .hero-content .button .video-button {
    margin-top: 20px;
  }
  .hero-area .hero-content .button {
    justify-content: center;
    align-items: center;
  }
}

.hero-area .hero-content .button .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: #fff;
  font-weight: 500;
}

.hero-area .hero-content .button .video-button:hover .video {
  color: #fff;
  background-color: #081828;
}

.hero-area .hero-content .button .video-button .video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #3865F2;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 16px;
  padding-left: 3px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.hero-area .hero-content .button .video-button .video:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-animation: pulse-border-2 2s linear infinite;
  animation: pulse-border-2 2s linear infinite;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-content {
    text-align: center;
  }

  .hero-area .hero-content h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
  }

  .hero-area .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-content {
    padding: 0 10px;
    text-align: center;
  }

  .hero-area .hero-content h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-area .hero-content p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px;
  }

  .hero-area .hero-content .button .btn {
    margin: 0;
  }

  .hero-area .hero-content .button .btn:last-child {
    margin: 0;
  }
}

/*======================================
    App Info CSS
========================================*/
.app-info .info-one {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one .info-image {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .app-info .info-one .info-image {
    padding-top: 50px;
  }
}

.app-info .info-one .info-image img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.075);
}

.app-info .info-one.style2 {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style2 .info-text {
    padding-top: 60px !important;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style2 .info-text {
    padding-top: 50px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style2 .info-image {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style2 .info-image {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style2 {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style2 {
    padding-top: 50px;
  }
}

.leftPadding.info-text {
  padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .leftPadding.info-text {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .leftPadding.info-text {
    padding: 0;
  }
}





.app-info .info-one .info-text .main-icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  display: block;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  background-color: #3865F2;
  margin-bottom: 30px;
}

.app-info .info-one .info-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #081828;
  line-height: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one .info-text h2 {
    font-size: 25px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .app-info .info-one .info-text h2 {
    font-size: 20px;
    line-height: 32px;
  }
}

.app-info .info-one .info-text p {
  margin-bottom: 15px;
  /* // */
  line-height: 40px;
  font-size: 20px;
  color: #616161;
}


.app-info .info-one .info-text .button {
  margin-top: 20px;
}

.app-info .info-one .info-text .author {
  margin-top: 30px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.app-info .info-one .info-text .author .image {
  position: relative;
  padding-left: 65px;
}

.app-info .info-one .info-text .author .image img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.app-info .info-one .info-text .author .image h4 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #888;
}

/*======================================
    Features Area CSS
========================================*/
.features {
  background-color: #f9f9f9;
}

.features .section-title {
  margin-bottom: 30px;
}

.features .single-feature {
  text-align: left;
  padding: 35px;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  margin-top: 30px;
  border: 1px solid #eee;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  height: 90%;
}

.features .single-feature:hover {
  -webkit-box-shadow: 0px 3px 5px #00000017;
  box-shadow: 0px 3px 5px #00000017;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.features .single-feature i {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  background-color: #3865F2;
  color: #fff;
  font-size: 20px;
  border-radius: 7px;
  -webkit-box-shadow: 0px 4px 6px #0000002a;
  box-shadow: 0px 4px 6px #0000002a;
  margin-bottom: 30px;
}

.features .single-feature h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.features .single-feature p {
  line-height: 30px;
  font-size: 18px;
}

.commpClass {
  line-height: 40px;
  font-size: 20px;
}

/*======================================
    Our Achievement CSS
========================================*/
.our-achievement {
  background-color: #3865F2;
  text-align: center;
  padding: 130px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our-achievement {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .our-achievement {
    padding: 60px 0;
  }
}

.our-achievement .title h2 {
  color: #fff;
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 10px;
}

.our-achievement .title p {
  color: #fff;
}

.our-achievement .single-achievement {
  margin-top: 50px;
  text-align: center;
  padding: 0px 10px;
}

.our-achievement .single-achievement h3 {
  font-size: 35px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.our-achievement .single-achievement p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .our-achievement .title h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .our-achievement .single-achievement {
    margin-top: 30px;
  }

  .our-achievement .single-achievement h3 {
    font-size: 28px;
  }
}

/*======================================
    Testimonial CSS
========================================*/
.testimonials {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.testimonials .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 80px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials .tns-nav {
    bottom: 50px;
  }
}

@media (max-width: 767px) {
  .testimonials .tns-nav {
    bottom: 40px;
  }
}

.testimonials .tns-nav button {
  height: 6px;
  width: 14px;
  background-color: #081828;
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0px 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.testimonials .tns-nav button:hover {
  background: #3865F2;
}

.testimonials .tns-nav button.tns-nav-active {
  background: #3865F2;
  width: 25px;
}

.testimonials .testi-patern1 {
  width: 300px;
  position: absolute;
  left: -200px;
  bottom: -90px;
}

@media (max-width: 767px) {
  .testimonials .testi-patern1 {
    display: none;
  }
}

.testimonials .testi-patern2 {
  width: 300px;
  position: absolute;
  right: -200px;
  top: -90px;
}

@media (max-width: 767px) {
  .testimonials .testi-patern2 {
    display: none;
  }
}

.testimonials .single-testimonial {
  text-align: center;
  padding: 0px 80px 40px 80px;
}

@media (max-width: 767px) {
  .testimonials .single-testimonial {
    padding: 0px 10px 20px 20px;
  }
}

.testimonials .single-testimonial .text .brand-icon {
  margin-bottom: 30px;
}

.testimonials .single-testimonial .text .brand-icon img {
  width: 140px;
}

.testimonials .single-testimonial .text p {
  color: #081828;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
}

@media (max-width: 767px) {
  .testimonials .single-testimonial .text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
  }
}

.testimonials .single-testimonial .author {
  margin-top: 30px;
  display: inline-block;
  position: relative;
}

.testimonials .single-testimonial .author img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: inline-block;
}

.testimonials .single-testimonial .author .name {
  font-size: 15px;
  font-weight: 500;
  color: #081828;
  display: block;
  margin-top: 10px;
}

.testimonials .single-testimonial .author .name span {
  color: #777;
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

/*=============================
	Pricing Table CSS
===============================*/
.pricing-table {
  background-color: #f9f9f9;
}

.pricing-table .section-title {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .pricing-table .section-title {
    margin-bottom: 30px;
  }
}

.pricing-table .single-table {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-top: 30px;
  background-color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.pricing-table .single-table:hover:hover {
  -webkit-box-shadow: 0px 3px 5px #00000017;
  box-shadow: 0px 3px 5px #00000017;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.pricing-table .single-table .table-head {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.pricing-table .single-table .table-head .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-table .single-table .table-head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.pricing-table .single-table .table-head .price {
  padding: 30px 0;
}

.pricing-table .single-table .table-head .price .amount {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
}

.pricing-table .single-table .table-head .price .amount .duration {
  display: inline-block;
  font-size: 14px;
  color: #888;
  font-weight: 400;
  margin-left: 3px;
}

.pricing-table .single-table .table-head .button .btn {
  width: 100%;
  padding: 12px 30px;
  font-size: 13px;
  background-color: #081828;
}

.pricing-table .single-table .table-head .button .btn:hover {
  background-color: #3865F2;
  color: #fff;
}

.pricing-table .single-table .table-content {
  padding: 25px;
}

.pricing-table .single-table .table-content .middle-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.pricing-table .single-table .table-content .table-list li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  margin-bottom: 13px;
}

.pricing-table .single-table .table-content .table-list li:last-child {
  margin: 0;
}

.pricing-table .single-table .table-content .table-list li i {
  color: #3865F2;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}

/*======================================
    Faq CSS
========================================*/
.faq {
  padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq {
    padding-bottom: 40px;
  }
}

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

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.accordion-item .accordion-button {
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  display: block;
  overflow: hidden;
  border: none;
  border: 1px solid #eee;
  padding: 20px 20px;
  padding-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button {
    padding: 18px 20px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .accordion-item .accordion-button {
    padding: 15px 20px;
    padding-right: 40px;
  }
}

.accordion-item .accordion-button .title {
  font-size: 15px;
  position: relative;
  font-weight: 600;
  float: left;
  padding-left: 45px;
  line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

.accordion-item .accordion-button .title .serial {
  color: #081828;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #eee;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.accordion-item .accordion-button i {
  font-size: 13px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #3865F2;
  border-color: transparent;
  border-radius: 8px 8px 0 0;
}

.accordion-button:not(.collapsed) .serial {
  background-color: #fff;
  color: #3865F2;
  border-color: transparent;
}

.accordion-button:not(.collapsed) i::before {
  content: "\eb2c";
  font-family: lineIcons;
}

.accordion-button::after {
  display: none;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  border-radius: 0 0 8px 8px;
  padding: 40px;
  background-color: #f9f9f9;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-body {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .accordion-body {
    padding: 20px;
  }
}

.accordion-body p {
  margin: 0;
  margin-bottom: 20px;
  color: #777;
  font-size: 18px;
  line-height: 30px;
}

.accordion-body p:last-child {
  margin: 0;
}

.accordion-item {
  margin-bottom: 20px;
}

/*======================================
    Blog CSS
========================================*/
.blog-section {
  background-color: #f9f9f9;
}

.blog-section .section-title {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .blog-section .section-title {
    margin-bottom: 20px;
  }
}

.blog-section .single-blog {
  margin-top: 30px;
  overflow: hidden !important;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.164);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.164);
  border-radius: 8px;
  background-color: #fff;
}

.blog-section .single-blog .blog-img {
  overflow: hidden;
}

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

.blog-section .single-blog .blog-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-section .single-blog:hover .blog-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-section .single-blog .blog-content {
  padding: 30px;
}

.blog-section .single-blog .blog-content .category {
  font-size: 14px;
  color: #3865F2;
  display: inline-block;
  font-weight: 600;
}

.blog-section .single-blog .blog-content h4 {
  display: block;
  margin-top: 5px;
  line-height: 25px;
}

.blog-section .single-blog .blog-content h4 a {
  font-size: 19px;
  color: #081828;
  display: inline-block;
}

.blog-section .single-blog .blog-content h4 a:hover {
  color: #3865F2;
}

.blog-section .single-blog .blog-content p {
  display: block;
  margin-top: 20px;
}

.blog-section .single-blog .blog-content .autor {
  position: relative;
  padding-left: 62px;
  margin-top: 30px;
}

.blog-section .single-blog .blog-content .autor img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-section .single-blog .blog-content .autor .name {
  color: #666;
  display: inline-block;
  margin-bottom: 1px;
  font-weight: 500;
  font-size: 14px;
}

.blog-section .single-blog .blog-content .autor .name:hover {
  color: #3865F2;
}

.blog-section .single-blog .blog-content .autor .meta-content {
  margin-left: 4px;
}

.blog-section .single-blog .blog-content .autor .meta-content li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}

.blog-section .single-blog .blog-content .autor .meta-content li a {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

.blog-section .single-blog .blog-content .autor .meta-content li a:hover {
  color: #3865F2;
}

.blog-section .single-blog .blog-content .autor .meta-content li::before {
  position: absolute;
  content: "";
  right: -5px;
  top: 50%;
  background-color: #d2d2d2;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-section .single-blog .blog-content .autor .meta-content li:last-child {
  margin: 0;
  padding: 0;
}

.blog-section .single-blog .blog-content .autor .meta-content li:last-child::before {
  display: none;
}

.blog-list {
  background: #f9f9f9;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .blog-list .pagination {
    margin-top: 20px;
  }
}

.blog-list .single-blog {
  margin: 0;
}

.blog-list .single-blog {
  margin-bottom: 30px;
}

/* News Details */
.blog-single {
  background: #f9f9f9;
}

.blog-single .single-inner .main-content-head {
  -webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  border-radius: 8px;
  overflow: hidden;
}

.blog-single .meta-information {
  background-color: #fff;
  padding: 40px;
}

@media (max-width: 767px) {
  .blog-single .meta-information {
    padding: 25px;
  }
}

.blog-single .meta-info {
  margin-top: 25px;
}

.blog-single .meta-info li {
  font-size: 14px;
  display: inline-block;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single .meta-info li {
    margin-bottom: 5px;
  }

  .blog-single .meta-info li::before {
    display: none;
  }

  .blog-single .meta-info li:first-child {
    display: block;
    margin-bottom: 15px;
  }
}

.blog-single .meta-info li::before {
  position: absolute;
  content: "";
  right: -5px;
  top: 50%;
  background-color: #d2d2d2;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-single .meta-info li:last-child {
  margin: 0;
  padding: 0;
}

.blog-single .meta-info li:last-child::before {
  display: none;
}

.blog-single .meta-info li a {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.blog-single .meta-info li a i {
  display: inline-block;
  margin-right: 2px;
}

.blog-single .meta-info li a:hover {
  color: #3865F2;
}

.blog-single .meta-info li a img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}

.blog-single .post-thumbnils {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.blog-single .post-thumbnils img {
  width: 100%;
}

.blog-single .detail-inner {
  background-color: #fff;
  padding: 40px;
}

@media (max-width: 767px) {
  .blog-single .detail-inner {
    padding: 25px;
  }
}

.blog-single .post-title {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 32px;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-single .post-title {
    line-height: 26px;
  }
}

.blog-single .post-title a {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single .post-title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-single .post-title a {
    font-size: 18px;
  }
}

.blog-single .post-title a:hover {
  color: #3865F2;
}

.blog-single p {
  font-size: 14px;
  margin: 20px 0;
  line-height: 26px;
}

.blog-single p:first-child {
  margin-top: 0;
}

.blog-single h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 28px;
}

.blog-single .list {
  margin: 30px 0;
}

.blog-single .list li {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.blog-single .list li:last-child {
  margin-bottom: 0;
}

.blog-single .list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #fff;
  font-size: 15px;
  color: #3865F2;
}

blockquote {
  position: relative;
  color: #fff;
  font-weight: 400;
  clear: both;
  z-index: 1;
  margin: 40px 0;
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid #eee;
  border-radius: 8px;
}

@media (max-width: 767px) {
  blockquote {
    padding: 20px;
  }
}

blockquote .icon i {
  font-size: 32px;
  color: #3865F2;
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  blockquote .icon i {
    margin-bottom: 15px;
  }
}

blockquote h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #081828;
}

@media (max-width: 767px) {
  blockquote h4 {
    font-size: 14px;
  }
}

blockquote span {
  font-size: 13px;
  display: block;
  margin-top: 20px;
  color: #888;
}

.post-social-media {
  margin-top: 40px;
}

.post-social-media .share-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
}

.post-details .post-social-media ul {
  display: inline-block;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .post-details .post-social-media ul {
    display: block;
    margin-top: 8px;
    margin-left: 0;
  }
}

.post-details .post-social-media ul li {
  display: inline-block;
  margin-right: 15px;
}

.post-details .post-social-media ul li a {
  font-size: 14px;
  color: #999;
  position: relative;
}

.post-details .post-social-media ul li a:hover {
  color: #3865F2;
}

.post-details .post-social-media ul li a span {
  background-color: #3865F2;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: -30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.post-details .post-social-media ul li a span::before {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -5px;
  bottom: -10px;
  border: 5px solid #3865F2;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
}

.post-details .post-social-media ul li a:hover span {
  opacity: 1;
  visibility: visible;
  top: -35px;
}

/*comments*/
.post-comments {
  background-color: #fff;
  padding: 40px;
  margin-top: 40px;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  border-radius: 8px;
  overflow: hidden;
}

.comment-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 40px !important;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.post-comments .comments-list li {
  padding: 30px;
  padding-left: 140px;
  position: relative;
  font-size: 14px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}

@media (max-width: 767px) {
  .post-comments .comments-list li {
    padding-left: 0;
    padding: 25px;
  }
}

.post-comments .comments-list li .comment-img {
  position: absolute;
  left: 30px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .post-comments .comments-list li .comment-img {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 12px;
  }
}

.post-comments .comments-list li .comment-img img {
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  border: 3px solid #eee;
}

.post-comments .comments-list li .comment-desc .desc-top {
  margin-bottom: 20px;
  position: relative;
  display: block;
}

.post-comments .comments-list li .comment-desc .desc-top h6 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.post-comments .comments-list li .comment-desc .desc-top span.date {
  font-size: 14px;
  font-weight: 400;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
  background-color: transparent;
  border-radius: 5px;
  color: #888;
}

@media (max-width: 767px) {
  .post-comments .comments-list li .comment-desc .desc-top .reply-link {
    position: relative;
    display: block;
    margin-top: 15px;
  }
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link:hover {
  color: #3865F2;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link i {
  margin-right: 5px;
}

.post-comments .comments-list li .comment-desc p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
}

.post-comments .comments-list li.children {
  margin-left: 130px;
}

@media (max-width: 767px) {
  .post-comments .comments-list li.children {
    margin: 0;
  }
}

.post-comments .comments-list li:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

/*Comment form*/
.comment-form {
  background-color: #fff;
  padding: 40px;
  margin-top: 40px;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  border-radius: 8px;
  overflow: hidden;
}

.comment-reply-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 40px !important;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.comment-form form .form-box {
  position: relative;
}

.comment-form form .form-box .icon {
  position: absolute;
  top: 17px;
  right: 25px;
  font-size: 16px;
}

.comment-form form .form-box .form-control-custom {
  border: none;
  background: #f9f9f9;
  font-size: 14px;
  color: #081828;
  padding: 0 25px;
  font-weight: 500;
  height: 50px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
}

.comment-form form .form-box textarea.form-control-custom {
  height: 200px;
  padding: 25px;
}

.comment-form form .form-box .form-control-custom::-webkit-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.comment-form form .form-box .form-control-custom:-ms-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.comment-form form .form-box .form-control-custom::-ms-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.comment-form form .form-box .form-control-custom::placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

/* News sidebar */
.sidebar .widget {
  padding: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .sidebar .widget:first-child {
    margin-top: 30px;
  }
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar .widget .widget-title {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
  line-height: 28px;
  z-index: 1;
}

.sidebar .widget.search-widget form {
  position: relative;
}

.sidebar .widget.search-widget form input {
  width: 100%;
  background-color: transparent;
  height: 55px;
  border: none;
  padding: 0 70px 0 30px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid #eee;
}

.sidebar .widget.search-widget form input::-webkit-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input:-ms-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input::-ms-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input::placeholder {
  color: #333;
}

.sidebar .widget.search-widget form button {
  border: none;
  position: absolute;
  right: 7px;
  top: 6px;
  width: 42px;
  height: 42px;
  z-index: 1;
  color: #fff !important;
  font-size: 13px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #fff;
  border-radius: 5px;
  padding: 0 !important;
  border: none;
  background: #3865F2;
}

.sidebar .widget.search-widget form button:hover {
  background-color: #081828;
  color: #fff;
}

.sidebar .widget.popular-feeds .single-popular-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.sidebar .widget.popular-feeds .single-popular-feed:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc {
  position: relative;
  padding-left: 100px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .cetagory {
  font-size: 13px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #888;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .cetagory:hover {
  color: #3865F2;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img {
  position: absolute;
  left: 0;
  top: 5px;
  overflow: hidden;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img img {
  width: 80px;
  border-radius: 8px;
  height: 80px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
  font-size: 14px;
  font-weight: 500;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a:hover {
  color: #3865F2;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
  font-weight: 400;
  font-size: 13px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time i {
  margin-right: 4px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.categories-widget ul li:first-child a {
  padding-top: 0;
}

.sidebar .widget.categories-widget ul li:last-child a {
  padding-bottom: 0;
  border: none;
}

.sidebar .widget.categories-widget ul li a {
  font-size: 14px;
  padding: 15px 0;
  font-weight: 500;
  display: block;
  color: #888;
  border-bottom: 1px solid #eee;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: #3865F2;
  padding-left: 10px;
}

.sidebar .widget.popular-tag-widget {
  padding-bottom: 35px;
}

.popular-tag-widget .tags>a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px 15px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  background: #3865F2;
  margin-right: 5px;
  margin-bottom: 10px;
  color: #fff;
  background: transparent;
  color: #888;
  border: 1px solid #eee;
  border-radius: 5px;
}

.popular-tag-widget .tags>a:hover {
  background-color: #3865F2;
  color: #fff;
  border-color: transparent;
}

.sidebar .widget.help-call .inner {
  text-align: left;
}

.sidebar .widget.help-call .inner h3 {
  color: #081828;
  font-size: 24px;
  font-weight: 700;
  color: #3865F2;
  margin: 0;
}

.sidebar .widget.help-call .inner h3 span {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: #081828;
  margin-top: 10px;
}

/*======================================
   Clients CSS
========================================*/
.client-logo-section {
  padding: 60px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .client-logo-section {
    padding: 40px 0;
  }
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo {
  padding: 10px 20px;
  text-align: center;
  margin: auto;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
  max-width: 180px;
  width: 100%;
  opacity: .8;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img:hover {
  opacity: 1;
}

/*======================================
    Team CSS
========================================*/
.team .section-title {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .team .section-title {
    margin-bottom: 30px;
  }
}

.team .single-team {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.team .single-team:hover:hover {
  -webkit-box-shadow: 0px 3px 5px #00000017;
  box-shadow: 0px 3px 5px #00000017;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

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

.team .single-team .content {
  padding: 25px 30px 30px 30px;
  border: 1px solid #eee;
  border-radius: 0 0 10px 10px;
}

.team .single-team .text h3 a {
  font-size: 17px;
  font-weight: 600;
  color: #081828;
}

.team .single-team .text h5 {
  font-size: 14px;
  font-weight: 400;
  color: #3865F2;
  display: block;
  margin-top: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .team .single-team .text {
    text-align: center;
  }
}

.team .single-team .social {
  display: inline-block;
  float: right;
}

.team .single-team .social li {
  display: inline-block;
  margin-right: 10px;
}

.team .single-team .social li:last-child {
  margin: 0;
}

.team .single-team .social li a {
  color: #666;
}

.team .single-team .social li a:hover {
  color: #3865F2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .team .single-team .social {
    float: none;
    display: block;
    margin-top: 20px;
    text-align: center;
  }
}

/*======================================
    Call To Action CSS
========================================*/
.call-action {
  background-color: #3865F2;
}

.call-action .cta-content {
  text-align: center;
  padding: 0px 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .cta-content {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .call-action .cta-content {
    padding: 0;
  }
}

.call-action .cta-content h2 {
  color: #fff;
  line-height: 50px;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .cta-content h2 {
    font-size: 32px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .call-action .cta-content h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

.call-action .cta-content p {
  color: #fff;
  padding: 0px 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .cta-content p {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .call-action .cta-content p {
    padding: 0;
  }
}

.call-action .cta-content .button {
  margin-top: 40px;
}

.call-action .cta-content .button .btn {
  background-color: #fff;
  color: #3865F2;
}

.call-action .cta-content .button .btn:hover {
  color: #fff;
  background-color: #081828;
}

/*======================================
	Contact CSS
========================================*/
.contact-us {
  position: relative;
  background-color: #fff;
}

.contact-us .section-title {
  margin-bottom: 50px;
}

.contact-us .contact-info .single-info {
  margin-top: 30px;
  position: relative;
  padding: 40px;
  padding-left: 100px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-us .contact-info .single-info:hover {
  background-color: #3865F2;
}

.contact-us .contact-info .single-info:hover i {
  color: #fff;
}

.contact-us .contact-info .single-info:hover h3 {
  color: #fff;
}

.contact-us .contact-info .single-info:hover ul li {
  color: #fff;
}

.contact-us .contact-info .single-info:hover ul li a {
  color: #fff;
}

.contact-us .contact-info .single-info:hover ul li a:hover {
  opacity: 0.8 !important;
  color: #fff;
}

.contact-us .contact-info .single-info i {
  font-size: 30px;
  color: #3865F2;
  position: absolute;
  left: 40px;
  top: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-us .contact-info .single-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-us .contact-info .single-info ul li {
  display: block;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-us .contact-info .single-info ul li:last-child {
  margin: 0;
}

.contact-us .contact-info .single-info ul li a {
  color: #888;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-us .contact-info .single-info ul li a:hover {
  color: #3865F2;
}

/* Contact Form Head */
.contact-form-head {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.contact-form-head::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background-color: #3865F2;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .contact-form-head::before {
    width: 100%;
  }
}

.contact-form-head .contact-inner-title h2 {
  font-size: 30px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-head .contact-inner-title h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .contact-form-head .contact-inner-title h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

.contact-form-head .contact-inner-title p {
  color: #fff;
}

.contact-form-head .contact-inner-title .question {
  display: block;
  min-height: 70px;
  margin-top: 40px;
}

.contact-form-head .contact-inner-title .question img {
  height: 70px;
  width: 70px;
  border-radius: 70px;
  float: left;
  margin-right: 20px;
}

.contact-form-head .contact-inner-title .question h4 {
  font-size: 20px;
  font-weight: 600;
  padding-top: 15px;
  color: #fff;
}

.contact-form-head .contact-inner-title .question h4 span {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.contact-form-head .contact-inner-title .day-list {
  display: block;
  margin-top: 40px;
}

.contact-form-head .contact-inner-title .day-list li {
  color: #fff;
  font-weight: 500;
  margin-bottom: 3px;
  display: block;
}

.contact-form-head .contact-inner-title .day-list li:last-child {
  margin: 0;
}

.contact-form-head .contact-inner-title .call-back {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  margin-top: 30px;
  text-transform: capitalize;
}

.contact-form-head .contact-inner-title .call-back i {
  font-size: 15px;
  display: inline-block;
  margin-left: 5px;
}

.contact-form-head .form-main {
  padding: 50px 50px;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 30px 0px rgba(32, 32, 32, 0.11);
  box-shadow: 0px 1px 30px 0px rgba(32, 32, 32, 0.11);
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .contact-form-head .form-main {
    padding: 35px;
    margin-top: 40px;
  }
}

.contact-form-head .form-main .form-title {
  margin-bottom: 30px;
}

.contact-form-head .form-main .form-title h2 {
  margin-bottom: 35px;
  font-size: 22px;
}

.contact-form-head .form-main .form-title p {
  font-size: 16px;
}

.contact-form-head .form-main .form .form-group {
  margin-bottom: 15px;
  display: block;
}

.contact-form-head .form-main .form .form-group input {
  height: 52px;
  line-height: 52px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 0px 20px;
  color: #333;
  font-weight: 400;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.contact-form-head .form-main .form .form-group textarea {
  height: 180px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 15px 20px;
  color: #333;
  resize: none;
  font-weight: 400;
  resize: vertical;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.contact-form-head .form-main .form .form-group.button {
  width: 100%;
  margin-bottom: 0;
}

.contact-form-head .form-main .form .form-group.button .btn {
  height: 50px;
  border: none;
  width: 100%;
}

.map-section {
  background-color: #f9f9f9;
}

.map-section .mapouter {
  height: 500px;
}

.map-section .mapouter .gmap_canvas {
  height: 500px;
}

.map-section .mapouter .gmap_canvas iframe {
  height: 500px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-section .mapouter {
    height: 400px;
  }

  .map-section .mapouter .gmap_canvas {
    height: 400px;
  }

  .map-section .mapouter .gmap_canvas iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .map-section .mapouter {
    height: 300px;
  }

  .map-section .mapouter .gmap_canvas {
    height: 300px;
  }

  .map-section .mapouter .gmap_canvas iframe {
    height: 300px;
  }
}

/*======================================
	Error 404 CSS
========================================*/
.error-area {
  height: 100vh;
  text-align: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: relative;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.error-area .error-content h1 {
  font-size: 100px;
  color: #3865F2;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h1 {
    font-size: 60px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .error-area .error-content h1 {
    font-size: 45px;
    line-height: 30px;
  }
}

.error-area .error-content h2 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #081828;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .error-area .error-content h2 {
    font-size: 18px;
  }
}

.error-area .error-content p {
  font-weight: 400;
  margin-bottom: 40px;
  color: #888;
}

/*======================================
	Mail Success CSS
========================================*/
.maill-success {
  height: 100vh;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.maill-success .success-content i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #3865F2;
}

.maill-success .success-content h1 {
  font-size: 40px;
  color: #3865F2;
  margin-bottom: 10px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maill-success .success-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .maill-success .success-content h1 {
    font-size: 22px;
  }
}

.maill-success .success-content h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #081828;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maill-success .success-content h2 {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .maill-success .success-content h2 {
    font-size: 15px;
  }
}

.maill-success .success-content p {
  font-weight: 400;
  margin-bottom: 20px;
}

/*======================================
	Footer CSS
========================================*/
.footer {
  background-color: #081828;
  position: relative;
}

.footer .footer-top {
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top {
    padding: 80px 0;
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top {
    padding: 60px 0;
    padding-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single-footer {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer .single-footer {
    margin-top: 40px;
    text-align: center;
  }
}

.footer .single-footer.f-about {
  padding-right: 30px;
}

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

.footer .single-footer.f-about .logo img {
  width: 180px;
}

.footer .single-footer.f-about p {
  color: #D2D6DC;
  margin-top: 20px;
  font-size: 14px;
}

.footer .single-footer.f-about .social {
  margin-top: 30px;
}

.footer .single-footer.f-about .social li {
  display: inline-block;
  margin-right: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single-footer.f-about .social li {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .footer .single-footer.f-about .social li {
    margin-bottom: 10px;
  }
}

.footer .single-footer.f-about .social li:last-child {
  margin: 0;
}

.footer .single-footer.f-about .social li a {
  color: #D2D6DC;
  font-size: 15px;
}

.footer .single-footer.f-about .social li a:hover {
  color: #3865F2;
}

.footer .single-footer.f-about .social li:last-child {
  margin: 0;
}

.footer .single-footer.f-about .copyright-text {
  color: #D2D6DC;
  font-size: 14px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .footer .single-footer.f-about .copyright-text {
    margin-top: 20px;
  }
}

.footer .single-footer.f-about .copyright-text a {
  color: #D2D6DC;
}

.footer .single-footer.f-about .copyright-text a:hover {
  color: #3865F2;
}

.footer .single-footer.f-link li {
  display: block;
  margin-bottom: 12px;
}

.footer .single-footer.f-link li:last-child {
  margin: 0;
}

.footer .single-footer.f-link li a {
  font-size: 15px;
  font-weight: 400;
  color: #D2D6DC;
}

.footer .single-footer.f-link li a:hover {
  color: #3865F2;
}

.footer .single-footer h3 {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 35px;
  color: #D2D6DC;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single-footer h3 {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .footer .single-footer h3 {
    margin-bottom: 25px;
  }
}

.footer .footer-newsletter {
  padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-newsletter {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .footer .footer-newsletter {
    padding-bottom: 60px;
    text-align: center;
  }
}

.footer .footer-newsletter .inner-content {
  border: 2px solid rgba(238, 238, 238, 0.171);
  padding: 50px;
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-newsletter .inner-content {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .footer .footer-newsletter .inner-content {
    padding: 30px;
  }
}

.footer .footer-newsletter .title {
  position: relative;
}

.footer .footer-newsletter .title h3 {
  color: #D2D6DC;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-newsletter .title h3 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .footer .footer-newsletter .title h3 {
    font-size: 16px;
  }
}

.footer .footer-newsletter .title p {
  font-size: 15px;
  color: #D2D6DC;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-newsletter .title p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .footer .footer-newsletter .title p {
    font-size: 14px;
  }
}

.footer .footer-newsletter .title p a {
  color: #3865F2;
  text-decoration: underline;
}

.footer .footer-newsletter .title p a:hover {
  color: #fff;
}

.footer .footer-newsletter .newsletter-form {
  position: relative;
}

@media (max-width: 767px) {
  .footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
  }
}

.footer .footer-newsletter .newsletter-form input {
  height: 48px;
  width: 300px;
  display: inline-block;
  background: transparent;
  border: none;
  color: #fff;
  border-radius: 0;
  padding: 0 20px;
  color: #fff !important;
  font-size: 14px;
  background-color: #fff3;
  border-radius: 5px;
  float: right;
  margin-right: 148px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-newsletter .newsletter-form input {
    width: 100%;
    margin: 0;
    padding-right: 144px;
  }
}

@media (max-width: 767px) {
  .footer .footer-newsletter .newsletter-form input {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

.footer .footer-newsletter .newsletter-form ::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.footer .footer-newsletter .newsletter-form :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.footer .footer-newsletter .newsletter-form ::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

/* 右侧二维码悬浮样式 */
.wechat-qrcode-container {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.qrcode-content {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.qrcode-content:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.qrcode-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.qrcode-image {
  margin-bottom: 8px;
  background: #f8f8f8;
  border-radius: 8px;
}

.qrcode-image img {
  width: 125px;
  height: 125px;
  display: block;
  margin: 0 auto;
}

.qrcode-subtitle {
  font-size: 14px;
  color: #ff6700;
  font-weight: 500;
  line-height: 1.5;
  max-width: 130px;
  word-break: break-word;
  test-align: center;
}

/* 左右抖动动画 */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-3px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(3px);
  }
}

.shake-animation {
  animation: shake 1.5s ease-in-out infinite;
}

/* 放大缩小抖动动画 */
@keyframes pulse-shake {

  0%,
  100% {
    transform: scale(1) translateY(0);
  }

  25% {
    transform: scale(1.05) translateY(-2px);
  }

  50% {
    transform: scale(1) translateY(0);
  }

  75% {
    transform: scale(1.05) translateY(-2px);
  }
}

.pulse-animation {
  animation: pulse-shake 2s ease-in-out infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .wechat-qrcode-container {
    display: none
  }

  .qrcode-content {
    padding: 15px;
  }

  .qrcode-image img {
    width: 120px;
    height: 120px;
  }

  .qrcode-title {
    font-size: 14px;
  }

  .qrcode-subtitle {
    font-size: 12px;
  }
}

.footer .footer-newsletter .newsletter-form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.footer .footer-newsletter .newsletter-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.footer .footer-newsletter .newsletter-form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

.footer .footer-newsletter .newsletter-form .button {
  display: inline-block;
  position: absolute;
  right: 0;
}

@media (max-width: 767px) {
  .footer .footer-newsletter .newsletter-form .button {
    position: relative;
    margin-top: 10px;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .footer .footer-newsletter .newsletter-form .button .btn {
    width: 100%;
  }
}

.footer .footer-newsletter .newsletter-form .button .btn {
  display: inline-block;
  background: #3865F2;
  color: #fff;
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
}

.footer .footer-newsletter .newsletter-form .button .btn::before {
  background-color: #fff;
}

.footer .footer-newsletter .newsletter-form .button .btn:hover {
  color: #3865F2;
  background-color: #fff;
}


/* 新底部样式 */
#Foot-box {
  position: relative;
  bottom: 0;
  width: 100%;

}

#Foot-box .Foot {
  width: 100%;
  background-color: #000;
  border-top: 1px solid #ebedf0;
}

#Foot-box .commContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 28px;
  padding-left: 12px;
  padding-right: 12px;
}

#Foot-box .flex {
  display: flex;
}

#Foot-box .flex-col {
  flex-direction: column;
}

#Foot-box .flex-row {
  flex-direction: row;
}

#Foot-box .justify-between {
  justify-content: space-between;
}


#Foot-box .items-start {
  align-items: flex-start;
}

#Foot-box .justify-center {
  justify-content: center;
}

#Foot-box .md\:justify-start {
  justify-content: flex-start;
}

#Foot-box .mb-\[24px\] {
  margin-bottom: 24px;
}

#Foot-box .md\:mb-0 {
  margin-bottom: 0;
}

#Foot-box .h-\[24px\] {
  height: 24px;
}

#Foot-box .mainColor {
  color: #fff !important;
}

#Foot-box .text-\[14px\] {
  font-size: 14px;
}

#Foot-box .leading-\[22px\] {
  line-height: 22px;
}

#Foot-box .mt-\[12px\] {
  margin-top: 12px;
}

#Foot-box .mt-\[24px\] {
  margin-top: 24px;
}

#Foot-box .tipColor {
  color: #999;
}

#Foot-box .gap-\[12px\] {
  gap: 12px;
}

#Foot-box .justify-start {
  justify-content: flex-start;
}

#Foot-box .leading-\[24px\] {
  line-height: 24px;
}

/* 响应式设计 */
@media (max-width: 767px) {
  #Foot-box .commContainer>div:first-child {
    flex-direction: column;
  }

  #Foot-box .md\:w-1\/3 {
    width: 100%;
  }

  #Foot-box .mt-[24px] {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  #Foot-box .commContainer>div:first-child {
    flex-direction: row;
  }

  #Foot-box .mt-[24px] {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .commContainer {
    padding-left: 36px;
    padding-right: 36px;
  }

  .flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1536px) {
  .commContainer {
    padding-left: 0;
    padding-right: 0;
  }
}

.bg {
  background-color: #f9f9f9
}

.contact-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code {
  width: 200px;
  height: 200px
}

/* 移动端样式 */
/* 移动端底部固定按钮 */
.mobile-bottom-buttons {
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 22;
}

/* 在桌面端隐藏 */
@media (min-width: 768px) {
  .mobile-bottom-buttons {
    display: none;
  }
}

/* 按钮样式 */
.mobile-bottom-buttons button,
.mobile-bottom-buttons a {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 22px;
  color: white;
  text-decoration: none;
}

/* 申请试用按钮 */
.mobile-bottom-buttons button {
  background-color: #306af1;
  border: none;
  cursor: pointer;
}

/* 电话咨询按钮 */
.mobile-bottom-buttons a {
  background-color: #0D44C2;
}

/* 图标样式 */
.mobile-bottom-buttons i {
  margin-right: 8px;
  font-size: 20px;
  line-height: 20px;
}



@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}



/* 关于我们样式 */
.about-section {
  padding: 36px 0;
  background-color: #fff;
  scroll-margin-top: 100px;
}

@media (min-width: 768px) {
  .about-section {
    padding: 88px 0;
  }
}

.about-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}



.about-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #081828;
}

.phone-icon .iconfont,
.address-icon .iconfont {
  color: #fff;
  line-height: 16px;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 32px;
    line-height: 54px;
  }
}

.about-content {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  padding: 0 12px;
  color: #616161;
}

@media (min-width: 768px) {
  .about-content {

    text-align: left;
  }

  .hidden-md {
    display: block;
  }
}

.contact-info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-info {
    gap: 40px;
    flex-direction: row;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  gap: 10px;
}

@media (min-width: 768px) {
  .contact-item {
    justify-content: flex-start;
  }
}

.contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #C4D5FB;
  color: #fff;
  font-size: 14px;
}

@media (min-width: 768px) {
  .contact-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    font-size: 20px;
  }
}

.contact-text {
  color: #081828;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 768px) {
  .contact-text {
    font-size: 16px;
    line-height: 32px;
  }
}


.ai-products {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .ai-products {
    justify-content: center;
  }

  .ai-product-item {
    width: calc(33% - 20px);
  }
}

.ai-product-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ai-product-title {
  color: #fff;
  margin-top: 8px;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
}

.ai-product-img {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-product-img img {
  width: 40px;
  height: 40px;
}

.app-info .info-one.style3 {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style3 .info-text {
    padding-top: 60px !important;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style3 .info-text {
    padding-top: 50px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style3 .info-image {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style3 .info-image {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style3 {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style3 {
    padding-top: 50px;
  }
}

.app-info .info-one.style3 .info-text {
  padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .app-info .info-one.style3 .info-text {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .app-info .info-one.style3 .info-text {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .newflex {
    flex-direction: column-reverse;
  }
}



@media (max-width: 767px) {
  .app-info .info-one.style2 .info-image {
    padding-top: 50px !important;
  }
}


@media (max-width: 767px) {
  .features .single-feature {
    padding: 16px;
    height: 100%;

  }

  .features.section .col-6 {
    padding-bottom: 16px
  }
}

.contact-text-new {
  display: none;
  text-align: center;
  margin-top: 16px;
  color: #081828;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 767px) {
  .contact-text-new {
    display: block
  }
}

@media (max-width: 767px) {
  .our-achievement .single-achievement {
    min-width: 110px;
  }
}


.highlightText {
  font-size: 22px;
  font-weight: 600;
  display:inline;
}


.highlightText1 {
  font-size: 22px;
  font-weight: 600
}

@media (max-width: 767px) {
  .highlightText {
    font-size: 18px;
  }


  .highlightText1 {
    font-size: 18px;
  }
}

.hightSpan {
  font-weight: 600;
  color: #081828;
  display: inline;
}

/* 新增样式 */
.steps-list {
  list-style-type: decimal;
  list-style-position: inside;
  line-height: 40px;
  font-size: 20px;
  color: #616161;
}

/* 保持注释结构，使用ul小圆点样式 */
.steps-description {
  /* margin-top: 16px; */
}

/* ul小圆点样式定义 */
.bullet-list {
  color: #616161;
  list-style-type: none;
  line-height: 40px;
  font-size: 20px;
  padding-left: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
}

/* 自定义蓝色小圆点 */
.bullet-list li::before {
  content: "•";
  color: #3865F2;
  position: absolute;
  left: 5px;
  font-size: 20px;
  line-height: 40px;
}

.our-achievement .title p {
  font-size: 20px;
  line-height: 40px;
}

.call-action .cta-content p {
  font-size: 20px;
  line-height: 40px;
}

.accordion-item .accordion-button .title {
  font-size: 20px;
  line-height: 40px;
}

.our-achievement .single-achievement p {
  font-size: 20px;
  line-height: 40px;
}

.features .single-feature h3 {
  font-size: 20px;
  line-height: 40px;
}

/* 屏幕宽度小于1400px时隐藏 */
@media (max-width: 1399px) {
  .button.add-list-button {
    display: none;
  }
}

/* 、、=================================== */
.font18{
  font-size:18px!important;
}
.btnLhight{
  background-color: #ff6700;
  color: #fff;
  padding: 13px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size:18px;
}

a.btnLhight:hover {
 color: #fff;
 opacity: 0.9;
}

:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --primary: oklch(0.546 0.245 262.881);
  --primary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --accent: oklch(0.705 0.213 47.604);
  --accent-foreground: oklch(1 0 0);
  --border: oklch(0.922 0 0);
  --radius: 1rem;
}

.wrapper {
  width: 100%;
  max-width: 1090;
}

.banner {
  width: 100%;
  background-color: color-mix(in oklch, var(--muted) 50%, transparent);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
}

.banner-inner {
  display: flex;
  flex-direction: column;
}

/* 左侧区域 */
.banner-left {
  flex: 1;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, color-mix(in oklch, var(--primary) 5%, transparent), transparent, transparent);
}

.icon-large {
  display: none;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: calc(var(--radius) + 0.5rem);
  background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary) 80%, var(--background)));
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px color-mix(in oklch, var(--primary) 20%, transparent);
  color: var(--primary-foreground);
}

.content-left {
  flex: 1;
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.headline {
  font-size: 30px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 50px;
  text-wrap: balance;
}

.subtext {
  margin-top: 0.375rem;
  font-size: 18px;
  color: var(--muted-foreground);
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分隔线 */
.divider {
  display: none;
  width: 1px;
  background-color: var(--border);
}

/* 右侧区域 */
.banner-right {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  background-color: color-mix(in oklch, var(--background) 50%, transparent);
}
/* 响应式设计 */
@media (max-width: 768px) {
  .banner-right {
    padding: 16px;
  }
  .banner-left{
    padding: 16px;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: color-mix(in oklch, var(--muted) 80%, transparent);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.feature-card svg {
  width: 25px;
  height: 25px;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.feature-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 22px;
}

/* CTA 按钮 */
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-button {
  flex: 1;
  height: 56px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  background: #3865F2;
  color: var(--primary-foreground);
  border: none;
  border-radius: 5px;
  box-shadow: 0 10px 25px -5px color-mix(in oklch, var(--primary) 30%, transparent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.cta-button:hover {
  box-shadow: 0 20px 40px -10px color-mix(in oklch, var(--primary) 40%, transparent);
  transform: scale(1.02);
  background: #3865F2;
  color:#fff!important;
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(0.25rem);
}

.cta-badge {
  margin-left: 0.75rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-weight: 700;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* 信任指标 */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1rem;
  font-size: 14px;
  line-height:24px;
  color: var(--muted-foreground);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: color-mix(in oklch, var(--primary) 60%, transparent);
}

/* 响应式设计 */
@media (min-width: 640px) {
  .icon-large {
    display: flex;
  }

  .trust-indicators {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {


  .banner-inner {
    flex-direction: row;
  }

  .banner-left {
    padding: 2rem;
  }

  .icon-large {
    width: 5rem;
    height: 5rem;
  }

  .icon-large svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .divider {
    display: block;
  }


}


.sectionNew{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f9f9f9;
}

/* 弹窗样式 */
.qrcode-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrcode-modal.hidden {
  display: none;
}

.qrcode-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.qrcode-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-20px);
  animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.qrcode-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
}

.qrcode-close-btn:hover {
  background-color: #f5f5f5;
  color: #333;
  transform: rotate(90deg);
}

.qrcode-modal-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.qrcode-modal-desc {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.qrcode-modal-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

#qrcode-modal-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
  .qrcode-modal-content {
    margin: 20px;
    padding: 25px 20px;
    max-width: 100%;
  }
  
  .qrcode-modal-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  
  .qrcode-modal-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .qrcode-modal-image {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  #qrcode-modal-img {
    width: 160px;
    height: 160px;
  }
  
  .qrcode-close-btn {
    top: 10px;
    right: 10px;
    font-size: 20px;
    width: 26px;
    height: 26px;
  }
}

/* 平板设备优化 */
@media (min-width: 769px) and (max-width: 1024px) {
  .qrcode-modal-content {
    max-width: 320px;
    padding: 25px;
  }
}

/* 添加一些额外的交互效果 */
.qrcode-modal-content {
  opacity: 0;
}

.qrcode-modal:not(.hidden) .qrcode-modal-content {
  opacity: 1;
}

/* 确保弹窗在iOS设备上正常显示 */
@supports (-webkit-overflow-scrolling: touch) {
  .qrcode-modal {
    -webkit-overflow-scrolling: touch;
  }
}

/* 视频切换样式 */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-main, 8px);
}

.video-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.video-item.active {
  display: block;
  opacity: 1;
}

.video-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.video-tab {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  color: #333;
}

.video-tab:hover {
  background-color: #e0e0e0;
}

.video-tab.active {
  /* color: white; */
  /* border-color: #007bff; */
  color:#3865F2;
  font-weight:600
}

/* 响应式设计 */
@media (max-width: 768px) {
  .video-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .video-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .video-tabs {
    margin-top: 15px;
  }
  
  .video-tab {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 16px;
  }
}

/* 视频播放容器样式 */
.video-window-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  
}

.video-window-content {
  position: relative;
  overflow: hidden;
  height: 550px;
}
@media (max-width: 768px) {
  .video-window-container {
      height: 300px;
  }
}
.video-window-content .video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-window-content .video-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  display: none;
}

.video-window-content .video-item.active {
  display: block;
}

/* 修复视频窗口与视频标签的圆角冲突 */
.video-window-container .mainRadius {
  border-radius: var(--border-radius-main, 8px);
}

.video-window-container .rounded-t-\[5px\] {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .video-window-header {
    height: 36px !important;
    padding-left: 16px !important;
  }
  
  .video-window-header .w-\[12px\] {
    width: 10px !important;
    height: 10px !important;
  }
  
  .video-window-content {
    height: 300px!important;
  }
}

/* 从Tailwind类转换的CSS样式 */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.flexx {
  display: flex;
}

.items-center {
  align-items: center;
}

.h-\[40px\] {
  height: 40px;
}

.bg-\[\#f7f8fa\] {
  background-color: #f7f8fa;
}

.rounded-t-\[5px\] {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.pl-\[20px\] {
  padding-left: 20px;
}

.gap-\[10px\] {
  gap: 10px;
}

.w-\[12px\] {
  width: 12px;
}

.h-\[12px\] {
  height: 12px;
}

.bg-\[\#FC4646\] {
  background-color: #FC4646;
}

.bg-\[\#FCAF24\] {
  background-color: #FCAF24;
}

.bg-\[\#29C231\] {
  background-color: #29C231;
}

.rounded-full {
  border-radius: 50%;
}

.object-cover {
  /* object-fit: cover; */
}

/* 保留现有的自定义类 */
.mainRadius {
  border-radius: 5px;
}

.borderMain {
  border: 1px solid #ebedf0;
}