/*--font-family: "Mulish", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
/*-- font-family: "Source Sans 3", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
/*--font-family: "Roboto", sans-serif;--*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*----*/
:root {
    --simple-blue-color: #0C7BAB;
    --simple-dark-blue-color: #003A52;
    --simple-orange-color: #e05200;
    --simple-light-orange-color: #ffae00;
    --simple-gray-color: #2C3B42;
    --simple-yallow-color: #FFCA00;
    --simple-lgray-color: #536A75;
    --simple-blue-grad-color: linear-gradient(90deg, rgb(12 123 171) 0%, rgb(0 91 131) 100%);
    --simple-orange-grad-color: linear-gradient(90deg, rgb(255 104 16) 0%, #e05200 100%);
    --bs-container-sm: 600px;
    --bs-container-md: 800px;
    --bs-container-lg: 1000px;
    --bs-container-xl: 1200px;
    --bs-container-xxl: 1400px;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

/*====== STYLES GENERALES ==========*/
body {
    padding: 0;
    margin: 0;
    color: #000000;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}

a {
    color: var(--simple-blue-color);
    transition: all .3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--simple-orange-color);
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

hr {
    opacity: .15;
}

.opacity-15 {
    opacity: .15 !important;
}

.opacity-10 {
    opacity: .10 !important;
}

.opacity-5 {
    opacity: .05 !important;
}

/*---Theme Form Section---*/
.form-check-input:checked {
    background-color: #0c80b2;
    border-color: #0c80b2;
}

.form-check-input:focus {
    border-color: #7ad5fb;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(205 240 255);
}

.form-check-input {
    flex-shrink: 0;
    width: 1.15em;
    height: 1.15em;
    margin-top: .45em;
    margin-right: 0.5rem;
}

.form-checksradios .titleLable {
    font-size: 0.95rem !important;
    display: block;
}

.form-checksradios .form-check-label {
    padding-top: 2px;
}

.captchaBox {
    display: flex;
    padding: 5px 10px;
    justify-content: space-between;
    align-items: center;
    min-height: 55px;
    background: #ffffff;
    height: calc(1.5em + .75rem + 2px);
    border-bottom: 1px solid #cccccc;
}

.captchaBox img {
    width: 80%;
}

.captchaBox .refIcon i {
    color: #e05200;
    padding: 6px;
    border: 1px solid;
    border-radius: 5px;
}

.captchaBox .refIcon:hover i {
    color: #ffffff;
    background: #e05200;
}

/*======= THEME GENERALES STYLES ==============*/
.text-themBlue {
    color: var(--simple-blue-color) !important;
}

.text-themDblue {
    color: var(--simple-dark-blue-color) !important;
}

.text-themOrng {
    color: var(--simple-orange-color) !important;
}

.text-themGray {
    color: var(--simple-gray-color) !important;
}

.text-themLgray {
    color: var(--simple-lgray-color) !important;
}

.text-themYallow {
    color: var(--simple-yallow-color) !important;
}

.bg-themBlue {
    background: var(--simple-blue-color) !important;
}

.bg-themDblue {
    background: var(--simple-dark-blue-color) !important;
}

.bg-themOrng {
    background: var(--simple-orange-color) !important;
}

.bg-themGary {
    background: var(--simple-lgray-color) !important;
}

.bg-themLblue {
    background: #F0FAFF !important;
}

.bg-themLorng {
    background: #FFF9F5 !important;
}

.bg-themLgary {
    background: #F6F9FC !important;
}

.bg-themWhite {
    background: #FFFFFF !important;
}

/*-- THEME BUTTONS--*/
.btn {
    padding: 0.5rem 1.45rem;
    border-radius: 10px;
    --bs-btn-line-height: unset;
    font-size: 1.10rem;
    transition: all .3s ease;
    font-weight: 600;
}

.btn:hover .rotate-45 {
    transform: rotate(90deg);
}

.btn-sm {
    padding: 0.35rem 0.95rem !important;
    font-size: 0.925rem;
}

.linkText {
    color: var(--simple-orange-color);
    padding-bottom: 0;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    border-bottom: 1px solid;
    width: fit-content;
}

.linkText:hover {
    opacity: 0.8;
}

.linkText:hover .rotate-45 {
    transform: rotate(90deg);
}

.linkText2 {
    color: var(--simple-orange-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    border-bottom: 1px solid;
    width: fit-content;
    border: 1px solid;
    padding: 0.85rem 2.25rem;
    text-align: center;
    border-radius: 12px !important;
}

.linkText2:hover {
    opacity: 1;
    background: rgb(0 0 0 / 25%);
}

.linkText2:hover .rotate-45 {
    transform: rotate(90deg);
}

.btn-animated {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    /* Adjust opacity and color */
    z-index: -1;
    transition: left 0.5s ease;
    /* Smooth animation */
}

.btn-animated:hover::before {
    left: 0;
    /* Move from left to right */
}

/*--Orange--*/
.btn-tmOrng {
    background: var(--simple-orange-color) !important;
    border-color: var(--simple-orange-color) !important;
    color: #fff !important;
}

.btn-tmOrng:hover {
    background: #ce4c00 !important;
    border-color: #ce4c00 !important;
    color: #fff !important;
}

.btn-tmOrng:focus {
    background: #ce4c00 !important;
    border-color: #ce4c00 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(255 73 73 / 0.25);
}

.btn-grdnt-tmOrng {
    background: var(--simple-orange-grad-color) !important;
    border-color: var(--simple-orange-grad-color) !important;
    color: #fff !important;
    border: unset;
}

.btn-grdnt-tmOrng:hover {
    background: #ce4c00 !important;
    border-color: #ce4c00 !important;
    color: #fff !important;
}

.btn-grdnt-tmOrng:focus {
    background: #ce4c00 !important;
    border-color: #ce4c00 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(224 82 0 / 25%);
}

.btn-outline-tmOrng {
    background: transparent;
    border-color: var(--simple-orange-color) !important;
    color: var(--simple-orange-color) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-tmOrng:hover {
    color: #fff !important;
}

.btn-outline-tmOrng:focus {
    background: var(--simple-orange-color) !important;
    border-color: var(--simple-orange-color) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(243 111 33 / 0.25);
}

.btn-outline-tmOrng::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--simple-orange-color) !important;
    /* Adjust opacity and color */
    z-index: -1;
    transition: left 0.5s ease;
    /* Smooth animation */
}

.btn-outline-tmOrng:hover::before {
    left: 0;
    /* Move from left to right */
}

/*--Blue--*/
.btn-tmBlue {
    background: var(--simple-blue-color) !important;
    border-color: var(--simple-blue-color) !important;
    color: #fff !important;
}

.btn-tmBlue:hover {
    background: #0370a0 !important;
    border-color: #0370a0 !important;
    color: #fff !important;
}

.btn-tmBlue:focus {
    background: #0370a0 !important;
    border-color: #0370a0 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}

.btn-tmLblue {
    background: #15A5DF !important;
    border-color: #15A5DF !important;
    color: #fff !important;
}

.btn-tmLblue:hover {
    background: #0093CD !important;
    border-color: #0093CD !important;
    color: #fff !important;
}

.btn-tmLblue:focus {
    border-color: #0093CD !important;
    border-color: #0093CD !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}

.btn-grdnt-tmBlue {
    background: var(--simple-blue-grad-color) !important;
    border-color: var(--simple-blue-grad-color) !important;
    color: #fff !important;
    border: unset;
}

.btn-grdnt-tmBlue:hover {
    background: #0370a0 !important;
    border-color: #0370a0 !important;
    color: #fff !important;
}

.btn-grdnt-tmBlue:focus {
    background: #0370a0 !important;
    border-color: #0370a0 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}

.btn-outline-tmBlue {
    background: transparent;
    border-color: var(--simple-blue-color) !important;
    color: var(--simple-blue-color) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-tmBlue:hover {
    color: #fff !important;
}

.btn-outline-tmBlue:focus {
    background: var(--simple-blue-color) !important;
    border-color: var(--simple-blue-color) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}

.btn-outline-tmBlue::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--simple-blue-color) !important;
    /* Adjust opacity and color */
    z-index: -1;
    transition: left 0.5s ease;
    /* Smooth animation */
}

.btn-outline-tmBlue:hover::before {
    left: 0;
    /* Move from left to right */
}

/*--White Btn--*/
.btn-tmWhite {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.btn-tmWhite:hover {
    background: rgb(255 255 255 / 60%) !important;
    border-color: rgb(255 255 255 / 60%) !important;
    color: #333 !important;
}

.btn-tmWhite:focus {
    background: rgb(255 255 255 / 60%) !important;
    border-color: rgb(255 255 255 / 60%) !important;
    color: #333 !important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}

.btn-outline-white {
    background: transparent;
    border-color: #fff !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-white:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.btn-outline-white:focus {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 0 0 0.2rem rgb(0 149 218 / 0.25);
}

.btn-outline-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff !important;
    z-index: -1;
    transition: left 0.5s ease;
    /* Smooth animation */
}

.btn-outline-white:hover::before {
    left: 0;
    /* Move from left to right */
}

/*--Form Control--*/
.form-control:focus,
.form-select:focus {
    border-color: #0c7bab;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(12 123 171 / 25%);
}

/*--//--*/
/*--Announcement Header--*/
.announcementInfo {
    background-color: var(--simple-dark-blue-color);
    position: sticky;
    inset: 0px;
    z-index: 100;
    display: block;
    height: auto;
    min-height: 3px;
}

.announcementInfo .alert {
    color: #ffffff;
    margin-bottom: 0px;
    padding: 7px 0;
    font-weight: 600;
    text-align: center;
    font-size: 1.15rem;
}

.announcementInfo .alert-dismissible a {
    a color: #cc4b00;
    text-decoration: none;
    margin-left: 5px;
    color: var(--simple-yallow-color);
}

.announcementInfo .alert-dismissible .btn-close {
    position: absolute;
    top: 11px;
    right: 0;
    z-index: 2;
    padding: 0;
    opacity: 1;
    background: url(../img/closeRed-icon.svg) no-repeat center;
}

.announcementInfo .alert-dismissible .btn-close:focus {
    box-shadow: none;
}

.rotate-45 {
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/*======= HEADER SECTION ==============*/
.theme-header {
    position: fixed;
    right: 0;
    left: 0;
    display: block;
    z-index: 1049;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
}

/*--Menu Header--*/
.theme-header .menu-hdr {
    background-color: #ffffff;
    padding: 0;
}

.menu-hdr .navbar-brand img {
    height: 56px;
}

.menu-hdr .nav-link {
    color: #000000;
    padding: 1.45rem 0.75rem !important;
    font-size: 1.05rem;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}

.menu-hdr .nav-link.show {
    color: #000000;
}

.menu-hdr .nav-link.active,
.menu-hdr .nav-link:hover {
    color: var(--simple-blue-color) !important;
    font-weight: 600;
}

.menu-hdr .nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 100%;
    top: auto;
    left: 0;
    height: auto;
    overflow-y: scroll;
    background: #f1f7fa;
}

.menu-hdr .nav-item.dropdown:hover .dropdown-menu,
.menu-hdr .nav-item.dropdown.dropdown-mega:hover .dropdown-menu {
    display: block;
    -webkit-animation: slide-down .3s ease-out;
    -moz-animation: slide-down .3s ease-out;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes slide-down {
    0% {
        opacity: 0;
        -moz-transform: translateY(-10%)
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-hdr .dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
}

.menu-hdr .dropdown-menu {
    /* border-top: 2px solid #536A75; */
    margin-top: -1px;
    min-width: 240px;
    border-radius: 0;
}

.menu-hdr .dropdown-item.active,
.menu-hdr .dropdown-item:active {
    color: #000000 !important;
    text-decoration: none !important;
    background-color: #f8f9fa !important;
}

.menu-hdr .dropdown-item {
    border-bottom: 1px dashed #ddd;
    padding: 0.75rem;
    font-weight: 600;
    color: #000000;
}

.menu-hdr .dropdown-item:hover {
    color: var(--simple-blue-color) !important;
}

.mega-content {
    padding: 0 1.25rem;
}

.mega-content .mc-title {
    color: #0c7bab;
    font-size: 1.5rem;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mega-content .mc-box {
    display: flex;
    /* cursor: pointer; */
    text-decoration: none;
    border-left: 3px solid #aac0ca;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
}

.mega-content .mc-box:hover {
    border-left: 3px solid var(--simple-blue-color);
    padding: 10px;
    border-radius: 15px;
    background: #ffffff;
}

.mega-content .mc-box:hover .icon i {
    color: #fff;
    background: var(--simple-blue-color);
}

.mega-content .mc-box:hover .mc-subtitle a {
    color: var(--simple-blue-color);
}

.mc-subtitle {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1.15rem;
    color: #2C3B42;
    text-decoration: none;
}

.mc-list {
    min-height: 65px;
}

.mega-content .mc-subtitle a {
    font-size: 1.25rem;
    margin-bottom: 11px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.mega-content .mc-menu:hover .mc-subtitle a {
    color: #e05200;
}

.mega-content .mc-menu.active .mc-subtitle a {
    color: #e05200;
}

.mega-content .mc-subtitle a i {
    font-size: 0.55rem;
    color: #0c7bab;
    margin-right: 5px;
    vertical-align: middle;
}

.mega-content .icon i {
    display: block;
    color: #ffffff;
    background: var(--simple-lgray-color);
    padding: 12px 8px;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    font-size: 18px;
    text-align: center;
    margin-right: 12px;
}

.mega-content .dt-icon i {
    position: relative;
}

.mega-content .dt-icon i span {
    color: #fff;
    font-size: 0.425rem;
    position: absolute;
    left: 17px;
    top: 20px;
    letter-spacing: 1px;
}

.mega-content .mc-list li {
    font-size: 0.95rem;
    line-height: 1.25rem;
    margin-bottom: 5px;
    color: #536A75;
}

.menu-hdr .navbar-toggler {
    position: absolute;
    right: 0.35rem;
    top: 0.35rem;
    border-color: #0095da;
    padding: 6px 10px;
    background: #fff;
    color: #0095da !important;
    font-size: 1.1rem;
}

.menu-hdr .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

.menu-hdr .close-toggler {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    border: 1px solid #e05200;
    padding: 6px 10px !important;
    background: #fff;
    color: #e05200 !important;
    font-size: 1.1rem;
    z-index: 9999;
    line-height: 1rem;
    border-radius: 5px;
}

.menu-hdr .content-item {
    padding: 10px;
    background-color: #9BDDFA;
    border: 1px solid #9BDDFA;
    margin-bottom: 10px;
    border-radius: 15px;
}

.menu-hdr .content-item .tagLine {
    font-size: 1.35rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.25;
    color: var(--simple-dark-blue-color);
    margin-bottom: 10px;
}

.supportInfo {
    font-size: 0.925rem;
    font-weight: 600;
    line-height: 1.25rem;
    margin-right: 10px;
    color: #000;
    padding: 0.75rem 0 !important;
    text-align: center;
}

.supportInfo span {
    display: block;
}

.supportInfo a {
    color: #000;
}

.supportInfo a:hover {
    color: var(--simple-orange-color) !important;
}

/*---Main Content---*/
.mainContent {
    padding-top: 70px;
}

/*--//--*/
/*------ home banner ------*/
#homeBanner {
    color: #ffffff;
    padding: 5.5rem 0;
    background-image: url(../img/indexBaner-bg.svg);
    background-position: top center;
    background-color: #014f70;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

#homeBanner .banner-content .headTitle {
    color: #ffffff;
    font-size: 3rem;
    line-height: 3.25rem;
    font-weight: 700;
}

#homeBanner .banner-content ul {
    padding-inline-start: 35px;
}

#homeBanner .banner-content ul li {
    position: relative;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1.0rem;
}

#homeBanner .banner-content ul li::after {
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    background-image: url('../img/bultPointick1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -35px;
    position: absolute;
    left: 0;
    top: 2px;
}

#homeBanner .banner-content p {
    font-size: 1.35rem;
    line-height: 2.0rem;
    font-weight: 500;
    margin-bottom: 25px;
}

#homeBanner .banner-content .bannerBtn {
    font-size: 1.35rem;
    line-height: 2.0rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: 12px !important;
}

.bannerForm-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
}

.bannerForm-img img {
    width: 100%;
    margin-bottom: -5px;
}

.clientLogoSec .title {
    font-size: 1.65rem;
    line-height: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: #000000;
    margin-bottom: 15px;
}

.clientLogoSec .logo-marquee {
    position: relative;
    height: 60px;
}

.logo-marquee .lm-container {
    /* mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(255, 255, 255, 0) 100%); */
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 0;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    wid;
    width: 100%;
}

.logo-marquee .lm-container:hover div {
    animation-play-state: paused;
}

.logo-marquee .lm-container:active div {
    animation-play-state: paused;
}

.logo-marquee .lm-container .marquee {
    flex: 0 0 auto;
    min-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: scroll 75s linear 0s infinite;
    animation-play-state: running;
    animation-delay: 0s;
    animation-direction: normal;
    padding: 20px 0 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee .cllogos {
    display: flex;
    gap: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* -webkit-filter: invert(1); */
    /* filter:invert(1); */
}

.marquee .cllogos img {
    height: 50px;
    position: relative;
    width: 120px;
    overflow-y: hidden;
    /* opacity: 0.55; */
}

.marquee .cllogos img:hover {
    opacity: 0.75;
}

/*---//---*/
/*------ Section Styles ------*/
.sectionMarg {
    margin: 60px 0;
}

.sectionPadg {
    padding: 60px 0;
}

.sectionTitle {
    margin-bottom: 1.75rem;
}

.sectionTitle .infoCont {
    font-size: 1.35rem;
    font-weight: 400;
}

.sectionTitle .mainHeading {
    font-size: 2.25rem;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 2.5rem;
}

.sectionTitle .subHeading {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.sectionList .title {
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 700;
}

.sectionList ul {
    padding-inline-start: 20px;
    list-style: square;
}

.sectionList ul li {
    position: relative;
    font-size: 1.15rem;
    line-height: 1.5rem;
    margin-bottom: 0.85rem;
}

.sectionContent p,
.sectionList p,
.pointListSec p {
    font-size: 1.25rem;
    line-height: 1.5;
}

/*----*/
.pointListSec .title {
    color: #000;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.pointListSec .title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #d0d4d8;
}

.pointListSec .title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 125px;
    height: 3px;
    background: #d0d4d8;
}

.pointListSec ul {
    padding-inline-start: 30px;
}

.pointListSec ul li {
    position: relative;
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

.pointListSec ul li::after {
    content: '';
    display: inline-block;
    height: 24px;
    width: 24px;
    background-image: url(../img/bultPointick.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -30px;
    position: absolute;
    left: 0;
    top: 1px;
}

.pointListSec.tick1 ul li::after {
    background-image: url(../img/bultPointick1.svg) !important;
}

.pointListSec.tick2 ul li::after {
    background-image: url(../img/bultPointick2.svg) !important;
}

.pointListSec.tick3 ul li::after {
    background-image: url(../img/bultPointick3.svg) !important;
}

.pointListSec.tick4 ul li::after {
    background-image: url(../img/bultPointick4.svg) !important;
}

.simpleList ul {
    padding-inline-start: 20px !important;
    list-style: disc !important;
}

.simpleList ul li {
    position: relative !important;
    font-size: 1.15rem !important;
    line-height: 1.35rem !important;
    margin-bottom: 0.5rem !important;
}

.simpleList ul li::after {
    left: 2px !important;
    top: 0px !important;
    background-image: unset !important;
    background: unset !important;
}

/*------*/
/*---//---*/
.ofhiddenSec {
    position: relative;
    overflow: hidden;
}

.secThumImg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
}

.secThumImg img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    width: 100%;
}

.secThumImg .secBtn {
    position: absolute;
    z-index: 1;
    background: var(--simple-orange-color) !important;
    border-color: var(--simple-orange-color) !important;
    color: #fff !important;
    left: 0;
    bottom: 0;
    text-decoration: none;
    border-radius: 0 30px 0 0;
    font-size: 1.35rem;
    line-height: 2.25rem;
    padding: 30px;
}

.taxInfo-wrap1 {
    background: #fff;
    border: 1px solid #DFE1ED;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 20px 40px;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-out 0s;
}

.taxInfo-wrap1:hover {
    transform: translateY(-5px);
}

.taxInfo-wrap1 .tiw-icon {
    position: relative;
    width: 80px;
    z-index: 1;
}

.taxInfo-wrap1 .tiw-icon::before {
    content: "";
    position: absolute;
    left: -14px;
    top: -7px;
    width: 45px;
    height: 45px;
    background: #f0f3f7;
    border-radius: 10px;
    z-index: -1;
}

.taxInfo-wrap1 .tiw-content .tiw-title {
    margin-bottom: 5px;
    font-size: 1.35rem;
    font-weight: 700;
}

.taxInfo-wrap1 .tiw-content P {
    margin-bottom: 0;
    width: 95%;
    font-size: 1.1rem;
    line-height: 1.5;
}

/*------*/
.infoIconCard {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e1e7ed;
    height: 100%;
}

.infoIconCard .head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.infoIconCard .head .cardImage {
    width: 72px;
    height: 72px;
    background: #f6f9fc;
    padding: 12px;
    margin-right: 20px;
    border-radius: 12px;
}

.infoIconCard .head .cardTitle {
    font-size: 1.35rem;
    line-height: 1.55rem;
    font-weight: 600;
}

.infoIconCard .body p {
    font-size: 1.15rem;
    line-height: 1.65rem;
    margin-bottom: 0;
}

/*------*/

/*---//---*/
.steps-link {
    border: 1px solid #c0cfd6;
    padding: 10px 30px;
    border-radius: 15px;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    text-align: center;
    height: 100%;
    align-items: center;
}

.steps-link.active {
    border: 1px solid var(--simple-blue-color);
    background-color: #EBF7FC;
    color: var(--simple-blue-color);
    font-weight: 600;
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.steps-link span {
    width: 90%;
    display: block;
    margin: 0 auto;
    font-weight: 600;
}

.steps-link .fa-solid {
    position: absolute;
    bottom: 13px;
    right: 13px;
    transform: rotate(135deg);
    color: #c0cfd6;
}

.steps-link.active .fa-solid {
    color: var(--simple-blue-color);
}

.owlCarousel-slider .item {
    text-align: center;
    margin-top: 60px;
}

.slider-cont .title {
    font-size: 2.05rem;
    margin-top: 0;
    margin-bottom: .25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.slider-cont .subtitle {
    margin-top: 0;
    margin-bottom: 1.75rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.slider-imag {
    display: block;
    margin: 0 auto -12px;
    width: 70%;
    height: auto;
    border: 7px solid #000000;
    border-bottom: unset;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
    background: #014f70;
}

.slider-imag img {
    border-radius: 15px 15px 0 0;
}

.owl-theme.owlCarousel-slider .owl-nav.disabled+.owl-dots {
    margin-top: -29px;
    z-index: 9999;
    position: relative;
}

.owl-theme.owlCarousel-slider .owl-dots .owl-dot span {
    margin: 6px 4px;
    width: 16px;
    height: 10px;
}

.owl-theme.owlCarousel-slider .owl-dots .owl-dot.active span,
.owl-theme.owlCarousel-slider .owl-dots .owl-dot:hover span {
    background-color: var(--simple-orange-color);
}

/*------*/

#faqAccordion .accordion-item {
    margin-bottom: 1rem;
    background-color: #f4fcff;
    border-radius: 15px;
    border: none;
    border: 1px solid #d4dde2;
    transition: border-color 0.5s ease-in-out;
    margin-bottom: 30px;
}

#faqAccordion .accordion-item:has(.accordion-collapse.show) {
    border: 1px solid #d4dde2;
    position: relative;
}

#faqAccordion .accordion-body {
    font-size: 1.15rem;
}

#faqAccordion .accordion-button {
    background-color: #ffffff;
    border-radius: 15px;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #f4fcff;
    color: #000;
    box-shadow: none;
    border: none;
}

#faqAccordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid #d4dde2;
}

#faqAccordion .accordion-item:not(:last-of-type) {
    border-bottom: 1px solid #d4dde2;
}

#faqAccordion .accordion-item:last-of-type,
#faqAccordion .accordion-item:first-of-type,
#faqAccordion .accordion-item:first-of-type>#faqAccordion .accordion-header #faqAccordion .accordion-button,
#faqAccordion .accordion-item:last-of-type>#faqAccordion .accordion-header #faqAccordion .accordion-button.collapsed {
    border-radius: 15px;
}

#faqAccordion .accordion-button::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    background: none;
    color: var(--simple-blue-color);
    border: 1px solid;
    border-radius: 30px;
    padding: 8px 10px;
    width: auto;
    height: auto;
    font-size: 1rem;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    /* Unicode for Font Awesome minus icon */
    background: none;
    color: #a2b0b8;
}

#faqAccordion ul {
    list-style: disc;
    padding-left: 20px;
}

#faqAccordion ul li {
    line-height: 1.25rem;
    margin-bottom: 14px;
}

/*------*/

.ctaSection-des1 {
    background-color: #014f70 !important;
    background-image: url(../img/indexBaner-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.ctaSection-des2 {
    background-color: var(--simple-blue-color) !important;
    background-image: url(../img/simple-bg-abstract.svg);
    background-repeat: no-repeat;
    background-position: top right;
    border-radius: 0;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.ctaSection-des2 .title {
    font-size: 1.5rem;
    font-weight: 600;
}

.overlayTickimg1 {
    background-image: url(../img/blueTick01.svg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    opacity: 0.9;
}

.overlayTickimg2 {
    background-image: url(../img/blueTick02.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 45px;
    position: absolute;
    z-index: -1;
    opacity: 0.9;
}

/*------*/

/*---Page Styles Start Here---*/
.pgTitleBanner {
    color: #ffffff;
    padding: 2.5rem 0;
    background-color: #014f70;
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: 175px;
}

.pgTitleBanner:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -5px;
    background: url(../img/subpageBaner-bg.svg) no-repeat left bottom;
    height: 100%;
    width: 100%;
    z-index: -1;
    min-height: 200px;
}

.pgTitleBanner .mainTitle span {
    color: #00c9ff;
}

.pgTitleBanner .mainTitle {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pgTitleBanner .subTitle {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
}

.pgTitleBanner .infoContent {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-right: 90px;
}

.pgTitleBanner .infoList {
    font-size: 1.25rem;
    line-height: 1.75rem;
    list-style: disc;
    margin-left: 20px;
}

.pgTitleBanner .infoList li {
    margin-bottom: 10px;
}

.pgTitleBanner .infoList li::marker {
    color: #ffffff;
}

.pgTitleBanner .breadcrumb {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
}

.pgTitleBanner .breadcrumb .breadcrumb-item a {
    color: #00aaf4;
}

.pgTitleBanner .breadcrumb .breadcrumb-item.active {
    color: rgb(255 255 255 / 50%);
}

.pgTitleBanner .breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255 255 255 / 50%);
}

.bgStyle2 {
    background-color: #003A52;
    position: relative;
    overflow: hidden;
}

.bgStyle2:after {
    content: '';
    position: absolute;
    background: url(../img/bg-abstrDes2.svg) no-repeat left bottom !important;
}

/*--Login & Register Page Styles--*/
.loginPageBG {
    margin: 60px 0;
    background: #eff8fb;
    border-radius: 5px;
}

.loginPageBG .imagItem {
    padding: 30px 30px 15px;
    text-align: center;
}

.loginPageBG .imagItem .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.loginPageBG .formItem {
    padding: 45px;
    border-left: 1px solid rgb(0 0 0 / 10%);
    height: 100%;
}

.showHideBox {
    position: relative;
}

.showHideBox .ResetpwBox {
    position: absolute;
    top: 0;
    left: 2%;
    right: 0;
    width: 96%;
    height: 100%;
    z-index: 99;
    background: #eff8fb;
    border-radius: 5px;
}

.owl-theme.owlCarousel-login .owl-nav.disabled+.owl-dots {
    z-index: 9999;
    position: relative;
}

.owl-theme.owlCarousel-login .owl-dots .owl-dot span {
    margin: 6px 4px;
    width: 8px;
    height: 8px;
    background: rgb(12 123 171 / 35%);
}

.owl-theme.owlCarousel-login .owl-dots .owl-dot.active span {
    background-color: var(--simple-blue-color);
    width: 30px;
    height: 8px;
}

.imagItem .title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.imagItem p {
    font-size: 1.15rem;
    line-height: 1.75rem;
}

.imagItem .list {
    font-size: 1.25rem;
    line-height: 1.75rem;
    list-style: disc;
    margin-left: 20px;
}

.imagItem .list li {
    margin-bottom: 10px;
}

.formItem .title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.15rem;
}

.formItem .sub-title {
    line-height: 1.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #c3d3d8;
}

/*------*/
.registrationPageBG {
    background: linear-gradient(to right, #9BDDFA 50%, #eff8fb 50%);
    padding: 75px 0;
}

.registrationPageBG .imagItem img {
    padding-right: 1.75rem;
}

.registrationPageBG .formItem {
    padding: 0 45px;
}

/*--//--*/
.regLoginForm .form-label {
    font-weight: 600;
    margin-bottom: 2px;
}

.regLoginForm .form-label .tooltipIcon {
    margin-left: 5px;
    font-size: 0.85rem;
}

.regLoginForm .form-control,
.regLoginForm .form-select {
    padding: .575rem .95rem;
    box-shadow: 2px 2px 0px 1px rgb(0 0 0 / 7%);
}

.field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: #848d91;
}

/*------*/
.contactBox {
    display: flex;
    font-size: 1.25rem;
}

.contactBox i {
    color: rgb(0 58 82);
    width: 72px;
    height: 72px;
    line-height: 72px;
    font-size: 30px;
    text-align: center;
    background: rgb(238 247 250);
    border-radius: 5px;
}

.contactBox h6 {
    margin-bottom: 15px;
    text-transform: uppercase;
    padding-bottom: 2px;
    border-bottom: 1px solid #c3cfd2;
}

.contactBox h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

/*---//---*/
/*---Footer Styles---*/
.footerSec {
    border-top: 1px solid #DAE2E8;
    background: #eef1f4;
    padding: 3.5rem 0;
    height: 100%;
    overflow: hidden;
    line-height: 1.35rem;
}

.footerSec .ftrTitle {
    font-size: 1.1rem;
    line-height: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.footerSec .ftrList {
    list-style: disc;
    margin-left: 1.05rem;
    color: #2C3B42;
}

.footerSec .ftrList li {
    margin-bottom: 20px;
    line-height: 1.0rem;
}

.footerSec .ftrList li a {
    color: #2C3B42;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.0rem;
}

.footerSec .ftrList li a:hover {
    color: var(--simple-blue-color) !important;
}

.footerSec .fotrRight p {
    line-height: 1.45rem
}

.footerSec .fotrRight .about {
    margin-bottom: 1.85rem;
}

.footerSec .fotrRight .about img {
    height: 50px;
    margin-bottom: 0.75rem;
}

.footerSec .fotrRight .socialmedia a {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 18px;
    margin-right: 10px;
    background: #2c3b42;
    padding: 10px;
    display: inline-block;
    width: 45px;
    line-height: 1.75rem;
    height: 45px;
    border-radius: 10px;
    transition: top ease 0.5s;
    position: relative;
    top: 0;
    text-align: center;
}

.copyrightSec {
    background: #2c3b42;
    padding: 30px 0;
    color: #ffffff;
    font-size: 1.0rem;
}

.copyrightSec .otherLinks {
    display: flex;
    align-items: center;
}

.copyrightSec .otherLinks li a {
    color: #e05200;
    margin: 0 15px;
    letter-spacing: 0.02rem;
}

.copyrightSec .otherLinks li a:hover {
    color: #ffffff;
}

/*---//---*/
/*---Page Styles Start Here---*/
/* About Us */
.founderSecbox {
    border: 1px solid #cfd7e2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    background: #fff
}

.founderSecbox .imag {
    -webkit-border-radius: 10px 10px 0 120px;
    -moz-border-radius: 10px 10px 0 120px;
    -o-border-radius: 10px 10px 0 120px;
    -ms-border-radius: 10px 10px 0 120px;
    border-radius: 10px 10px 0 120px;
    overflow: hidden;
    position: relative;
    margin: -1px -1px 0
}

.founderSecbox .imag img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.founderSecbox .cont {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    gap: 10px
}

.founderSecbox .cont .founderInfo h5 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #0c7bab
}

.founderSecbox .cont .founderInfo span {
    display: block;
    line-height: 1;
    font-size: 1.15rem;
    font-weight: 500;
    color: #e05200
}

.founderSecbox .cont .socialInfo a {
    display: block;
    background: #fff;
    width: 42px;
    height: 42px;
    text-align: center;
    border-radius: 50%;
    padding: 7px;
    border: 1px solid #cfd7e2
}

.founderSecbox:hover .cont .socialInfo a {
    color: #fff;
    background: #0c7bab;
    border: 1px solid #0c7bab
}

.founderTxtbox {
    background: #fff;
    padding: 10px 15px;
    height: 100%;
    border-top: 4px solid #cfd7e2;
    font-size: 1.15rem;
    line-height: 1.95rem
}

.efileServiceCard {
    margin: 10px;
    height: 100%;
    border-bottom: 3px solid #9bddfa;
}

.efileServiceCard img {
    width: 3.25rem;
}

.efileServiceCard .headTxt {
    font-size: 1.45rem;
    line-height: 1.65rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #004461;
}

.efileServiceCard .headTxt.mh55 {
    min-height: 55px;
}

.efileServiceCard .ContTxt {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.fileHighlightCard {
    background: rgb(0, 121, 174);
    background: linear-gradient(90deg, rgba(0, 121, 174, 1) 0%, rgba(0, 201, 255, 1) 100%);
    position: relative;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0 60px;
    min-height: 150px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.fileHighlightCard:after {
    content: '';
    position: absolute;
    bottom: -18%;
    left: 42%;
    right: 0;
    background: url(../img/tickDes1.svg)no-repeat;
    width: 100%;
    height: 560px;
    z-index: -1;
    opacity: 0.55;
}

.fileHighlightCard span {
    display: block;
}

.fileHighlightCard .cardTitle {
    color: #fff;
    font-size: 2.15rem;
    line-height: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/*----*/
/* Blogs */
.blogCard {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 .275rem .75rem -.0625rem #0b0f190f, 0 .125rem .4rem -.0625rem #0b0f1908 !important;
}

.blogCard a {
    text-decoration: none;
    color: #000;
}

.blogCard .blogImg {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 15rem;
    background-size: cover;
    position: relative !important;
}

.blogCard .blogInfo {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 15px;
}

.blogCard .blogInfo .date {
    background: #FFF1E9;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 0.95rem;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blogCard .blogInfo .more img {
    width: 36px;
}

.blogCard .blogCont .title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blogCard .blogCont p {
    font-size: 1.05rem;
    line-height: 1.55rem;
    margin-bottom: 0;
}

/*----*/
/*---Sidebar Styles---*/
.sidebar-blueCard {
    background: var(--simple-blue-color) !important;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    font-size: 14px;
    border: 8px solid rgb(255 255 255 / 15%);
}

.sidebar-blueCard .heading {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.15rem;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
    font-weight: 600;
}

.sidebar-blueCard .heading:after {
    background: var(--simple-orange-color) !important;
    width: 60px;
    height: 3px;
    z-index: 2;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.sidebar-blueCard .heading:before {
    content: '';
    background: hsl(0deg 0% 100% / 30%);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.sidebar-blueCard span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.sidebar-blueCard .small,
.sidebar-blueCard small {
    font-size: 65%;
    font-weight: 500;
}

.sidebar-blueCard .subHeading {
    color: #9bddfa;
    font-size: .85rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}

/*----*/
/* Help Videos */
.HelpVideosTab {
    width: 100%;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.HelpVideosTab .nav-link {
    color: #000;
    font-weight: 600;
}

.HelpVideosTab .nav-link.active {
    background: var(--simple-orange-color);
    color: #fff;
}

.HelpVideosTab .nav-link:focus-visible {
    outline: 0;
    box-shadow: unset;
}

/*----*/
.simpleThemorngCard {
    position: relative;
    padding: 2.5rem;
    border-radius: 25px;
    background: #f0fbff;
    background: linear-gradient(0deg, #f4fcff 10%, #eefaff 84%);
    z-index: 99;
}

/* ACA Tax Instructions */
.listCard {
    background: #fff;
    padding: 15px;
    border: 1px solid #d3d8dc;
    border-radius: 5px;
}

.listCard .listTitle {
    font-size: 1.65rem;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d8dc;
    width: 100%;
}

.listCard li a {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 600;
    padding: 5px 10px;
    border-bottom: 1px dashed #d3d8dc;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 65px;
}

.listCard li a i {
    color: var(--simple-blue-color);
    font-size: 1rem;
}

.listCard li a:hover {
    color: #fff;
    background: #0c7bab
}

.listCard li a:hover i {
    color: #fff;
}

.scroll-infoDetail {
    height: 100vh;
    margin-top: .5rem;
    overflow: auto;
}

.scroll-infoDetail .sectionTitle {
    width: 80%;
    position: relative;
}

.scroll-infoDetail .sectionTitle:after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: -10px;
    width: 75px;
    height: 4px;
    background-color: #e05200;
}

/*----*/
/* Testimonials */
.reviewCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fffaf0;
    padding: 20px 20px 20px 30px;
    border-radius: 10px;
}

.reviewCard .heading {
    font-size: 1.75rem;
    font-weight: 600;
}

.reviewCard .heading .star {
    color: var(--simple-light-orange-color);
    margin-top: 10px;
}

.reviewCard .ratingBox {
    background-color: var(--simple-orange-color);
    width: 120px;
    height: 120px;
    text-align: center;
    padding: 20px 0;
    border-radius: 8px;
}

.reviewCard .ratingBox .rating {
    color: #fff;
    font-weight: 600;
    font-size: 3.15rem;
    line-height: 3.15rem;
    margin-bottom: 0;
}

.reviewCard .ratingBox p {
    color: #fff;
    font-weight: 600;
    line-height: 1;
    font-size: 1.15rem;
}

.reviewsTable thead th {
    border-bottom: 8px solid #fff;
    font-weight: 600;
    color: #000;
    background: #d7f2ff;
    font-size: 1.15rem;
    line-height: 1.25;
    vertical-align: middle;
}

.reviewsTable td,
.reviewsTable th {
    padding: .75rem;
    border-top: 2px solid #fff;
    background: #eefbff;
    vertical-align: middle;
    font-weight: 500;
    color: #333;
    position: relative;
    border-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.15;
}

.reviewsTable .userComts {
    border-bottom: 16px solid #fff !important;
}

.reviewsTable .userComts p {
    margin-bottom: 0;
    font-weight: 400;
}

.reviewsTable .userInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviewsTable .userInfo .user .name {
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: .5rem;
}

.reviewsTable .userInfo .star {
    color: var(--simple-light-orange-color);
    white-space: nowrap;
    padding: 0 10px;
}

/*----*/
/***--New Pricing Card--***/
.newPricingCard {
    background: #fff;
    border: 2px solid #c0ced5;
    border-radius: 12px;
    height: 100%;
    padding: 30px;
    text-align: center;
    position: relative;
    margin: 0 10px;
}

.newPricingCard .mainTitle {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1;
    color: var(--simple-blue-color);
}

.newPricingCard .subTitle {
    font-weight: 600;
    color: var(--simple-lgray-color);
    line-height: 1.45;
}

.newPricingCard .priceCont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newPricingCard .priceCont .amount {
    font-weight: 800;
    font-size: 2.15rem;
    margin-bottom: 5px;
    line-height: 1;
}

.newPricingCard .priceCont .amount sup {
    font-size: 1.25rem;
    top: -.75em;
}

.newPricingCard .priceCont span {
    padding-left: 5px;
    color: var(--simple-lgray-color);
}

.newPricingCard .creditsItem {
    display: flex;
    width: 100%;
    align-items: center;
}

.newPricingCard .creditsItem .num {
    align-items: center;
    background-color: #f7f8f9;
    border-radius: 4px;
    color: #000000;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    height: 32px;
    justify-content: center;
    min-width: 90px;
    margin-right: 25px;
}

.newPricingCard .creditsItem .txt {
    border-bottom: 1px dashed #a4b5be;
    line-height: 1.25;
}

.newPricingCard .listItem ul {
    padding-inline-start: 20px;
    list-style: disc;
    text-align: left;
    line-height: 1.35;
}

.newPricingCard .listItem ul li {
    margin-bottom: 10px;
}

.recmdWrapper {
    position: relative !important;
}

.recmdCard {
    text-align: center;
    background: #bdebff;
    border: 1px solid #009bde;
    border-radius: 15px;
    padding: 5px;
    position: absolute;
    width: 94%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -34px;
    height: 109.25%;
}

.recmdCard .recmdTxt {
    display: block;
    line-height: 1.35;
    font-size: 1.25rem !important;
    margin-bottom: 10px;
    font-weight: 700;
    color: #003a52;
}

.recmdCard .recmdTxt span {
    display: block;
    line-height: 1.35;
    font-size: 0.9rem !important;
    font-weight: 500;
    color: #000;
}

.recmdCard .newPricingCard {
    border: 2px solid #009bde;
}

/* ACA Filing Deadlines */
.imgDesLft1 {
    position: relative;
}

.imgDesLft1 img {
    border-radius: 8px 50px 8px 8px;
    outline: 8px solid white;
    box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 25%);
    position: relative;
    z-index: 1;
}

.desBgLft {
    width: 75%;
    height: 47.5%;
    z-index: 1;
    bottom: -22px;
    left: -22px;
    border-radius: 12px 12px 15px 30px;
    --tw-bg-opacity: 1;
    background-color: #ff9751;
    position: absolute;
}

/*----*/
.benefitsCard {
    display: flex;
    flex-direction: column;
    border-radius: .75rem;
    background-color: #fff;
    padding: 2.15rem;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    height: 100%;
    margin: 0 0.5rem 0 0.5rem;
}

.benefitsCard:hover {
    box-shadow: 0px 0px 32px rgb(0 0 0 / 15%);
}

.benefitsCard img {
    background: var(--simple-blue-color);
    width: 5.75rem;
    padding: 1.15rem;
    border-radius: 0.85rem;
    margin-bottom: 1.15rem;
}

.benefitsCard .headTxt {
    font-size: 1.75rem;
    line-height: 1.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.benefitsCard .ContTxt {
    font-size: 1.15rem;
}

.lgtOrngCard img {
    background: var(--simple-light-orange-color) !important;
}

.orngCard img {
    background: var(--simple-orange-color) !important;
}

/*---//---*/
/* Terms */
.termsPolicy-infoList .mainHeading {
    font-size: 1.75rem;
    line-height: 2.10rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.termsPolicy-infoList .mainHeading:before {
    content: '';
    position: absolute;
    left: 2px;
    bottom: -10px;
    width: 75px;
    height: 4px;
    background-color: var(--simple-blue-color) !important;
}

.termsPolicy-infoList .mainHeading:after {
    content: '';
    position: absolute;
    left: 80px;
    bottom: -10px;
    width: 25px;
    height: 4px;
    background-color: var(--simple-orange-color) !important;
}

.termsPolicy-infoList .sectionContent p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.termsPolicy-infoList ul {
    font-size: 1.1rem;
    line-height: 1.5;
    list-style: disc;
    margin-left: 20px;
}

.termsPolicy-infoList ul li {
    margin-bottom: 10px;
}

/*---//---*/
/*================================================
 //--//--> DEVICES -- Media Queries
==================================================*/
@media (min-width: 992px) {

    .navbar-expand-lg .navbar-toggler,
    .close-toggler {
        display: none;
    }

    .side-Listmenu.collapse:not(.show) {
        display: block;
    }

    .sideMenu-toggler,
    .close-toggler {
        display: none;
    }

    .footerSec .fotrRight {
        position: relative;
        z-index: 1;
        padding-left: 30px;
    }

    .footerSec .fotrRight::before {
        position: absolute;
        left: 0;
        top: -60px;
        height: 200%;
        width: 300%;
        background: rgb(255 255 255 / 50%);
        content: "";
        z-index: -1;
    }

    .footerSec .fotrRight::after {
        position: absolute;
        left: 0;
        top: -60px;
        content: "";
        height: 200%;
        width: 2px;
        border-left: 1px solid #dddddd;
        z-index: -1;
        border-radius: 30px;
    }

    .listCard.navbar-expand-lg {
        display: block;
    }

    .menu-hdr .dropdown-menu.minWd350 {
        min-width: 350px !important;
    }

    .menu-hdr .dropdown-menu.minWd400 {
        min-width: 400px !important;
    }

    .listCard.navbar-expand-lg {
        display: block;
    }
}

@media (max-width: 991.99px) {
    .side-Listmenu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: #4b4b4b;
        visibility: hidden;
        background-color: #00000080;
        background-clip: padding-box;
        outline: 0;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        width: 100%;
        padding-left: 10%;
        border-radius: 0;
    }

    .side-Listmenu.show {
        visibility: visible;
        transform: none;
    }

    .side-Listmenu .card-header {
        border-radius: 0 !important;
    }

    .card-menu {
        overflow-y: scroll;
        height: 100vh;
        background: #fff;
        padding-bottom: 50px;
    }
}

/*================================================
//--//--> SMALL DEVICES (landscape phones, 576px and up)
==================================================*/
@media (min-width: 320px) and (max-width: 767.98px) {
    .bannerForm-img {
        display: none;
    }

    .supportInfo {
        text-align: left;
    }

    .btn {
        padding: 0.5rem 1.25rem;
    }

    .announcementInfo {
        position: unset;
    }

    .announcementInfo .alert {
        padding: 5px 0;
        line-height: 1.25rem;
        text-align: left;
        font-size: 1rem;
    }

    .announcementInfo .alert-dismissible .btn-close {
        position: absolute;
        top: 4px;
        right: -7px;
        z-index: 2;
        padding: 0.5rem;
        opacity: 1;
    }

    .theme-header {
        position: unset;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .menu-hdr {
        padding: 5px 0px;
    }

    .menu-hdr .nav-link {
        color: #000000;
        padding: 0.75rem 0 !important;
        font-size: 1.10rem;
    }

    .menu-hdr .navbar-brand img {
        height: 35px;
    }

    .menu-hdr .dropdown-mega .dropdown-menu::before,
    .menu-hdr .dropdown-menu::before {
        display: none;
    }

    .menu-hdr .nav-item.dropdown:hover .dropdown-menu,
    .menu-hdr .nav-item.dropdown.dropdown-mega:hover .dropdown-menu {
        display: none;
        -webkit-animation: unset;
        overflow: auto;
        height: 100vh;
    }

    .menu-hdr .dropdown-menu.show {
        display: block !important;
    }

    .menu-hdr .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: 98%;
        top: auto;
        left: 1%;
        position: relative;
    }

    .menu-hdr .nav-link.active,
    .menu-hdr .nav-link:hover {
        color: #000000;
        border-bottom: unset;
    }

    .mega-content {
        padding: 0 0.15rem;
    }

    .mega-content p {
        margin-bottom: 0px;
    }

    .mega-content .mc-title {
        margin-bottom: 15px;
    }

    .mega-content .mc-subtitle a {
        font-size: 1.0rem;
    }

    .mainContent {
        padding-top: 0px;
    }

    /*---Banner Section---*/
    #homeBanner {
        padding: 2rem 0 2rem;
    }

    #homeBanner .banner-content .headTitle {
        color: #ffffff;
        font-size: 2rem;
        line-height: 2.15rem;
    }

    #homeBanner .banner-content p {
        font-size: 1.10rem;
        line-height: 1.65rem;
        font-weight: 500;
        margin-bottom: 25px;
    }

    #homeBanner .banner-content ul li {
        position: relative;
        font-size: 1.05rem;
        line-height: 1.35rem;
        margin-bottom: 0.5rem;
    }

    #homeBanner .banner-content ul {
        padding-inline-start: 20px;
    }

    #homeBanner .banner-content ul li::after {
        height: 18px;
        width: 18px;
        margin-left: -22px;
    }

    .clientLogoSec .title {
        font-size: 1.15rem;
        line-height: 1.5rem;
        font-weight: 500;
        text-align: center;
        padding: 10px 0 10px 0px;
        border-right: none;
    }

    .sectionMarg {
        margin: 30px 0;
    }

    .sectionMarg {
        margin: 30px 0;
    }

    .sectionPadg {
        padding: 30px 0;
    }

    .sectionTitle {
        margin-bottom: 1.15rem;
    }

    .sectionTitle .infoCont {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5rem;
        width: 100% !important;
    }

    .sectionTitle .mainHeading {
        font-size: 1.55rem;
        margin-bottom: 0;
        line-height: 1.85rem;
    }

    .sectionContent p {
        font-size: 1.0rem;
        line-height: 1.5;
    }

    .secThumImg {
        position: relative;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        margin-bottom: 30px;
    }

    .secThumImg .secBtn {
        font-size: 1.25rem;
        line-height: 2.15rem;
        padding: 20px 25px;
    }

    .secThumImg .secBtn .crclIcon {
        background: #fff;
        color: var(--simple-blue-color) !important;
        padding: 8px 9px 8px;
        border-radius: 50%;
        display: inline-flex;
        width: 35px;
        height: 35px;
    }

    .footerSec {
        padding: 1.5rem 0;
    }

    .footerSec .ftrTitle {
        margin-bottom: 15px;
    }

    .footerSec .ftrList li {
        margin-bottom: 14px;
        line-height: 1.0rem;
    }

    .pgTitleBanner .infoList {
        font-size: 1.1rem;
        line-height: 1.65rem;
    }

    .pgTitleBanner {
        min-height: 160px;
    }

    .pgTitleBanner:after,
    .bgStyle2:after {
        display: none;
    }

    .registrationPageBG {
        background: #eff8fb;
        padding: 30px 0;
    }

    .registrationPageBG .formItem {
        padding: 0 0;
    }

    .registrationPageBG .formItem .sub-title {
        line-height: 1.5rem;
    }

    .efileServiceCard .headTxt.mh55 {
        min-height: unset;
    }

    .fileHighlightCard .cardTitle {
        color: #fff;
        font-size: 1.95rem;
        line-height: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .fileHighlightCard span {
        display: unset;
    }

    .fileHighlightCard:after {
        bottom: 0%;
        left: 5%;
    }

    .simpleThemblueCard,
    .simpleThemorngCard {
        padding: 1.5rem;
    }

    .recmdWrapper {
        position: relative !important;
        margin-top: 5rem;
    }

    .imgDesLft1 img {
        border-radius: 5px 40px 5px 5px;
        outline: 6px solid white;
        box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 25%);
        position: relative;
        z-index: 1;
    }

    .benefitsCard {
        border-radius: .5rem;
        padding: 1.5rem;
    }
}

/*================================================
//--//--> MEDIUM DEVICES (tablets, 768px and up)
==================================================*/
@media (min-width: 768px) and (max-width: 1023.98px) {
    .bannerForm-img {
        display: none;
    }

    .supportInfo {
        text-align: left;
    }

    .theme-header {
        position: unset;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .menu-hdr {
        padding: 5px 0px;
    }

    .menu-hdr .nav-link {
        color: #000000;
        padding: 0.75rem 0 !important;
        font-size: 1.10rem;
    }

    .menu-hdr .navbar-brand img {
        height: 35px;
    }

    .menu-hdr .dropdown-mega .dropdown-menu::before,
    .menu-hdr .dropdown-menu::before {
        display: none;
    }

    .menu-hdr .nav-item.dropdown:hover .dropdown-menu,
    .menu-hdr .nav-item.dropdown.dropdown-mega:hover .dropdown-menu {
        display: none;
        -webkit-animation: unset;
        overflow: auto;
        height: 100vh;
    }

    .menu-hdr .dropdown-menu.show {
        display: block !important;
    }

    .menu-hdr .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: 98%;
        top: auto;
        left: 1%;
        position: relative;
    }

    .menu-hdr .nav-link.active,
    .menu-hdr .nav-link:hover {
        color: #000000;
        border-bottom: unset;
    }

    .mega-content {
        padding: 0 0.15rem;
    }

    .mega-content p {
        margin-bottom: 0px;
    }

    .mega-content .mc-title {
        margin-bottom: 15px;
    }

    .mega-content .mc-subtitle a {
        font-size: 1.0rem;
    }

    .mainContent {
        padding-top: 0px;
    }

    /*---Banner Section---*/
    #homeBanner {
        padding: 2rem 0 2rem;
    }

    #homeBanner .banner-content .headTitle {
        color: #ffffff;
        font-size: 2rem;
    }

    #homeBanner .banner-content ul li {
        position: relative;
        font-size: 1.05rem;
        line-height: 1.35rem;
        margin-bottom: 0.5rem;
    }

    #homeBanner .banner-content ul {
        padding-inline-start: 20px;
    }

    #homeBanner .banner-content ul li::after {
        height: 18px;
        width: 18px;
        margin-left: -22px;
    }

    .registrationPageBG {
        background: #eff8fb;
        padding: 30px 0;
    }

    .registrationPageBG .formItem {
        padding: 0 0;
    }

    .registrationPageBG .formItem .sub-title {
        line-height: 1.65rem;
    }
}

/*================================================
//--//--> MEDIUM DEVICES (tablets, 768px and up)
==================================================*/
@media (min-width: 1024px) and (max-width: 1280px) {
    .btn {
        padding: 0.35rem 1.15rem;
        border-radius: 8px;
        --bs-btn-line-height: unset;
        font-size: 1.10rem;
    }

    .menu-hdr .navbar-brand img {
        height: 38px;
    }

    .menu-hdr .nav-link {
        color: #000000;
        padding: 1.05rem 0.5rem !important;
        font-size: 1.0rem;
        border-bottom: 3px solid transparent;
    }

    .mainContent {
        padding-top: 64px;
    }

    #homeBanner .banner-content .headTitle {
        color: #ffffff;
        font-size: 2.5rem;
    }

    #homeBanner .banner-content ul li {
        position: relative;
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin-bottom: 0.5rem;
    }
}

/* Icons Style */
.iconWrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background-color: var(--simple-dark-blue-color);
    border: 1px solid rgba(255, 122, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconWrap img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* Table UI */
.fetrCompar-tbl thead tr th {
    font-size: 1.25rem;
    padding: 1.05rem 1.05rem;
    font-weight: 600;
    background: #eaeff5;
    vertical-align: middle;
}

.fetrCompar-tbl thead tr th.popular {
    border-left: 2px solid #13b782;
    border-right: 2px solid #13b782;
    background: #13b782;
    color: #fff;
}

.fetrCompar-tbl tbody tr td {
    font-size: 1.1rem;
    padding: 1.45rem 1.15rem;
    vertical-align: middle;
}

.fetrCompar-tbl tbody tr td i {
    font-size: 0.875rem;
    vertical-align: middle;
    margin-right: 8px;
}

.fetrCompar-tbl tbody tr td small {
    color: var(--simple-lgray-color);
    font-weight: normal;
}

.fetrCompar-tbl tbody tr td.popular {
    border-left: 1px solid #13b782;
    border-right: 1px solid #13b782;
}

.fetrCompar-tbl .table-striped>tbody>tr:nth-of-type(odd)>*.popular {
    --bs-table-bg-type: rgb(243 251 240);
}

.fetrCompar-tbl tbody tr:last-child td.popular {
    border-bottom: 1px solid #13b782;
}

.fetrCompar-tbl thead tr th:first-child {
    border-radius: 15px 0 0 0;
}

.fetrCompar-tbl thead tr th:last-child {
    border-radius: 0 15px 0 0;
}

.fetrCompar-tbl tbody tr:last-child td:first-child {
    border-radius: 0 0 0 15px;
}

.fetrCompar-tbl tbody tr:last-child td:last-child {
    border-radius: 0 0 15px 0;
}

.fetrCompar-tbl .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(251 252 253);
}

.fetrCompar-tbl thead tr th.popular {
    border-left: 2px solid var(--simple-orange-color);
    border-right: 2px solid var(--simple-orange-color);
    background: var(--simple-orange-color);
    color: #fff;
}

.fetrCompar-tbl tbody tr td.popular.Orng {
    border-left: 1px solid var(--simple-orange-color);
    border-right: 1px solid var(--simple-orange-color);
    font-size: 1.45rem;
    font-weight: 700;
}

.fetrCompar-tbl .table-striped>tbody>tr:nth-of-type(odd)>*.popular.Orng {
    --bs-table-bg-type: rgb(255 242 235);
}

.fetrCompar-tbl tbody tr:last-child td.popular.Orng {
    border-bottom: 1px solid var(--simple-orange-color);
}

.step-circle {
    width: 56px;
    height: 56px;
    background-color: var(--simple-dark-blue-color);
}

/* Nested list */
.nestedList {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
}

/* Remove parent tick icon */
.pointListSec.tick2 .nestedList li::after {
    content: none !important;
}

/* Nested list item styling */
.nestedList li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

/* Circle bullet for nested list */
.nestedList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--simple-dark-blue-color);
}

.orng-icon-card .iconWrap {
    background-color: var(--simple-orange-color);
    border-radius: 50%;
}

.blue-icon i {
    color: var(--simple-blue-color);
}

/* 20/05/2026 */
/* ======= IRS Form 5500 Section ======= */
.irs5500Card {
    position: relative;
    border-radius: 36px;
    padding: 70px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
}

.irs5500Points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 35px;
}

.pointItem {
    display: flex;
    align-items: center;
    gap: 14px;
    width: calc(50% - 10px);
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.pointItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pointItem .icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f7bab, #046c9b);
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

.pointItem img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.pointItem span:last-child {
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.bottomText {
    margin-top: 35px;
    padding: 22px 25px;
    border-left: 5px solid #de5526;
    background: #fff8ef;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5rem;
}

.badgeText {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {

    .irs5500Card {
        padding: 50px;
    }

    .irs5500Wrap .mainHeading {
        font-size: 42px;
    }
}

@media (max-width: 991px) {

    .irs5500Visual {
        min-height: auto;
        padding-top: 70px;
    }

    .irs5500Card {
        padding: 40px 30px;
    }

    .pointItem {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .irs5500Wrap .mainHeading {
        font-size: 34px;
    }
}

.irs5500Wrap .irs5500Card img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}

/* ======= Why Accurate Form 5500 Filing Matters ======= */
.highlightBox {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.highlightBox .icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #de5526, #e85f32);
    color: #fff;
    font-size: 32px;
    flex-shrink: 0;
}

.highlightBox .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.highlightBox h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlightBox p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.benefitCard {
    position: relative;
    padding: 35px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefitCard:hover {
    transform: translateY(-10px);
    background: #de5526;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.benefitCard:hover::before {
    transform: scaleX(1);
}

.benefitCard:hover .cardIcon {
    background: rgba(255, 255, 255, 0.14);
}

.activeCard {
    background: linear-gradient(135deg, #0f7bab 0%, #0a6e9a 100%);
    border: none;
}

.numberTag {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
}

.cardIcon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
}

.cardIcon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.benefitCard h3 {
    font-size: 24px;
    margin: 0;
    color: #fff;
}

.fullCard {
    grid-column: span 2;
    min-height: 200px;
}

@media (max-width: 1199px) {

    .filingMattersWrap {
        padding: 60px;
    }

    .filingContent .mainHeading {
        font-size: 42px;
    }
}

@media (max-width: 991px) {

    .filingMattersWrap {
        padding: 50px 30px;
    }

    .filingContent {
        margin-bottom: 50px;
    }

    .benefitsGrid {
        grid-template-columns: 1fr;
    }

    .fullCard {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {

    .filingContent .mainHeading {
        font-size: 34px;
    }

    .highlightBox {
        padding: 24px 20px;
        flex-direction: column;
    }

    .highlightBox .icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .benefitCard {
        min-height: auto;
        padding: 30px 22px;
        border-radius: 24px;
    }

    .benefitCard h3 {
        font-size: 20px;
        max-width: 100%;
    }

    .numberTag {
        font-size: 46px;
    }
}

/* ======= Our Process Section ======= */
.processCard {
    position: relative;
    height: 100%;
    padding: 34px 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 60px rgba(13, 110, 253, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.45s ease;
    z-index: 2;
}

.processCard:hover {
    transform: translateY(-12px);
    box-shadow:
        0 35px 90px rgba(13, 110, 253, 0.14),
        0 15px 40px rgba(0, 0, 0, 0.06);
}

.processCard::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.05);
    top: -60px;
    right: -60px;
}

.stepNumber {
    position: absolute;
    top: 26px;
    right: 24px;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: rgba(13, 110, 253, 0.06);
}

.processIcon {
    width: 78px;
    height: 78px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #de5526;
    color: #fff;
    font-size: 34px;
    margin-bottom: 30px;
    box-shadow: 0 18px 45px rgba(13, 110, 253, 0.20);
    position: relative;
    z-index: 2;
}

.processIcon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.processContent {
    position: relative;
    z-index: 2;
}

.processContent h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 18px;
}

.processContent p {
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}

@media (max-width: 1199px) {

    .processFlowSec .mainHeading {
        font-size: 52px;
    }

    .processCard {
        min-height: 360px;
    }
}

@media (max-width: 767px) {

    .processFlowSec .mainHeading {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .processCard {
        padding: 28px 22px;
        border-radius: 28px;
        min-height: auto;
    }

    .processIcon {
        width: 76px;
        height: 76px;
        font-size: 30px;
        border-radius: 24px;
        margin-bottom: 24px;
    }

    .processContent h3 {
        font-size: 22px;
    }

    .processContent p {
        font-size: 15px;
        line-height: 1.8;
    }

    .stepNumber {
        font-size: 56px;
    }
}

/* Login page */
.regLogin-pg {
    background: #fff;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    width: 100% !important;
}

.left-pane {
    background: #dbf4ff;
    min-height: 100vh;
    height: 100%;
    padding: 2rem 8rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
    text-align: center;
}

.left-pane .secImage {
    width: 70%;
    margin: 0 auto 30px;
}

.left-pane h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.left-pane h5 {
    color: #003a52;
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.55;
    margin-bottom: 26px;
}

.right-pane {
    background: #ffffff;
    min-height: 100vh;
    height: 100%;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

.right-pane .logo {
    width: 200px;
    margin-bottom: 20px;
}

.right-pane h2 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.right-pane p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 0;
}

.regLogin-pg .theme-form .form-label {
    margin-bottom: .15rem !important;
}

.valid-feedback {
    color: #28a745;
}

.theme-form .form-control,
.theme-form .form-select {
    box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
    min-height: 48px;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    font-weight: 500;
    opacity: 1;
    border-radius: 0.375rem;
}

.theme-form .form-label {
    display: inline-block;
    margin-bottom: .5rem;
    text-transform: initial;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-control,
.form-select {
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
    height: 48px;
}

@media (min-width: 300px) and (max-width: 767.98px) {
    .left-pane {
        display: none;
    }
}

@media (min-width: 320px) and (max-width: 767.98px) {
    .right-pane {
        padding: 1rem;
    }
}

@media (min-width: 300px) and (max-width: 767.98px) {
    .right-pane .theme-form {
        width: 100% !important;
    }
}

.who-we-serve .iconWrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #0f7bab, #046c9b); */
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

.who-we-serve .iconWrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* 30/05/2026 */
.servicesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;

    @media (max-width: 991px) {
        grid-template-columns: 1fr;
    }
}

.serviceCardModern {
    position: relative;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fafcff 100%);
    border: 1px solid #d9e8ff;
    border-radius: 24px;
    padding: 35px;
    transition: all .35s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;

    &:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(13, 110, 253, 0.12);
    }
}

.serviceBadge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--simple-dark-blue-color);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: 100px;
    text-align: center;
}

.serviceCardModern h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.serviceCardModern p {
    margin: 0;
    font-size: 1.25rem;
}

.serviceCardLink {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--simple-orange-color);
    text-decoration: none;
    transition: all .3s ease;
    font-size: 20px;

    i {
        font-size: 13px;
        transition: transform .3s ease;
    }

    &:hover {
        color: #c5481d;

        i {
            transform: translateX(5px);
        }
    }
}

.pageBanner {
    background-color: #014f70 !important;
    background-image: url(../img/indexBaner-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.pageBanner .breadcrumb {
    font-size: 1.15rem;
    color: #b5b7bd;
    font-weight: 600;
    margin-bottom: 0px;
}

.pageBanner .breadcrumb .breadcrumb-item a {
    color: #0eabef;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #b5b7bd;
}

.infoMsgCard {
    background: #fff;
    display: flex;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    margin-right: 15px;
}

.infoMsgCard .image {
    margin-right: 25px;
    width: 32%;
}

.infoMsgCard .content {
    width: 68%;
}

.infoMsgCard .content .title {
    font-size: 1.45rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--simple-blue-color);
}

.infoMsgCard .simpleList ul {
    padding-inline-start: 20px;
    list-style: disc;
}

.infoMsgCard .simpleList ul li {
    position: relative;
    font-size: 1.15rem;
    line-height: 1.5rem;
    margin-bottom: 0.85rem;
}

.taxInfo-wrap1 .tiw-icon img {
    width: 56px;
    height: 56px;
}


/* Contact Success Modal */
.alertInfo-Modal {
    max-width: 520px;
}

.alertInfo-Modal .modal-content {
    position: relative;
    border: 0;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
    padding: 18px;
}

/* dotted border around full content */
.alertInfo-Modal .modal-content::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border: 3px dotted #dce8f2;
    pointer-events: none;
    z-index: 1;
}

.alertInfo-Modal .modal-body,
.alertInfo-Modal .modal-footer {
    position: relative;
    z-index: 2;
}

.alertInfo-Modal .modal-body {
    padding: 20px 28px 12px;
    text-align: center;
}

.alertInfo-Modal .modal-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 8px;
}

.alertInfo-Modal .modal-text h4 {
    font-size: 26px;
    font-weight: 700;
    color: #11884b;
    margin-bottom: 14px;
}

.alertInfo-Modal .modal-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    max-width: 390px;
    margin: 0 auto;
}

.alertInfo-Modal .modal-footer {
    border-top: 1px solid #e5e5e5;
    padding: 16px 0 14px;
    justify-content: center;
}

.alertInfo-Modal .btn-success {
    background-color: #0f9353;
    border-color: #0f9353;
    min-width: 72px;
    height: 44px;
    border-radius: 8px;
    font-weight: 700;
}

.alertInfo-Modal .btn-success:hover {
    background-color: #0b7d45;
    border-color: #0b7d45;
}

/*09/06/2026 contact form validation*/
