@import url('https://fonts.cdnfonts.com/css/source-sans-pro');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #333333;
}

:root {
    --open-sens: "Open Sans", sans-serif;
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #0078d7;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.action-btn {
    border: none;
    padding: 11px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primery-color);
    font-weight: 700;
    color: var(--primery-white);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.action-btn::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: var(--primery-black);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.action-btn::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: var(--primery-black);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.action-btn:hover::before {
    width: 60%;
}

.action-btn:hover::after {
    width: 60%;
}

/*===============
 GOBAL CSS END  
 ============== */

/*========= header top style start hare ========= */

.header-top {
    padding-block: 15px;
    background: #1B75BC;
    color: #fff;
}

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

.sales-number span {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--open-sens);
}

.sales-number span a:hover {
    color: #F47521;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-right button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
}

.header-top-right a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.header-top-right a::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 110%;
    transition: 0.3s;
}

.header-top-right a:hover::before {
    width: 100%;
}

/*============ header top end hare ======== */

/*============= header area style start hare ========== */

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 25px;
}

.site-logo a {
    max-width: 350px;
    display: flex;
}

.desktop-navbar ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-navbar ul li a,
.nav-item .nav-link {
    display: block;
    font-size: 20px;
    color: #1B75BC;
    position: relative;
}

.desktop-navbar ul li a::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #1B75BC;
    position: absolute;
    left: 0;
    top: 110%;
    transition: 0.3s;
}

.desktop-navbar ul li a:hover::before {
    width: 100%;
}

.menu-togger button {
    background: transparent;
    border: none;
    width: 31.521px;
    height: 31.521px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-title img {
    max-width: 200px;
}

.login-button button {
    background: transparent;
    border: none;
    width: 31.521px;
    height: 31.521px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*============ header area style end hare =========== */

/*========== hero area style start hare ============= */

.hero-area {
    background: linear-gradient(96deg, #F2F7FB 37.03%, #94CCF1 145.62%);
    position: relative;
}

.hero-wrapper {
    display: flex;
    padding: 101.5px 0;
    align-items: center;
    gap: 10px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 722px;
    padding-right: 117px;
}

.hero-left .hero-right-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-right-content h4 {
    color: #1B75BC;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    max-width: 539px;
}

.hero-right-content p {
    color: #48484A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-right-content ul li {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.hero-right-content ul li span {
    color: #48484A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

strong {
    font-weight: 700;
}

.hero-image {
    flex: 1;
    max-width: 534px;
    padding-left: 40px;
    margin-left: auto;
}

.container-card {
    padding-left: calc((100% - 1140px) / 2);
}

/*=========== hero area end hare ======= */

/*====== features area style start hare ===== */

.fetures-area {
    padding-top: 90px;
    padding-bottom: 140px;
}

.fetaures-wrappper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.featuers-block {
    display: flex;
    gap: 78px;
    align-items: center;
}

.fatures-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fatures-content h4 {
    color: #48484A;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.fatures-content ul {
    list-style: disc;
    padding-left: 20px;
}

.fatures-content ul li {
    color: #48484A;
    font-family: var(--open-sens);
    font-size: 16px;
    font-style: normal;
    line-height: 1.62;
    letter-spacing: -0.32px;
}

.fatures-content ul li a {
    color: #1B75BC;
    text-decoration: underline;
}

.features-bottom {
    padding-top: 40px;
}

.features-bottom p {
    color: #000;
    font-family: var(--open-sens);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.features-bottom p a {
    color: #0078d7;
    text-decoration: underline;
}



.how-it-woks-wrap{
    padding-block: 100px;
    background: #F2F7FB;
 }

 .section-heading {
    color: var(--drake-gray, #48484A);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 48px;
    font-family: var(--open-sens);
 }

 .ht-left iframe {
    width: 100%;
    height: 100%;
 }

 .ht-right ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
 }

 .ht-right ul li h4 {
    color: #48484A;
    font-family: var(--open-sens);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 130% */
    padding-bottom: 6px;
 }

  .ht-right ul li p {
    color: #48484A;
    font-family: var(--open-sens);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }

.section-padding {
    padding-block: 140px;
}


.pricing-grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.pricing-grid > * {
    flex: 1;
    min-height: 291px;
}

.single-pricing-card {
    display: flex;
    padding: 18.631px 20px 46.708px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 13px;
    border: 2px solid #A2A0B0;
    background: #FFF;
    font-family: var(--open-sens);
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.single-pricing-card h4 {
    color: #48484A;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.single-pricing-card h2 {
    color: #1B75BC;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-block: 8px;
}

.single-pricing-card p {
    color: #48484A;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pricing-buttons ul {
    display: flex;
    gap: 30px;
    max-width: 480px;
    margin-inline: auto;
    margin-top: 46px;
}
  
.pricing-buttons ul li a {
    display: flex;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.1px;
    font-family: var(--open-sens);
    background-color: #1b75bc;
    border: 2px solid  transparent;
    border-radius: 35px;
}

.pricing-buttons ul li:last-child a {
    background-color: transparent;
    border-radius: 100px;
    border: 2px solid  #1B75BC;
    color: #1B75BC;
}

.pricing-buttons ul li a:hover {
    transform: translateY(-3px);
}

.pricing-buttons ul li p {
    font-family: var(--open-sens);
    color: #48484A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; 
    padding-top: 10px;
}

.gap-28 {
    row-gap: 28px;
}

.faqHeader {
    font-size: 27px;
    margin: 20px;
}

.panel-heading [data-toggle]:not(.collapsed):after {
    content: "";
    float: right;
    font-size: 18px;
    line-height: 22px;
    background: url("/localassets/images/products/drake-tax/expanded.jpg") 0 0/contain;
    width: 15px;
    height: 10px;
}

.panel-heading [data-toggle].collapsed:after {
    content: "";
    float: right;
    font-size: 18px;
    line-height: 22px;
    background: url("/localassets/images/products/drake-tax/collapsed.jpg") 0 0/contain;
    width: 15px;
    height: 10px;
}


.faq-area {
    background-color: #f4f8fc;
}

.faq-accordion {
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  max-width: 800px;
  margin: auto;
  border-radius: 6px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #48484A;
  transition: background 0.3s;
  font-family: var(--open-sens);
}

    .faq-header i {
        /*transition: transform 0.3s ease;*/
        font-size: 16px;
        color: #444;
        --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
    }

    .faq-header i img {
       width:25%;
       text-align:right;
    }


    .faq-header.active i {
        transform: rotate(180deg);
        width: 17%;
        text-align: right;
    }

faq-header.active i img {
    width: 25%;
    text-align: right;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  color: #48484A;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-weight: 400;
}

.faq-content.show {
  max-height: 300px;
  padding: 15px 20px 25px 20px;
}

#faq {
    padding-top: 75px;
    padding-bottom: 40px;
    background: rgba(27,117,188,.05);
    margin-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

#accordion .panel {
    background: 0 0;
    box-shadow: none;
    border-top: 1px solid #d2d2d3;
    padding-top: 0;
    padding-bottom: 12px;
    padding-left: 15px;
}

#accordion {
    width: 754px;
    margin: 0 auto;
    padding-top: 28px;
}

#faq h1 {
    font-size: 32px;
    color: #48484a;
    font-weight: 700;
}

#accordion .accordion-toggle {
    font-size: 18px;
    font-weight: 600;
    color: #48484a;
}

#accordion .panel-body,
#accordion .panel-body p {
    font-size: 14px;
    font-weight: 400;
    border-top: 0;
}

#accordion .panel-heading {
    padding-bottom: 8px;
    padding-top: 18px;
    padding-right: 0;
}

#accordion .panel.last {
    border-bottom: 1px solid #d2d2d3;
    margin-bottom: 22px;
}






















