/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #C10B62;
    --secondary: #333333;
    /* Font Variable */
    --font-text: "Poppins", sans-serif;
    --font-heading: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Jost", sans-serif;
}

section {
    position: relative;
    padding: 5rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    font-family: "Oswald", sans-serif;
}

h4,
h5,
h6 {
    color: #000;
    /* font-family: var(--font-heading); */
    font-family: "Jost", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

.preLoader img {
    width: 300px;
}

.preLoader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.6em;
    border-radius: 5px;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* NAV HEADER CSS */

header {
    width: 100%;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s ease-in-out;
    background: linear-gradient(180deg, #ffffff80, #ffffff00);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

/* Dropdown */
.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 210px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 0.5rem 1.125rem;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 970px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
}

.main-slider h2 {
    margin: 0 0 1rem 0;
    color: var(--white);
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}

.slideOne .themeBtn {
    font-size: 1.125rem;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin: 1rem 0 24px 0;
    font-size: 1.5rem;
    text-transform: capitalize;
}


/* !MAIN HERO SLIDER CSS */

li.nav-item .themeBtn {
    background: #000;
    font-family: 'Jost';
}

.mainHead {
    font-size: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}

.subHead {
    font-size: 1.5625rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
}


/* about-section */

.aboutcntnt p {
    color: #828282;
    font-size: 1.125rem;
}

.number {
    background: var(--primary);
    width: 256px;
    height: 211px;
    text-align: center;
    border-radius: 5px;
    position: absolute;
    bottom: 2rem;
    left: -2rem;
}

.number h4 {
    font-size: 8.625rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.number h5 {
    font-size: 1.4375rem;
    color: #fff;
    margin: 0;
}

figure.aboutimgs {
    position: relative;
}

figure.aboutimgs::before {
    position: absolute;
    content: "";
    width: 243px;
    height: 221px;
    background: rgb(193 11 98 / 20%);
    z-index: -1;
    left: 20px;
    top: 4px;
}


/* about-section */


/* goal-section */

.goal-section {
    background: url(../images/goalbg.webp)center/cover no-repeat;
    padding: 4rem 0;
}

.goal-section h2 {
    font-size: 3rem;
}

.goalbtn .themeBtn {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Jost';
    width: 269px;
    height: 76px;
    text-align: center;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goalbtn a.themeBtn.btnblk {
    background: #000;
}


/* goal-section */


/* out-service */

.serviceheading {
    text-align: center;
    margin-bottom: 7rem;
}

.serviceheading .subHead {
    margin: 0;
}

.servicewrap {
    margin-bottom: 3.5rem;
}

.our-services {
    padding-bottom: 0rem;
}

.service-cntnt h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1.125rem;
    text-transform: uppercase;
}

.service-cntnt .themeBtn {
    font-family: "Jost", sans-serif;
}

.service-cntnt p {
    font-size: 1rem;
    color: #000;
}

.servicewrap.servicewrap2 {
    margin-top: -5rem;
}

.servicewrap.servicewrap3 {
    margin-top: -9rem;
}


/* out-service */


/* problem-section */

.problem-section {
    background: url(../images/problembg.webp)center/cover no-repeat;
    padding: 8rem 0;
}

.problemwrap h2 {
    font-size: 3.125rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.problemwrap p {
    font-size: 1.125rem;
    color: #fff;
    width: 85%;
}

.problemwrap .btn-group {
    gap: 30px;
}

.problemwrap .btn-group .themeBtn {
    font-family: "Jost", sans-serif;
}

a.themeBtn.whitebtn {
    border: 1px solid #fff;
    background: transparent;
}


/* problem-section */


/* blog-section */

.blogwrap h5 {
    font-size: 0.875rem;
    color: #5A5B5D;
    margin: 0;
    margin-bottom: 10px;
}

.blogwrap h4 {
    font-size: 1.5625rem;
    font-weight: 500;
    color: #000;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blogwrap p {
    font-size: 0.9375rem;
    color: #5A5B5D;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blogwrap a {
    color: #C10B62;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: underline !important;
}

.blog-cntnt {
    padding: 31px 19px 29px 23px;
}

.blogwrap {
    box-shadow: 0 3px 6px #70707085;
}


/* blog-section */


/* contact-section */

.contactForm input {
    width: 100%;
    height: 79px;
    border: 1px solid #F5F5F5;
    border-radius: 10px;
    margin-bottom: 1.125rem;
    background: #E5E5E5;
}

.contactForm textarea {
    width: 100%;
    border: 1px solid #F5F5F5;
    border-radius: 10px;
    margin-bottom: 1.125rem;
    resize: none;
    background: #E5E5E5;
    height: 194px;
}

form.contactForm.contact-form button.themeBtn {
    border: unset;
}

.contactForm input::placeholder {
    color: #000;
}

.contactSect p {
    font-size: 1.0625rem;
    color: #707070;
}

.contactForm textarea::placeholder {
    color: #000;
}


/* contact-section */


/* footer */

footer {
    background: #000;
    padding-top: 80px;
}

.contactInfo li a strong {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    transition: 0.5s ease;
}

.contactInfo li a strong span {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 1.125rem;
}

.contactInfo li a {
    display: flex;
    gap: 12px;
}

.contactInfo li+li {
    padding-top: 1.8rem;
}

ul.contactInfo li {
    display: flex;
    gap: 10px;
}

.icon i {
    color: #fff;
}

footer h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

ul.quicklist li a,
.copyRight-wrapper ul li a {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: uppercase;
}

ul.quicklist li {
    margin-bottom: 10px;
}

.copyRight {
    border-top: 1px solid #707070;
    margin-top: 2rem;
    padding: 1.25rem 0;
}

.copyRight p {
    text-align: center;
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.socialLink {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.socialLink li a {
    width: 51px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: #fff;
    font-size: 1.25rem;
    border: 1px solid #fff;
    background: transparent;
    margin-top: 25px;
}

.socialLink li a:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

.quicklists {
    border-left: 1px solid rgb(255 255 255 / 38%);
    padding: 0 4rem;
}


/* footer */


/*choose Sec Css Start */

.chooseSec {
    padding: 8rem 0;
    background: linear-gradient(180deg, #fff, #E5E5E5);
    z-index: 1;
}

.chooseSec .mainHead {
    font-size: 4.0625rem;
}

.focusWrap {
    padding-top: 2rem;
}

.focusWrap ul li {
    display: flex;
    gap: 1.2rem;
}

.focusWrap ul li+li {
    padding-top: 3.125rem;
}

.focusWrap ul li figure {
    position: relative;
    background: #FFFFFF;
    padding: 16px 18.5px 16px 18.5px;
    border-radius: 10px;
}

.focusWrap ul li div h4 {
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.focusWrap ul li div p {
    color: #828282;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.imgchoose {
    margin-bottom: -9rem;
}

.choose11 {
    position: absolute;
    left: -2rem;
    top: 22px;
    z-index: -1;
}

.focusWrap ul li figure img {
    height: 47px;
    object-fit: contain;
}


/*choose Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec:before {
    height: 1040px;
}

.testBorder {
    position: relative;
}

.testBorder:before {
    content: "";
    position: absolute;
    border: 1px solid #C10B62;
    width: 98%;
    height: 574px;
    border-radius: 27px;
    bottom: -2.5rem;
    margin-bottom: 2rem;
}

.review-page .testBorder:before {
    height: 505px;
}

.testimonialWrap {
    border: 1px solid #C10B62;
    border-radius: 27px;
    background: var(--white);
    box-shadow: 0 0 49px rgb(0 0 0 / 10%);
    padding: 0 1rem 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.testimonialWrap figure {
    /* border: 15px solid var(--primary); */
    /* width: fit-content; */
    /* margin: auto; */
    /* border-radius: 100%; */
    margin-top: -6rem;
}

.testimonialWrap p {
    font-size: 1.75rem;
    color: #4A4A4A;
    font-style: italic;
    width: 85%;
    margin: auto;
    padding: 3rem 0 1.2rem 0;
    line-height: 1.9;
}

.testimonialWrap h4 {
    font-size: 1.875rem;
    text-transform: capitalize;
    color: #1D3146;
    font-weight: 400;
}

.testimonialWrap ul {
    display: flex;
    justify-content: center;
    gap: 11px;
    padding-top: 1rem;
}

.testimonialWrap ul li i {
    font-size: 1.5rem;
    color: #D11D0E;
}

.quoteImg img {
    position: absolute;
}

.quoteImg .quoteOne {
    top: 6%;
    left: 12rem;
}

.quoteImg .quoteTwo {
    bottom: -1.75rem;
    right: 6rem;
    background: #fff;
    display: inline-block;
    padding: 0 10px;
    z-index: 9;
}

.testimonialSlider {
    padding-top: 7rem;
}

.testimonialSec .swiper-button-next {
    right: -4.5rem;
}

.testimonialSec .swiper-button-prev {
    left: -4.5rem;
}

.testimonialSec .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    background: transparent;
    opacity: 1;
    position: relative;
    border: 1px solid transparent;
}

.testimonialSec .swiper-pagination-bullet-active {
    /* width: 14px; */
    /* height: 14px; */
    /* border-radius: 50%; */
    /* background: var(--primary); */
    /* border: 1px solid #C10B62; */
    border-color: var(--primary);
}

.testimonialSec .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonialSec .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: rgb(193 11 98 / 50%);
    border-radius: 50%;
}

.testimonialSec .swiper-pagination-bullet-active:before {
    background: var(--primary);
}


/* Testimonial Sec Css End */

ul.quicklist li a:hover,
.copyRight-wrapper ul li a:hover {
    color: var(--primary);
}

.contactInfo li a strong:hover {
    color: var(--primary);
}

.themeBtn:hover {
    background: #000;
    color: #fff;
}

li.nav-item .themeBtn:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.goalbtn a.themeBtn.btnblk:hover {
    background: var(--primary);
    color: #fff;
}

a.themeBtn.whitebtn:hover {
    border-color: var(--primary);
    background: #fff;
    color: var(--primary);
}


/* inner pages css start */

.inner-banner {
    padding: 0;
}

.inner-banner h2 {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 6.625rem;
    text-transform: uppercase;
    margin: 0;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 0 10px BLACK;
}

.inner-banner .heading-sm {
    font-size: 4rem;
}


.about-section.about-page .aboutcntnt p {
    margin: 0;
}

.about-section.about-page .aboutcntnt p+p {
    margin-top: 1.6rem;
}

.about-section.about-page .row+.row {
    margin-top: 4rem;
}

.servcpg-content {
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    padding: 3.1rem 3rem;
    background: var(--white);
}

.servcpg-content .mainHead {
    font-size: 3rem;
}

.servcpg-content p {
    line-height: 2.0625rem;
    color: #828282;
    font-size: 1.125rem;
}

.servcpg-content.left {
    margin-bottom: -2rem;
    margin-right: -2rem;
}

.servcpg-content.right {
    margin-bottom: -2rem;
    margin-right: 0;
    margin-left: 0;
}

.prepare-img.rightimg {
    margin-right: -3rem;
    margin-left: 0;
}

.about-section.service-page .row+.row {
    margin-top: 5.5rem;
}

figure.prepare-img {
    margin-left: -1rem;
}

.about-section.service-page {
    padding-bottom: 7rem;
}

.location-card {
    text-align: center;
    margin-bottom: 3rem;
}

.location-card figure img {
    border-radius: 50%;
    box-shadow: -14px 14px 0px 3px rgb(193 11 98 / 50%);
}

.location-card figure {
    margin-bottom: 3rem;
}

.location-card h4 {
    font-size: 1.875rem;
}

.location-card p {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 500;
    margin: 0 0 2rem;
}

.location-card a {
    font-size: 1.625rem;
    color: var(--black);
    font-weight: 500;
}

.location-main {
    padding: 7rem 0 3rem;
}

.testimonialSec.review-page .quoteImg .quoteOne {
    z-index: 1;
    top: -12%;
    background: #fff;
    display: inline-block;
    padding: 0 13px;
}

.testimonialSec.review-page .row+.row {
    margin-top: 10rem;
}

.testimonialSec.review-page {
    padding: 10rem 0 8rem;
}

.blog-page .blogwrap {
    margin-bottom: 2.3rem;
}

.blog-page {
    padding: 5rem 0 4rem;
}

.get-box {
    background: var(--white);
    box-shadow: 0 0 20px rgb(0 0 0 / 6%);
    padding: 3rem;
}

.get-box .mainHead {
    font-size: 3.125rem;
    font-weight: bold;
    margin: 0 0 2rem;
}

.contact-form label {
    display: block;
    font-size: 1.125rem;
    color: #7D7F82;
    font-weight: 600;
    margin: 0 0 14px;
}

.contact-form input {
    width: 100%;
    height: 55px;
    border: 1px solid rgb(112 112 112 / 26%);
    padding: 0 1rem;
    margin: 0 0 1.5rem;
    color: #495057 !important;
    font-weight: 400 !important;
}

.contact-form textarea {
    width: 100%;
    height: 140px;
    border: 1px solid rgb(112 112 112 / 26%);
    padding: 0 1rem;
    border-radius: 5px;
    resize: none;
    margin: 0 0 1.5rem;
}

.contact-form .themeBtn {
    border: 0;
    border-radius: 0;
    width: 100%;
    font-size: 1.25rem;
}

.contact-cotnetn ul li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-cotnetn ul li h4 {
    font-size: 1.375rem;
    margin: 0 0 11px;
}

.contact-cotnetn ul li p {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 500;
    width: 55%;
    line-height: 1.8125rem;
    margin: 0;
}

.contact-cotnetn ul li a {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 500;
    margin: 0;
}

.contact-cotnetn ul li+li {
    margin-top: 2rem;
}

.contact-cotnetn p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin: 0;
}

.contact-cotnetn ul {
    margin: 3rem 0 0;
}

.contact-cotnetn ul li figure {
    width: 70px;
    text-align: center;
}

.contact-cotnetn .mainHead {
    width: 80%;
}

.map iframe {
    margin-bottom: -7px;
    filter: grayscale(100%);
}


/* inner pages css end */

figure.bgcircle {
    position: relative;
}

figure.bgcircle:before {
    position: absolute;
}

figure.bgcircle::before {
    position: absolute;
    content: "";
    background: rgb(193 11 98 / 50%);
    width: 657px;
    height: 657px;
    border-radius: 50%;
    z-index: -1;
    right: 1rem;
    top: 1rem;
}

figure.bgcircle.rightcircle:before {
    right: 0;
    left: 1rem;
}

.location-new .contact-cotnetn h2 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 600;
}

.taxHeading h2 span {
    font-size: 1.5625rem;
    display: block;
    font-family: 'Jost';
    text-transform: capitalize;
    font-weight: 500;
    color: var(-black);
}

.taxHeading p {
    font-size: 1.125rem;
    width: 41%;
}

.taxHeading {
    display: flex;
    justify-content: space-between;
}

.videoWrap {
    position: relative;
    margin-top: 1rem;
}

.videoBtn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 8px solid var(--white);
    width: 5.5rem;
    height: auto;
    aspect-ratio: 1;
    margin: auto;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.5rem;
    background: transparent;
    transition: 0.5s ease;
}

.videoWrap:hover .videoBtn {
    background: var(--white);
    color: var(--black);
}

.taxInner .accordion .accordion-item {
    margin-top: 1rem;
    width: 590px;
}

.taxInner .accordion .card-header {
    background: none;
    border: 0;
    padding: 0;
}

.taxInner .accordion .card-header .btn {
    background-color: var(--primary);
    width: 100%;
    text-align: left;
    box-shadow: none !important;
    position: relative;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.125rem;
    color: var(--white);
    font-weight: bold;
    border-radius: unset;
}

.taxInner .accordion .card-header .btn::after {
    content: "\f0d8";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    color: var(--white);
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

.taxInner .accordion .card-header .btn.collapsed {
    background-color: #181C27;
    color: var(--white);
}

.taxInner .accordion .card-header .btn.collapsed::after {
    content: "\f0d7";
    color: var(--white);
    transition: 0.5s ease;
}

.taxInner .accordion .card-body {
    padding-bottom: 0;
}

.taxInner .accordion .card-body p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 0px;
    font-size: 1.125rem;
}

.taxInner .accordion .card-body p+p {
    margin-top: 2rem;
}

.taxImages {
    position: relative;
    text-align: right;
}

.taxTwo {
    position: absolute;
    bottom: -14rem;
    left: 0;
}

.taxInner {
    padding: 6.25rem 0 10rem 0;
}

.taxInner:before {
    content: "";
    position: absolute;
    background: rgb(235 235 235 / 50%);
    width: 100%;
    height: 70%;
    bottom: 0;
}

.taxInner .row+.row {
    margin-top: 5.625rem;
}

.reviewSect .taxHeading {
    justify-content: center;
}

.reviewWraps {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 43px rgb(175 175 175 / 16%);
    padding: 37px 2rem 30px 2rem;
}

.reviewWraps p {
    font-size: 1.25rem;
    color: #7E7E7E;
    line-height: 1.8;
    margin-top: 1rem;
}

.reviewWraps ul {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.reviewWraps ul li i {
    color: #E9AE09;
    font-size: 1.25rem;
}

.userWraps {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.userWraps h5 {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.5;
}

.userWraps h5 span {
    font-size: 1.0625rem;
    display: block;
    color: #7E7E7E;
    text-transform: capitalize;
    font-weight: 400;
}

.reviewSliders {
    padding: 2rem 0 6rem 0;
}

.reviewSliders .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    opacity: 1;
    background: rgb(24 28 39 / 25%);
    transition: 0.5s ease;
}

.reviewSliders .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 29px;
    height: auto;
    aspect-ratio: 1;
}

.reviewSliders .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxPage {
    background: rgb(235 235 235 / 50%);
}

.business-information-inner,
.tax-resolution-inner {
    background: #EBEBEB;
    padding: 6rem 0;
}

.business-information-inner.taxInner:before,
.tax-resolution-inner.taxInner:before {
    display: none;
}

.business-information--img img,
.tax-resolution--img img {
    object-fit: cover;
    position: relative;
}

.service-overview-content h5 {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: capitalize;
}

.service-overview-content p {
    margin: 1rem 0 2rem;
}

.service-overview-content a {
    font-size: 1rem;
    font-weight: 400;
    color: #5A5B5D;
}

.service-overview-content a span {
    font-weight: 600;
    color: var(--primary);
}

.service-overview-img {
    position: relative;
}

.service-overview-img ul {
    position: absolute;
    bottom: 6rem;
}

.service-overview-img ul li {
    width: fit-content;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    padding: 1rem 1rem 1rem 2.75rem;
    background: var(--primary);
    position: relative;
}

.service-overview-img ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.service-overview-img ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    left: 1rem;
}

.tax-resolution-services-img,
.tax-resolution--img {
    position: relative;
}

.tax-resolution-services-img::before {
    content: "";
    width: 480px;
    height: 550px;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--primary);
    z-index: -1;
}

.tax-resolution-services-img img:last-child {
    position: absolute;
    bottom: -11rem;
    right: 0;
}

.tax-resolution--img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
    border: 5px solid var(--primary);
}

.privacy-page h6 {
    font-size: 2rem;
    margin: 0 0 1.5rem;
}

.privacy-page ul {
    margin: 0 0 2rem;
}

.privacy-page ul li {
    list-style: disc;
    margin-left: 1.2rem;
    font-size: 1.2rem;
}

.privacy-page ul li+li {
    margin-top: 1rem;
}

.privacy-page p {
    font-size: 1.125rem;
}




.detailpg-content figure img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detailpg-content figure {
    margin-bottom: 2rem;
}

.dtlpgblog-cntnt h5 {
    font-size: 2rem;
}

.dtlpgblog-cntnt h4 {
    font-size: 3.5rem;
}

.dtlpgblog-cntnt p {
    font-size: 1.125rem;
    line-height: 2rem;
}

.dtlpgblog-cntnt h6 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

.dtlpgblog-cntnt ul {
    margin: 1.3rem 0 1.5rem;
}

.dtlpgblog-cntnt ul li {
    font-size: 1.125rem;
    color: #828282;
    list-style: disc;
    margin-left: 1.33rem;
    line-height: 1.9rem;
}

.dtlpgblog-cntnt ul li strong {
    color: var(--black);
}

.dtlpgblog-cntnt ul li+li {
    margin-top: 0.7rem;
}

.location-new .contact-cotnetn .themeBtn {
    margin-top: 2rem;
    margin-left: 6rem;
}

a.navbar-brand img {
    width: 190px;
}


a.footerLogo img {
    filter: brightness(0) invert(1);
}

.homeSlider {
    width: 100%;
    height: 1000px;
    z-index: -1;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
}

.error {
    font-weight: 500 !important;
    color: #ff0000 !important;
}

#contactFormResult {
    width: fit-content;
    margin: 2rem 0 0;
}

#contactinnerformResult {
    text-align: center;
    margin: 2rem 0 0;
}

/* Blog Slider */
.blogSlider {
    padding-bottom: 0.5rem;
}