:root {
    --primary-color: rgb(8, 122, 193);
    --white-color: rgb(255, 255, 255);
    --black-color: rgb(0, 0, 0);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: var(--black-color);
    display: inline-block;
    font-family: inherit;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    display: block;
}

.container {
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.get-start {
    font-size: 16px;
    font-weight: 500;
    fill: var(--primary-color);
    color: var(--primary-color);
    height: 53px;
    background-color: var(--white-color);
    border-radius: 100px 100px 100px 100px;
    box-shadow: -5px 0px 0px 0px #034871, 0px 3px 8px #034871;
    padding: 18px 45px 18px 45px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: clamp(40px, 2.604vw, 50px);
}

.get-start img {
    margin-bottom: 2px;
    height: 15px;
}

p {
    color: var(--black-color);
    font-size: clamp(16px, 0.833vw, 16px);
    font-weight: 300;
    line-height: 187%;
}

.h1 {
    color: var(--primary-color);
    font-size: clamp(35px, 3.125vw, 60px);
    font-weight: 700;
    line-height: 100%;
}

.h2 {
    color: var(--black-color);
    font-size: clamp(30px, 2.083vw, 40px);
    font-weight: 300;
    line-height: 136%;
}

.h2 strong {
    color: var(--primary-color);
    font-size: clamp(35px, 2.604vw, 50px);
    font-weight: 700;
    display: block;
}

.h3 {
    color: var(--black-color);
    font-size: clamp(20px, 1.146vw, 22px);
    font-weight: 700;
    line-height: 100%;
}

/* header css start */
.logo a {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.header {
    padding: clamp(20px, 1.302vw, 25px) 0 0 0;
}

/* header css end */


/* Banner section css start */
.banner-sec {
    background-image: url('../image/top-banner-image.webp');
    padding: clamp(150px, 13.021vw, 250px) 0 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    margin-top: -113px;
    margin-bottom: 50px;
}

.banner-cont-left .get-start {
    box-shadow: -5px 0px 0px 0px var(--primary-color), 0px 3px 8px #cecece;
}

.banner-cont-left img {
    margin: 0;
}

.banner-cont-left {
    max-width: 585px;
    width: 100%;
}

.banner-cont-left .h1 {
    padding: 20px 0 15px 0;
}

.banner-cont-left p {
    padding: 25px 50px 0 0;
}

.banner-cont-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Banner section css end */

/* about-sec css start */
.about-sec {
    padding: 50px 0 clamp(50px, 5.208vw, 100px);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.604vw, 50px);
    justify-content: space-between;
}

.abour-left {
    max-width: 559px;
    width: 100%;
}

.about-right-cont {
    max-width: 560px;
    width: 100%;
}

.about-right-cont .h2 {
    margin-bottom: 20px;
}

/* about-sec css end */

/* We work css start */
.we-work-sec {
    padding: clamp(50px, 5.208vw, 100px) 0;
    background-image: url('../image/we-work-bg-image-scaled.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.we-work-top {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.083vw, 40px);
    padding-bottom: clamp(50px, 2.604vw, 50px);
    margin-bottom: clamp(50px, 2.604vw, 50px);
    border-bottom: solid 1px #53A4D6;
}

.work-top-right {
    max-width: 885px;
    width: 100%;
}

.work-top-left {
    max-width: max-content;
    width: 100%;
}

.work-top-left .h2 {
    color: var(--white-color);
    text-align: end;
}

.work-top-left .h2 strong {
    color: var(--white-color);
}

.work-top-right p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 18px;
    border-left: solid 1px var(--white-color);
    padding-left: clamp(20px, 2.083vw, 40px);
}

.consultation-main {
    display: flex;
    align-items: center;
    gap: clamp(30px, 2.396vw, 46px);
    justify-content: space-between;
    position: relative;
}

.consultation-main:before {
    content: "";
    position: absolute;
    background-image: url(../image/borter-image-right-top-n12.png);
    max-width: 624px;
    height: 98px;
    width: 100%;
    bottom: -98px;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
}

.consultation-main.consultation-reverse:before {
    transform: translateX(-50%) rotateY(180deg);
}

.consultation-list-main .consultation-main:last-child:before {
    display: none;
}

.consultation-right {
    max-width: 568px;
    width: 100%;
}

.consultation-left {
    max-width: 585px;
    width: 100%;
}

.consultation-left strong {
    color: var(--white-color);
}

.consultation-left p {
    color: var(--white-color);
    margin: 0 clamp(0px, 1.354vw, 26px) 14px 0;
}

.consultation-left p:last-of-type {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.consultation-left .h2 {
    margin-bottom: clamp(20px, 1.563vw, 30px);
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.step-list li p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.consultation-reverse {
    flex-direction: row-reverse;
}

.consultation-list-main {
    display: flex;
    flex-direction: column;
    gap: 98px;
}

/* We work css end */

/* Best Option css start */
.best-option-sec {
    padding: clamp(50px, 5.208vw, 100px) 0;
    background-image: url('../image/tax-relief-may-be-bg-image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.we-work-top {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.083vw, 40px);
    padding-bottom: clamp(50px, 2.604vw, 50px);
    margin-bottom: clamp(50px, 2.604vw, 50px);
    border-bottom: solid 1px #53A4D6;
}

.best-option-main {
    display: flex;
    align-items: center;
    gap: clamp(30px, 2.292vw, 44px);
    justify-content: space-between;
}

.best-option-right {
    max-width: 561px;
    width: 100%;
}

.best-option-left {
    max-width: 565px;
    width: 100%;
}

.best-option-left p {
    margin: 0 0 14px 0;
    line-height: 170%;
}

.best-option-left p:last-of-type {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.best-option-left .h2 {
    margin-bottom: 20px;
}

.best-option-reverse {
    flex-direction: row-reverse;
}

.best-option-list-main {
    display: flex;
    flex-direction: column;
    gap: clamp(50px, 5.208vw, 100px);
}

.best-option-left .get-start {
    box-shadow: -5px 0px 0px 0px var(--primary-color), 0px 3px 8px #cecece;
}

/* Best Option css end */

/* Contact us section css start */
.contact-us-sec {
    padding: 35px 0 15px;
    background: #f3f3f3;
}

.contact-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-list li {
    max-width: 341px;
    width: 100%;
    text-align: center;
}

.contact-list p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.contact-list img {
    border: solid 3px var(--black-color);
    height: 38px;
    width: 38px;
    padding: 7px;
    border-radius: 50px;
    margin: 0 auto;
}

/* Contact us section css end */

/* Foter css start */
.footer {
    background: rgb(3, 72, 113);
    padding: 80px 0 30px;
}

.ft-cont-main p {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.ft-cont-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ft-cont-50 {
    width: calc(50% - 10px);
    text-align: center;
}

.ft-cont-100 {
    width: 100%;
}

.footer-inner img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.footer-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 40px
}

.footer-menu-list li a {
    color: #fff;
    font-size: 20px;
    font-weight: 400
}

.footer-menu-list li a:hover {
    font-weight: 700
}

.footer-inner p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 25px;
    margin-top: 0;
}

.footer-inner {
    text-align: center
}

.footer-inner .footer-logo {
    background-color: #ffffff;
}

/* Foter css end */

/* Terms and Privacy page css start */
.general-content {
    margin: 30px 0px;
    border: 5px solid #446A84;
    border-radius: 25px;
    padding: 40px 20px 40px 20px;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.25098039215686274);
}

.general-content h1 {
    color: #333333;
    font-size: 40px;
    font-weight: bold;
    line-height: 56px;
    text-align: center;
    margin-bottom: 20px;
}

.general-content p:nth-child(2) {
    color: #333333;
    font-size: 14px;
    margin-bottom: 22px;
}

.general-content p {
    font-size: 15px;
    margin-bottom: 22px;
    text-align: justify;
    margin-bottom: 22px;
    font-weight: 400;
    margin-top: 0;
    color: #333333;
}

.privacy-policy h2,
.general-content h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.25em;
    margin-bottom: 20px;
}

.general-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-policy ul li,
.general-content ul li {
    font-size: 15px;
    list-style: disc;
    line-height: 22px;
    color: #333333;
}

/* Terms and Privacy page css start */

/* Thank you page css start */
.thank-you {
    padding: 50px 0;
}

.thank-you .inner-sec {
    display: flex;
    flex-flow: column;
    gap: 25px;
    text-align: center;
}

.thank-you .h1 {
    font-size: clamp(40px, 3.125vw, 60px);
}

.thank-you p {
    font-size: 18px;
    font-weight: 400;
}

.thank-you .get-start {
    max-width: 300px;
    margin: 0 auto;
}

/* Thank you page css end */

@media only screen and (max-width: 1024px) {
    .banner-sec {
        background-position: 23% 0px;
    }
}

@media only screen and (max-width: 991px) {
    .consultation-list-main {
        gap: 80px;
    }

    .consultation-main:before {
        display: none;
    }

}

@media only screen and (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        text-align: center;
    }

    .about-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .we-work-top {
        flex-wrap: wrap;
    }

    .work-top-left .h2 {
        text-align: left;
    }

    .work-top-right p {
        border: none;
        padding-left: 0;
    }

    .consultation-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .consultation-main:before {
        display: none;
    }

    .best-option-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-list {
        flex-wrap: wrap;
    }

    .banner-cont-flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .banner-sec {
        background-position: 16% 0px;
        background-size: auto;

    }

    .ft-cont-50 {
        width: 100%;
    }

    .general-content h1,
    .privacy-policy h1 {
        font-size: 35px;
    }

    .consultation-list-main {
        gap: 60px;
    }

    .footer-inner img {
        max-width: 200px;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .thank-you p {
        font-size: 16px;
    }
}

/* **************************************** */
/* **************************************** */
.multy-step-form .tab-pane:first-child,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

:focus,
input:focus {
    outline: 0
}

input:required {
    box-shadow: none
}

label.error {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    color: red !important;
    margin-bottom: 15px
}

.main_step_form_content {
    position: relative;
}

.garnishment_form {
    margin-bottom: 40px;
}

.multy-step-form .h3 span {
    color: red
}

.multy-step-form-banner {
    background: var(--white-color);
    max-width: 520px;
    width: 100%
}

.multy-step-form-banner .form-heading {
    padding: 30px 10px;
    background-color: var(--primary-color);
    text-align: center
}

.multy-step-form-banner .form-heading .h3 {
    color: var(--white-color);
    font-size: 26px;
    font-weight: 500;
}

.multy-step-form {
    padding: 30px 25px;
    position: relative;
    box-shadow: 5px 5px 15px 0px rgba(153.75000000000003, 153.75000000000003, 153.75000000000003, 0.59);
}

.multy-step-form .h3 {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    text-align: center;
    display: block;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 45px
}

.field-group {
    position: relative;
    padding-bottom: 22px
}

p.price-picker {
    position: absolute;
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: var(--primary-color);
    top: -28px;
    transform: translateX(-50%);
    left: 50%;
    background: var(--white-color);
    border-radius: 4px;
    padding: 2px 3px
}

.custom-checkbox-main,
.range-slider {
    padding-bottom: 20px;
    position: relative
}

.range-slider {
    width: 100%;
    max-width: 86%;
    padding-top: 30px;
    margin: 0 auto
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: 0 !important
}

.ui-widget.ui-widget-content {
    margin-bottom: 12px;
    position: relative;
    height: 18px;
    text-align: center;
    background: #fafafa;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb
}

.range-slider .ui-widget.ui-widget-content {
    border: 1px solid #d3d3d3
}

.ui-widget.ui-widget-content .ui-slider-handle {
    width: 26px;
    height: 26px;
    margin-top: -1px;
    background: var(--primary-color);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .25);
    border-radius: 30px;
    position: absolute;
    top: -.3em;
    margin-left: -.6em;
    cursor: pointer;
}

.main_step_form .form-select:focus,
.main_step_form .textarea:focus,
.main_step_form input:focus {
    box-shadow: none;
    outline: 0
}

.range-slider .range-value {
    padding: 0 0 15px
}

.range-slider .range-value .left-val {
    position: absolute;
    left: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-align: left;
    color: #4b4f58
}

.range-slider .range-value .right-val {
    position: absolute;
    right: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-align: right;
    color: #4b4f58
}

.lock-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px
}

.lock-section label {
    font-size: 15px;
    color: var(--black-color);
    padding: 0;
    font-weight: 400;
    text-align: left;
}

.custom-checkbox-main .custom-checkbox {
    position: absolute;
    left: -3px;
    width: 17px;
    font-size: 17px;
    height: 17px;
    top: 1px
}

.custom-checkbox-main label {
    padding-left: 25px;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    color: var(--black-color);
    cursor: pointer;
    display: inline-block
}

.terms-text {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 15px;
}

.terms-text a {
    color: #194867;
    font-weight: 700
}

.thanks-massage p {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    background: #0f75bd;
    padding: 10px;
    text-align: center;
    margin: 0 0 60px
}

.main_step_form .thanks-massage .next-btn {
    background-color: #0f75bd !important;
    font-weight: 600;
    text-transform: capitalize
}

.main_step_form .form-control {
    font-weight: 400;
    font-size: 16px;
    padding: 13px 18px 13px 12px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    text-align: left;
    color: var(--black-color);
    letter-spacing: normal;
    height: 50px;
    border-radius: 0;
    background: #f2f2f2;
}

.main_step_form .next-btn,
.main_step_form .next-btn:hover,
.main_step_form .submit-btn:hover {
    background-color: var(--black-color);
    color: #fff
}

.main_step_form .next-btn {
    font-size: 20px;
    width: 100%;
    max-width: 200px;
    display: block;
    text-align: center;
    padding: 13px 0;
    border: none;
    margin: 22px auto auto;
    text-transform: uppercase;
    cursor: pointer;
    outline: 0;
    font-weight: 500
}

.multy-step-form .tab-pane,
.show-on-mobile {
    display: none
}

.main_step_form .step-1-select {
    position: relative;
}

.main_step_form .step-1-select .icon {
    flex: 0 0 36px;
}

.main_step_form .step-1-select .icon img {
    width: 36px;
    height: 36px;
}

.main_step_form .step-1-select .btn-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
    margin-bottom: 40px;
}

.main_step_form .step-1-select .btn-main .btn-inner {
    width: calc(50% - 10px);
}

.main_step_form .step-1-select .btn-main .btn-inner button {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid black;
    border-radius: 0;
}

.main_step_form .step-1-select .btn-main .btn-inner button .icon-title {
    color: #000000;
}

@media all and (max-width:991px) {
    .multy-step-form-banner .form-heading {
        padding: 18px 10px
    }

    .multy-step-form .h3,
    .multy-step-form-banner .form-heading .h3 {
        font-size: 18px
    }
}

@media all and (max-width:767px) {
    .multy-step-form-banner .form-heading {
        padding: 20px 10px
    }

    .multy-step-form-banner .form-heading .h3 {
        font-size: 15px;
        line-height: 18px
    }

    .multy-step-form {
        padding: 20px
    }

    .multy-step-form .h3 {
        font-size: 16px;
        margin-bottom: 20px
    }

    .main_step_form .next-btn {
        font-size: 18px;
        margin-top: 10px
    }
}


.loader {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

/* Transparent Overlay */
.loader:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loader:not(:required) {
    /* hide "loader..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loader:not(:required):after {
    position: absolute;
    content: '';
    display: block;
    font-size: 18px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1.5s infinite linear;
    -moz-animation: spinner 1.5s infinite linear;
    -ms-animation: spinner 1.5s infinite linear;
    -o-animation: spinner 1.5s infinite linear;
    animation: spinner 1.5s infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

@keyframes spinner {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    } 
}