<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("../font/inter.css");

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Inter";
    font-size: 14px;
    line-height: 1.7;
    font-stretch: normal;
    font-kerning: normal;
    margin: 0;
}

:root {
    /* Color */
    --themeColor: #215bb3;
    --themedrColor: #2b3990;
    --blueColor: #3ba4db;
    --themeSecondaryColor: #fdd802;
    --lightColor: #f3f6fc;
    --neutral-black: #132339;
}

/* Comman Class Css Start */
.full-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1081px) {
    .full-container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .full-container {
        max-width: 100%;
    }
}
@media (min-width: 1400px) {
    .full-container {
        max-width: 95%;
    }
}
@media screen and (min-width: 2150px) and (max-width: 10000px) {
    .full-container {
        max-width: 1500px;
    }
}
@media screen and (min-width:1000px) and (max-width: 1399px) {
    .container {
        max-width:1000px
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1250px;
    }
}
a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 16px;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    border-radius: 8px;
}

.btn-blue {
    background-color: var(--themeColor);
    color: #fff;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #174b99;
    color: #fff;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
}

.btn-br-blue {
    border: solid 2px var(--themeColor);
    background-color: #fff;
    color: var(--themeColor);
}

.btn-br-blue:hover,
.btn-br-blue:focus {
    background-color: var(--themeColor);
    color: #fff;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
}

.btn-yellow {
    background-color: var(--themeSecondaryColor);
    color: var(--neutral-black);
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: var(--themeSecondaryColor);
    color: #132339;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
}

.btn img.arrow {
    width: 18px;
    margin-left: 10px;
    height: auto;
}

.padder-15 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}

.text-theme {
    color: var(--themeColor);
}

@media (min-width: 992px) {
    .centerMode {
        display: flex;
        align-items: center;
    }
}

.bg-light {
    background-color: var(--lightColor) !important;
}

/* Comman Class Css Start */

/* Header Section Start */

.theme-header {
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.theme-header{
    transition: all 0.4s ease;
}
.theme-header.sticky{
   position:fixed;
   top: 0px;
   left: 0px;
   width: 100%;
   z-index: 2; 
   transition: all 0.4s ease;
}
.theme-header.sticky .navbar {  
    padding: 10px 0px;
}
.theme-header .navbar {
    border: 0;
    margin: 0;
    justify-content: space-between;
    padding: 15px 0px;
}

.theme-header .theme-brand {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-header .navbar .right-header li {
    margin-left: 10px;
}
.theme-header .navbar .menu-main .navbar-nav li {
    margin: 10px 15px;
    position: relative;
}

.theme-header .navbar li .link {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    text-decoration: inherit;
}

.theme-header .navbar li .link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 0%;
    margin: 0 auto;
    height: 2px;
    background-color: var(--themeColor);
    transition: 0.5s;
}

.theme-header .navbar li .link:hover,
.theme-header .navbar li .link:focus {
    color: var(--themeColor);
    background-color: transparent;
}

.theme-header .navbar li .link:hover::before,
.theme-header .navbar li .link:focus::before {
    width: 100%;
}

.theme-header .navbar li .dropdown-menu {
    top: 150%;
    border: 0px;
    background-color: #fff;
    box-shadow: 0 0px 25px 0 rgb(84 84 84 / 15%);
    -webkit-box-shadow: 0 0px 25px 0 rgb(84 84 84 / 15%);
    -moz-box-shadow: 0 0px 25px 0 rgb(84 84 84 / 15%);
    border-radius: 10px;
    cursor: pointer;
    padding: 0px;
}
.theme-header .navbar .menu-main .navbar-nav li .sub-menu li {
    margin: 10px 0px;
}

.theme-header .navbar li .sub-menu li a {
    font-size: 15px;
    line-height: 12px;
    color: var(--neutral-black);
    font-weight: 700;
    text-decoration: inherit;
    width: 100%;
    display: inline-block;
    padding: 5px 5px 5px 12px;
}

.theme-header .navbar li .sub-menu li a:hover,
.theme-header .navbar li .sub-menu li a:focus {
    color: var(--themeColor);
}

.theme-header .navbar li .btn {
    padding: 7px 20px;
    font-weight: 600;
}

.theme-header .navbar .right-header ul {
    display: flex;
    align-items: center;
}

.theme-header .navbar .right-header ul li {
    position: relative;
}

.theme-header .navbar .right-header .dropdown-menu {
    left: inherit;
    right: 0px;
    top: 110%;
    position: absolute;
    padding: 0;
}
.theme-header .navbar .right-header .dropdown-menu .sub-menu {
    flex-flow: column;
}

.theme-header .navbar .right-header .dropdown-menu .sub-menu li {
    width: 105%;
    margin: 10px 0px;
}
.theme-header .navbar .dropdown-toggle::after {
    margin-left: 5px;
    border-width: 5px;
}
.theme-header .navbar .right-header .dropdown-menu .sub-menu li a {
    font-size: 16px;
    padding: 5px 15px;
    text-align: left;
}
.theme-header .navbar .right-header ul .userIcon img {
    width: 30px;
}

.burger {
    position: relative;
    width: 20px;
    height: 14px;
    cursor: pointer;
    display: none;
    background: transparent;
    border: 0;
    padding: 0px;
}

.burger:focus {
    outline: 0;
}

.burger span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    transition:
        all 0.2s,
        background 0s;
    background: #2b5468;
}

.burger span:nth-child(2) {
    top: 6px;
}

.burger span:last-child {
    top: 12px;
}

.burger.show-x span:first-child {
    transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.show-x span:last-child {
    transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
    top: 8px;
}

.pfontchnage {
    font-size: 15px !important;
}

@media screen and (max-width: 1024px) {
    .theme-header .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .menu-main {
        position: absolute;
        left: 0px;
        right: 0px;
        background: var(--lightColor);
        border-radius: 0px 0px 15px 15px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
        top: 70px;
        z-index: 5;
        display: flex;
        align-items: inherit;
        flex-flow: column;
        width: 100%;
        height: 0;
        transition: transform 0.3s ease-in;
        transition: 0.5s;
        border-top: solid 1px rgba(0, 0, 0, 0.1);
    }

    .menu-main.show {
        height: auto;
    }

    .theme-header .burger {
        display: block;
    }

    .theme-header .burger:hover,
    .theme-header .burger:focus {
        outline: 0;
        box-shadow: inherit;
    }

    .theme-header .navbar-expand-lg .navbar-nav {
        width: 100%;
        padding: 10px;
    }

    .theme-header .navbar .menu-main .navbar-nav li {
        margin: 10px 0px;
    }
    .theme-header .navbar .menu-main .right-header {
        padding-bottom: 15px;
        width: 100%;
    }
    .theme-header .navbar .menu-main .right-header ul li {
        width: 50%;
    }
    .theme-header .navbar li .btn {
        width: 100%;
        justify-content: center;
    }
    .theme-header .navbar-expand-lg .navbar-nav .nav-link {
        text-align: center;
        padding: 0.5rem 0rem;
    }

    .theme-header .navbar .dropdown-menu {
        padding: 10px;
    }
    .theme-header .navbar li .link {
        width: 100%;
        display: inline-block;
    }
    .theme-header .navbar li .dropdown-menu {
        padding: 5px 0px;
        margin-top: 10px;
    }
    .theme-header .navbar .dropdown-toggle::after {
        right: 0;
        position: absolute;
    }
    .theme-header .navbar li .dropdown-menu {
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }
    .theme-header .navbar .dropdown-menu .title.mb-3 {
        margin-bottom: 0.5rem !important;
    }

    .theme-header .nav-item .nav-link::before {
        bottom: 0;
    }

    .theme-header .nav-item .nav-link:hover::before,
    .theme-header .nav-item .nav-link.show::before {
        width: 100%;
    }

    .theme-header .navbar .dropdown-menu .title,
    .theme-header .navbar .dropdown-menu ul li {
        text-align: left;
    }

    .main-body .theme-header .navbar {
        border-radius: 15px 15px 0px 0px;
    }
    .theme-header.sticky{
        position: inherit;
    }
}

/* Header Section End */
/* Banner Section Start */
.banner-section {
    width: 100%;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.banner-section .bannerInner .banner-title {
    margin-top: 0px;
    font-weight: 800;
    font-size: 48px;
    line-height: 58px;
    color: #132339;
    text-transform: uppercase;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
}

.banner-section .bannerInner .banner-title span {
    color: var(--blueColor);
}

.banner-section .bannerInner .banner-details {
    display: inline-block;
    width: 100%;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: #54606f;
    margin-bottom: 2rem;
}

.banner-section .bannerInner .btn {
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 1500px) {
    .banner-section .bannerInner .bannerImg img {
        max-width: 100%;
    }
}

@media (min-width: 1600px) {
    .pl-lg-3 {
        padding-left: 5rem;
    }
}

/* Banner Section End */
/* Tax Calculation Guarantee Start */
.tax-calculation .themeImg,
.filing-process .themeImg {
    position: relative;
}

.tax-calculation .tax-info {
    display: inline-block;
    width: 100%;
    padding: 55px 60px;
    background: var(--lightColor);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.tax-calculation .tax-info li {
    margin-bottom: 30px;
    display: inline-flex;
    width: 100%;
}

.tax-calculation .tax-info li:last-child {
    margin-bottom: 0px;
}

.tax-calculation .tax-info span {
    font-weight: 500;
    font-size: 19px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: #54606f;
    margin-left: 20px;
}

.tax-calculation .tax-info img {
    width: 24px;
}

.position-Section {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: center;
    padding-left: 10rem;
}

.position-Section .title {
    font-size: 38px;
    line-height: 55px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.8rem;
}

.position-Section .title span {
    color: var(--themeSecondaryColor);
}

.position-Section .info-dec {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-weight: 400;
}

/* Tax Calculation Guarantee End */
/* Filing Process Start */
.filing-process .themeImg {
    padding: 45px 0px;
}

.filling-Main {
    position: relative;
}

.filing-process .filling-Main .col-sm-6 {
    height: 235px;
    margin-bottom: 35px;
}

.filing-process .filling-card {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 20px 30px 35px 30px;
    background: var(--lightColor);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.filing-process .filling-card .number {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #54606f;
}

.filing-process .filling-card .mt-2 {
    margin-top: 20px;
}

.filing-process .filling-card img {
    width: 55px;
}

.filing-process .filling-card .title {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #54606f;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0px;
}

@media (min-width: 992px) {
    .filling-align-center {
        position: relative;
        top: 160px;
    }
}

/* Filing Process End */
/* Our service Start */
.our-service-inner {
    width: 100%;
    padding-left: 15px;
}

.our-service .title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--themedrColor);
    margin-bottom: 1.5rem;
}

.our-service ul {
    margin-bottom: 2rem;
}

.our-service ul li {
    margin-bottom: 20px;
    display: inline-flex;
    width: 100%;
}

.our-service ul li:last-child {
    margin-bottom: 0px;
}

.our-service ul li span {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: #54606f;
    margin-left: 20px;
}

.our-service ul li img {
    width: 20px;
}

.our-service .card-service {
    display: inline-block;
    width: 100%;
    background: var(--lightColor);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    height: 100%;
}

.our-service .price-inner {
    max-width: 75%;
    margin: 15px auto;
}

.our-service .card-service .price {
    font-size: 24px;
    line-height: 28px;
    font-weight: 800;
    text-align: left;
    letter-spacing: -0.03em;
    color: var(--themedrColor);
    margin: 0px;
}

.our-service .price-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-service .card-service .small-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #54606f;
}

.our-service .card-service select {
    background: #ffffff;
    border: 1px solid rgba(135, 132, 129, 0.32);
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #54606f;
    padding: 8px 25px 8px 10px;
    display: inline-block;
    width: 90%;
}

.our-service .card-service select {
    width: 80%;
}

.our-service .card-service .btn {
    margin-top: 1.5rem;
}

.our-service .infoText {
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 1rem;
    font-size: 14px;
    font-weight: 600;
    color: #54606f;
}

/* Our service End */
/* Support Section Start */
.support-section {
    padding-bottom: 5rem;
}

.support-card {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--lightColor);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 3rem;
    margin: 15px 0px;
    height: 85%;
}

.support-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.support-card .icon img {
    max-width: 100%;
    object-fit: cover;
}

.support-card .support-details {
    padding-left: 35px;
}

.support-card .support-details .label-title {
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;
    color: var(--themeColor);
    margin-bottom: 1rem;
}

.support-card .support-details .info {
    font-size: 18px;
    line-height: 26px;
    color: #54606f;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0px;
}

/* Support Section End */
/* Footer Section Start */
.theme-footer {
    padding: 2rem 0rem 2rem 0rem;
    background-color: var(--lightColor);
}

.theme-footer .footerInner {
    margin-bottom: 2rem;
}

.theme-footer .theme-brand {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.theme-footer .footerLink ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.theme-footer .footerLink li {
    margin: 0px 20px;
}

.theme-footer .footerLink li .link {
    font-weight: 700;
    font-size: 16px;
    line-height: 12px;
    color: var(--themeColor);
    text-transform: uppercase;
    position: relative;
    text-decoration: inherit;
}

.theme-footer .copyrightSec {
    font-size: 17px;
    font-weight: 600;
    color: #444;
}

.theme-footer .footerLink li .link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    margin: 0 auto;
    height: 2px;
    background-color: var(--themeColor);
    transition: 0.5s;
}

.theme-footer .footerLink li .link:hover::after,
.theme-footer .footerLink li .link:focus::after {
    width: 100%;
}

.companyInfo ul li {
    margin-bottom: 0.5rem;
}

.companyInfo ul li:last-child {
    margin-bottom: 0rem;
}

.companyInfo h6 {
    font-size: 18px;
    font-weight: 700;
    color: #132339;
}

.companyInfo a {
    font-size: 17px;
    font-weight: 600;
    color: #54606f;
    text-decoration: inherit;
    position: relative;
}

.companyInfo a:hover,
.companyInfo a:focus {
    color: var(--themedrColor);
    text-decoration: underline;
}

/* Footer Section End */

/* SignIn Section Start */
.sign-section {
    padding: 2.5rem 0rem;
}

.sign-section .title-heading {
    font-size: 40px;
    line-height: 45px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    text-shadow: 0px 1px 4px rgb(0 0 0 / 25%);
    margin-bottom: 0px;
}

.sign-section .Titlelabel {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-style: italic;
}

.sign-section form .form-label {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sign-section form .form-icon {
    margin-right: 10px;
}

.sign-section form .form-icon img {
    width: 18px;
}

.sign-section form .fill {
    color: red;
}
.sign-section form {
    position: relative;
}
.sign-section form .form-control {
    background-color: var(--lightColor);
    border: 0px;
    font-size: 18px;
    border-radius: 12px;
    padding: 0.7rem 1.5rem;
}

.sign-section form .form-icon {
    position: relative;
}

.sign-section form .form-icon .icon {
    position: absolute;
    top: 0px;
    width: 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-section form .form-icon .icon img {
    width: 18px;
}

.sign-section form .form-icon .form-control {
    padding-left: 3rem;
}

.sign-section form .form-control:focus {
    border-color: var(--themedrColor);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(23 91 179 / 35%);
}

.sign-section .btn {
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
}

.sign-section .btn-blue {
    padding: 10px 20px;
}

.sign-section .f-16 {
    font-size: 14px;
    color: var(--blackColor);
    text-transform: uppercase;
}

.link {
    font-size: 16px;
    color: var(--blackColor);
    font-weight: 600;
    text-decoration: inherit;
}

.link:hover,
.link:focus {
    color: var(--themedrColor);
    text-decoration: underline;
}

main .breadcrumb li {
    font-size: 16px;
    font-weight: 600;
}

main .breadcrumb li a,
main .breadcrumb .breadcrumb-item.active {
    color: #000;
    text-decoration: inherit;
}

main .breadcrumb li a:hover,
main .breadcrumb li a:focus {
    color: var(--themeColor);
}

main .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "";
    background-image: url("../../Images/right-br.svg");
    width: 11px;
    height: 11px;
    background-size: contain;
    color: #000;
    background-position: center;
    background-repeat: no-repeat;
    padding-right: 20px;
    margin-top: 9px;
}

main .breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}

.sign-section .form-check {
    width: 61%;
    margin: 0 auto 20px;
}

.sign-section .form-check .form-check-label {
    padding-left: 10px;
}

.sign-section .form-check .form-check-label,
.sign-section .form-check .form-check-label .link {
    font-size: 18px;
    line-height: 22px;
}

.sign-section .form-check .form-check-input {
    width: 20px;
    height: 20px;
    border: solid 2px #888;
    margin-left: -20px;
    cursor: pointer;
    margin-top: 0px;
}

.sign-section .form-check.custom-redio .form-check-input {
    border-radius: 50%;
}

.form-check-input:checked {
    background-color: var(--themeColor);
    border-color: var(--themeColor) !important;
}

.sign-section .form-check.custom-redio .form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.labelHeading {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--themeColor);
}

.company-info li {
    margin-bottom: 20px;
    display: inline-flex;
    width: 100%;
}

.company-info li img {
    width: 22px;
}

.company-info li span {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.03em;
    color: #54606f;
    margin-left: 15px;
}

.info-text {
    font-size: 18px;
    line-height: 26px;
    color: #54606f;
    font-weight: 600;
}

.error-message {
    font-size: 14px;
    color: #ff0000d7;
    font-weight: 600;
    margin: 3px 0px 0px 10px;
    display: block;
    width: 100%;
}

/* SignIn Section End */

.toast {
    position: absolute;
    top: -80px;
    border-radius: 12px;
    padding: 15px 15px;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toast.show {
    transform: translateX(0%);
}

.toast .toast-body {
    font-size: 16px;
    line-height: 23px;
    padding: 0px;
}

.bg-primary {
    background-color: var(--themeColor) !important;
}

/* FAQ Section Start */
.faq-section {
    padding: 2.5rem 0rem;
}

.faq-list {
    margin-bottom: 35px;
}

.faq-list h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--themeColor);
    border-bottom: solid 1px rgba(0, 0, 0, 0.5);
    padding-bottom: 15px;
    margin-bottom: 15px;
    width: 90%;
}

.faq-list ul li {
    display: inline-block;
    padding: 6px 0px;
    width: 100%;
}

.faq-list ul li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #54606f;
    text-decoration: inherit;
}

.faq-list ul li a:hover,
.faq-list ul li a:focus {
    color: var(--themeColor);
}

.e-filling-banner {
    border-radius: 20px 0px 0px 20px;
    overflow: hidden;
    height: 100%;
}

.e-filling-banner img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}

.e-filling-card {
    background: var(--lightColor);
    height: 100%;
    align-items: start;
    display: flex;
    border-radius: 0px 20px 20px 0px;
    padding: 20px 50px;
    flex-flow: column;
    justify-content: center;
}

.e-filling-card h4 {
    font-size: 28px;
    line-height: 29px;
    font-weight: 700;
    color: var(--themedrColor);
    margin-bottom: 28px;
}

.e-filling-card .form-control {
    background-color: #fff;
    border: 0px;
    font-size: 18px;
    border-radius: 8px 0px 0px 8px;
    padding: 0.7rem 0rem 0.7rem 1rem;
    max-width: 300px;
}

.e-filling-card .btn-yellow {
    background: #faaf40;
    color: #fff;
    border-radius: 0px 8px 8px 0px;
}

.faq-card {
    display: inline-block;
    width: 100%;
    background: var(--lightColor);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.faq-card .title {
    font-size: 28px;
    line-height: 35px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--themeColor);
    margin-bottom: 25px;
}

.faq-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.faq-card ul li {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #54606f;
    margin-bottom: 8px;
}

.faq-card ul li:last-child {
    margin-bottom: 0px;
}

.faq-card p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #54606f;
    margin-bottom: 0.8rem;
}

.faq-card p strong,
.faq-card h4,
.faq-card .page-header {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: var(--themeColor);
}

.date-blog {
    padding: 5px 10px;
    background: var(--themeColor);
    color: #fff;
    font-size: 14px;
    border-radius: 10px;
}

.moreInfo {
    padding: 5px 10px;
    background: var(--themedrColor);
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    text-decoration: inherit;
}

.moreInfo:hover,
.moreInfo:focus {
    background: var(--themeColor);
    color: #fff;
}

/* FAQ Section End */
@media screen and (min-width: 1100px) and (max-width: 1600px) {
    .banner-section .bannerInner .banner-title {
        font-size: 44px;
        line-height: 52px;
        margin-bottom: 1rem;
    }

    .banner-section .bannerInner .banner-details {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 1rem;
    }

    .banner-section .bannerInner .btn {
        font-size: 16px;
    }

    .main-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 3rem;
    }

    .our-service .title {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .our-service ul li img {
        width: 18px;
    }

    .our-service ul li span {
        font-size: 17px;
        margin-left: 15px;
    }

    .our-service .card-service {
        padding: 3rem 2rem;
    }

    .our-service .card-service .price {
        font-size: 22px;
    }
}

@media screen and (min-width: 993px) and (max-width: 1600px) {
    .banner-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .position-Section {
        padding-left: 5rem;
    }

    .sign-section-inner .card {
        width: 100%;
    }
}

 

@media screen and (min-width: 993px) and (max-width: 1400px) {
    .theme-header .navbar .menu-main .navbar-nav li {
        margin: 10px 10px;
        position: relative;
    }
    .theme-header .navbar {
        padding: 15px;
    }
    .theme-header .navbar .menu-main li {
        margin: 5px 9px;
    }

    .theme-header .navbar li .link {
        font-size: 14px;
    }

    .theme-header .navbar li .btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .theme-header .theme-brand {
        height: 35px;
    }
    .theme-header .navbar .right-header ul li {
        margin-left: 0;
        position: relative;
    }

    .filing-process .themeImg img {
        max-width: 850px;
    }

    .filing-process .filling-Main .col-sm-6 {
        height: auto;
    }

    .filing-process .filling-card {
        padding: 25px 20px;
    }

    .support-card .icon {
        width: 50px;
        height: 50px;
    }

    .support-card .support-details .label-title {
        font-size: 24px;
        line-height: 22px;
    }

    .support-card .support-details .info {
        font-size: 16px;
    }

    .support-card {
        padding: 3rem 2rem;
    }

    .theme-footer .footerLink li {
        margin: 0px 10px;
    }

    .sign-section .form-check {
        width: 70%;
    }

    .sign-section form .form-control {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .theme-header .navbar {
        padding: 15px 0px;
    }

    .position-Section {
        padding-left: 4rem;
    }

    .tax-calculation .tax-info {
        display: inline-block;
        width: 100%;
        padding: 55px 30px;
    }

    .banner-section .bannerInner .banner-title {
        font-size: 46px;
    }

    .support-card {
        padding: 2rem 1rem;
    }

    .support-card .icon {
        width: 50px;
        height: 50px;
    }

    .support-card .support-details {
        padding-left: 20px;
    }

    .support-card .support-details .label-title {
        font-size: 24px;
    }

    .our-service-inner {
        padding-left: 0;
    }

    .our-service .price-inner {
        max-width: 90%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    .banner-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sign-section .form-check {
        width: 55%;
    }

    .e-filling-card {
        padding: 30px 30px;
    }

    .e-filling-card h4 {
        font-size: 26px;
        line-height: 29px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 992px) {
    .banner-section .bannerInner .pl-lg-3 {
        order: 2;
    }

    .bannerImg {
        order: 1;
        margin-bottom: 2rem;
    }

    .tax-calculation img,
    .filing-process .themeImg img {
        max-width: 100%;
    }

    .position-Section {
        padding: 0rem 3rem 3rem 3rem;
    }

    .tax-calculation .tax-info {
        margin: -50px 30px 0px;
        width: auto;
    }

    .filling-Main {
        margin: -50px 20px 0px;
    }

    .filing-process .themeImg {
        padding: 0px;
    }

    .filing-process .filling-Main .col-sm-6 {
        height: auto;
        margin-bottom: 20px;
    }

    .filing-process .filling-card {
        padding: 20px 10px;
        text-align: center;
    }

    .filing-process .filling-card .number {
        font-size: 20px;
    }

    .our-service .title {
        font-size: 30px;
        margin-bottom: 1rem;
    }

    .our-service .card-service {
        padding: 2rem 1rem;
    }

    .theme-footer .theme-brand {
        margin-bottom: 1rem;
        justify-content: center;
    }

    .theme-footer .copyrightSec {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .theme-footer .footerLink ul {
        justify-content: center !important;
    }

    .theme-footer hr {
        margin-top: 0.5rem;
    }

    .support-section {
        padding-bottom: 3rem;
    }

    .theme-footer {
        padding: 2rem 0rem;
    }

    .theme-footer .footerLink {
        margin-left: 0;
        justify-content: center;
    }

    .theme-footer .footerLink li {
        margin: 0px 10px;
    }

    .companyInfo {
        margin-bottom: 15px;
    }

    .createAccount p {
        margin-bottom: 0.5rem;
    }

    .our-service .price-inner {
        max-width: 90%;
    }

    .theme-header .navbar .dropdown-menu {
        position: inherit;
    }

    .sign-section form {
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .theme-header .theme-brand {
        height: 30px;
    }
    .menu-main {
        top: 60px;
    }
    .theme-header .navbar .right-header ul .userIcon img {
        width: 25px;
    }

    .banner-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .banner-section .bannerInner .banner-title {
        font-size: 34px;
        line-height: 45px;
        margin-bottom: 0.5rem;
    }

    .banner-section .bannerInner .banner-title br {
        display: none;
    }

    .banner-section .bannerInner .banner-details {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 1rem;
    }

    .position-Section {
        padding: 2rem 1.5rem 4rem 1.5rem;
    }

    .tax-calculation .themeImg,
    .filing-process .themeImg {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .tax-calculation img,
    .filing-process img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .tax-calculation .tax-info {
        padding: 40px 20px;
    }

    .position-Section .title {
        font-size: 33px;
        line-height: 42px;
        margin-bottom: 0.5rem;
    }

    .tax-calculation .tax-info {
        margin: -35px 20px 0px;
    }

    .filling-Main {
        margin: -35px 10px 0px;
    }

    .our-service ul li {
        margin-bottom: 15px;
    }

    .our-service ul li img {
        width: 15px;
    }

    .our-service ul li span {
        font-size: 17px;
        line-height: 21px;
        margin-left: 15px;
    }

    .our-service ul {
        margin-bottom: 1.5rem;
    }

    .tax-calculation .tax-info li {
        margin-bottom: 15px;
    }

    .tax-calculation .tax-info span {
        font-size: 18px;
        margin-left: 10px;
    }

    .tax-calculation .tax-info img {
        width: 20px;
    }

    .support-card .support-details .label-title {
        margin-bottom: 0.5rem;
    }

    .support-card {
        padding: 1rem;
    }

    .support-card .support-details .info {
        font-size: 16px;
    }

    .companyInfo {
        text-align: center;
        margin-bottom: 10px;
    }

    .companyInfo h6 {
        margin-bottom: 0.5rem;
    }

    .companyInfo a {
        font-size: 16px;
        line-height: 16px;
    }

    .main-title,
    .sign-section .title-heading {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 1rem;
    }

    .theme-footer .footerLink,
    .theme-footer .footerLink ul {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .theme-footer .footerInner {
        margin-bottom: 10px;
    }

    .theme-footer .footerLink li {
        margin: 5px 0px;
    }

    .theme-footer .theme-brand {
        justify-content: center;
        margin-bottom: 0rem;
    }

    .our-service-inner {
        width: 90%;
        margin: 20px auto;
    }

    .our-service .price-inner {
        max-width: 100%;
    }

    .sign-section .form-check {
        width: 100%;
    }

    .sign-section {
        padding: 3rem 0rem;
    }

    .faq-section {
        padding: 3rem 0rem;
    }

    .our-service .title {
        font-size: 26px;
        margin-bottom: 1rem;
    }

    .padder-15 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .text-sm-center {
        text-align: center;
    }

    .e-filling-banner {
        border-radius: 20px 20px 0px 0px;
    }

    .e-filling-card {
        border-radius: 0px 0px 20px 20px;
        padding: 30px 20px;
        align-items: center;
    }

    .e-filling-card h4 {
        text-align: center;
        line-height: 38px;
        margin-bottom: 10px;
    }

    .faq-card {
        padding: 2rem 1rem;
    }

    .faq-card .title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 0px;
    }

    .faq-list {
        margin-bottom: 15px;
    }

    .faq-card p iframe {
        width: 100%;
    }

    .faq-card p img {
        max-width: 100%;
        height: auto;
    }

    .faq-card ul li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 460px) {
    .position-Section .title {
        font-size: 30px;
    }

    .support-card {
        display: inline-block;
    }

    .support-card .support-details {
        padding-top: 20px;
        padding-left: 0px;
    }

    .support-card .support-details .label-title {
        margin-bottom: 0.5rem;
    }

    .theme-header .navbar li .btn img {
        width: 18px !important;
    }
    .menu-main {
        top: 60px;
    }

    .sign-section .btn {
        width: 100%;
    }

    .sign-section .btn {
        margin-right: 0px !important;
        margin-bottom: 15px;
    }

    .e-filling-card form .d-flex {
        display: inline-block !important;
    }

    .e-filling-card .form-control {
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .e-filling-card .btn-yellow {
        border-radius: 8px;
    }

    .e-filling-card h4 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media screen and (max-width: 370px) {
    .position-Section .title {
        font-size: 28px;
        line-height: 36px;
    }

    .position-Section .info-dec {
        font-size: 16px;
    }

    .our-service .card-service .btn {
        padding: 10px 15px;
    }

    .labelHeading {
        font-size: 22px;
        line-height: 26px;
    }

    .company-info li {
        margin-bottom: 15px;
    }

    .sign-section form {
        margin-top: 1rem;
    }
    .theme-header .navbar {
        padding: 15px 0px;
    }

    .theme-header .navbar .right-header ul .userIcon img {
        width: 22px;
    }
}

@media only screen and (min-width: 428px) and (max-height: 926px) and (-webkit-device-pixel-ratio: 3) {
    .main-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 0.5rem;
    }

    .sign-section .title-heading {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 1rem;
    }

    .our-service .price-inner {
        max-width: 100%;
    }

    .our-service .title {
        font-size: 26px;
        margin-bottom: 1rem;
    }

    .theme-header .navbar {
        padding: 10px 20px;
    }

    .menu-main {
        top: 60px;
    }
}
/* New Banner Section Start */

.bannerSection {
    display: inline-block;
    width: 100%;
    background-image: url("../../Images/newbanner.png");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.bannerSection::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0) 100%);
}
.bannerSection .bannerInner {
    position: relative;
    z-index: 1;
}
.bannerSection .bannerInner .banner-title {
    margin-top: 0px;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 52px */
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

.bannerSection .bannerInner .banner-details {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 2rem;
}

.bannerSection .bannerInner .btn {
    font-weight: 700;
    font-size: 16px;
    padding: 12px 22px;
}

/* New Banner Section End */

.padder15 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.maintitle {
    font-size: 34px;
    line-height: 44px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--neutral-black);
    margin-bottom: 40px;
}
.smallHeaing {
    display: inline-block;
    width: 100%;
    color: #54606f;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 32.4px */
}
/* pricing Section Start */
.pricingSection .price-inner {
    max-width: 100%;
    margin: 15px auto;
}
.pricingSection .card-service {
    display: inline-block;
    width: 100%;
    background: var(--lightColor);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: left;
    height: 100%;
}
.pricingSection .title {
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--themedrColor);
    margin-bottom: 15px;
}
.pricingSection ul li {
    padding: 20px 0px;
    border-bottom: solid 1px #dbe0e7;
    display: inline-flex;
    width: 100%;
}
.pricingSection ul li img {
    width: 16px;
}
.pricingSection ul li span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: #54606f;
    margin-left: 20px;
}
.pricingSection .card-service .price {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 36px */
    text-align: left;
    color: var(--themeColor);
    margin: 0px;
}
.pricingSection .card-service .btn {
    font-size: 14px;
    line-height: 150%; /* 21px */
    padding: 10px 20px;
}
.pricingSection .card-service select {
    background: #ffffff;
    border: 1px solid rgba(135, 132, 129, 0.32);
    border-radius: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    color: #54606f;
    padding: 8px 25px 8px 10px;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}
.pricingSection .card-service select:focus {
    border-color: var(--themeColor);
    outline: 0;
}
.pricingSection .leftSide .card-service {
    padding: 20px 35px;
    margin-bottom: 20px;
}

/* pricing Section End */
/* Why Choose Freewaytax? Start */
.whyChooseSection {
    background-color: var(--themeColor);
}
.whyChooseSection .card {
    border: 0px;
    border-radius: 20px;
    background-color: #fff;
    margin: 15px 5px;
}
.whyChooseSection .card-body {
    padding: 25px 30px;
}
.whyChooseSection .heading {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.whyChooseSection .heading .icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.whyChooseSection .heading .icon img {
    max-width: 100%;
    max-height: 100%;
}
.whyChooseSection .heading .title {
    color: var(--themedrColor);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    margin: 0px;
}
.whyChooseSection .card .infoText {
    color: #54606f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    margin: 0px;
}
.whyChooseSection .btnBottom {
    margin-top: 30px;
    text-align: center;
}
.whyChooseSection .btnBottom .btn {
    padding: 11px 24px;
}
/* Why Choose Freewaytax? End */
/* Tax Calculation Guarantee Start */
.taxCalculation {
    background-color: #f3f6fc;
}
.taxCalculation .tatxImage {
    display: inline-block;
    width: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.taxCalculation .tatxImage img {
    max-width: 100%;
    max-height: 100%;
}
.taxCalculation .smallHeaing {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
}
.taxCalculation ul li {
    padding: 16px 0px;
    display: inline-flex;
    width: 100%;
}
.taxCalculation ul li:not(:last-child) {
    border-bottom: solid 1px #dbe0e7;
}
.taxCalculation ul li img {
    width: 16px;
}
.taxCalculation ul li span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--neutral-black);
    margin-left: 15px;
}
.taxCalculation .btnBottom {
    margin-top: 15px;
}
.taxCalculation .btnBottom .btn {
    padding: 11px 24px;
}
/* Tax Calculation Guarantee End */
/* Fast And Easy Filing Process Start */
.filingProcess {
    background-color: var(--themeColor);
}

.filingProcess .card {
    border: 0px;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
    margin: 15px 0px;
    height: calc(100% - 30px);
}
.filingProcess .card::after {
    content: url("../../Images/right-icon.svg");
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
}
.filingProcess .col-lg-3:last-child .card:after {
    display: none;
}
.filingProcess .card-body {
    padding: 45px 10px;
    position: relative;
}
.filingProcess .count {
    position: absolute;
    top: -25px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 100px;
    background: var(--themedrColor);
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.filingProcess .icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}
.filingProcess .icon img {
    max-width: 100%;
    max-height: 100%;
}
.filingProcess .card .infoText {
    color: var(--neutral-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 28.8px */
    margin: 0px;
}
.filingProcess .btnBottom {
    margin-top: 40px;
    text-align: center;
}
.filingProcess .btnBottom .btn {
    padding: 11px 24px;
}
@media (min-width: 992px) {
    .filingProcess .col-lg-3 {
        flex: 0 0 auto;
        width: 20%;
    }
}
/* Fast And Easy Filing Process End*/
/* Our Services Start */
.OurServices {
    background-color: var(--lightColor);
}
.OurServices .card {
    border: 0px;
    border-radius: 20px;
    background-color: #fff;
    margin: 15px 5px;
}
.OurServices .card-body {
    padding: 30px 25px;
}
.OurServices .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--themedrColor);
    margin-bottom: 15px;
}
.OurServices ul {
    min-height: 370px;
}
.OurServices ul li {
    padding: 12px 0px;
    display: inline-flex;
    width: 100%;
}
.OurServices ul li:not(:last-child) {
    border-bottom: solid 1px #dbe0e7;
}
.OurServices ul li img {
    width: 16px;
}
.OurServices ul li span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #54606f;
    margin-left: 20px;
}
.OurServices .btnBottom {
    margin-top: 20px;
    text-align: center;
}
.OurServices .btnBottom .btn {
    padding: 11px 24px;
    font-size: 14px;
}
/* Our Services End */
/* Footer Section Start */
.FooterTheme {
    background-color: var(--neutral-black);
}
.FooterTheme .mainFooter {
    padding: 50px 0px 30px 0px;
}
.FooterTheme .footerLogo {
    display: inline-block;
    height: 35px;
}
.FooterTheme .footerLogo img {
    height: 100%;
}
.FooterTheme .mainFooter .title {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
    text-transform: uppercase;
    margin-bottom: 15px;
}
.FooterTheme .mainFooter ul li {
    display: inline-block;
    width: 100%;
}
.FooterTheme .mainFooter ul li:not(:last-child) {
    margin-bottom: 15px;
}
.FooterTheme .mainFooter ul li .link {
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    text-transform: capitalize;
}
.FooterTheme .mainFooter ul li .link img {
    margin-right: 10px;
}
.FooterTheme .mainFooter ul li .link:hover,
.FooterTheme .mainFooter ul li .link:focus {
    color: var(--blueColor);
    text-decoration: inherit;
}
.smallFooter {
    border-top: solid 1px rgba(255, 255, 255, 0.25);
    padding: 20px 0px;
}
.smallFooter .copyrightSec {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}
.smallFooter .footerLink ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.smallFooter .footerLink li {
    margin: 0px 25px;
}
.smallFooter .footerLink li .link {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    text-transform: capitalize;
    position: relative;
    text-decoration: inherit;
}
.smallFooter .footerLink li .link:hover,
.smallFooter .footerLink li .link:focus {
    color: var(--blueColor);
    text-decoration: inherit;
}
/* Footer Section End */
@media screen and (min-width: 1100px) and (max-width: 1600px) {
    .bannerSection .bannerInner .banner-title {
        font-size: 44px;
        line-height: 52px;
        margin-bottom: 1rem;
    }

    .bannerSection .bannerInner .banner-details {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 1rem;
    }

    .bannerSection .bannerInner .btn {
        font-size: 16px;
    }
    .maintitle {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 993px) and (max-width: 1600px) {
    .bannerSection {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1450px) {
}

@media screen and (min-width: 993px) and (max-width: 1400px) {
    .pricingSection .title {
        font-size: 22px;
    }
    .pricingSection .card-service .price {
        font-size: 20px;
    }
    .pricingSection .leftSide .card-service {
        padding: 20px 25px;
    }
    .pricingSection .card-service {
        padding: 35px 30px;
    }
    .pricingSection .card-service .btn {
        padding: 10px 10px;
    }
    .OurServices .card {
        margin: 15px 0px;
    }
    .OurServices .card-body {
        padding: 20px 15px;
    }
    .FooterTheme .footerLogo {
        height: 30px;
    }
    .smallFooter .footerLink li {
        margin: 0px 15px;
    }
}

@media screen and (max-width: 1200px) {
    .banner-section .bannerInner .banner-title {
        font-size: 46px;
    }
    .whyChooseSection .card-body {
        padding: 25px 20px;
    }
    .whyChooseSection .heading .title {
        font-size: 18px;
    }
    .whyChooseSection .card .infoText {
        font-size: 14px;
        line-height: 160%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    .bannerSection {
        padding-top: 30px;
        padding-bottom: 30px;
        background-position: center;
    }
}

@media screen and (max-width: 992px) {
    .bannerSection .bannerInner .btn {
        font-size: 16px;
        padding: 10px 24px;
    }
    .whyChooseSection .card-body {
        padding: 25px 20px;
    }
    .whyChooseSection .heading .title {
        font-size: 18px;
    }
    .filingProcess .card {
        margin: 20px 0px;
        height: calc(100% - 40px);
    }
    .filingProcess .card::after {
        top: inherit;
        bottom: -20px;
        margin: auto;
        right: 0px;
        justify-content: center;
        transform: rotate(90deg);
        width: 100%;
    }
    .filingProcess .count {
        top: -15px;
        width: 40px;
        height: 40px;
        padding: 5px;
        font-size: 16px;
    }
    .FooterTheme .footerLogo {
        margin-bottom: 25px;
    }
    .FooterTheme .mainFooter {
        padding: 30px 0px 20px 0px;
    }
    .smallFooter .copyrightSec {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .smallFooter .footerLink ul {
        justify-content: center !important;
    }
    .smallFooter .footerLink li {
        margin: 0px 10px;
    }
}

@media screen and (max-width: 767px) {
    .bannerSection {
        padding-top: 30px;
        padding-bottom: 30px;
        background-position: center;
    }
    .bannerSection .bannerInner .banner-title {
        font-size: 34px;
        line-height: 45px;
        margin-bottom: 0.5rem;
    }

    .bannerSection .bannerInner .banner-title br {
        display: none;
    }

    .bannerSection .bannerInner .banner-details {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 1rem;
    }
    .maintitle {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }
    .padder15 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .pricingSection .title {
        font-size: 18px;
        line-height: 23px;
    }
    .pricingSection .card-service .price {
        font-size: 18px;
    }
    .pricingSection .leftSide .card-service {
        padding: 20px 15px;
    }
    .pricingSection .card-service {
        padding: 20px 15px;
    }
    .pricingSection .card-service .btn {
        padding: 10px;
    }
    .pricingSection .leftSide .card-service .btn {
        width: 100%;
    }
    .pricingSection ul li {
        padding: 10px 0px;
    }
    .pricingSection .leftSide .card-service {
        margin-bottom: 15px;
    }

    .OurServices ul {
        min-height: auto;
    }
    .OurServices .card-body {
        padding: 30px 15px;
    }
    .FooterTheme .footerLogo {
        margin-bottom: 10px;
    }
    .FooterTheme .title {
        margin-top: 20px;
    }
    .FooterTheme ul li:not(:last-child) {
        margin-bottom: 10px;
    }
    .smallFooter .copyrightSec {
        text-align: left;
    }
    .smallFooter .footerLink,
    .smallFooter .footerLink ul {
        display: inline-block;
        width: 100%;
        text-align: left;
    }
    .smallFooter .footerLink ul li {
        margin: 5px 0px;
    }
}

@media only screen and (min-width: 428px) and (max-height: 926px) and (-webkit-device-pixel-ratio: 3) {
    .maintitle {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 0.5rem;
    }
}
</pre></body></html>