@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #981B37;
    --linear-bg: linear-gradient(90deg, #FF003C 0%, #9B1B39 100%);
    font-size: 10px;
    --white-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}




body {
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
}

p {
    color: #3c424eed;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 2rem 0;
}

.nav-link {
    color: white;
}

.nav-link:focus,
.nav-link:hover {
    color: #ff0039de;
}


.btn-login {
    border: 1px solid var(--linear-bg);
    border-radius: 11px;
    padding: 11px 14px;
    transition: .3s;
    display: inline-block;
    background: var(--linear-bg);
    color: white;
    font-weight: 500;
    min-width: 130px;
    text-align: center;
}



.btn-login:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hero-sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
    place-content: center;
    color: white;
}

.hero-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 74%) 0%, rgba(0, 0, 0, 0.4) 20%, #00000000 30%);
    z-index: 0;
}

.hero-sec h1 {
    font-size: 5rem;
    font-weight: 600;
}

.hero-sec .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 2rem 0;
    padding: 0;
    color: white;
}


.hero-below-wrapper {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-top: -100px;
    z-index: 1;
    position: relative;
    background: white;
    border-radius: 23px;
    text-align: center;
    padding-bottom: 2rem;
}

.hero-below-wrapper .icon-wrapper {
    padding: 3rem 1rem;
    text-align: center;
    border-right: 1px solid #ddd;
}

.hero-below-wrapper .col-lg-3:last-child .icon-wrapper {
    border-right: none;
}

.hero-below-wrapper h3 {
    font-size: 2.3rem;
    font-weight: 500;
    margin: 1.5rem 0;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 10px;
    object-fit: cover;
}

/* Hover effect */
.image-wrapper:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.image-wrapper:hover img {
    transform: scale(1.07);
}

.about-section {
    padding: 4rem 0;
}

.title-wrapper>span {
    text-transform: uppercase;
    color: #9B1B39;
    font-size: 18px;
    font-family: "Raleway", sans-serif;
}

.title-wrapper h2 {
    font-size: 4.2rem;
    font-weight: 600;
    position: relative;
    /* display: inline-block; */
}

.title-wrapper {
    margin-bottom: 2rem;
}

.title-wrapper h2::after {
    content: "";
    height: 3px;
    width: 130px;
    background: #FFDAE3;
    bottom: -4px;
    position: absolute;
    left: 0;
}

.about-section a.btn-login {
    margin-top: 2rem;
}

.our-services-sec {
    padding: 3rem 0;
    background-color: #F7FAFD;
}

.our-services-sec .title-wrapper h2::after,
.testimonial-sec .title-wrapper h2::after,
.blog-sec .title-wrapper h2::after {
    left: 50%;
    transform: translate(-50%, 0px);
    bottom: 8px;
}

section.our-services-sec .title-wrapper,
.testimonial-sec .title-wrapper,
.blog-sec .title-wrapper {
    max-width: 1000px;
    margin: 40px auto;
}

.service-card {
    text-align: center;
    padding: 3rem 11rem;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .3s;
    border-radius: 15px;
}

.service-card:hover {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.service-wrapper {
    padding: 4rem 0px;
}

.service-card h3 {
    font-size: clamp(1rem, 1.6vw + 0.5rem, 2.5rem);
    font-weight: 600;
    margin: 2rem 0;
}

.service-content p {
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    margin: 0 auto;
    position: relative;
}

.service-img {
    background: #FFE4EA;
    margin: 0 auto;
    border-radius: 50%;
    padding: 20px;
    aspect-ratio: 1 / 1;
    margin-bottom: 2rem;
}

.service-card .service-img img {
    width: 60px;
}

.service-content {
    position: relative;
}

.service-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-sec {
    padding: 2rem 0;
    background: #FFFFFF;
}

.quote-img {
    width: 70px !important;
    height: 70px;
    margin: 0 auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.info-author img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}

.info-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 2rem 0;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 8px;
    position: relative;
}

.testimonial-slider .owl-nav {
    position: absolute;
    top: 0%;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    transform: translate(6px, -15px);
    pointer-events: none;
}



.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    background: var(--primary-color);
    color: white;
    border-radius: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
}

.testimonial-slider .owl-nav button.owl-prev {
    transform: translate(-12px, 0px);
}

.testimonial-slider .owl-nav button:hover {
    background: var(--primary-color);
    color: #fff;
}

.testimonial-slider .owl-dots {
    margin-top: 1rem;
}

.testimonial-card {
    padding: 3rem;
}

.info-author h5 {
    font-size: 21px;
}

.info-author p {
    font-size: 16px;
}

.blog-sec {
    padding: 3rem 0;
    background: #F7FAFD;
}

.blog-author-info {
    display: flex;
    gap: 20px;
    padding: 1.5rem 0;
}

.blog-author-info p {
    padding: 0;
    margin: 0;
    color: #9A9A9A;
}

.blog-author-info p i {
    color: var(--primary-color);
}

.blog-card {
    margin-bottom: 3rem;
}

.blog-card h3 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

a.read-more-btn {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    transition: .3s;
    margin-top: 3rem;
}

a.read-more-btn i {
    transition: .3s;
}

a.read-more-btn:hover {
    color: black;
}

a.read-more-btn:hover i {
    margin-left: 10px;
}

.blog-card img {
    border-radius: 20px 20px 0 0;
    max-height: 300px;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.blog-card p {
    color: #57647C;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.conconsultation-sec {
    padding: 3rem 0;
    min-height: 300px;
    place-content: center;
    color: white;
    position: relative;
}

.conconsultation-sec::after {
    content: "";
    background-color: #0000004f;
    inset: 0;
    position: absolute;
}

.conconsultation-sec .container {
    position: relative;
    z-index: 1;
}

.conconsultation-sec {
    text-align: center;
    padding: 8rem 0;
}

.conconsultation-sec h2 {
    font-size: 6rem;
    font-weight: 700;
}

.conconsultation-sec p {
    font-style: italic;
    color: white;
    font-size: 25px;
}

.conconsultation-sec p span {
    color: #EEFF00;
}

.book-btn {
    background: white;
    width: max-content;
    margin: 9px auto;
    color: red;
    padding: 10px 14px;
    border-radius: 5px;
    transition: .3s;
}

.book-btn:hover {
    background: var(--linear-bg);
    color: white;
}


.contact-sec {
    padding: 3rem 0;
}

.form-wrapper input,
.form-wrapper textarea {
    width: 100%;
    padding: 15px;
    margin: 1rem 0;
    outline: none;
    margin-top: 0;
    border: none;
    border-bottom: 1px solid #9A9A9A;
    padding-left: 0;
}

.form-wrapper textarea {
    min-height: 100px;
    resize: none;
    height: 101px;
}

.form-wrapper button {
    background: var(--linear-bg);
    border: none;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: auto;
    background: var(--linear-bg);
    color: white;
    padding: 11px 15px;
    border-radius: 10px;
}

.form-wrapper button:hover {
    background: var(--primary-color);
}

.site-footer {
    background: #0b0b0b;
    color: #ffffff;
    padding: 5rem 0;
}

.site-footer .footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.site-footer a:hover {
    color: #e91e63;
}

.footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
       color: #ccc;
    align-items: baseline;
}



.footer-contact i {
    color: white;
    margin-right: 8px;
}

.footer-form input {
    border-radius: 5px;
    border: none;
    font-size: 16px;
    padding: 14px;
    padding-right: 24px;
}

.footer-form .btn {
    background: var(--linear-bg);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transform: translate(-20px, 0px);
}


.site-footer li {
    margin: 1.5rem 0;
       color: #ccc;
}

.footer-logo img {
    margin-bottom: 3rem !important;
    display: inline-block;
}



.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}


/* About Page css */

.breadcrumb-sec {
    min-height: 400px;
    place-content: center;
    color: white;
}

.breadcrumb-sec h1 {
    font-size: 60px;
    font-weight: 600;
}

.breadcrumb-sec p {
    font-weight: 500;
    color: white;
    font-size: 18px;
}

.our-mission-sec {
    padding: 5rem 0;
}

.our-mission-sec .title-wrapper h2::after,
.what-we-do .title-wrapper h2::after {
    left: 50%;
    transform: translate(-50%, 15px);
    bottom: 8px;
}

.mission-card {
    text-align: center;
    padding: 0px 2rem;
    margin: 2rem;
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.icon-wrap {
    background: var(--primary-color);
    width: max-content;
    margin: 0 auto;
    padding: 22px;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.icon-wrap img {
    height: 75px;
    width: 75px;
}

.what-we-do {
    padding: 60px 0;
}

.step-card {
    background: linear-gradient(90deg, #EDEDED 0%, #FFFFFF 46%, #EDEDED 100%);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* height: 100%; */
    margin: 2px 17px;
    margin: 60px 0;
}

.step-card p {
    font-size: 23px;
    color: black;
    font-weight: 500;
}

.step-number {
    position: relative;
    font-size: 50px;
    color: #000;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    display: inline-block;
    z-index: 1;
}

.step-number::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background: url(../img/Ellipse.png) no-repeat center / cover;
    z-index: -1;
}

/* About Page css End */



/* service area start */

.our-services-areas {
    padding: 50px 0;
    /* background: linear-gradient(180deg, #001642 0%, #020D22 95.75%); */
    background: linear-gradient(181deg, #981b37 0%, #000000 100%);
}

.our-services-areas .section-title {
    font-size: 16px;
    color: var(--white-color);
    border-radius: 10px;
    background-color: #103073;
    padding: 5px 10px;
    max-width: fit-content;
    margin-bottom: 10px;
}

.our-services-areas h2 {
    font-size: 38px;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.our-services-areas .view-all-btn {
    font-weight: 300;
    text-decoration: none;
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #fff;
}

.our-services-areas .view-all-btn:hover {
    color: #fff;
}


.our-services-areas .nav-tabs .nav-link {
    color: #fff;
    border: none;
    font-weight: 500;
    padding: 10px 20px;
}

.our-services-areas .nav-tabs .nav-link.active {
    border-bottom: 2px solid #FFB400;
    color: #FFB400;
}

.our-services-areas .card {
    background-color: #ffffff;
    border: none;
    transition: all 0.5s ease-in-out;
    color: #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 15px;
}

.our-services-areas .card img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.our-services-areas .card:hover {
    transform: translateY(-10px);
}

.our-services-areas .card:hover h5 {
    color: var(--primary-color);
}

.our-services-areas .card:hover .read-more {
    color: var(--primary-color);
}

.our-services-areas .card-body h5 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 20px;
    color: #000000;
}

.our-services-areas .nav-tabs {
    border-bottom: none !important;
}

.our-services-areas .nav-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: var(--white-color);
    font-weight: 500;
}

.our-services-areas .nav-tabs .nav-link.active {
    border: none !important;
    background: transparent !important;
    /* color: var(--primary-color); */
    color: #d8b1ba;
}

.our-services-areas .read-more {
    color: #848484;
    font-size: 16px;
    text-decoration: none;
}

/* Our Practice Areas owl carousel navs */
.our-services-areas .owl-nav {
    position: absolute;
    top: 42%;
    width: 100%;
    transform: translateY(-50%);
    display: block !important;
}

.our-services-areas .title-wrapper>span {
    color: #f3f3f3;
}

.our-services-areas .owl-nav .owl-prev,
.our-services-areas .owl-nav .owl-next {
    background: transparent !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
    position: absolute;
    font-size: 20px !important;
    color: var(--white-color) !important;
    border: 1px solid var(--white-color) !important;
}

.our-services-areas .owl-nav .owl-prev:hover,
.our-services-areas .owl-nav .owl-next:hover {
    background-color: #000000 !important;
    color: white !important;
    border: none !important;
}

.our-services-areas .owl-nav .owl-prev {
    left: -50px;
}

.our-services-areas .owl-nav .owl-next {
    right: -50px;
}

.our-services-areas .owl-dots {
    text-align: center;
    margin-top: 20px;
    display: block !important;
}

.our-services-areas .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--white-color) !important;
    border-radius: 50%;
    display: block;
    opacity: 0.5;
    transition: 0.3s;
    margin: 5px;
}

.our-services-areas .owl-dots .owl-dot.active span {
    opacity: 1;
    transform: scale(1.4);
    border: 2px solid #fff;
    background: var(--white-color) !important;
}

.our-services-areas .owl-carousel {
    display: block;
}

/* service area end */



/* Privacy Policy */
.privacy_main {
    background-color: #f7f7f9;
    color: #2c2c2c;
}

.updated-date {
    font-size: 1.3rem;
    color: #6b7280;
    letter-spacing: 0.3px;
}

.privacy-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 1.2rem 0 1.6rem;
    color: var(--primary-color);
}

/* Content Cards (no shadow) */
.privacy-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 3rem;
}

.privacy-card h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3.2rem;
    color: #111827;
    position: relative;
}

.privacy-card h4:after {
    content: "";
    height: 1px;
    width: 12%;
    position: absolute;
    left: 0;
    background: red;
    bottom: -7px;
}


.definition-list {
    padding-left: 1.8rem;
}

.definition-list li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #374151;
}

/* Tabs */
.privacy-nav {
    border-bottom: 1px solid #e5e7eb;
}

.privacy-nav .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
    padding: 1.4rem 2.2rem;
    transition: all 0.2s ease;
}

.privacy-nav .nav-link:hover {
    color: var(--primary-color);
}

.privacy-nav .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

/* Tab Content */
.privacy-tab-content {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    padding: 3rem;
}

/* Accordion (Professional FAQ Style) */
.privacy-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-accordion .accordion-header {
    margin: 0;
}

.privacy-accordion .accordion-button {
    padding: 1.8rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    background: transparent;
    color: #111827;
}

.privacy-accordion .accordion-button::after {
    transform: scale(0.9);
}

.privacy-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
}

.privacy-accordion .accordion-button:focus {
    box-shadow: none;
}

.privacy-accordion .accordion-body {
    padding: 0 0 2rem 0;
    color: #4b5563;
    line-height: 1.8;
    max-width: 90%;
}



button.navbar-toggler.border-0 {
    background: white;
}


button.accordion-button {
    font-size: 1.6rem;
}

.accordion-header::after {
    display: none;
}

.faq-section .title-wrapper h2::after {
    left: 50%;
    transform: translate(-50%, 0px);
}

label.es-field-label {
    width: 100%;
}

.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.icon-box i {
    color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0d6efd;
    text-align: center;
    margin: 10px auto;
}



.contact-card h5 {
    font-size: 18px;
}

.contact-card p,
.contact-card a {
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
}

.contact-card a:hover {
    color: #0d6efd;
}



/* ================================
   SINGLE POST LAYOUT
================================ */
.single-post .site-content,
.single-post .content-area {
    background: #f8f9fb;
}

.single-post article {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    /* max-width: 860px; */
    margin: 40px auto;
}

/* ================================
   POST TITLE
================================ */
.single-post h1.entry-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* ================================
   POST META
================================ */
.single-post .entry-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 30px;
}

.single-post .entry-meta a {
    color: inherit;
    text-decoration: none;
}

.single-post .entry-meta a:hover {
    color: #0d6efd;
}

/* ================================
   FEATURED IMAGE
================================ */
.single-post .post-thumbnail img {
    border-radius: 20px;
    margin-bottom: 30px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ================================
   CONTENT TYPOGRAPHY
================================ */
.single-post .entry-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5em;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.single-post .entry-content li {
    margin-bottom: 10px;
}

/* ================================
   BLOCKQUOTE
================================ */
.single-post blockquote {
    border-left: 5px solid #0d6efd;
    padding: 20px 25px;
    background: #f1f5ff;
    font-style: italic;
    border-radius: 8px;
    margin: 40px 0;
}

/* ================================
   LINKS
================================ */
.single-post .entry-content a {
    color: #0d6efd;
    text-decoration: underline;
}

.single-post .entry-content a:hover {
    color: #0a58ca;
}

/* ================================
   TAGS
================================ */
.single-post .tags-links a {
    display: inline-block;
    background: #eef1f5;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-right: 6px;
    color: #555;
    text-decoration: none;
}

.single-post .tags-links a:hover {
    background: #0d6efd;
    color: #fff;
}

/* ================================
   AUTHOR BOX
================================ */
.single-post .author-box {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.single-post .author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.single-post .author-box h5 {
    margin-bottom: 5px;
}

/* ================================
   COMMENTS
================================ */
.single-post .comments-area {
    max-width: 860px;
    margin: 50px auto;
}

.single-post .comment-list li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.single-post .comment-form input,
.single-post .comment-form textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
}




.our-partner {
    padding: 3rem 0;
}

.our-partner .title-wrapper h2::after {
    left: 50%;
    transform: translate(-50%, 0px);
}

.partner-slider .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-slider img {
    max-width: 140px;
    transition: 0.3s;
    height: 140px;
    object-fit: contain;
}

.partner-slider img:hover {
    filter: grayscale(0%);
}


.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: white !important;
}

.accordion-button::after {
    background-image: none !important;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: black;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    text-align: center;
}

h4.fw-bold.blog-title {
    margin: 1rem 0;
    font-size: 18px;
    font-weight: bold;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .single-post article {
        padding: 25px;
        margin: 20px;
    }

    .single-post h1.entry-title {
        font-size: 28px;
    }
}