/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .title {
    font-size: 24px;
  }
  .top_sec {
    padding-top: 48px;
  }
  .acc_section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
  }
  .acc_navigation {
    position: sticky;
    top: 48px;
    z-index: 99999;
  }
  .acc_navigation .acc_navigation_child {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 5%;
    gap: 32px;
  }
  .acc_navigation .acc_navigation_child .links {
    color: rgba(40, 115, 119, 0.5);
    font-size: 10px;
    font-weight: 600;
    position: relative;
  }
  .acc_navigation .acc_navigation_child .links::before {
    content: "";
    z-index: 9;
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #287377;
    bottom: 0;
    transform: translateY(12px);
    border-radius: 1px;
    transition: all 0.5s linear;
    transform-origin: center;
  }
  .acc_navigation .acc_navigation_child .active {
    color: #287377;
  }
  .acc_navigation .acc_navigation_child .active::before {
    width: 100%;
  }
  .acc_hero {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 64px 5%;
  }
  .acc_hero .div_a {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .acc_hero .div_a .trust_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #68644B;
    font-size: 12px;
  }
  .acc_hero .div_a .title {
    color: #287377;
    font-weight: 700;
    margin-top: 8px;
  }
  .acc_hero .div_a .acc_dsc {
    font-size: 12px;
    font-weight: 500;
  }
  .acc_hero .div_a .req_btn {
    width: -moz-max-content;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.25);
    margin-top: 32px;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .acc_hero .div_a .req_btn .req_btn_child {
    height: 40px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .acc_hero .div_a .req_btn .req_btn_child:hover {
    transform: translateY(-2px);
  }
  .acc_hero .div_b {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .acc_hero .div_b .img_1 {
    width: 70%;
  }
  .headings {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .headings .line {
    height: 56px;
    width: 6px;
    border-radius: 3px;
    background-color: #287377;
  }
  .headings .h_txt {
    font-size: 24px;
    font-weight: 600;
    color: #287377;
    line-height: 100%;
  }
  .book_cont {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 64px 5%;
  }
  .book_cont .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
  }
  .book_cont .wrapper .wrap {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
    align-items: center;
  }
  .book_cont .wrapper .wrap .w_txt {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }
  .tax_cont {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 5%;
  }
  .tax_cont .we_can {
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
  }
  .tax_cont .card_wraper {
    margin-top: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
  }
  .tax_cont .card_wraper .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    border-radius: 16px;
    gap: 16px;
  }
  .tax_cont .card_wraper .card .card_txt {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .payroll_cont {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
  }
  .payroll_cont .div_a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 5%;
  }
  .payroll_cont .div_a .pay_img {
    width: 80%;
  }
  .payroll_cont .div_b {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 5%;
  }
  .payroll_cont .div_b .payspan {
    font-size: 1rem;
  }
  .payroll_cont .div_b .span_check {
    display: flex;
    font-size: 0.8rem;
    flex-direction: row;
    gap: 16px;
  }
  .others_cont {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 5%;
    flex-direction: column;
  }
  .others_cont .spn1 {
    font-size: 1rem;
    margin-top: 32px;
  }
  .others_cont .svg_wrap {
    margin-top: 48px;
  }
  .others_cont .spn2 {
    font-size: 0.8rem;
    margin-top: 16px;
    width: 50%;
    text-align: center;
  }
  .d {
    line-height: 100%;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .title {
    font-size: 24px;
  }
  .top_sec {
    padding-top: 48px;
  }
  .acc_section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
  }
  .acc_navigation {
    position: sticky;
    top: 48px;
    z-index: 99999;
  }
  .acc_navigation .acc_navigation_child {
    width: 100%;
    max-width: 767px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 5%;
    gap: 32px;
  }
  .acc_navigation .acc_navigation_child .links {
    color: rgba(40, 115, 119, 0.5);
    font-size: 12px;
    font-weight: 600;
    position: relative;
  }
  .acc_navigation .acc_navigation_child .links::before {
    content: "";
    z-index: 9;
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #287377;
    bottom: 0;
    transform: translateY(12px);
    border-radius: 1px;
    transition: all 0.5s linear;
    transform-origin: center;
  }
  .acc_navigation .acc_navigation_child .active {
    color: #287377;
  }
  .acc_navigation .acc_navigation_child .active::before {
    width: 100%;
  }
  .acc_hero {
    width: 100%;
    max-width: 767px;
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 64px 5%;
  }
  .acc_hero .div_a {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .acc_hero .div_a .trust_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #68644B;
    font-size: 0.8rem;
  }
  .acc_hero .div_a .title {
    color: #287377;
    font-weight: 700;
    margin-top: 8px;
  }
  .acc_hero .div_a .acc_dsc {
    font-size: 12px;
    font-weight: 500;
  }
  .acc_hero .div_a .req_btn {
    width: -moz-max-content;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.25);
    margin-top: 32px;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .acc_hero .div_a .req_btn .req_btn_child {
    height: 40px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .acc_hero .div_a .req_btn .req_btn_child:hover {
    transform: translateY(-2px);
  }
  .acc_hero .div_b {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .acc_hero .div_b .img_1 {
    width: 70%;
  }
  .headings {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .headings .line {
    height: 56px;
    width: 6px;
    border-radius: 3px;
    background-color: #287377;
  }
  .headings .h_txt {
    font-size: 24px;
    font-weight: 600;
    color: #287377;
    line-height: 100%;
  }
  .book_cont {
    width: 100%;
    max-width: 767px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 64px 5%;
  }
  .book_cont .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
  }
  .book_cont .wrapper .wrap {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
    align-items: center;
  }
  .book_cont .wrapper .wrap .w_txt {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }
  .tax_cont {
    width: 100%;
    max-width: 767px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 5%;
  }
  .tax_cont .we_can {
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
  }
  .tax_cont .card_wraper {
    margin-top: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
  }
  .tax_cont .card_wraper .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    border-radius: 16px;
    gap: 16px;
  }
  .tax_cont .card_wraper .card .card_txt {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .payroll_cont {
    width: 100%;
    max-width: 767px;
    display: flex;
    flex-direction: column;
  }
  .payroll_cont .div_a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 5%;
  }
  .payroll_cont .div_a .pay_img {
    width: 80%;
  }
  .payroll_cont .div_b {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 5%;
  }
  .payroll_cont .div_b .payspan {
    font-size: 1rem;
  }
  .payroll_cont .div_b .span_check {
    display: flex;
    font-size: 0.8rem;
    flex-direction: row;
    gap: 16px;
  }
  .others_cont {
    width: 100%;
    max-width: 767px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 5%;
    flex-direction: column;
  }
  .others_cont .spn1 {
    font-size: 1rem;
    margin-top: 32px;
  }
  .others_cont .svg_wrap {
    margin-top: 48px;
  }
  .others_cont .spn2 {
    font-size: 0.8rem;
    margin-top: 16px;
    width: 50%;
    text-align: center;
  }
  .d {
    line-height: 100%;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title {
    font-size: 32px;
  }
  .top_sec {
    padding-top: 64px;
  }
  .acc_section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
  }
  .acc_navigation {
    position: sticky;
    top: 64px;
    z-index: 99999;
  }
  .acc_navigation .acc_navigation_child {
    width: 100%;
    max-width: 991px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10%;
    gap: 32px;
  }
  .acc_navigation .acc_navigation_child .links {
    color: rgba(40, 115, 119, 0.5);
    font-size: 16px;
    font-weight: 600;
    position: relative;
  }
  .acc_navigation .acc_navigation_child .links::before {
    content: "";
    z-index: 9;
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #287377;
    bottom: 0;
    transform: translateY(12px);
    border-radius: 2px;
    transition: all 0.5s linear;
    transform-origin: center;
  }
  .acc_navigation .acc_navigation_child .active {
    color: #287377;
  }
  .acc_navigation .acc_navigation_child .active::before {
    width: 100%;
  }
  .acc_hero {
    width: 100%;
    max-width: 991px;
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 64px 10%;
  }
  .acc_hero .div_a {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .acc_hero .div_a .trust_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #68644B;
    font-size: 0.8rem;
  }
  .acc_hero .div_a .title {
    color: #287377;
    font-weight: 700;
    margin-top: 8px;
  }
  .acc_hero .div_a .acc_dsc {
    font-size: 12px;
    font-weight: 500;
  }
  .acc_hero .div_a .req_btn {
    width: -moz-max-content;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.25);
    margin-top: 32px;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .acc_hero .div_a .req_btn .req_btn_child {
    height: 40px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .acc_hero .div_a .req_btn .req_btn_child:hover {
    transform: translateY(-2px);
  }
  .acc_hero .div_b {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .acc_hero .div_b .img_1 {
    width: 70%;
  }
  .headings {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .headings .line {
    height: 56px;
    width: 6px;
    border-radius: 3px;
    background-color: #287377;
  }
  .headings .h_txt {
    font-size: 32px;
    font-weight: 600;
    color: #287377;
    line-height: 100%;
  }
  .book_cont {
    width: 100%;
    max-width: 991px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 64px 10%;
  }
  .book_cont .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
  }
  .book_cont .wrapper .wrap {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
    align-items: center;
  }
  .book_cont .wrapper .wrap .w_txt {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }
  .tax_cont {
    width: 100%;
    max-width: 991px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 10%;
  }
  .tax_cont .we_can {
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
  }
  .tax_cont .card_wraper {
    margin-top: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
  }
  .tax_cont .card_wraper .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    border-radius: 16px;
    gap: 16px;
  }
  .tax_cont .card_wraper .card .card_txt {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .payroll_cont {
    width: 100%;
    max-width: 991px;
    display: flex;
    flex-direction: column;
  }
  .payroll_cont .div_a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 10%;
  }
  .payroll_cont .div_a .pay_img {
    width: 80%;
  }
  .payroll_cont .div_b {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 10%;
  }
  .payroll_cont .div_b .payspan {
    font-size: 1rem;
  }
  .payroll_cont .div_b .span_check {
    display: flex;
    font-size: 0.8rem;
    flex-direction: row;
    gap: 16px;
  }
  .others_cont {
    width: 100%;
    max-width: 991px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 10%;
    flex-direction: column;
  }
  .others_cont .spn1 {
    font-size: 1rem;
    margin-top: 32px;
  }
  .others_cont .svg_wrap {
    margin-top: 48px;
  }
  .others_cont .spn2 {
    font-size: 0.8rem;
    margin-top: 16px;
    width: 50%;
    text-align: center;
  }
  .d {
    line-height: 100%;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title {
    font-size: 40px;
  }
  .top_sec {
    padding-top: 64px;
  }
  .acc_section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
  }
  .acc_navigation {
    position: sticky;
    top: 0;
    z-index: 99999;
  }
  .acc_navigation .acc_navigation_child {
    width: 100%;
    max-width: 1199px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 10%;
    gap: 64px;
  }
  .acc_navigation .acc_navigation_child .links {
    color: rgba(40, 115, 119, 0.5);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
  }
  .acc_navigation .acc_navigation_child .links::before {
    content: "";
    z-index: 9;
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #287377;
    bottom: 0;
    transform: translateY(12px);
    border-radius: 2px;
    transition: all 0.5s linear;
    transform-origin: center;
  }
  .acc_navigation .acc_navigation_child .active {
    color: #287377;
  }
  .acc_navigation .acc_navigation_child .active::before {
    width: 100%;
  }
  .acc_hero {
    width: 100%;
    max-width: 1199px;
    display: flex;
    flex-direction: row;
    gap: 160px;
    padding: 80px 10%;
  }
  .acc_hero .div_a {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .acc_hero .div_a .trust_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #68644B;
    font-size: 0.8rem;
  }
  .acc_hero .div_a .title {
    color: #287377;
    font-weight: 700;
    margin-top: 8px;
  }
  .acc_hero .div_a .acc_dsc {
    font-size: 1rem;
    font-weight: 500;
  }
  .acc_hero .div_a .req_btn {
    width: -moz-max-content;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.25);
    margin-top: 32px;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .acc_hero .div_a .req_btn .req_btn_child {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .acc_hero .div_a .req_btn .req_btn_child:hover {
    transform: translateY(-2px);
  }
  .acc_hero .div_b {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .acc_hero .div_b .img_1 {
    width: 100%;
  }
  .headings {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .headings .line {
    height: 56px;
    width: 6px;
    border-radius: 3px;
    background-color: #287377;
  }
  .headings .h_txt {
    font-size: 40px;
    font-weight: 600;
    color: #287377;
    line-height: 100%;
  }
  .book_cont {
    width: 100%;
    max-width: 1199px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 80px 10%;
  }
  .book_cont .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
  }
  .book_cont .wrapper .wrap {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
    align-items: center;
  }
  .book_cont .wrapper .wrap .w_txt {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }
  .tax_cont {
    width: 100%;
    max-width: 1199px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 80px 10%;
  }
  .tax_cont .we_can {
    font-size: 1rem;
    line-height: 100%;
    font-weight: 500;
  }
  .tax_cont .card_wraper {
    margin-top: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
  }
  .tax_cont .card_wraper .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    border-radius: 16px;
    gap: 16px;
  }
  .tax_cont .card_wraper .card .card_txt {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .payroll_cont {
    width: 100%;
    max-width: 1199px;
    display: flex;
    flex-direction: row;
  }
  .payroll_cont .div_a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    padding-left: 10%;
  }
  .payroll_cont .div_a .pay_img {
    width: 80%;
  }
  .payroll_cont .div_b {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 80px;
    padding-right: 10%;
  }
  .payroll_cont .div_b .payspan {
    font-size: 1rem;
  }
  .payroll_cont .div_b .span_check {
    display: flex;
    font-size: 0.8rem;
    flex-direction: row;
    gap: 16px;
  }
  .others_cont {
    width: 100%;
    max-width: 1199px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    flex-direction: column;
  }
  .others_cont .spn1 {
    font-size: 1rem;
    margin-top: 32px;
  }
  .others_cont .svg_wrap {
    margin-top: 48px;
  }
  .others_cont .spn2 {
    font-size: 0.8rem;
    margin-top: 16px;
    width: 25%;
    text-align: center;
  }
  .d {
    line-height: 100%;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .title {
    font-size: 48px;
  }
  .top_sec {
    padding-top: 64px;
  }
  .acc_section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
  }
  .acc_navigation {
    position: sticky;
    top: 0;
    z-index: 99999;
  }
  .acc_navigation .acc_navigation_child {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 10%;
    gap: 64px;
  }
  .acc_navigation .acc_navigation_child .links {
    color: rgba(40, 115, 119, 0.5);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
  }
  .acc_navigation .acc_navigation_child .links::before {
    content: "";
    z-index: 9;
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #287377;
    bottom: 0;
    transform: translateY(12px);
    border-radius: 2px;
    transition: all 0.5s linear;
    transform-origin: center;
  }
  .acc_navigation .acc_navigation_child .active {
    color: #287377;
  }
  .acc_navigation .acc_navigation_child .active::before {
    width: 100%;
  }
  .acc_hero {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    gap: 160px;
    padding: 80px 10%;
  }
  .acc_hero .div_a {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .acc_hero .div_a .trust_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #68644B;
    font-size: 0.8rem;
  }
  .acc_hero .div_a .title {
    color: #287377;
    font-weight: 700;
    margin-top: 8px;
  }
  .acc_hero .div_a .acc_dsc {
    font-size: 1rem;
    font-weight: 500;
  }
  .acc_hero .div_a .req_btn {
    width: -moz-max-content;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.25);
    margin-top: 32px;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
  .acc_hero .div_a .req_btn .req_btn_child {
    height: 48px;
    background-color: #287377;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 32px;
    border-radius: 10px;
    transition: all 0.3s linear;
  }
  .acc_hero .div_a .req_btn .req_btn_child:hover {
    transform: translateY(-2px);
  }
  .acc_hero .div_b {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .acc_hero .div_b .img_1 {
    width: 100%;
  }
  .headings {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .headings .line {
    height: 56px;
    width: 6px;
    border-radius: 3px;
    background-color: #287377;
  }
  .headings .h_txt {
    font-size: 48px;
    font-weight: 600;
    color: #287377;
    line-height: 100%;
  }
  .book_cont {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 80px 10%;
  }
  .book_cont .wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
  }
  .book_cont .wrapper .wrap {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
    align-items: center;
  }
  .book_cont .wrapper .wrap .w_txt {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }
  .tax_cont {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 80px 10%;
  }
  .tax_cont .we_can {
    font-size: 1rem;
    line-height: 100%;
    font-weight: 500;
  }
  .tax_cont .card_wraper {
    margin-top: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
  }
  .tax_cont .card_wraper .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0 0 34px rgba(70, 74, 85, 0.1);
    border-radius: 16px;
    gap: 16px;
  }
  .tax_cont .card_wraper .card .card_txt {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .payroll_cont {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
  }
  .payroll_cont .div_a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    padding-left: 10%;
  }
  .payroll_cont .div_a .pay_img {
    width: 80%;
  }
  .payroll_cont .div_b {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 80px;
    padding-right: 10%;
  }
  .payroll_cont .div_b .payspan {
    font-size: 1rem;
  }
  .payroll_cont .div_b .span_check {
    display: flex;
    font-size: 0.8rem;
    flex-direction: row;
    gap: 16px;
  }
  .others_cont {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    flex-direction: column;
  }
  .others_cont .spn1 {
    font-size: 1rem;
    margin-top: 32px;
  }
  .others_cont .svg_wrap {
    margin-top: 48px;
  }
  .others_cont .spn2 {
    font-size: 0.8rem;
    margin-top: 16px;
    width: 25%;
    text-align: center;
  }
  .d {
    line-height: 100%;
  }
}/*# sourceMappingURL=accounting_page.css.map */