:root {
  --primary_color: #793ef1;
  --secondary_color: #ff4d12;
  --footer_background_color: #192132;
  --background_color: #f9fafd;
  --border-radius: 20px;
  --text_color: #222;
  --text-muted: #666;
  --elements-bg: #eee;
  --primary-opacity: rgba(76, 127, 255, 0.1);
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background_color);
    color: var(--text_color);
}

h1,h2,h3{
        font-family: Clash Display, sans-serif;
}

a {
  color: var(--primary_color);
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: var(--primary_color);
  opacity: 0.8;
}

.card {
  border: 0;
  box-shadow: 0 2px 2px #6585d70f, 0 .5px .5px #234d9e0f;
  border-radius: var(--border-radius, 20px);
}

.btn {
  border-radius: 6px;
  font-weight: 500;
  color: var(--text_color);
  transform-style: preserve-3d;
  box-shadow: none !important;
  transition: 0.3s;
}

.btn:hover {
  transform: scale3d(.94, .94, 1.01);
}

.btn-primary {
  background-color: var(--primary_color) !important;
  border-color: var(--primary_color) !important;
  color: #fff;
}

.btn-secondary {
  background-color: var(--secondary_color) !important;
  border-color: var(--secondary_color) !important;
  color: #fff;

}

.btn-outline-secondary {
        padding: 11px 24px;
  border-color: var(--secondary_color) !important;
  color: var(--secondary_color) !important;
}


.btn-outline-secondary:hover {
background-color: var(--secondary_color) !important;
  border-color: var(--secondary_color) !important;
  color: #fff !important;
}

.btn-danger {
  color: #fff;
}

.btn-light-custom {
  border-color: #dce0ea;
}

.form-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-number .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  height: auto;
}
.form-number .form-select:focus {
  border-color: #ced4da;
}
.form-number .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-control {
  background-color: #fff !important;
  color: var(--text_color) !important;
  border-color: #eee;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 6px;
}
.form-control.form-control-md {
  padding-top: 6px;
}
.form-control:focus {
  border-color: var(--primary_color);
}

.form-select {
  background-color: #fff !important;
  color: var(--text_color);
  border-color: #eee;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 6px;
}
.form-select.form-select-md {
  padding-top: 10.75px;
  padding-bottom: 10.75px;
}
.form-select:focus {
  border-color: var(--primary_color);
}

.form-check-input {
  background-color: #fff;
  border-color: #eee;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.form-check-input:checked {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

.form-switch .form-check-input {
  cursor: pointer;
}
.form-switch .form-check-input:not(:checked):focus {
  border-color: #888;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23888'/%3e%3c/svg%3e");
}

.nav {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  height: 70px;
  transition: 0.3s;
  z-index: 1000;
}

.nav.sticky {
  position: sticky;

  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 2px #6585d70f, 0 .5px .5px #234d9e0f;
}

.nav .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav .nav-inner .logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav .nav-inner .nav-actions-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .nav .nav-inner .nav-actions-sm {
    display: none;
  }
}
.nav .nav-inner .nav-menu-button {
  color: var(--text_color);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  cursor: pointer;
}
.nav .nav-inner .nav-menu-button:hover {
  opacity: .8;
}
.nav .nav-inner .nav-menu {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1040;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
  }
}
.nav .nav-inner .nav-menu .overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 26, 0.25);
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .overlay {
    display: block;
  }
}
.nav .nav-inner .nav-menu .nav-menu-close {
  cursor: pointer;
  color: var(--text_color);
}
.nav .nav-inner .nav-menu .nav-menu-close i {
  font-size: 18px;
}
.nav .nav-inner .nav-menu .nav-menu-close:hover {
  opacity: .8;
}
.nav .nav-inner .nav-menu .nav-menu-scroller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: visible !important;
  height: 70px;
}
.nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-x, .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-y {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-menu-scroller {
    display: block;
    position: absolute;
    width: 300px;
    top: 0;
    right: -300px;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow: hidden !important;
  }
  .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-x, .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-y {
    display: block !important;
  }
}
.nav .nav-inner .nav-menu .nav-menu-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-menu-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.nav .nav-inner .nav-menu .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: 0;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-link {
  padding: 0;
  font-size: 16px;
  color: var(--text_color);
  font-weight: 500;
}
@media (min-width: 1200px) {
  .nav:not(.sticky) .nav-inner .nav-menu .nav-links .nav-link {
    color: #fff;
  }
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-link {
    margin-bottom: 10px;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-link:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-link:not(:last-child) {
    margin-right: 0;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-link:hover, .nav .nav-inner .nav-menu .nav-links .nav-link.active {
  color: var(--primary_color);
}
.nav .nav-inner .nav-menu .nav-links .nav-drop {
  position: relative;
  z-index: 1030;
}
@media (min-width: 1200px) {
  .nav:not(.sticky) .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
    color: #fff;
  }
  .nav:not(.sticky) .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn:hover {
    color: var(--primary_color);
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: var(--text_color);
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
    color: #222;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu {
  visibility: hidden;
  position: absolute;
  top: 40px;
  left: -10px;
  background-color: #fff;
  min-width: 200px;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  opacity: 0;
  -webkit-transform: perspective(200px) translateZ(-200px);
  transform: perspective(200px) translateZ(-200px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu {
    display: none;
    position: static;
    left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link {
  color: var(--text_color);
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link:not(:last-child) {
  margin-bottom: 10px;
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link:last-child {
  margin-bottom: 0;
}
.nav .nav-inner .nav-menu .nav-links .nav-drop.active .nav-drop-menu {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-drop.active .nav-drop-menu {
    display: block;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop.animated .nav-drop-menu {
  -webkit-transform: perspective(200px) translateZ(0);
  transform: perspective(200px) translateZ(0);
}
.nav .nav-inner .nav-menu .nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-actions .btn-outline-light {
    color: #222;
  }
}
.nav .nav-inner .nav-menu .nav-actions > *:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-actions > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu.show {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu.show .nav-menu-scroller {
    visibility: visible;
    opacity: 1;
    right: 0;
  }
}

.nav:not(.sticky) .language .language-button, .nav:not(.sticky) .nav-menu-button {
  color: #fff;
}

.nav.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  background-color: #fff;
  z-index: 1030;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.nav.nav-sticky .language .language-button {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu-button {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu .nav-links a {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu .nav-drop .nav-drop-btn {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu .nav-actions .btn-outline-light {
  color: var(--text_color);
}

.header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url('../img/background.png');
  width: 100%;
  min-height: 100vh;
  color: #fff;
  background-size: 100% 100%;
  object-fit: contain;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
    background-position: center;
}

.header.v2{
     min-height: unset !important;
}

.header-title {
  color: #fff;
  font-size: 65px;
  font-weight: 600;
  line-height: 93px;
  text-align: center;
}

.header-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.header .header-wrapper {
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.d-none {
  display: none;
}

.ad.ad-v {
  width: 160px;
  height: 600px;
}
.ad.ad-h {
  max-width: 720px;
  width: 100%;
  height: 90px;
}
.ad img {
  width: 100%;
  height: 100%;
}


.language {
  position: relative;
  z-index: 1030;
}
.language .language-img {
  margin-right: 10px;
}
.language .language-img img {
  width: 16px;
  height: 12px;
}
.language .language-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  color: var(--text_color);
  cursor: pointer;
}
.language .language-button i {
  font-size: 20px;
}
.language .language-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: -5px;
  width: 130px;
  background-color: #FFF;
  z-index: 0;
  max-height: 180px;
  opacity: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.language .language-menu::before {
  background-color: #fff;
  border-radius: 3px 0 0 0;
  -webkit-box-shadow: -2px -2px 5px rgba(82, 95, 127, 0.1);
  box-shadow: -2px -2px 5px rgba(82, 95, 127, 0.1);
  content: "";
  display: block;
  height: 12px;
  margin: 0 0 0 -6px;
  position: absolute;
  right: 10%;
  top: -5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 12px;
  z-index: 0;
}
.language .language-menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 8px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}
.language .language-menu a:hover {
  background-color: var(--secondaryColor);
}
.language .language-menu a.active::after {
  content: '\f00c';
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 15px;
  background-color: #9797a7;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 10px;
  color: #fff;
}
.language.active .language-menu {
  display: block;
}
.language.animated .language-menu {
  opacity: 1;
}


.section {
  padding-block: 60px;
  position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-weight: 700;
    font-size: 36px;
}

.section-description {
    color: var(--text-muted);
    font-size: 18px;
}

.footer {
  background-color: var(--footer_background_color);
}

  .btn-primary-custom {
      background: var(--primary_color);
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 600;
  }

  .btn-primary-custom.btn-sm {
    padding: 6px 16px;
  }

  .btn-primary-custom:hover {
    background: var(--primary_color);
    color: #fff;
  }

  .btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    background: transparent;
}

  .btn-outline-custom:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  .section-card {
    position: relative;
    padding: 80px;
    background-color: var(--primary_color);
    border-radius: var(--border-radius, 20px);
    color: #fff;
    z-index: 0;
  }

  /*
  .section-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 120px;
    height: 120px;
    background-image: url('../img/simp2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .section-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-image: url('../img/sim1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }

  */

  .footer-links {
      list-style: none;
      padding: 0;
  }

  .footer-section-title {
    font-size: 20px !important;
  }

  .footer-links li {
      margin-bottom: 0.8rem;
  }

  .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 18px !important;
      transition: 0.3s;
  }

  .footer-links a:hover {
    color: var(--text-muted);
    opacity: 0.7;
  }

  .social-icons a {
      color: #fff;
      margin-right: 0.6rem;
      font-size: 1.2rem;
  }

  .social-icons a:hover {
    opacity: 0.7;
  }

  .accordion-item {
      border: 1px solid #eee !important;
      border-radius: 6px;
      margin-bottom: 1rem;
      transition: 0.3s;
  }

  .accordion-header {
    font-family: 'Inter', sans-serif;
      border-radius: 6px !important;
  }

  .accordion-button {
      font-weight: 500;
      background: #fff;
      font-size: 18px;
      color: var(--text_color);
      border: 0;
      border-radius: 6px !important;
      box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
      background: #fff;
      box-shadow: none;
  }

  .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
  }

  .accordion-body {
      padding-top: 0;
      color: var(--text-muted);
      line-height: 1.6;
  }

  .blog-post {
    padding: 20px;
    color: var(--text_color);
    border: 1px solid #eee;
    text-decoration: none;
    -webkit-box-shadow: 0px 30px 60px rgba(0, 19, 87, 0.04);
            box-shadow: 0px 30px 60px rgba(0, 19, 87, 0.04);
  }

  .blog-post .card-body {
    padding: 0;
  }

  .blog-post .blog-post-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: inherit;
  }

  .blog-post .blog-post-title {
    line-height: 1.7;
  }
  .blog-post .blog-post-text {
    line-height: 1.7;
    font-weight: 300;
    font-size: 17px;
  }

  .card-body {
    padding: 30px;
  }

  .chart-mockup {
      height: 200px;
      background: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 1rem 0;
  }

  .metric-item {
      display: flex;
      align-items: center;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
  }

  .metric-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.75rem;
  }

  .progress-bar-custom {
      background: #e2e8f0;
      height: 4px;
      border-radius: 2px;
      overflow: hidden;
      flex-grow: 1;
      margin: 0 0.75rem;
  }

.progress-fill {
    height: 100%;
    border-radius: 2px;
}

.plan {
  padding: 20px;
  color: #66759a;
  font-weight: 500;
}

.plan.v2 {
  color: var(--text_color);
}

.plan-price  {
  font-size: 24px;
  margin-top: 10px;
}

.plan-price strong {
  font-size: 40px;
  font-weight: 600;
}

.plan-price span {
  font-size: 16px;
}

.plan-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
}

.plan-feat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-feat i {
  font-size: 10px;
}

.cookies {
  visibility: hidden;
  position: fixed;
  max-width: 380px;
  padding: 30px;
  bottom: -150%;
  left: 40px;
  width: 100%;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 90000;
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}
@media (max-width: 575.98px) {
  .cookies {
    max-width: 100%;
    left: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.cookies.show {
  visibility: visible;
  bottom: 40px;
}
@media (max-width: 575.98px) {
  .cookies.show {
    width: 100%;
    bottom: 0;
  }
}

.mail-card {
  display: flex;
  color: #222;
  background-color: #fff;
  border-radius: var(--border-radius, 20px);
  height: 600px;
  overflow: hidden;
  width: 75%;
   max-width: 1320px;
}

@media (max-width: 991.98px) {
  .mail-card {
    flex-direction: column;
    height: auto;
  }
}

.mail-card .mail-header {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  background-color: #f6f8fa;
}

.mail-selection {
  position: relative;
}

.mail-selection-placeholder-copy {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s ease;
}

.mail-card .mail-sidebar {
  display: flex;
  flex-direction: column;
  background-color: #f6f8fa;
  border-right: 1px solid #eee;
  width: 330px;
}

@media (max-width: 991.98px) {
  .mail-card .mail-sidebar {
    width: 100%;
    height: 600px;
  }
}

.mail-item {
  cursor: pointer;
  padding: 20px;
}

.mail-items {
  overflow-y: auto;
}

.mail-item:hover, .mail-item.active {
  background-color: #e7f0fe;
}

.mail-content {
  flex: 1;
}

.mail-content .mail-header {
  padding-block: 12.5px;
}

@media (max-width: 991.98px) {
  .mail-content .mail-header {
    border-top: 1px solid #eee;
  }
}

.mail-inbox-v2 {
  padding: 30px;
}

/* Features Section Styles */
.feature-card {
  background-color: #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.feature-card .feature-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary_color);
  background-color: var(--primary-opacity);
  font-size: 20px;
  border-radius: 6px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    position: relative;
    z-index: 2;
}

.feature-icon i {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-title {
    color: var(--text_color);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

/* Pricing Section Styles */
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary_color);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary_color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.plan-title {
    color: var(--primary_color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price strong {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text_color);
}

.plan-price span {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: left;
}

.plan-feature i {
    color: var(--primary_color);
    background: var(--primary-opacity);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}

.plan-feature span {
    color: #374151;
    font-weight: 500;
}

.no-credit-card {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .plan-price strong {
        font-size: 2.5rem;
    }
}

/* Email Selection Dropdown Styles */
.mail-selection {
  position: relative;
}

.mail-selection-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 280px;
}

.mail-selection-placeholder:hover {
  border-color: var(--primary_color);
  box-shadow: 0 0 0 3px rgba(76, 127, 255, 0.1);
}

.mail-selection-drop-icon {
  color: #6b7280;
  margin-right: 12px;
  transition: transform 0.2s ease;
}

.mail-selection-placeholder[aria-expanded="true"] .mail-selection-drop-icon {
  transform: rotate(180deg);
}

.mail-selection-placeholder-email {
  flex: 1;
  margin-right: 12px;
}

.current-email {
  font-weight: 500;
  color: var(--text_color);
}

.mail-selection-placeholder-copy {
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mail-selection-placeholder-copy:hover {
  color: var(--primary_color);
}

/* Dropdown Menu */
.dropdown-menu {
  width: 320px;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.dropdown-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.dropdown-header h6 {
  color: white;
  margin-bottom: 5px;
}

.dropdown-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.dropdown-divider {
  margin: 0;
  border-color: #e5e7eb;
}

/* Email Options */
.email-options {
  max-height: 300px;
  overflow-y: auto;
  padding: 16px;
}

.email-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.email-option:hover {
  background-color: #f8fafc;
  transform: translateX(4px);
}

.email-option i {
  display: none;
}

.email-option.selected {
  background-color: #eff6ff;
  border-left: 3px solid var(--primary_color);
}

.email-option.selected i {
  display: block;
}

.email-info {
  display: flex;
  flex-direction: column;
}

.email-address {
  font-weight: 500;
  color: var(--text_color);
  margin-bottom: 2px;
}

.email-domain {
  font-size: 0.875rem;
  color: #6b7280;
}

.email-option i {
  color: var(--primary_color);
  font-size: 0.875rem;
}

/* Dropdown Footer */
.dropdown-footer {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  background-color: #f8fafc;
}

.dropdown-footer .btn {
  border-radius: 8px;
  font-weight: 500;
}

/* bu me */
.current-email,
.current-email:focus,
.current-email:focus-visible {
    width: 91%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important; /* for Bootstrap/Chrome shadow */
}



.mail-card.empty .mail-inbox , .mail-card.empty .mail-items-sm{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}



.mail-card.empty .mail-inbox .empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 426px;
}


.mail-card.empty .mail-items-sm .empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 350px;
}

.mail-card.empty .mail-items-sm .empty .empty-icon .emptyInboxRotation,
.mail-card.empty .mail-inbox .empty .empty-icon .emptyInboxRotation {
    -webkit-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.mail-card .mail-inbox .empty {
    display: none;
}

.mail-card .mail-items-sm .empty {
    display: none;
}



.mail-card.empty .mail-items ,
.mail-card.empty #mail-inbox {
    display: none;
}



@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateL {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotateL {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

/*
@-webkit-keyframes circleAnimation {}
*/
@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes shapeAnimation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes shapeAnimation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

.btn-icon {
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0;
    color: var(--primary_color);
    display: block;
    font-size: 20px;
}

.btn-icon.v2 {

    color: #fff;

}

.star-icon-color {
    color: #fab005;
}
.attachment-file{
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}

.attachment-file:hover{
    background-color: #eee;

}

.card.attachment-file {
    background: #eee;
    border-radius: 10px;
}

.mail-inbox-header-back {
    background: #e7f0fe;
    padding: 10px 30px;
    display: block;
    margin-bottom: 10px;
    }

    .mail-inbox-header-back  span{

        cursor: pointer; }






.mail-history {
    border: 1px solid #eee;
    max-height: 50vh;
    min-height: 50vh;
    overflow: auto;
}

.mail-history-empty {
    display: flex;
    height: 48vh;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}


.mail-history .mail-history-day {
    position: relative;
}

.mail-history .mail-history-day .form-check {
    margin-right: 10px;
}

.mail-history .mail-history-day .mail-history-day-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: var(--secondary_color);
    padding: 8px 20px;
    color: #fff;
    text-transform: uppercase;
    z-index: 11;
}

.mail-history .mail-history-day .mail-history-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.mail-history .mail-history-day .mail-history-item .btn {
    visibility: hidden;
    position: absolute;
    right: 20px;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.mail-history .mail-history-day .mail-history-item:hover {
    background-color: #f5f5f5;
}

.mail-history .mail-history-day .mail-history-item:hover .btn {
    visibility: visible;
    opacity: 1;
}


.mail-history-item span {
    line-height: 8px;
    color: #585858;
    margin-right: 13px;
    font-weight: 600;
    font-size: 15px;
}


.label_bluer {
    font-size: 12px;
    color: var(--primary_color);
}
.label_bluer2 {
    font-size: 12px;
    color: #b9b9b9;
}




.select2-dropdown {
    border-color: #eee;
}

.select2-container .select2-selection--single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40.5px;
    border-color: #eee;
    min-width: 135px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: unset;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 38.5px;
}

.select2-container .select2-selection--multiple {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 40.5px;
    border-color: #eee;
}

.select2-container .select2-selection--multiple:focus {
    border-color: #eee;
}

.select2-container.select2-container--focus .select2-selection--multiple {
    border-color: #eee;
}

.select2-container {
    z-index: 200000000000;
}

.select2-container-custom-span {
    display: block;
    position: relative;
}

.select2-container-custom-span i {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #ffc107;
}


#qrcode img {
    margin: auto;
}


span.select2-selection.select2-selection--single {
    height: 37px !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: 8px !important;
}

span.select2-selection__arrow {
    height: 37px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px  !important;
}




.plan-switcher {
    background-color: #fff;
    border: 1px solid var(--primary_color);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(27,31,35,.04),inset 0 1px 0 hsla(0,0%,100%,.25);
    cursor: pointer;
    display: inline-flex;
    padding: 5px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.plan-switcher .plan-switcher-item {
    align-items: center;
    border-radius: 8px;
    display: flex;
    font-weight: 400;
    height: 35px;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: .3s;
    width: 90px;
    font-size:16px;
}

.plan-switcher .plan-switcher-item.active {
    background-color: var(--primary_color);
    color: #fff
}


.plans-item{
    display:none;
}

.plans-item.active{
    display:block !important;
}



.sticky-adlobage {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    max-height: 200px;
    padding: 5px 0;
    box-shadow: 0 -6px 18px 0 rgba(9, 32, 76, .1);
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    z-index: 20;
}

.sticky-adlobage-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0 0;
    position: absolute;
    right: 0;
    top: -30px;
    background-color: #fefefe;
    box-shadow: 0 -6px 18px 0 rgba(9, 32, 76, .08);
}

.sticky-adlobage .sticky-adlobage-close svg {
    width: 22px;
    height: 22px;
    fill: #000;
}

.sticky-adlobage .sticky-adlobage-content {
    overflow: hidden;
    display: block;
    position: relative;
    height: 70px;
    width: 100%;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}

.sticky-adlobage .sticky-adlobage-content img {
    height: 100%;
    width: 100%;
}


@media (max-width: 575.98px) {


    .go-up {
        visibility: hidden;
        position: fixed;
        width:40px  !important;
        height: 40px !important;
        bottom: 50px !important;
        right: 16px !important;
    }

}


.go-up {
    visibility: hidden;
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 50px;
    right: 50px;
    background-color: var(--primary_color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
    transition: .3s;
    z-index: 2000000;
}

.go-up:hover {
    background-color: var(--secondary_color);
}

.go-up.show {
    visibility: visible;
    opacity: 1;
}


.seen_circle {
    width: 7px;
    height: 7px;
    background: var(--secondary_color);
    display: inline-block;
    border-radius: 20px;
    margin: 0px 6px;
}




.viewbox-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;

}

@media (max-width: 1199.98px) {
    .viewbox-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.viewbox-container .ad {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.viewbox-container .box-content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 850px;

}


.viewbox {
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 16px;
    overflow: hidden;
}

.viewbox .viewbox-header {
    background-color: var(--primary_color);
    color: #fff;
    padding: 8px 20px;
}


.viewbox .viewbox-body {
    background-color: #fff;
    min-height: 426px;
}

.viewbox-header i {
    margin: 10px;
    font-size: 20px;
}

.viewbox-header .text-muted {
    --bs-text-opacity: 1;
    color: var(--secondary_text_color) !important;
}

.viewbox-attachments {
   padding: 15px 25px;
    position: relative;
    /* border-bottom: 1px solid #ddd; */
    /* border-top: 1px solid #222; */
    height: 150px;
    display: none;
}

.viewbox-attachments .card {
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    margin: 5px 0px;
}

.viewbox-attachments .card-body {
    padding: 9px !important;
}


.viewbox-attachments img {
    width: 48px !important;
}

.viewbox-attachments i {
    color: #555;
}


.viewbox-attachments .file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.viewbox .text-muted {
    font-size: 12px;
    font-weight: 600;
}

.can_see_attachments {
    position: absolute;
    width: 100%;
    height: 100%;
    background:#e7f0fe;
    right: 0;
    top: 0;
    z-index: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
}


.bg-white2{
    background-color: #f6f8fa !important;
    color: #171717 !important;

}



/* How It Works Section Styles */

/* How It Works Section Styles */
.step-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 30px;
  height: 100%;

  .step-card-step {
    font-size: 50px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 24px;
  }

  .step-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text_color);
    margin-bottom: 16px;
  }

  .step-card-description {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
  }

  &:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--primary_color);
    color: #fff;
    transform: translateY(-10px);

    .step-card-step {
      color: #fff;
    }

    .step-card-title {
      color: #fff;
    }

    .step-card-description {
      color: #fff;
    }
  }
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 30px;
  height: 100%;

  .testimonial-card-header {
    margin-bottom: 16px;

    .testimonial-card-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }
  }

  .testimonial-card-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text_color);
  }

  .testimonial-card-time {
    font-size: 14px;
    color: var(--text-muted);
  }

  .testimonial-card-stars {
    margin-bottom: 16px;
    color: #e0e0de;

    .active {
      color: #ffd700;
    }
  }

  .testimonial-card-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
  }

  &:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
  }
}

.accordion.v2 .accordion-collapse ,.accordion.v2 .accordion-button:not(.collapsed) ,.accordion.v2 .collapsed{
    background: var(--primary_color);
    color: #fff !important;
}

.accordion.v2 .accordion-button:not(.collapsed)::after ,.accordion.v2 .accordion-button::after {
    display: none;
}

.accordion.v2 .accordion-body {
    color: #ffffff;
}





.download-btn {
  background-color: #000;
  padding: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;

  &:hover {
    background-color: var(--secondary_color);
    color: #fff;
  }

  i {
    font-size: 24px;
  }

  span {
    font-size: 18px;
  }
}



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

.posts .post:not(:last-child) {
    margin-bottom: 16px;
}

.posts .post .post-img {
    border-radius: 10px;
    margin-right: 10px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}

.posts .post .post-info .post-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-meta .post-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.post-meta .post-meta-item:not(:last-child) {
    margin-right: 10px;
}

.post-meta .post-meta-item:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #999;
    margin-left: 10px;
    border-radius: 50%;
}

.post-meta .post-meta-item i {
    margin-right: 5px;
}

.comments {
    width: 100%;
}

.comments .comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fafafa;
    padding: 30px 20px;
    border-radius: 10px;
}

.comments .comment .comment-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 16px;
}

.comments .comment .comment-text {
    font-size: 15px;
}

.comments .comment:not(:last-child) {
    margin-bottom: 16px;
}


.tag-cloud a {
    background: var(--secondary_color);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    margin: 3px;
}

.tag-cloud {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}



.post-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.post-meta i {
    margin-right: 5px;
}

.meta-item {
    margin-right: 10px;
}

.post-meta i {
    color: #555;
}


.meta-item {
     position: relative;
     padding: 6px 12px;
     z-index: 0;
     color: #fff;
     margin-bottom: 16px;
     text-transform: capitalize;
     font-size: 14px;
     border-radius: 8px;
 }

.meta-item a:hover {
    color: var(--secondary_color);
}



.meta-item i , .meta-item a {
     color: var(--secondary_text_color);
 }

.meta-item::before {
    content: "";
    position: absolute;
    background-color: var(--primary_color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
}



.btn-facebook {
    background-color: #3b5998;
    color: white;
  }

  .btn-twitter {
    background-color: #1da1f2;
    color: white;
  }

  .btn-linkedin {
    background-color: #0077b5;
    color: white;
  }

  .btn-whatsapp {
    background-color: #25d366;
    color: white;
  }

  .btn-email {
    background-color: #ea4335;
    color: white;
  }

  .share-btn .btn:hover {
    background: var(--primary_color);
    color: #fff;
}


.page-item.active .page-link {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}

.page-link {
    color: var(--primary_color);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.page-link:hover {
    color: var(--primary_color);
}


.card.card-blog .main_img {
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;

}

.btn-outline-primary {
    padding: 12px 24px;
    border-radius: 6px;
    border-color: var(--primary_color);
}

.btn-outline-primary:hover {
    background:var(--primary_color);
}

.logo img {
    height: 40px;
}



.dark-logo {
    display: none;
}

.nav-sticky .dark-logo {
    display: block !important;
}

.nav-sticky .white-logo {
    display: none !important;
}


.swiper.plans-swiper , .swiper.feature-swiper , .swiper.testimonials-swiper , .swiper.blog-swiper{
    padding: 34px 2px !important;
}

.swiper-pagination-bullet {
    width: 24px !important;
    height: 6px !important;
    border-radius: 4px !important;
    background: #793ef1 !important;
    opacity: 0.4 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    width: 36px !important;
    background: #ff4d12 !important;
    opacity: 1 !important;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
   bottom: var(--swiper-pagination-bottom, -8px);
}



.top_left img {
    width: 8%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.top_right img {
    width: 8%;
    position: absolute;
    top: 0px;
    right: 0px;
}

.bottom_left img {
    width: 8%;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.bottom_right img {
    width: 8%;
    position: absolute;
    bottom: 0px;
    right: 0px;
}


.top_left.v2 img {
    width: 10%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.top_right.v2 img {
    width: 10%;
    position: absolute;
    top: 0px;
    right: 0px;
}

.bottom_left.v2 img {
    width: 10%;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.bottom_right.v2 img {
    width: 10%;
    position: absolute;
    bottom: 0px;
    right: 0px;
}


.list-group-item.list-group-item-action span {
    display: none;
    color: #fff !important;
}

.active.list-group-item.list-group-item-action span {
    display: block;
}

.list-group-item.list-group-item-action {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.active.list-group-item.list-group-item-action {
    padding: 22px;
    border-radius: 21px;
    background-color: var(--primary_color) !important;
    border: none;
}
@media (max-width: 768px) {

    .header-title {
    font-size: 34px;
    line-height: 40px;
}

.section-card {
    padding: 40px;

}

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


@media (max-width: 990px) {
    .faq-section .section-title{
        text-align: center;
    }
}


@media (max-width: 460px) {
    .mail-history-item span{
        display: none;
    }
}


.testimonial-images {
    position: relative;
}
.testimonial-source {
    position: absolute;
    bottom: -8px;
    background: #ffffff;
    padding: 2px;
    border-radius: 20px;
    right: -7px;
    width: 28px;
}

.header-app {
    display: flex
;
    justify-content: center;
    
    max-width: 1320px; margin: auto}


.mail-content {
    width: 100%;
}

.ads-h{
    display: none;
}

@media (max-width: 1268px) {
    .header-app , .ads-h{
    display: block;
}

.ads-v{
    display: none;
}

.mail-card {

  width: 100%;
}

}


.btn-history{
    width: 40px !important;
    margin-left: 10px;
    background: #ddd;
    padding: 7px;
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1320px;
    }
}


