/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?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");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */

@font-face {
    font-family: "eurostarblackextended";
    src: url("../fonts/eurostarblackextended.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #184d8a;
    --secondary: #288b01;
}

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;
}

h1,
h2,
h3 {
    font-family: "eurostarblackextended";
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.83;
    color: #4b4b4b;
}

.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 */

/* GLOBAL CSS */

.themeBtn {
    background: var(--white);
    font-size: 1rem;
    color: #0e0f0f;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.6875rem 1.7em;
    border-radius: 10px;
    line-height: normal;
}

.themeBtn:hover {
    background: var(--primary);
    color: var(--white);
}

/* !GLOBAL CSS */

/* NAV HEADER CSS */

header {
    /* background: var(--black); */
    padding: 0.75rem 0;
    transition: 0.3s ease-in-out;
}

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

.navbar-brand img {
    width: 320px;
    height: 110px;
    object-fit: cover;
}

.navbar-brand h2 {
    color: var(--white);
    font-size: 1.25rem;
    font-family: "eurostarblackextended";
    text-transform: uppercase;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 3.5rem;
    margin: 0 auto;
}

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

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 0;
    height: 2px;
    bottom: -5px;
    transition: 0.5s ease;
}

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

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

/* 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(--white);
}

.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 {
    position: relative;
    min-width: 240px;
}

.navbar .drop-down ul a {
    padding: 0.5em 1.125em;
    font-size: 1.25em;
    font-weight: 500;
    color: var(--white);
    display: block;
    text-transform: uppercase;
    background: transparent;
}

.navbar .drop-down ul li:nth-of-type(1) a {
    background: var(--secondary);
}

.navbar .drop-down ul li:nth-of-type(2) a {
    background: var(--primary);
}

.navbar .drop-down ul li:nth-of-type(3) a {
    background: var(--black);
}

.form-inline {
    gap: 1rem;
}

.form-inline {
    margin-left: 3.125rem;
}

.form-inline .themeBtn {
    font-size: 1.125em;
    background: var(--primary);
    color: var(--white);
}

.form-inline .themeBtn:nth-child(even) {
    background: var(--secondary);
}

.form-inline .themeBtn:hover {
    background: var(--primary);
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 700px;
}

.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 .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;
}

.homeSlider .slide-inner:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 40%);
}

/* .homeSlider .slide-inner:before,
.innerBanner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 10%;
    background: var(--black);
} */

.slideOne > span {
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.125rem;
    font-family: "eurostarblackextended";
    text-shadow: 4px 4px 4px #4f734b;
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 3.125rem;
    line-height: 1.1;
    text-shadow: 4px 4px 4px #4f734b;
}

.innerBanner .slideOne h1 {
    text-align: end;
}

.slideOne h1 span {
    font-size: 4.75rem;
    display: block;
}

.slideOne p {
    font-size: 1.325rem;
    color: var(--white);
    text-shadow: 0px 0px 4px #4f734b;
}

.themeBtn1 {
    background: var(--primary);
    color: var(--white);
    font-size: 1.125rem;
}

.themeBtn1:hover {
    background: var(--black);
}

/* !MAIN HERO SLIDER CSS */

/* About Sec Css Start */

.aboutSec {
    padding: 6.25rem 0 13.75rem 0;
}

.aboutContent {
    margin-top: 2rem;
}

.aboutContent .secHeading span:nth-of-type(2),
.aboutInner .aboutContent .secHeading span:nth-of-type(1) {
    font-size: 2.25rem;
    font-family: "eurostarblackextended";
    color: #122436;
}

.secHeading span {
    display: block;
    color: var(--primary);
    font-size: 1.125rem;
}

.secHeading {
    text-transform: uppercase;
    color: #122436;
    font-size: 3.75rem;
}

.aboutContent p {
    width: 96%;
    margin-bottom: 1.25rem;
}

.aboutContent p + p {
    margin-top: 2rem;
}

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

.aboutImages img {
    border-radius: 10px;
}

.aboutOne {
    position: absolute;
    bottom: -9rem;
    left: 0;
    border: 15px solid var(--white);
}

.aboutTwo {
    width: 550px;
    height: 486px;
    border: 10px solid var(--primary);
    border-radius: 0.625rem;
    margin-left: auto;
}

/* About Sec Css End */

/* Service Sec Css Start */

.serviceSec {
    background: var(--black) url(../images/serviceBg.webp) center/cover;
    padding: 6.25rem 0;
}

.serviceHeading {
    margin-bottom: 2.5rem;
}

.headings {
    color: var(--white);
    text-transform: uppercase;
    font-size: 3.125rem;
}

.serviceHeading p {
    color: var(--white);
}

.serviceWrap {
    text-align: center;
}

.serviceWrap figure {
    border-radius: 10px;
    overflow: hidden;
}

.serviceWrap figure img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: 0.8s ease;
}

.serviceWrap:hover figure img {
    transform: scale(1.1);
}

.serviceWrap h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-top: 1.3rem;
}

.serviceWrap p {
    color: var(--white);
    width: 97%;
    margin: 0 auto 1rem;
}

.serviceWrap .themeBtn {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    border-radius: 3px;
}

.serviceWrap:hover .themeBtn {
    background: var(--primary);
    color: var(--white);
}

/* Service Sec Css End */

/* Financial Sec Css Start */

.financialSec {
    padding: 6.25rem 0;
}

.financialContent {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 3.75rem 2.8125rem;
    margin-right: -16rem;
}

.subHeading {
    text-transform: uppercase;
    font-size: 2.75rem;
    color: var(--black);
}

.financialContent p {
    color: #282828;
    width: 79%;
}

.financialContent ul {
    margin: 1.5rem 0 1rem 0;
}

.financialContent ul li {
    display: flex;
    align-items: baseline;
    gap: 1.125rem;
}

.financialContent ul li span {
    font-size: 0.8125rem;
    background: var(--primary);
    width: 30px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-family: "Poppins";
}

.financialContent ul li p {
    width: 69% !important;
}

.financialContent .themeBtn1 {
    font-weight: 500;
}

.financialImg img {
    border-radius: 20px;
}

/* Financial Sec Css End */

/* Quote Sec Css Start */

.quoteSec {
    background: var(--primary) url(../images/quoteBg.webp) center/cover;
}

.quoteContent h2 span {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.quoteContent h2 {
    color: var(--white);
    text-wrap: wrap;
    line-height: 1.3;
    white-space: nowrap;
}

.quoteContent .themeBtn1,
.book-appointment-title .themeBtn1 {
    border-radius: 5px;
    background: var(--black);
    font-weight: 500;
}

.quoteContent .btn-group {
    gap: 1.25rem;
    margin-top: 0.625rem;
}

.quoteContent .btn-group .joinBtn {
    border: 1px solid var(--white);
    background: transparent;
}

.quoteContent .themeBtn1:hover {
    background: var(--white);
    color: var(--black);
}

.quoteImg {
    margin-top: -10rem;
}

/* Quote Sec Css End */

/* TestimonialSec Sec Css Start */

.testimonialSec {
    background: rgb(248 234 255 / 30%);
    padding: 6.25rem 0 5rem 0;
}

.testimonailHeading span {
    font-size: 1.625rem;
    color: var(--primary);
    text-transform: uppercase;
    font-family: "Poppins";
    display: block;
    margin-bottom: 10px;
}

.testimonailHeading h2,
.blogSec h2 {
    color: #060e1f;
}

.testimonialBox {
    background: var(--white);
    border-radius: 10px;
    padding: 4rem 0 5rem 0;
    margin-top: 2rem;
    box-shadow: 0 50px 40px 0 #e9eef5;
}

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

.testi-wrp h4 {
    color: var(--black);
    font-size: 2.0625rem;
    font-style: italic;
}

.testi-wrp p {
    color: #62635f;
    font-size: 1.0625rem;
    line-height: 1.95;
    width: 85%;
    margin: 1.5rem auto 1.58rem;
}

.testi-wrp h5 {
    font-size: 1.625rem;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

.testi-wrp h5 span {
    display: block;
    font-size: 1rem;
    color: #716b6b;
}

.mySwiper2 {
    margin-top: 2.5rem;
}

.mySwiper1 .swiper-slide {
    width: 11% !important;
}

.mySwiper1 .swiper-slide img {
    filter: grayscale(1);
    transition: 0.5s ease;
    cursor: pointer;
    width: 100px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.mySwiper1 .swiper-wrapper {
    justify-content: center;
}

.mySwiper1 .swiper-slide-thumb-active img {
    filter: unset;
    transform: scale(1.5);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 25%);
}

.mySwiper1 {
    padding: 2.5rem 0;
}

.testimonialSec .swiper-button-next:after,
.testimonialSec .swiper-button-prev:after {
    display: none;
}

.testimonialSec .swiper-button-next,
.testimonialSec .swiper-button-prev {
    font-size: 2rem;
    color: var(--black);
    top: 57%;
    transition: 0.5s ease;
}

.testimonialSec .swiper-button-next:hover,
.testimonialSec .swiper-button-prev:hover {
    color: var(--primary);
}

.testimonialSec .swiper-button-next {
    right: 20%;
}

.testimonialSec .swiper-button-prev {
    left: 20%;
}

/* TestimonialSec Sec Css End */

/* Blog Sec Css Start */

.blogSec {
    padding: 8.75rem 0 5rem 0;
}

.blogWrap {
    background: #f6f6f6;
    padding: 1.4375rem 1rem;
    border-radius: 5px;
    transition: 0.5s ease;
}

.blogWrap:hover {
    background: var(--white);
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 25%);
}

.blogWrap figure img {
    border-radius: 10px;
}

.blogContent {
    margin-top: 1.25rem;
}

.blogContent span {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--black);
}

.blogContent h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
    margin: 8px 0;
}

.blogContent p {
    color: #828282;
    font-size: 0.9375rem;
    margin-bottom: 0.9375rem;
}

.blogContent a {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
}

.blogSlider {
    padding: 2rem 0 1rem 0;
}

.blogSec .swiper-button-next,
.blogSec .swiper-button-prev {
    background: var(--primary);
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 5px;
    top: 10rem;
    transition: 0.5s ease;
}

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

.blogSec .swiper-button-next:after,
.blogSec .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.blogSec .swiper-button-next {
    right: 15rem;
}

.blogSec .swiper-button-prev {
    left: inherit;
    right: 19rem;
}

/* Blog Sec Css End */

/* Footer Css Start */

footer {
    padding-top: 8.125rem;
    background-color: #1a0028;
}

.newsletter h2 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
}

.newsletter h2 span {
    display: block;
    font-size: 0.9375rem;
    font-family: "Jost";
    font-weight: 400;
}

.middlRow {
    margin-top: 6rem;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0 0.625rem;
    border: 1px solid #4d69a3;
}

.newsletter-form input {
    background-color: transparent !important;
    border: 0;
    height: 76px;
    color: var(--white) !important;
    width: 310px;
    font-size: 0.9375rem;
    outline: unset;
    box-shadow: unset !important;
}

.newsletter-form input::placeholder {
    color: var(--white);
    font-weight: 500;
}

.newsletter-form .btn {
    color: var(--white);
}

.newsletter-form .btn:hover {
    background-color: var(--white);
    color: var(--primary);
}

.contact-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.contact-list li + li::before {
    content: "";
    width: 2px;
    height: 100%;
    border-left: 2px solid #707070;
    position: absolute;
    top: 0;
    left: -1.25rem;
    transform: skewX(-15deg);
}

.contact-list li div {
    display: flex;
    align-items: start;
    flex-direction: column;
    font-size: 0.875rem;
    color: var(--white);
}

.contact-list li div a {
    font-size: 1.125rem;
    display: inline-block;
    color: var(--white);
    font-weight: 600;
}

.contact-list li:hover figure img {
    animation: tada 1s infinite;
}

.contact-list li:hover div a {
    color: var(--primary);
}

footer h3 {
    color: var(--white);
    font-size: 1.5625rem;
    margin-bottom: 1.75rem;
}

footer .quicklist li + li {
    margin-top: 0.5rem;
}

footer .quicklist a {
    text-transform: capitalize;
    color: var(--white);
    font-size: 1.125rem;
}

footer .quicklist a:hover {
    color: var(--primary);
}

.copyRight {
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    padding: 2rem 0;
    justify-content: end;
    align-items: center;
    margin-top: 4.0625rem;
}

.copyRight p {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
    text-align: center;
    font-weight: 500;
}

.copyRight h4 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
    text-transform: capitalize;
}

footer .social-link {
    display: flex;
    gap: 0.75rem;
}

footer .social-link a {
    width: 2.75rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #efefef;
    color: var(--black);
    display: grid;
    place-items: center;
    transition: 0.5s ease;
}

footer .social-link a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Footer Css End */

/* Inner Css Start */

.innerBanner {
    background: url(../images/mainbanner.jpg) center/cover;
    height: 700px;
    display: flex;
    align-items: center;
}

.innerBanner h1 span {
    font-size: 4.375rem;
}

.visionImage img {
    border-radius: 20px;
}

.aboutInner .row + .row {
    margin-top: 10rem;
}

.visionBox {
    background: #f9f9f9;
    border-radius: 20px;
    margin-left: -5rem;
    padding: 4rem 2.8125rem;
}

.serviceInner {
    padding: 5.625rem 0 7.5rem 0;
}

.serviceInner .secHeading {
    font-size: 2.5rem;
}

.serviceInner .themeBtn1 {
    border-radius: 3px;
    padding: 0.9rem 1.7em;
}

.serviceInner .visionBox {
    padding: 3.125rem 2.8125rem;
    margin: 0 0 -3rem -6rem;
}

.serviceInner .flex-row-reverse .visionBox {
    margin: 0 -6rem -3rem 0;
}

.serviceInner .row + .row {
    margin-top: 5rem;
}

.reviewInner {
    padding: 6.25rem 0;
}

.reviewBoxs {
    background: rgb(24 28 39 / 10%);
    padding: 2rem 2.5rem 2.8125rem;
    transition: 0.5s ease;
}

.reviewsUsers {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.reviewsUsers figure {
    background: #181c27;
    width: 70px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    transition: 0.5s ease;
    overflow: hidden;
}

.reviewsUsers figure h5 {
    margin: 0;
    font-size: 1.6875rem;
    font-weight: 800;
}

.reviewsUsers h6 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111111;
    margin: 0;
}

.reviewsUsers h6 span {
    display: block;
    font-weight: 400;
    font-size: 0.8125rem;
    text-transform: capitalize;
    color: #6a6a6a;
}

.reviewBoxs ul {
    display: flex;
    gap: 4px;
    margin: 1.5rem 0 1rem 0;
}

.reviewBoxs ul li i {
    color: var(--black);
    font-size: 1.375rem;
}

.reviewBoxs p {
    color: #828282;
    font-size: 1rem;
    margin: 0;
}

.reviewBoxs:hover {
    background: rgb(179 41 255 / 5%);
}

.reviewBoxs:hover .reviewsUsers figure {
    background: var(--primary);
}

.reviewInner .row {
    gap: 2rem 0;
}

.mapSec iframe {
    filter: grayscale(1);
    display: block;
}

.contactInner {
    background: #f6f6f6;
    padding-bottom: 3.75rem;
}

.contactInner .headings {
    color: var(--black);
    margin-bottom: 3.5rem;
}

.contactWraps {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    margin-top: 2.1875rem;
}

.contactWraps figure {
    background: var(--white);
    width: 160px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 100%;
    font-size: 2.5rem;
    color: var(--primary);
    transition: 0.5s ease;
}

.contactText h5 {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--black);
}

.contactText a {
    color: var(--black);
}

.contactText a strong {
    font-size: 2.5rem;
    font-weight: 600;
}

.contactWraps figure:hover {
    background: var(--primary);
    color: var(--white);
}

.contactForm {
    background: var(--primary);
    border-radius: 10px;
    padding: 3.4375rem 3.4375rem;
    max-width: 800px;
    margin-left: auto;
    margin-top: -4rem;
}

.contactForm h2 {
    color: var(--white);
    font-size: 2.8125rem;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 1rem;
}

.contactForm .form-control {
    border: unset;
    border-radius: 10px;
    outline: unset;
    box-shadow: unset;
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
    padding-left: 1.5rem;
}

.contactForm input:not([type="checkbox"]),
.contactForm select {
    height: 82px;
}

.contactForm textarea {
    height: 220px;
    padding-top: 1rem;
}

.contactForm .themeBtn {
    background: var(--black);
    outline: unset;
    border: unset;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 1.7em;
}

/* Inner Css End */

/* privacy & terms page*/

.privacy,
.terms {
    padding: 6rem 0;
}

.privacyContent :is(p, li),
.termsContent :is(p, li) {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 0 1rem;
    color: #4b4b4b;
}

.privacyContent p a,
.termsContent p a {
    color: var(--primary);
    font-weight: 600;
}

.privacyContent h3,
.termsContent h3 {
    font-size: 2.125rem;
    font-weight: 600;
    margin: 1.125rem 0;
}

.privacyContent .list li,
.termsContent .list li {
    position: relative;
    padding-left: 1.75rem;
}

.privacyContent .list li::before,
.termsContent .list li::before {
    content: "";
    width: 16px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    top: 0.25rem;
    left: 0;
}

.copyRight .quicklist {
    gap: 1rem;
}

.copyRight .quicklist li + li {
    margin: 0;
}

.firmowner-section .contactForm {
    max-width: 100%;
    /* margin: 0; */
}

.aboutBanner {
    background: url("../images/about-bg.png") no-repeat center / cover;
}

.blogBanner {
    background: url("../images/blogs-bg.png") no-repeat center / cover;
}

.firmownerBanner {
    background: url("../images/firmowners-bg.png") no-repeat center / cover;
}

.reviewBanner {
    background: url("../images/testimonial-bg.png") no-repeat center / cover;
}

.servicesBanner {
    background: url("../images/services-bg.png") no-repeat center / cover;
}

.contact-bg {
    background: url("../images/contact-bg.jpg") no-repeat center / cover;
}

.contactForm .form-control option:first-child {
    display: none;
}

.navbar .nav-item.drop-down a {
    background: var(--primary);
    color: var(--white);
    padding: 0.5em 1em;
}

.navbar .nav-item.drop-down a:hover {
    color: var(--white);
}

.reviewInner__field textarea {
    width: 100%;
    border-radius: 0.75rem;
    resize: none;
    padding: 1rem;
}

.reviewInner__field .themeBtn {
    border: none;
}

.review-button-next,
.review-button-prev {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
}

.review-button-next::after,
.review-button-prev::after {
    color: var(--white);
    font-size: 1.5rem;
}

.review-button-prev {
    left: -4rem;
}

.review-button-next {
    right: -4rem;
}

section.main-slider.innerBanner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 38%);
}

section.main-slider.innerBanner.aboutBanner:before{
    background: rgb(0 0 0 / 10%);
}

.main-slider.innerBanner:not(.aboutBanner) {
    height: 500px;
}

.padd-y {
    padding: 5rem 0;
}

.book-appointment {
    position: relative;
    z-index: 1;
}

.book-appointment-title .btn-group {
    gap: 1rem;
}


/* .firmowner-section {
    padding: 5rem 0;
} */

.book-appointment-title .secHeading {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    width: fit-content;
    margin: 0 auto 1.25rem;
}

.visionImage img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.visionBox__list {
    list-style: disc;
    margin: 0 0 1rem 1.25rem;
}

.visionBox--justify :is(p, ul li) {
    text-align: justify;
}

.serviceInner--new .visionBox {
    height: 100%;
    margin: 0;
}

/* Blog Detail */
.blogDetail {
    padding: 5rem 0;
}

.blogDetail .secHeading {
    font-size: 2.5rem;
}

.blogContent p + p {
    display: none;
}

.blogContent h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blogContent p:nth-child(4) {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.themeBtn2 {
    background: var(--secondary);
    color: var(--white);
    font-size: 1.125rem;
}

.themeBtn2:hover {
    background: var(--black);
}

.themeBtn3 {
    background: var(--primary);
    color: var(--white);
    font-size: 1.125rem;
}

.themeBtn3:hover {
    background: var(--black);
}
.business-contact .contactForm {
    margin: 0;
}

.aboutImages-content {
    margin: 9rem 0.95rem 0;
}

.abtcont {
    font-size: larger;
}
/*/ cookie /*/
.cookie-modal {
    width: 400px;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: #fff;
    padding: 1.5em;
    box-shadow: 0 .625em 1.875em rgba(2,2,3,.28);
    border-radius: .35em;
    /*display: none;*/
    transform: translateY(150%);
    transition: all 300ms ease-in-out;
}

#cookie-banner.active {
    /*display: block;*/
    transform: translateY(0);
}

.cookie-content {
    padding-right: 2.4em;
}

.cookie-content h5 {
    margin: -.15em 0 .7em;
    font-size: 1.05em;
    font-weight: 600;
    color: #2d4156;
}

.cookie-content p{
    font-size: .85em;
    font-weight: 400;
    line-height: 1.5em;
    color: #2d4156;
    margin: 0;
}

.cookie-content p a {
    display: block;
    width: fit-content;
    color: #2d4156;
    font-weight: 600;
    border-bottom: 1px solid #2d4156;
}

.cookie-btn .c-bn {
    display: inline-block;
    width: 100%;
    background: #2d4156;
    color: var(--white);
    border-radius: 4px;
    font-size: .82em;
    font-weight: 600;
    text-transform: capitalize;
    padding: 1em 1.7em;
    margin: .625em 0 0;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.cookie-btn .c-bn:hover {
    background: #1d2e38;
}

.cookie-btn .c-bn:first-child {
    margin: 0;
}

.cookie-btn .c-bn.c_link {
    background: #eaeff2;
    color: #2d4156;
}

.cookie-btn .c-bn.c_link:hover {
    background: #d8e0e6;
}

.themeBtn.themeBtn--lg {
    padding: 1rem 2rem;
}
