@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* :root {
    --primary-color: #ffe400;
    --secondary-color: #0f0f0f;
} */

:root {
    --primary-color: #0e909a;
    --secondary-color: #0d0042;
}

body {
    font-family: "Inter", sans-serif !important;
}

body h2 {
    font-weight: 600;
    line-height: 48px;
}

body p {
    line-height: 30px;
}

body h2 span {
    background-color: var(--primary-color);
    padding: 0 10px;
    color: #fff;
}

.web-btn {
    display: inline-block;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    /* color: var(--secondary-color); */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    transition: all .25s ease;
}

.web-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.file-tax-btn {
    display: flex;
    width: 45px;
    height: 45px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.about-page .page-banner {
    background: url(./img/image-18.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.whatsapp-page .page-banner {
    background: url(./img/image-12.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.Personal-Taxes-page .page-banner {
    background: url(./img/image-14.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.registration-page .page-banner {
    background: url(./img/image-15.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.taxe-planing-page .page-banner {
    background: url(./img/image-11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.cloud-cfo-page .page-banner {
    background: url(./img/image-16.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contact-page .page-banner {
    background: url(./img/image-17.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.page-banner {
    padding: 200px 0;
    background: url(./img/image-3.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.page-banner h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.page-banner::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000069;
}

.page-banner .container {
    z-index: 1;
    position: relative;
}

.bread_crumb ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bread_crumb ul a {
    text-decoration: none;
    color: #fff;
}

.bread_crumb li::after {
    content: '\f105';
    font-family: FontAwesome;
    padding-left: 10px;
    color: var(--primary-color);
}

.bread_crumb li:nth-last-child(1)::after {
    display: none;
}

.head-logo {
    width: 220px;
}

.head-logo img {
    width: 100%;
    max-width: 80px;
}

header {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    padding: 15px 0px 15px 0px;
    background-color: #fff;
}

header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-menus>ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
}

.nav-menus ul li {
    padding: 15px;
}

.nav-menus ul li a {
    text-decoration: none;
    color: #0f0f0f;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
}

.nav-menus ul li a i {
    min-width: 20px;
}

.dropdown_item {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #fff;
    z-index: 1;
    left: 0;
    width: max-content;
    list-style: none;
    margin: 0;
    padding: 15px 0 !important;
}

.nav-menus .dropdown_item li {
    padding: 5px 15px;
}

.drop_down {
    position: relative;
}

.drop_down .nav_link {
    position: relative;
    padding-right: 22px !important;
}

.drop_down:hover .dropdown_item {
    display: block;
}

.drop_down .nav_link::after {
    content: '\f107';
    font-family: FontAwesome;
    transform-origin: center center;
    position: absolute;
    right: 0px;
    top: -2px;
    transition: all 0.25s ease;
}

.drop_down:hover .nav_link::after {
    transform: rotate(180deg);
}

.mobile-menu {
    display: none;
}

.section-aa {
    padding: 130px 0;
    position: relative;
    background: #00000063;
}

.section-bg {
    display: flex;
    position: absolute;
    z-index: -1;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -470px;
    height: 600px;
    width: 600px;
    transform: rotate(45deg);
    transform-origin: center center;
    background: #343a40;
}

.bg-img {
    width: 50%;
}

.bg-color {
    width: 50%;
    background-color: var(--secondary-color);
}

.bg-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.section-aa h1,
.section-aa h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    line-height: 64px;
}

.section-aa h1 span,
.section-aa h2 span {
    background-color: var(--primary-color);
    /* color: var(--secondary-color); */
    color: #fff;
    padding: 0 10px;
}

.section-aa p {
    margin-bottom: 30px;
    color: #fff;
}

.section-aa .content-wrapper {
    padding-right: 50px;
}

.section-ab {
    padding: 130px 0;
    position: relative;
}

.section-ab .content-wrapper {
    text-align: center;
    margin: auto;
    max-width: 780px;
}

.section-ab h2 {
    margin-bottom: 20px;
}

.section-ab::after {
    content: '';
    position: absolute;
    background-image: url(./img/cbaccounts-logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 0;
    opacity: 0.1;
    width: 100%;
    height: 100%;
}


.section-ac {
    background: #F7F7F7;
    padding: 130px 0;
}

.section-ac .row {
    row-gap: 30px;
}

.section-ac .section-head {
    max-width: 600px;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
}

.section-ac .content-wrapper i {
    background-color: var(--primary-color);
    /* color: var(--secondary-color); */
    color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 100px;
    transition: all 0.25s ease;
}

.section-ac .content-wrapper:hover i {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.section-ac .image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.section-ac .content-wrapper {
    text-align: center;
    box-shadow: 0 0 15px 0 #ddd;
    padding: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.section-ac .content-wrapper h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
}

.section-ac .content-wrapper p {
    font-size: 15px;
    line-height: 24px;
}

.section-ac .image-wrapper {
    margin-left: -10px;
    margin-right: -10px;
}

.section-ac .box-wrapper {
    padding: 0 10px;
}

.section-ad .row {
    row-gap: 50px;
}

.section-ad .section-head {
    max-width: 100%;
    text-align: left;
}

.section-ad .content-wrapper i {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 0px);
}

.section-ad .btn-wrapper {
    text-align: center;
    padding-top: 70px;
}


.section-ae {
    padding: 130px 0;
}

.section-ae a {
    text-decoration: none;
    color: #000;
}

.section-ae .row {
    row-gap: 60px;
}

.section-ae .head-content {
    margin-bottom: 50px;
}

.section-ae .head-content .btn-wrapper {
    text-align: end;
}

.section-ae .content-wrapper {
    padding: 50px 30px 30px;
    box-shadow: 0 0 15px 0 #ddd;
    max-width: 380px;
    margin: auto;
    margin-top: 30px;
    position: relative;
    height: 100%;
}


.section-ae .content-wrapper h3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30px);
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: #fff;
}

.section-ae .content-wrapper ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.section-ae .price {
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    background-color: var(--secondary-color);
    /* color: var(--primary-color); */
    color: #fff;
    border-radius: 100px;
}

.section-ae .price h4 {
    font-size: 26px;
    font-weight: 600;
}

.section-ae .price h5 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.section-ae .table-gold {
    background-color: var(--primary-color);
}

.section-ae .table-gold .price {
    background-color: #fff;
    color: var(--secondary-color);
}

.section-ae .table-gold h3 {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.about-service {
    padding: 100px 0;
}

.about-service .content-wrapper {
    padding: 30px;
    box-shadow: 0 0 15px 0 #ddd;
    height: 100%;
    text-align: center;
    border-radius: 20px;
}

.about-service .row {
    row-gap: 50px;
}

.about-service .head-content {
    margin-bottom: 70px;
}

.about-service h3 {
    font-size: 20px;
    position: relative;
    top: -50px;
    background-color: var(--secondary-color);
    /* color: var(--primary-color); */
    color: #fff;
    width: fit-content;
    margin: auto;
    padding: 10px;
}

.about-section {
    padding: 100px 0;
}

.about-section img {
    width: 100%;
}

.contact-section {
    padding: 100px 0;
}

.contact-section .head-content {
    text-align: center;
    margin: auto;
    max-width: 700px;
    margin-bottom: 50px;
}

.contact-section img {
    width: 100%;
}

.contact-section h2 {
    font-size: 22px;
    line-height: 32px;
}

.contact-section ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
    margin-bottom: 25px;
}

.contact-section ul a {
    color: #000;
    text-decoration: none;
}

.contact-section ul li {
    margin-bottom: 8px;
}

.contact-section ul li i {
    min-width: 20px;
    color: var(--primary-color);
}

.contact-section .content-wrapper {
    padding-left: 50px;
}

.contact-section ul li span {
    display: inline-block;
    min-width: 90px;
    font-weight: 500;
}

.map {
    padding-bottom: 100px;
}

.map-wrapper iframe {
    width: 100%;
}

.section-bh {
    padding: 130px 0;
    background: #F7F7F7;
}

.section-bh .row {
    align-items: center;
}

.field-btn .web-btn {
    border: navajowhite;
}

.form-field {
    margin-bottom: 20px;
}

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

.form-field input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    width: 100%;
}

input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.field-btn {
    text-align: center;
}

.form-wrapper form {
    background: #fff;
    max-width: 400px;
    margin-left: auto;
    padding: 40px 30px;
    box-shadow: 0 0 15px 0 #ddd;
}

.whatsapp {
    padding: 130px 0;
}

/* .whatsapp h2 span {
    background: #23ab30;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
} */

.whatsapp h2 {
    font-size: 52px;
    line-height: 70px;
    margin-bottom: 30px;
}

.whatsapp .image-wrapper img {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: block;
}

.whatsapp .row {
    row-gap: 30px;
}

.whatsapp p {
    margin-bottom: 30px;
}

.section-ag {
    background: #F7F7F7;
    padding: 130px 0;
}

.section-ag .head-content {
    text-align: center;
    max-width: 780px;
    margin: auto;
    margin-bottom: 50px;
}

.section-ag .content-wrapper {
    text-align: center;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 15px 0 #ddd;
    height: 100%;
}

.section-ag i {
    background-color: var(--primary-color);
    /* color: var(--secondary-color); */
    color: #fff;
    font-size: 26px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 100px;
    transition: all 0.25s ease;
}

.section-ag .content-wrapper h3 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    font-weight: 600;
    text-transform: capitalize;
}

.section-ag .row {
    row-gap: 30px;
}

footer {
    padding-top: 130px;
    background-color: var(--secondary-color);
    color: #fff;
}

.footer-logo {
    width: 220px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 70px;
}

footer .content-wrapper .contact ul {
    padding: 0;
    list-style: none;
}

footer .content-wrapper .contact ul a {
    color: #fff;
    text-decoration: none;
    line-height: 30px;
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

footer .content-wrapper .contact ul a i {
    color: var(--primary-color);
    min-width: 25px;
    font-size: 18px;
}

footer .content-wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu {
    padding-left: 50px;
}

footer .row {
    row-gap: 30px;
}

footer .content-wrapper ul {
    padding: 0;
    list-style: none;
}

footer .content-wrapper ul a {
    color: #fff;
    text-decoration: none;
    line-height: 30px;
}

footer .content-wrapper ul a i {
    color: var(--primary-color);
    min-width: 15px;
    font-size: 14px;
    font-weight: 600;
}

footer .content-wrapper .social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

footer .content-wrapper .social-links a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 25px;
    /* color: var(--secondary-color); */
    color: #fff;
    background-color: var(--primary-color);
}

.newsletter .form-field {
    display: flex;
}

.newsletter .btn {
    background-color: var(--primary-color);
    height: 100%;
    color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}

.newsletter .btn:hover {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #525252;
}

.copyright a {
    text-decoration: none;
    color: #fff;
}


@media(max-width:1024px) {
    header .file-tax {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-menus {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        height: 100vh;
        z-index: 10;
        width: 100vw;
        overflow-y: auto;
        padding: 5px;
    }

    .mobile-menu i {
        font-size: 20px;
    }

    .nav-menus.show {
        display: block;
    }

    .mobile-menu .fa-xmark {
        display: none;
    }

    .mobile-menu.show .fa-bars {
        display: none;
    }

    .mobile-menu.show .fa-xmark {
        display: block;
    }

    .mobile-menu.show {
        position: fixed;
        z-index: 11;
        right: 20px;
        top: 20px;
    }

    .nav-menus.show>ul {
        flex-direction: column;
    }

    .nav-menus .dropdown_item {
        position: relative;
        padding: 0 !important;
        padding-top: 15px !important;
    }

    .nav-menus .dropdown_item li {
        padding: 10px 0px;
    }

    .dropdown_item li:nth-last-child(1) {
        padding-bottom: 0 !important;
    }

    .section-aa h1 {
        font-size: 34px;
    }

    .section-aa {
        padding: 70px 0;
    }

    .section-ab {
        padding: 70px 0;
    }

    .section-ac {
        padding: 70px 0;
    }

    .section-ae {
        padding: 70px 0;
    }

    footer {
        padding-top: 70px;
    }

    .about-section {
        padding: 70px 0;
    }

    .about-section .row {
        row-gap: 30px;
    }

    .page-banner {
        padding: 100px 0;
    }

    .section-bh {
        padding: 70px 0;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-section .row {
        row-gap: 30px;
    }

    .contact-section .content-wrapper {
        padding-left: 0px;
    }

    .about-service {
        padding: 70px 0;
    }

    .whatsapp {
        padding: 70px 0;
    }

    .section-ag {
        padding: 70px 0;
    }

}

@media (max-width: 991px) {
    .footer-menu {
        padding-left: 0px;
    }
}

@media (max-width:600px) {
    body h2 {
        line-height: 40px;
    }

    .section-aa {
        padding: 50px 0;
    }

    .section-ab {
        padding: 50px 0;
    }

    .section-ac {
        padding: 50px 0;
    }

    .section-ae {
        padding: 50px 0;
    }

    footer {
        padding-top: 50px;
    }

    .about-section {
        padding: 50px 0;
    }

    .section-bh {
        padding: 50px 0;
    }

    .contact-section {
        padding: 50px 0;
    }

    .about-service {
        padding: 50px 0;
    }

    .whatsapp {
        padding: 50px 0;
    }

    .section-ag {
        padding: 50px 0;
    }
}