.ctc-btn span.elementor-button-content-wrapper {
    align-items: center;
}
.ctc-btn svg {
    width: 28px;
    height: 28px;
}
.secbn-btn a.elementor-button:hover svg path {
    fill: #3C1461;
}
.ctc-btn a.elementor-button:hover path {
    fill: #ffffff;
}
.swiper-wrapper {
    transition-timing-function: linear !important;
}
.step-card{
    position: relative; 
}
.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 10px #E1DBFC;
}

.hmtab-sec .e-n-tabs-heading button {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
    min-width: 400px;
    justify-content: center;
    align-items: center;
}

.testimonial-slides .owl-carousel .owl-item {
    position: relative;
}
.testimonial-slides .uc_stars {
    order: 2;
}

.testimonial-slides .ue-text {
    order: 3;
}

.testimonial-slides .uc_author {
    order: 1;
}
.testimonial-slides .owl-carousel .owl-item .ue-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

.testimonial-slides .owl-carousel .owl-item  .uc_author {
    align-items: center !important;
    flex-direction: row;
}

.testimonial-slides .owl-nav {
    margin-top: 40px;
}

.testimonial-slides .owl-nav button.owl-next {
    right: 45% !important;
}

.testimonial-slides .owl-nav button.owl-prev{
    left: 45% !important;
}

.radial-slider {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial-track {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (max-width: 450px) {
  .hmtab-sec .e-n-tabs-heading button {
    min-width: -webkit-fill-available;
  }
}

/* Geometry node (DO NOT STYLE VISUALLY) */
.radial-item {
  position: absolute;
  left: 50%;
  top: 100%;
  transform-origin: center;
  transition: transform 0.7s ease;
}

/* Visual card */
.radial-card {
  width: 155px;
  height: 155px;
  border: 1px solid #AF8ACAE5;
  border-radius: 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.radial-card img {
  width: 100%;
  height: 70px;
}

/* Active */
.radial-item.active .radial-card {
  background: white;
  color: #4b1f82;
  border-color: white;
  transform: scale(1.2);
}

.radial-item.active img {
    filter: invert(1);
}

/* Pointer triangle */
.radial-item.active .radial-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

/* Center text */
.radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.radial-center h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.radial-center p {
  line-height: 1.6;
  opacity: 0.85;
}

/* Arrows */
.radial-nav {
  display: flex;
  gap: 20px;
}

.radial-nav button {
  border: none;
  width: 100%;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
      padding: 0;
    border-radius: 50%;
}

/* Bottom Image */

.slidebtm-col {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.slidebtm-col .btm-img-container {
  display: block;
  max-width: 144px;
  width: 100%;
  height: auto;
}

.slidebtm-col .btm-img {
  display: block;
  width: 100%;
  height: auto;
}

.radial-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.radialslide-sec {
    overflow: hidden;
}
.radial-nav button:hover, .radial-nav button:focus {
    background: none;
}
/* Wrapper handles fixed behavior */
.sticky-wrapper {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all 0.4s ease;
}

/* Active state */
.sticky-wrapper.sticky-active {
    transform: translateX(-50%) translateY(0);
}

/* Your actual pill header */
.custom-sticky-header {
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 14px 28px;
}

/* SIDE MENU BASE */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;    
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    box-shadow: -12px 0 30px rgba(0,0,0,0.15);
}

/* ACTIVE STATE */
.mobile-slide-menu.menu-active {
    transform: translateX(0);
    opacity: 1;
}

/* OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* BODY LOCK */
body.menu-open {
    overflow: hidden;
}

/* MOBILE ONLY */
@media (min-width: 1025px) {
    .mobile-slide-menu,
    .mobile-menu-overlay {
        display: none;
    }
    .owl-dots{
      display: none;
    }
    .owl-nav{
      display: block;
    }
}

@media (max-width: 1024px) {
    .owl-dots{
      display: block;
    }
    .owl-nav{
      display: none;
    }
}

.faq-section .uc-item-active {
    box-shadow: 0px 15px 34px 0px rgb(0 0 0 / 10%);
}
.faq-section .faq-tabs .uc-items-wrapper .uc-item-active {
  border: 1px solid #5D1B9C;
}
#accordion-search{
 width:100%;
 padding:12px 16px;
 border:1px solid #5D1B9C;
 border-radius:15px;
}
#accordion-search:focus{
    outline: none;
}
.pricing-tab .e-n-tabs-heading {
    padding: 10px;
    border: 1px solid #3C1461;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50px;
    background: #3C1461;
}
.pricingcard-col {
    min-height: 600px;
}
.yrpricingcard-col{
  min-height: 640px;
}
.blg-postgrid a.uc_post_grid_style_one_image
 {
    padding: 20px 20px 5px 20px;
}
.blg-postgrid .uc_btn_inner .uc_btn_icon svg {
    width: 30px !important;
    height: 30px !important;
}
.blg-postgrid a.uc_more_btn:hover .uc_btn_icon svg path{
    fill: #3C1461;
}
.cat-list ul.post-category-list {padding-left: 15px;display: flex;flex-direction: column;align-items: flex-start;row-gap: 11px;}

.cat-list ul.post-category-list .cat-item a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #3C1461;
    font-family: 'Plus Jakarta Sans';
}


/* ==== CF7 GRID ==== */
.cf7-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.cf7-field {
    display: flex;
    flex-direction: column;
}

.cf7-field label {
    font-weight: 600;
    color: #4b1c7a;
    margin-bottom: 10px;
}

/* Full width field */
.cf7-field.full-width {
    grid-column: 1 / -1;
}

/* ==== INPUT STYLES ==== */
.cf7-form-grid input,
.cf7-form-grid textarea {
    background: #f3edfb;
    border: none;
    border-radius: 18px;
    padding: 18px 22px;
    font-size: 16px;
    outline: none;
}

.cf7-form-grid textarea {
    height: 160px;
    resize: none;
}

/* Placeholder */
.cf7-form-grid input::placeholder,
.cf7-form-grid textarea::placeholder {
    color: #9a8fb0;
}

/* ===== CF7 SUBMIT BUTTON ===== */
.cf7-submit-wrap input[type="submit"] {
    background-color: #5D1B9C;
    background-image: url(https://aifitfinderapp.com/wp-content/uploads/2026/01/BackgroundBorder.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%, calc(100% - 34px) 50%;
    background-size: 28px;
    color: #ffffff;
    border: 1px solid #24136A26;
    border-radius: 60px;
    padding: 16px 50px 16px 20px;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s ease;
}

.cf7-submit-wrap input[type="submit"]:hover {
    border: 1ps solid #5D1B9C;
    background-color: transparent;
    color: #3C1461;
}

.cf7-submit-wrap {
    width: 100%;
    display: inline-flex;
    grid-column: 1 / -1;
    justify-content: center;
}

/* Mobile */
@media (max-width: 767px) {
    .cf7-submit-wrap input[type="submit"] {
        padding: 16px 60px 16px 32px;
        font-size: 18px;
    }
}



/* FIX intl-tel-input flag rendering */
.iti__flag {
    width: 20px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: 5652px 15px; /* VERY IMPORTANT */
}

.iti * {
    box-sizing: content-box !important;
}

.iti__flag-box,
.iti__flag-container {
    display: flex;
    align-items: center;
}

/* Force intl-tel-input to fit inside CF7 input box */
.cf7-field .iti {
    width: 100%;
    display: block;
}

/* Phone input full width */
.cf7-field .iti input {
    width: auto !important;
}

/* Align flag section properly */
.cf7-field .iti__flag-container {
    left: 0px;
}

/* Keep everything inside rounded box */
.cf7-field .iti__flag-container,
.cf7-field .iti__selected-flag {
    border-radius: 18px 0 0 18px;
}

/* Retina support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-size: 5652px 15px;
    }
}

/* ==== MOBILE ==== */
@media (max-width: 768px) {
    .cf7-form-grid {
        grid-template-columns: 1fr;
    }
}

.middle-blogsec {
    width: 100%;
    position: relative;
    margin: 40px 0px 60px 0px;
}

.aa-single-post-container{
    width: 100%;
    max-width: 1360px;
    padding: 0 80px;
    margin: 0 auto;
}
/* blog-page summarize section start */
.aa-single-post-container .ai-summarize {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 30px;
}

.aa-single-post-container .ai-summarize {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 25%, #ddd6fe 75%, #e0e7ff 100%);
    border-radius: 12px;
}

.aa-single-post-container .ai-summarize .title {
    margin: 0 !important;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.aa-single-post-container .ai-summarize .list {
    padding: 0;
    margin: 0;
    gap: 20px;
    list-style: none;
    display: flex;
    align-items: center;
}

.aa-single-post-container .ai-summarize .list .list-item {
    border: 1px solid #613c91;
    border-radius: 8px;
    padding: 4px 8px !important;
}

.aa-single-post-container .ai-summarize .list .list-item .button span {
    color: #613c91;
    font-weight: 600;
    font-size: 16px;
}

.aa-single-post-container .ai-summarize .list .list-item .button {
    display: flex;
    align-items: center;
    gap: 6px;
}

.aa-single-post-container .ai-summarize .list .list-item .button .icon {
    display: flex;
    max-width: 20px;
    height: 20px;
    width: 20px;
}

.aa-single-post-container .ai-summarize .list .list-item .button .icon svg {
    max-width: 20px;
    width: 100%;
    height: 20px;
}

.aa-single-post-container .ai-summarize .list .list-item:hover {
    background-color: #613c91;
    transition: all 0.2s ease;
}

.aa-single-post-container .ai-summarize .list .list-item:hover span {
    color: #ffffff;
    transition: all 0.2s ease;
}

.aa-single-post-container .ai-summarize .list .list-item:hover svg path {
    fill: #ffffff;
    stroke: #ffffff;
}

.aa-single-post-container .ai-summarize .list .list-item svg path {
    fill: #ffffff;
    stroke: #613c91;
}

.aa-single-post-container .ai-summarize .list .list-item:first-child svg path {
    fill: #ffffff;
}

@media(max-width:1300px) {
    .aa-single-post-container .ai-summarize .list .list-item .button span {
        font-size: 14px;
    }

    .aa-single-post-container .ai-summarize {
        gap: 20px;
    }

    .aa-single-post-container .ai-summarize .list {
        gap: 12px;
    }

    .aa-single-post-container .ai-summarize .list .list-item .button .icon svg {
        max-width: 18px;
        height: 18px;
    }

    .aa-single-post-container .ai-summarize .list .list-item .button .icon {
        max-width: 18px;
        height: 18px;
        width: 18px;
    }

}

@media(max-width:600px) {
    .aa-single-post-container .blog-content-main {
        margin-top: 0 !important;
    }
}

@media(max-width:550px) {
    .aa-single-post-container .ai-summarize {
        flex-wrap: wrap;
    }

    .aa-single-post-container .ai-summarize .title {
        width: 100%;
    }

    .aa-single-post-container .ai-summarize .list {
        width: 100%;
        padding: 0 !important;
    }

}

/* Reset and Base */
.page-content a {
  text-decoration: none;
}


/* Container */
.aa-single-hero-container {
    width: 100%;
}

/* Image Wrapper */
.aa-hero-image-wrap {
    position: relative;
    width: 100%;
}

/* Banner Image */
.aa-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Overlay Content */
.aa-hero-overlay {
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Breadcrumb */
.aa-breadcrumb-nav {
    background: #ffffff;
    padding: 12px 13px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
}

.aa-breadcrumb-separator {
    margin: 0 8px;
}
/* Title */
/* Author Section */
.aa-author-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aa-single-hero-container {
  width: 100%;
  margin-top: -60px;
  padding-top: 200px;
  background: rgba(120, 27, 250, 3.32);
  background: linear-gradient(180deg,rgba(120, 27, 250, 0.33) 0%, rgba(120, 27, 250, 0) 100%);
  min-height: 500px;
  position: relative;
}

.aa-single-hero-container::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(https://aifitfinderapp.com/wp-content/uploads/2026/02/Features-Page-scaled.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.aa-hero-wrapper {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section with Purple Background */

/* Breadcrumb Navigation */
.aa-single-hero-container .aa-breadcrumb-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: auto;
}

.aa-single-hero-container .aa-breadcrumb-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aa-single-hero-container .aa-breadcrumb-link {
    color: #696969;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    transition: color 0.2s linear;
}

.aa-single-post-container .aa-breadcrumb-separator {
  color: #200B56;
  font-size: 14px;
}

.aa-single-hero-container .aa-breadcrumb-current {
    color: #3C1461;
}

.aa-single-post-container .aa-share-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 70, 229, 0.3);
  padding: 8px 16px;
  border-radius: 6px;
  color: #4a2f65;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.aa-single-post-container .aa-share-btn:hover {
  background: white;
  border-color: #4a2f65;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

/* Post Header */
.aa-single-hero-container .aa-post-header-section {
  text-align: left;
  margin-bottom: 20px;
  max-width: 800px;
  width: 100%;
}

.aa-single-hero-container .aa-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 54px;
    margin: 0 0 20px 0;
    color: #3C1461;
    width: 70%;
}

.aa-single-hero-container .aa-author-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 0px;
}

.aa-single-hero-container .aa-author-avatar-wrap {
  display: flex;
}

.aa-single-hero-container .aa-author-avatar-wrap img {
    width: 100%;
    max-width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

.aa-author-meta .aa-author-name-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.aa-single-hero-container .aa-publish-date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #696969;
    line-height: normal;
}

@media (min-width: 768px) {
  .aa-single-hero-container .aa-author-meta {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 6px 15px;
  }
}

@media (max-width: 768px) {
  .aa-single-hero-container .aa-author-meta span {
    display: block;
  }
}

/* Featured Image */
.aa-single-post-container .aa-hero-image-section {
  display: flex;
}

.aa-single-post-container .aa-hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #ffffff;
}

.aa-single-post-container .aa-thumb-svg-placeholder {
  padding-bottom: 55%;
  height: auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #ffffff;
}

.aa-single-post-container .aa-thumb-svg-placeholder svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Main Content Area */
.aa-single-post-container .aa-main-content-area * {
  font-family: "Plus Jakarta Sans", Sans-serif;
}

.aa-single-post-container .aa-layout-grid {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 16px;
  align-items: start;
}

.aa-single-post-container .aa-toc-menu .aa-toc-sub-list a {
  font-weight: 500;
}

.aa-single-post-container .aa-sidebar-toc {
  position: sticky;
  top: 130px;
  height: calc(100vh - 140px);
}

.aa-single-post-container .aa-toc-box {
    border-radius: 15px;
    padding: 30px 40px;
    background-color: #ffffff;
    border: 1px solid #E1DBFC;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.aa-single-post-container .aa-toc-box .aa-toc-items {
  flex: 1;
  overflow: auto;
}

.aa-single-post-container .aa-toc-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3C1461;
  border-bottom: 1px solid #E1DBFC;
  padding-bottom: 22px;
  position: relative;
}

.aa-single-post-container .aa-toc-heading::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #5D1B9C;
}

.aa-single-post-container .aa-toc-expand {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #2a2323;
  transition: color 0.2s linear;
}

.aa-single-post-container .aa-toc-expand:hover {
  color: #2a2323;
}

.aa-single-post-container .aa-toc-menu {
  list-style: none;
  padding: 0 10px 0 0;
  margin: 0;
}

.aa-single-post-container .aa-toc-menu li {
  margin-bottom: 12px;
}

.aa-single-post-container .aa-toc-menu .aa-toc-sub-list {
  margin: 10px 0;
  padding-left: 30px;
  list-style: disc;
}

.aa-single-post-container .aa-toc-menu .aa-toc-sub-list li:not(:last-child) {
  margin-bottom: 5px;
}

.aa-single-post-container .aa-toc-main-item a.aa-toc-item {
    color: #3C1461;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    transition: color 0.2s ease;
    display: block;
}
.aa-single-post-container .aa-toc-menu .aa-toc-sub-list a.aa-toc-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #696969;
}

/* Main Article */
.aa-single-post-container .aa-article-main {
  overflow: hidden;
}

.aa-single-post-container .aa-article-content {
  font-size: 16px;
  line-height: 1.5;
  color: #2a2323;
}

.aa-single-post-container .aa-article-content a {
  color: #AE428C;
  font-weight: 500;
}

.aa-single-post-container .aa-article-content strong {
  font-weight: 700;
}

.aa-single-post-container .aa-article-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0 16px 0;
  color: #1f2937;
}

.aa-single-post-container .aa-article-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0 12px 0;
  color: #1f2937;
}

.aa-single-post-container .aa-article-content p {
  margin-bottom: 16px;
}

.aa-single-post-container .aa-article-content ul {
  padding-left: 34px;
  /* margin-bottom: 16px; */
  margin: 16px 0px;
  list-style: none;
}

.aa-single-post-container .tableScroll {
  overflow: auto;
}

.aa-single-post-container .aa-article-content ul li {
  margin-bottom: 5px;
  position: relative;
}

.aa-single-post-container .aa-article-content ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -24px;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-image: url(https://accessibilityassistant.com/wp-content/uploads/2025/07/right-tick-svg.svg);
  background-size: 14px;
  background-repeat: no-repeat;
}

/* Right Sidebar */

.aa-single-post-container .aa-sidebar-right {
  position: sticky;
  top: 130px;
}

.aa-single-post-container .aa-sidebar-widget {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  margin-bottom: 24px;
  display: flex;
}

.aa-single-post-container .aa-sidebar-widget img {
  width: 100%;
  height: auto;
}

.aa-single-post-container .aa-sidebar-widget .blog-mobile-banner {
  display: none;
}

.aa-single-post-container .aa-accessibility-widget {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.aa-single-post-container .aa-widget-top {
  padding: 24px;
  text-align: center;
}

.aa-single-post-container .aa-accessibility-brand {
  margin-bottom: 8px;
}

.aa-single-post-container .aa-brand-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}

.aa-single-post-container .aa-widget-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.aa-single-post-container .aa-widget-body {
  padding: 0 24px 24px;
}

.aa-single-post-container .aa-accessibility-checker {
  text-align: center;
}

.aa-single-post-container .aa-checker-icon {
  margin-bottom: 16px;
  opacity: 0.9;
}

.aa-single-post-container .aa-checker-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.aa-single-post-container .aa-checker-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aa-single-post-container .aa-url-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: all 0.2s ease;
}

.aa-single-post-container .aa-url-field::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.aa-single-post-container .aa-url-field:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.aa-single-post-container .aa-submit-btn {
  background: #4a2f65;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid #4a2f65;
}

.aa-single-post-container .aa-submit-btn:hover {
  background: transparent;
  border-color: #4a2f65;
  color: #ffffff;
}

.aa-single-post-container .aa-toc-box .aa-toc-items::-webkit-scrollbar {
    width: 6px;
}

.aa-single-post-container .aa-toc-box .aa-toc-items::-webkit-scrollbar-track {
    background: #EFE0FF;
    border-radius: 10px;
}

.aa-single-post-container .aa-toc-box .aa-toc-items::-webkit-scrollbar-thumb {
    background: #EFE0FF;
    border-radius: 10px;
}


/* ===============================
   Firefox
================================ */
.aa-single-post-container .aa-toc-box .aa-toc-items {
    scrollbar-width: thin;
    scrollbar-color: #5D1B9C #EFE0FF;
}
/* Responsive Design */
@media (max-width: 1200px) {

  .aa-single-post-container,
  .aa-single-post-container {
    margin-top: 0px;
    padding-top: 0px;
  }

  .aa-single-post-container .aa-sidebar-right {
    order: 1;
  }

  .aa-single-hero-container .aa-main-title {
    font-size: 38px;
    line-height: 48px;
  }

  .aa-single-hero-container .aa-container-banner {
    width: 100%;
    padding: 0 30px;
  }

  .aa-single-hero-container .aa-breadcrumb-nav {
    margin-bottom: 30px;
  }

  .aa-single-post-container .aa-article-content h2 {
    font-size: 24px;
  }

  .aa-single-post-container .aa-article-content h3 {
    font-size: 20px;
  }

  .aa-single-post-container .aa-sidebar-widget .blog-mobile-banner {
    display: block;
  }

  .aa-single-post-container .aa-sidebar-widget .blog-desktop-banner {
    display: none;
  }
}

@media (max-width: 768px) {
  .aa-single-hero-container .aa-main-title {
    font-size: 26px;
    line-height: 34px;
    width: 100%;
  }

  .aa-single-hero-container .aa-container-banner {
    padding: 0 20px;
  }

  .aa-single-post-container .aa-article-content {
    font-size: 14px;
  }

  .aa-single-post-container .aa-container {
    padding: 0;
  }

  .aa-single-hero-container .aa-breadcrumb-nav {
    gap: 12px;
    margin-bottom: 20px;
  }

  .aa-single-post-container .aa-share-btn {
    align-self: flex-end;
  }

  .aa-single-post-container .aa-article-content h2 {
    font-size: 20px;
    margin: 20px 0 16px 0;
  }

  .aa-single-post-container .aa-article-content h3 {
    font-size: 18px;
  }

  .aa-single-post-container .aa-article-content p {
    margin-bottom: 10px;
  }

}

/* blog detail */

/**category start*/
.category-page .category-pg-sec {
  padding-top: 100px;
}
 
.category-page .category-listing {
  padding-top: 50px;
}
 
/**category end*/

/* Author Section Start */
 
.author-section {
  /* padding: 0 56px 60px; */
  /* position: relative; */
}

.author-section .author-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 50px;
}

.author-section .author-container .author-inner-container {
  display: flex;
  gap: 30px;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #E1DBFC;
  border-radius: 15px;
}
 
.author-section .author-container .author-content-part {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 345px;
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #AE87D4 0%, #5D1B9C 100%);
}
 
.author-section .author-container .author-content-part .author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
 
.author-section .author-container .author-content-part .author-img-container {
  width: 222px;
  height: 222px;
  min-width: 222px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
}
 
.author-section .author-container .author-content-part .author-img-container .author-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.author-section .author-container .author-content-part .author-name-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
 
.author-section .author-container .author-content-part .author-info .author-name-container .author-name-txt {
  font-family: "Plus Jakarta Sans", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
  color: #ffffff;
}
 
.author-section .author-container .author-content-part .author-info .author-name-container .author-designation-txt {
  font-family: "Plus Jakarta Sans", Sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}
 
.author-section .author-container .author-description-part .description-txt {
  color: #696969;
  font-family: "Plus Jakarta Sans", Sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
 
.author-section .author-container .author-description-part .author-social-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
 
.author-section .author-container .author-description-part .author-social-media p {
    font-size: 24px;
    color: #3c1461;
    font-weight: 700;
    line-height: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
 
.author-section .author-container .author-description-part .author-social-media .social-media-icon {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
}
 
.author-section .author-container .author-description-part .author-social-media .social-media-icon .icon a {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #5d1b9c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
}
 
.author-section .author-container .author-description-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
 
.author-section .author-container .author-description-part .description-header-txt {
  font-family: "Plus Jakarta Sans", Sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 56px;
  text-transform: capitalize;
  color: #3C1461;
}
 
@media (max-width: 1024px) {
  .author-section .author-container {
    gap: 30px;
  }
 
  .author-section .author-container .author-content-part {
    padding: 20px;
  }
 
  .author-section .author-container .author-description-part {
    gap: 10px;
  }
 
  .author-section .author-container .author-description-part .description-header-txt {
    font-size: 32px;
    line-height: 40px;
  }

  .author-section .author-container .author-description-part .description-txt {
    font-size: 16px;
  }
 
  .author-section .author-container .author-description-part .author-social-media {
    gap: 4px;
  }
 
  .author-section .author-container .author-description-part .author-social-media .social-media-icon .icon a {
    width: 40px;
    height: 40px;
  }
 
  .author-section .author-container .author-content-part .author-img-container {
    width: 180px;
    height: 180px;
    min-width: 180px;
  }
 
  .author-section .author-container .author-content-part {
    min-width: 275px;
  }
}

@media (max-width: 991px) {
  .author-section .author-container .author-inner-container {
    flex-direction: column;
  }
}
 
@media (max-width: 768px) {
  .author-section .author-container {
    flex-direction: column;
    padding: 0 16px;
  }

  .author-section .author-container .author-description-part .description-header-txt {
    font-size: 24px;
    line-height: 32px;
  }
 
  .author-section::after {
    opacity: 95%;
  }
 
  .author-section .author-container .author-content-part {
    min-width: 260px;
  }

  .author-section .author-container .author-inner-container {
    padding: 20px;
    gap: 20px;
  }

  .author-section .author-container .author-content-part .author-img-container {
    width: 150px;
    height: 150px;
    min-width: 150px;
  }
}
 
@media (max-width: 460px) {
  .author-section .author-container .author-content-part .author-info .author-name-container .author-name-txt {
    font-size: 26px;
  }
 
  .author-section .author-container .author-content-part .author-info .author-name-container .author-designation-txt {
    font-size: 14px;
  }
 
  .author-section .author-container .author-description-part .description-txt {
    font-size: 14px;
    line-height: 22px;
  }
 
  .author-section .author-container .author-description-part .author-social-media p {
    font-size: 22px;
  }

  .author-section .author-container .author-content-part {
    min-width: unset;
  }
}
 
.author-page.blog-grid-listting .posts-grid-section .posts-grid-inner-container {
  background-color: unset;
  padding: 60px 30px 30px;
}
 
 
/* Author Section End */


/* Features Section Mobile View Start */

.aa-features-main-section .aa-features-card-inner-container figure {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  max-width: 140px;
  height: 140px;
  background-color: #F3E8FF;
  border-radius: 50%;
  margin: 0 auto !important;
}

.aa-features-main-section .aa-features-card-inner-container .elementor-image-box-wrapper .elementor-image-box-title {
  margin-top: 0;
}

/* Swiper container */
.aa-features-main-section {
  overflow: unset;
}

/* Wrapper must stay flex */
.aa-features-slider-container .swiper-wrapper {
  display: flex;
}

/* Let Swiper control slide width */
.aa-features-card-slider.swiper-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

/* Control card size INSIDE the slide */
.aa-features-card-inner-container {
  width: 100%;
  max-width: 320px; /* adjust as per design */
  margin: 0 auto;
}

.aa-features-main-section .aa-features-container .aa-features-slider-nav-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.aa-features-main-section .aa-features-slider-nav-btn-container .aa-features-swiper-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.aa-features-main-section .aa-features-slider-nav-btn-container .aa-features-swiper-nav-btn:hover {
  background-color: transparent;
}

/* Features Section Mobile View End */

/* Contact US Page Section Start */

.contact-form-main-container .contact-form-container .contact-form-wrapper .iti__selected-flag {
  background-color: #f3edfb;
}

.contact-form-main-container .contact-form-container .contact-form-wrapper .iti input {
  width: 100% !important;
  box-sizing: border-box !important;
}

.contact-form-main-container .contact-form-container .contact-form-wrapper .cf7-submit-wrap .wpcf7-spinner {
  display: none;
}

@media (max-width: 1024px) {
  .contact-form-main-container .contact-form-container .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Contact US Page Section End */


/* Hero Banner Section Start */

.hmbanner-section.banner-gradient-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(https://aifitfinderapp.com/wp-content/uploads/2026/02/Background-3-scaled.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.banner-gradient-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(https://aifitfinderapp.com/wp-content/uploads/2026/02/Features-Page-scaled.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

/* Hero Banner Section End */


/* Blog Page CSS Start */

.aa-related-blog-section {
  background-image: url(https://aifitfinderapp.com/wp-content/uploads/2026/02/related-blogs-sec-bg-scaled.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.aa-related-blog-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.author-page .aa-related-blog-container {
    padding: 0 10px;
}

.aa-related-blog-header-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.aa-related-blog-header-part .aa-related-blog-title {
  margin: 0;
  font-family: 'Plus Jakarta Sans';
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  color: #3C1461;
  text-align: center;
}

.aa-related-blog-header-part .aa-related-blog-subtitle {
  margin: 0;
  font-family: 'Plus Jakarta Sans';
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #696969;
  text-align: center;
}

.aa-blog-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catblog-section .aa-related-blog-container {
    padding: 0 10px;
}

.aa-related-blog-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
  border: 1px solid #E1DBFC;
  border-radius: 20px;
  background-color: #FFFFFF;
  transition: 0.5s ease;
}

.aa-related-blog-card:hover {
  border-color: #5D1B9C;
}

.aa-related-blog-card .aa-related-blog-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.aa-related-blog-card .aa-related-blog-img-wrapper a {
  width: 100%;
  height: 100%;
}

.aa-related-blog-card .aa-related-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.aa-related-blog-card:hover .aa-related-blog-img-wrapper img {
  transform: scale(1.1);
}

.aa-related-blog-card .blog-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.blog-card-top-part {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
}

.blog-card-tag {
  font-family: 'Plus Jakarta Sans';
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: #3C1461;
  background-color: #F3E8FF;
  padding: 2px 17px;
  border-radius: 5px;
}

.blog-card-author {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-family: 'Plus Jakarta Sans';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #3C1461;
}

.blog-card-date {
  font-family: 'Plus Jakarta Sans';
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #696969;
}

.blog-card-title {
  margin: 0;
  font-family: 'Plus Jakarta Sans';
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: #3C1461;
  text-align: left;
}

.blog-card-title a {
  color: #3C1461;
}

.read-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 1px solid #24136a26;
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #3C1461;
  margin-top: 20px;
}

.read-more-button svg {
  transition: 0.5s ease;
}

.read-more-button:hover {
  border: 1px solid #24136A;
  background-color: #5D1B9C;
  color: #FFFFFF;
}

.read-more-button:hover svg {
  fill: #ffffff;
}

.read-more-button:hover svg path {
  fill: #24136A;
}

@media (max-width: 1200px) {
  .aa-related-blog-header-part .aa-related-blog-title {
    font-size: 38px;
  }

  .aa-single-post-container {
    padding: 0 40px;
  }

  .aa-single-post-container .aa-toc-box {
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .aa-blog-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .aa-related-blog-header-part .aa-related-blog-title {
    font-size: 32px;
  }

  .aa-single-hero-container {
    padding-top: 150px;
    min-height: 450px;
  }
}

@media (max-width: 991px) {
  .aa-single-post-container .aa-layout-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .aa-single-post-container .aa-sidebar-toc {
    position: static;
    height: auto;
  }
}

@media (max-width: 768px) {
  .aa-single-hero-container {
    padding-top: 120px;
    min-height: 400px;
  }

  .middle-blogsec {
    margin: 0px 0px 40px 0px;
  }

  .aa-related-blog-section {
    padding: 40px 0;
  }

  .aa-related-blog-container {
    padding: 0 16px;
  }

  .aa-related-blog-header-part {
    margin-bottom: 20px;
  }

  .aa-blog-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .aa-related-blog-card {
    padding: 16px;
    gap: 16px;
  }

  .aa-related-blog-card .blog-card-content {
    gap: 16px;
  }

  .blog-card-top-part {
    margin-bottom: 0;
  }

  .blog-card-tag {
    display: none;
  }

  .read-more-button {
    margin-top: 0;
  }

  .aa-related-blog-header-part .aa-related-blog-title {
    font-size: 26px;
  }

  .aa-single-post-container {
    padding: 0 16px;
  }
}

/* Blog Page CSS End */

/* */

.hmtabs-col:hover {
    border: 1px solid #BFA5D7;
}
 
.pricingtab-sec .pricingtab-container .prcardmain-col:hover .pricingcard-col{
    border: 1px solid #3C1461;
}
 
.pricingtab-sec .pricingtab-container .prcardmain-col:hover .pricesize-title{
  background-color: #3C1461;
}
 
.pricingtab-sec .pricingtab-container .prcardmain-col:hover .pricesize-title .elementor-heading-title{
  color: #ffffff;
}
.pricingtab-sec .pricingtab-container .prcardmain-col:hover .yrpricingcard-col{
    border: 1px solid #3C1461;
}
.aa-related-blog-section.catblog-section {
    background: none;
}

.catblog-section .aa-related-blog-img-wrapper a {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.faqpage-section .faq-tabs {
    max-height: 850px;
    overflow-y: scroll;
    padding-right: 10px;
    overflow-x: hidden;
}
.faqpage-section .faq-tabs::-webkit-scrollbar {
    width: 6px;
}

.faqpage-section .faq-tabs::-webkit-scrollbar-track {
    background: #EFE0FF;
    border-radius: 10px;
}

.faqpage-section .faq-tabs::-webkit-scrollbar-thumb {
    background: #3C1461;
    border-radius: 10px;
}
.faq-hidden {
  display: none !important;
}
/* whatsapp css start */
#wa-btn-wrapper {
  left: 20px;
  width: max-content;
}

#wa-widget-wrapper {
  left: 20px;
}

.whatsapp-custom-widget {
  position: fixed;
  bottom: 16px;
  left: 75px;
  z-index: 999999;
}

.whatsapp-custom-widget .whatsapp-custom-label {
  display: none;
  font-size: 12px;
  color: #000;
  background-color: #f5f7f9;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 60px;
  line-height: 1.5;
}

#wa-btn-wrapper #wa_btn-content {
  padding: 10px 10px;
}

#wa-btn-wrapper #wa_btn-content p {
  margin-left: 0 !important;
}

#wa-widget-wrapper #wa_widget-content {
  width: 400px;
}

#wa-widget-wrapper .wa_widget-brand-container {
  position: relative;
  padding: 10px 16px;
}

#wa-widget-wrapper .wa_widget-brand-container .wa_widget-brand-image {
  height: 50px;
  width: 50px;
  display: flex;
}

#wa-widget-wrapper .wa_widget-brand-container .wa_widget-brand-info p {
  margin: 5px 0 0 !important;
  line-height: 1.2;
}

#wa-widget-wrapper .wa_widget-brand-container .wa_widget-close-btn {
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wa-widget-wrapper .wa_widget-message-container {
  background-color: #e5e3e4;
  padding: 20px 16px;
  min-height: 180px;
}

#wa-widget-wrapper .wa_widget-message {
  padding: 10px 16px;
  border-radius: 10px;
}

#wa-widget-wrapper .wa_widget-message p {
  margin-bottom: 0 !important;
  line-height: 1.2;
}

#wa-widget-wrapper .wa_widget-button-container {
  padding: 16px;
}

#wa-widget-wrapper .wa_widget-button-container .wa_widget-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 10px 16px;
}

#wa-widget-wrapper .wa_widget-button-container .wa_widget-button svg {
  width: 20px;
  height: 20px;
}

#wa-widget-wrapper .wa_widget-button-container .wa_widget-button p {
  margin: 0 !important;
}

#wa_widget-content .wa_widget-brand-container {
  align-items: center;
}

/* whatsapp css end */

/**  **/

.faq-section-left-part-img {
    display: flex;
    justify-content: center;
}

.faq-section-left-part-img img {
    object-fit: contain;
}

@media (max-width: 880px) {
    .yrpricingcard-col {
        min-height: unset !important;
    }

    .pricingcard-col {
        min-height: unset !important;
    }
}

/**  **/


/* Wrapper */
.footer-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Main bar */
.footer-form-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: #00000080;
    border: 1px solid #ffffff66;
    border-radius: 10px;
    padding: 6px;
}

/* Email input */
.footer-form .contact-footer-mail {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    padding: 0 10px;
}

/* Placeholder */
.footer-form .contact-footer-mail::placeholder {
    color: rgba(255,255,255,0.55);
}

/* CF7 default wrappers fix */
.footer-form .wpcf7-form-control-wrap {
    flex: 1;
}

/* Submit button */
.contact-footer-btn {
    width: 100%;
    max-width: 36px;
    height: 100%;
    max-height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #5D1B9C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover */
.contact-footer-btn:hover {
    transform: scale(1.05);
    background: #6f24ba;
}

.contact-footer-btn svg {
    width: 100%;
    height: 100%;
}

.footer-shortcode .footer-form .wpcf7-not-valid-tip {
  display: none !important;
}

.footer-shortcode .wpcf7-response-output {
  color: #fff;
  margin: 20px 0 0 !important;
}

.aa-author-meta a {
    color: #551a8b;
}