:root {
    --primary-color: #1b75bc;
    --font-roboto: "Roboto", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --font-default: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

/* General CSS start */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

li {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    transition: all 0.3s linear;
}

img {
    -ms-interpolation-mode: bicubic;
    height: auto;
    vertical-align: middle;
    transition: all 0.3s linear;
    max-width: 100%;
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-input-placeholder {
    color: #112337;
    opacity: 1;
}

::-moz-placeholder {
    color: #112337;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #112337;
    opacity: 1;
}

button::-moz-focus-inner {
    border: 0;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    border: 0;
    border-radius: 0px;
    padding: 0px;
    background-color: transparent;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=submit],
input[type=button] {
    cursor: pointer;
    border: 0;
}

input:focus {
    outline: none;
}

label {
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-family: inherit;
    line-height: 1.2;
}

p {
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

/* General CSS end */

/* Animation css start */
.in-viewport {
    overflow: hidden;
}

.fade-left.in-viewport,
.in-viewport .fade-left {
    animation-name: fadeInLeft;
    animation-duration: 1.25s;
}

.in-viewport .fade-right {
    animation-name: fadeInRight;
    animation-duration: 1.25s;
}

.in-viewport .zoom-in {
    animation-name: zoomIn;
    ;
    animation-duration: 1.25s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

/* Animation css end */

/* Common css start */
.container {
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.primary-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: solid 2px var(--primary-color);
    border-radius: 50px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #fff 50%, var(--primary-color) 50%);
    transition: all .2s ease-in-out;
    color: var(--primary-color);
    padding: 2px 24px;
    font-size: 24px;
    font-family: var(--font-roboto);
}

.primary-btn:focus,
.primary-btn:hover {
    background-position: 0 100%;
    color: #fff;
    border-color: var(--primary-color);
}

.primary-btn svg path {
    transition: all .2s ease-in-out;
}

.primary-btn:focus svg path,
.primary-btn:hover svg path {
    fill: #ffffff;
}

.secondary-btn {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 700;
    border-radius: 32px;
    padding: 12px;
    background: var(--primary-color);
    color: #ffffff;
    display: inline-block;
}

.secondary-btn:focus {
    outline: 1px solid #000000;
}

/* Header section start */
header {
    padding: 20px 0;
    box-shadow: 0px 2px 5px -2px #C8C8C8;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
}

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

.main-header .call_box a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b75bc;
    border: 1px solid #1b75bc;
    padding: 8px 10px;
    border-radius: 50px;
    font-size: 18px;
    line-height: 1;
}

.main-header .call_box a img {
    width: 20px;
}

.main-header .logo a {
    display: block;
}

.main-header .logo img {
    width: 120px;
    height: auto;
}

/* Header section end */

/* Banner section start */
.banner-sec {
    padding: 60px 0 110px;
    background-image: url('../images/banner_1-min.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-sec .row-custom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-left-content {
    max-width: 610px;
    width: 50%;
}

.banner-left-content h1 {
    color: var(--primary-color);
    font-size: clamp(36px, 3.194vw, 46px);
    font-weight: 700;
    line-height: 120%;
}

.banner-left-content h1 span {
    display: block;
    color: #212529;
}

.multy-step-form-banner {
    background: #ffffff;
    max-width: 610px;
    margin: 0 auto;
    width: 50%;
}

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

.multy-step-form-banner .form-heading h2 {
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-default)
}

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

.multy-step-form h3 {
    font-family: var(--font-montserrat);
    font-size: 28px;
    text-align: center;
    display: inline-block;
    width: 100%;
    color: #000;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 30px;
}

.multy-step-form .tab-content .tab-pane {
    display: none;
}

.multy-step-form .tab-content .tab-pane.active {
    display: block;
}

.main_step_form_content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

p.price-picker,
p.price-picker2,
p.price-picker3 {
    position: absolute;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #000000;
    top: -35px;
    transform: translateX(-50%);
    left: 50%;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    margin: 0;
    border: 1px solid #D9D9D9;
    font-family: var(--font-default)
}

.range-slider {
    width: 100%;
    padding: 30px;
    position: relative
}

.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
}

.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,
.range-slider .range-value .right-val {
    position: absolute;
    left: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-align: left;
    color: #333333;
    font-family: var(--font-default)
}

.range-slider .range-value .right-val {
    right: 30px;
    text-align: right;
}

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

.lock-section label {
    font-size: 16px;
    color: #333333;
    padding: 0;
    font-weight: 400;
    text-align: left;
    font-family: var(--font-default);
}

.custom-checkbox-main {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.custom-checkbox-main label.error {
    position: absolute;
    content: "";
    top: 22px;
    color: red;
}

.custom-checkbox-main label {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: rgb(17, 35, 55);
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-default);
}

.custom-checkbox-main input.custom-checkbox {
    width: 20px;
    min-width: auto;
    margin: 0;
    height: 20px;
    accent-color: #000000;
    appearance: none;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.365);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 0;
    flex: 0 0 20px;
    box-shadow: rgba(18, 25, 97, 0.08) 0px 1px 4px 0px;
}

.custom-checkbox-main input.custom-checkbox::before {
    content: '';
    position: absolute;
    background-image: url('../images/check-solid.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-checkbox-main input.custom-checkbox:checked::before {
    display: block;
}

.terms-text {
    font-family: var(--font-montserrat);
    color: #777777;
    font-size: 14px;
    margin-top: 25px;
}

.terms-text a {
    color: var(--primary-color);
    font-weight: 700
}

.main_step_form .form-control {
    width: 100%;
    font-size: 16px;
    height: 50px;
    border-radius: 5px;
    font-weight: 400;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.365);
    background-color: transparent;
    position: relative;
    padding: 5px 15px;
    appearance: none;
    font-family: var(--font-roboto);
    box-shadow: 0 1px 4px rgba(18, 25, 97, 0.0779552);
}

.main_step_form select.form-control {
    font-size: 20px;
    border: solid 1px #000;
    background-image: url('../images/angle-down-solid.svg');
    background-repeat: no-repeat;
    background-position: 98% 18px;
}

.main_step_form input:focus,
.main_step_form select:focus,
.main_step_form textarea:focus {
    outline: 0;
    outline: 1px solid black !important;
    outline-offset: 0;
}

.main_step_form .next-btn.secondary-btn {
    font-size: 22px;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    outline: 0;
    padding: 14px;
    font-weight: 700;
    font-family: var(--font-default);
    transition: all 0.2s;
    margin-top: 15px;
}

.main_step_form .next-btn.secondary-btn:focus {
    outline: 1px solid #000000;
}

/* Banner section end */

/* featured in section start */
.featured-in {
    padding: 50px 0 60px;
}

.featured-in h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: clamp(32px, 2.778vw, 40px);
    font-weight: 600;
    letter-spacing: 15px;
    margin-bottom: 40px;
}

.featured-in .partners {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-in .partners>div {
    padding: 10px 28px;
    border-right: 2px solid var(--primary-color);
}

.featured-in .partners>div:last-child {
    border: 0;
}

/* featured in section end */

/* Debt relief program section start */
.debt-program {
    padding: clamp(50px, 9.167vw, 176px) 0 clamp(50px, 6.667vw, 128px);
    background-image: url('../images/bg-map-grey-scaled-1-min.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.debt-program-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.debt-program-inner .resolve-debt {
    background-color: #F0F0F0;
    display: flex;
    gap: 10px;
}

.debt-program-inner .resolve-debt .right-side h2 {
    margin: 50px 0 25px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 30px;
}

.debt-program-inner .resolve-debt .right-side h2 span {
    color: #212529;
}

.debt-program-inner .resolve-debt .right-side ul {
    margin-bottom: 20px;
    margin-left: 10px;
}

.debt-program-inner .resolve-debt .right-side ul li {
    margin-bottom: 10px;
    padding-left: 27px;
    font-size: 16px;
    color: #212529;
    font-weight: 500;
    font-family: var(--font-montserrat);
    position: relative;
}

.debt-program-inner .resolve-debt .right-side ul li::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 16px;
    background-color: var(--primary-color);
    top: 45%;
    left: 0;
    transform: translateY(-50%);
}

.debt-program-inner .relief-program {
    background-color: #ffffff;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    padding: 80px 38px;
}

.debt-program-inner .relief-program h2 {
    color: #212529;
    font-weight: 600;
    margin: 26px 0;
    font-size: 24px;
}

.debt-program-inner .relief-program ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
}

.debt-program-inner .relief-program .number {
    color: rgba(27, 117, 188, 0.29);
    font-family: var(--font-roboto);
    font-size: 64px;
    font-weight: 600;
}

.debt-program-inner .relief-program .content h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.debt-program-inner .relief-program .content p {
    color: #333333;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
}

/* Debt relief program section end */

/* Testimonials section start */
.testimonial {
    background-color: #58595B;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-bottom: 2px;
}

.testimonial>div {
    width: 50%;
    padding: 90px 40px;
}

.testimonial .content {
    background-color: var(--primary-color);
}

.testimonial .content h2 {
    font-size: clamp(36px, 3.333vw, 64px);
    font-weight: 500;
    letter-spacing: 10px;
    margin-bottom: 16px;
    max-width: 85%;
}

.testimonial .content ul {
    display: flex;
    margin-bottom: 20px;
    max-width: 85%;
    margin-left: -8px;
    flex-wrap: wrap;
    gap: 10px 0;
}

.testimonial .content ul li {
    padding: 0 8px;
    border-right: 2px solid #ffffff;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

.testimonial .content ul li:last-child {
    border: 0;
}

.testimonial .content p {
    color: #FFFFFF;
    font-family: var(--font-montserrat);
    font-size: clamp(20px, 1.563vw, 30px);
    max-width: 85%;
    font-weight: 400;
}

.testimonial .testimonial-slider {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial .testimonial-slider p {
    color: #FFFFFF;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.testimonial .testimonial-slider .slick-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.testimonial .testimonial-slider .slick-dots li {
    display: inline-flex;
}

.testimonial .testimonial-slider .slick-dots li button {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    font-size: 0;
    background-color: rgba(0, 0, 0, 0.2);
    outline: 0;
    border: 0;
}

.testimonial .testimonial-slider .slick-dots li.slick-active button {
    background-color: #ffffff;
    opacity: 1;
}

/* Testimonials section end */

/* Contact us Banner section start */
.contact-us-banner {
    background-image: url('../images/contact-us.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(340px, 36.458vw, 700px);
    padding: clamp(50px, 5.208vw, 100px) 0;
    display: flex;
    align-items: center;
}

.contact-us-banner h1 {
    color: #212529;
    font-size: clamp(32px, 3.333vw, 64px);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0px 0px 0px 20px;
    border-style: solid;
    border-width: 0px 0px 0px 5px;
    border-color: var(--primary-color);
    letter-spacing: 0.05em;
}

.contact-us-banner h1 span {
    color: var(--primary-color);
}

/* Contact us Banner section end */

/* Contact Form Popup Start */
.contact_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.365);
    z-index: 999;
    display: grid;
    place-content: center;
    display: none;
}

.contact_popup.show {
    display: grid;
}

.popup_container {
    position: relative;
}

#close_popup_form span {
    position: absolute;
    content: "";
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    /* border: 1px solid red; */
    cursor: pointer;
}

#close_popup_form span::before,
#close_popup_form span::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    background-color: #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#close_popup_form span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#close_popup_form span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup_container {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    overflow-y: auto;
}

.popup_container::-webkit-scrollbar {
    display: none;
}

.popup_header h2 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px;
    font-size: clamp(26px, 1.823vw, 35px);
}

.popup_header p {
    font-size: 18px;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-weight: 500;
    font-family: var(--font-montserrat);
}

.popup_form {
    margin-top: 20px;
}

.popup_form .required {
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    font-family: var(--font-default);
}

.popup_form .popup_form_group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.popup_form input:not([type="checkbox"]),
.popup_form textarea {
    width: 100%;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 10px 15px;
    font-size: 16px;
    line-height: normal;
    color: #333333;
    margin-bottom: 25px;
    font-family: var(--font-default);
    box-shadow: rgba(18, 25, 97, 0.08) 0px 1px 4px 0px;
}

.popup_form .popup_form_box {
    flex: 50%;
    position: relative;
}

.popup_form label.error {
    position: absolute;
    content: "";
    bottom: 4px;
    left: 0;
    font-size: 13px;
}

.checkbox.popup_form_box {
    padding-top: 20px;
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox.popup_form_box label.error {
    top: 0;
    bottom: unset;
}

.popup_form input[type="checkbox"] {
    width: 20px;
    min-width: auto;
    margin: 0;
    margin-top: 4px;
    height: 20px;
    accent-color: #000000;
    appearance: none;
    position: relative;
    border: 1px solid rgb(104, 110, 119);
    border-radius: 2px;
    background-color: #ffffff;
    padding: 0;
    flex: 0 0 20px;
}

.popup_form input[type="checkbox"]:focus {
    outline: 1px solid #000000;
    outline-offset: 0;
}

.popup_form input[type="checkbox"]:checked::before {
    display: block;
}

.popup_form input[type="checkbox"]::before {
    content: '';
    position: absolute;
    background-image: url('../images/check-solid.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.checkbox.popup_form_box label.terms {
    font-size: 14px;
    font-family: var(--font-default);
}

.checkbox.popup_form_box label.terms a {
    color: #cc3366;
}

.popup_form .popoup_form_submit {
    text-align: center;
}

.popup_form input[type="submit"] {
    width: max-content;
    padding: 12px 20px;
    background-color: #1b75bc;
    border-color: #1b75bc;
    color: #ffffff;
    border-radius: 5px;
    outline: none;
    display: inline-block;
    margin: 0 auto;
}

#contact-us-form .star {
    color: red;
}

@media(max-width:991px) {
    .contact_popup {
        padding: 20px 40px;
    }
}

@media(max-width: 767px) {
    .popup_container {
        padding: 20px;
    }
}

@media(max-width: 575px) {
    .contact_popup {
        padding: 20px 20px;
    }

    .popup_form .popup_form_box {
        flex: auto;
        position: relative;
        width: 100%;
    }

    .popup_form .popup_form_group {
        display: flex;
        align-items: flex-start;
        gap: 0px;
        flex-direction: column;
    }

    .popup_container {
        padding: 20px 20px 40px 20px;
    }

    .popup_header h2 {
        letter-spacing: 7px;
        font-size: 20px;
    }

    .popup_header p {
        font-size: 16px;
    }

    #close_popup_form span {
        position: absolute;
        content: "";
        right: 10px;
        top: 10px;
    }
}

/* Contact Form Popup End */


/* Contact form section start */
.contact-form {
    padding: 20px 0 50px;
}

.contact-form-inner {
    max-width: 880px;
    margin: 0 auto;
}

.contact-form-inner .h1 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(30px, 2.083vw, 40px);
}

.contact-form-inner>p {
    font-size: 20px;
    margin: 16px 0;
    line-height: 1.2;
    font-weight: 500;
    font-family: var(--font-montserrat);
}

.contact-form-inner .required {
    font-size: 16px;
    color: #333333;
    margin-top: 50px;
    margin-bottom: 15px;
    font-family: var(--font-default);
}

.contact-form-inner span.star {
    color: #c02b0a;
}

.contact-form-inner .form-group input,
.contact-form-inner .form-group textarea {
    width: 100%;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 10px 15px;
    font-size: 16px;
    line-height: normal;
    color: #333333;
    margin-bottom: 20px;
    font-family: var(--font-default);
    box-shadow: rgba(18, 25, 97, 0.08) 0px 1px 4px 0px;
}

.contact-form-inner .form-group textarea {
    min-height: 200px;
}

.contact-form-inner .form-group input:focus,
.contact-form-inner .form-group textarea:focus {
    outline: 1px solid #000000;
    outline-offset: 0;
}

.contact-form-inner .form-group input::placeholder,
.contact-form-inner .form-group textarea::placeholder {
    color: rgb(17, 35, 55);
    font-size: 14px;
    font-family: var(--font-default);
}

.contact-form-inner .opt-in {
    color: #112337;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-default);
}

.contact-form-inner .checkbox {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 50px;
}

.contact-form-inner .checkbox input {
    width: 20px;
    min-width: auto;
    margin: 0;
    margin-top: 4px;
    height: 20px;
    accent-color: #000000;
    appearance: none;
    position: relative;
    border: 1px solid rgb(104, 110, 119);
    border-radius: 2px;
    background-color: #ffffff;
    padding: 0;
    flex: 0 0 20px;
}

.contact-form-inner .checkbox input:focus {
    outline: 1px solid #000000;
    outline-offset: 0;
}

.contact-form-inner .checkbox input::before {
    content: '';
    position: absolute;
    background-image: url('../images/check-solid.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.contact-form-inner .checkbox input:checked::before {
    display: block;
}

.contact-form-inner .checkbox label {
    font-size: 14px;
    font-family: var(--font-default);
}

.contact-form-inner .checkbox label a {
    color: #cc3366;
}

.contact-form-inner input.submit {
    background-color: #204ce5;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 8px 15px;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid #13679e;
    transition: all 0.2s;
    font-family: var(--font-default);
}

.contact-form-inner input.submit:focus,
.contact-form-inner input.submit:hover {
    background-color: #001ab3;
}

.contact-form-inner .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-inner label.error {
    font-size: 15px;
    color: #ff0000;
    position: static;
    font-family: var(--font-default);
    margin-top: -17px;
    line-height: normal;
}

.contact-form-inner .checkbox label.error {
    position: absolute;
}

/* Contact form section end */

/* Terms page section start */
.privacy-terms-banner {
    background-image: url('../images/terms-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: clamp(200px, 36.458vw, 700px);
    display: flex;
    align-items: center;
}

.privacy-terms-banner .h1 {
    color: #ffffff;
    position: relative;
    padding-left: 20px;
    font-size: clamp(32px, 3.333vw, 64px);
    text-transform: uppercase;
    line-height: 1;
}

.privacy-terms-banner .h1:before {
    position: absolute;
    content: '';
    border-left: 5px solid var(--primary-color);
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

.privacy-terms-inner {
    padding: 40px 0;
}

.space {
    padding: 20px 0 30px !important;
}

.privacy-terms-inner p,
.privacy-terms-inner ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000;
    font-family: var(--font-montserrat);
}

.privacy-terms-inner p,
.privacy-terms-inner ul {
    padding-bottom: 20px;
}

.privacy-terms-inner p:last-child {
    padding-bottom: 0;
}

.privacy-terms-inner ul li {
    list-style-type: disc;
    margin-left: 40px;
}

.privacy-terms-inner .h5 {
    padding: 8px 0 16px;
    line-height: 130%;
    font-family: var(--font-montserrat);
    font-weight: 500;
}

.privacy-terms-inner .h5:last-child {
    padding-bottom: 0;
}

/* Terms page section end */

/* Unsubscribe section start */
.unsubscribe {
    padding: 30px 0;
}

.unsubscribe-inner {
    width: 100%;
    max-width: 800px;
    margin: auto;
    box-shadow: 0px 0px 10px 5px #d3d3d3;
    margin-bottom: 50px;
    padding: 45px;
    border-radius: 10px;
}

.unsubscribe-inner .required {
    color: #777777;
    display: flex;
    gap: 3px;
    align-items: start;
    margin-bottom: 24px;
    margin-top: 0;
    padding: 0;
    font-family: var(--font-default);
    font-weight: 400;
}

.unsubscribe-inner .required span {
    color: #ff0000;
}

.unsubscribe-inner .required span.big {
    font-size: 24px;
}

.unsubscribe-inner h1 {
    color: #000000;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-montserrat);
}

.unsubscribe-inner p {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 160%;
    padding: 20px 0px;
    margin: 0;
    margin-bottom: 20px;
    font-family: var(--font-montserrat);
}

.unsubscribe-inner input[type="email"] {
    margin: auto;
    background: #f2f2f2;
    border: 0;
    border-radius: 0;
    height: calc(3em + 0.75rem + 2px);
    padding: 10px 15px;
    max-width: 80%;
    box-shadow: none;
    display: block;
    font-size: 15px;
    color: #777777;
    font-family: var(--font-default)
}

.unsubscribe-inner input::placeholder {
    color: #545353;
    font-weight: 600;
}

.unsubscribe-inner input[type="submit"] {
    font-size: 20px;
    color: #fff;
    background-color: #000;
    display: block;
    text-align: center;
    padding: 20px 30px;
    border: 2px solid #000;
    margin: auto;
    margin-top: 40px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    letter-spacing: 0.1em;
}

.unsubscribe-inner h3 {
    margin: 0;
    font-size: 30px;
    padding-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #303133;
    text-align: center;
    font-family: var(--font-apple-system)
}

.unsubscribe-inner p.sucess {
    padding: 0;
    margin: 0;
    font-family: var(--font-apple-system)
}

.unsubscribe-inner a {
    font-weight: 500;
    color: #524f4f;
    font-size: 15px;
    display: block;
    text-align: center;
    font-family: sans-serif;
}

/* Unsubscribe section end */

/* ccpa page css start */
.ccpa-content {
    padding: 80px 0;
    font-family: var(--font-montserrat);
    font-weight: 500;
}

.ccpa-content .ccpa-desc h1 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 55px;
    text-align: center;
}

.ccpa-content .ccpa-desc h2 {
    font-size: 19px;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    color: #333333;
    margin-bottom: 40px;
}

.ccpa-content .ccpa-desc p {
    font-size: 15px;
    text-align: justify;
    margin-top: 22px;
    margin-bottom: 0;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}

.ccpa-content .ccpa-desc p a {
    color: var(--primary-color);
}

.ccpa-content .ccpa-desc h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    color: #333333;
    margin: 20px 0;
}

.ccpa-content .ccpa-desc .form-check,
.ccpa-content .ccpa-desc .requestor {
    color: #333333;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.error {
    font-size: 15px;
    color: #ff0000;
    font-family: var(--font-default);
    margin: 0;
    font-weight: 400;
}

.ccpa-content .ccpa-desc .ccpa-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
}

.ccpa-content .ccpa-desc .ccpa-form .ccpa-input {
    width: calc(50% - 10px);
    position: relative;
}

.ccpa-content .ccpa-desc .ccpa-form .ccpa-input.small-input {
    width: calc(33.33% - 10px);
}

.ccpa-content .ccpa-desc .ccpa-form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.ccpa-content .ccpa-desc .ccpa-form select,
.ccpa-content .ccpa-desc .ccpa-form input {
    outline: none;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    padding: 12px 10px;
    width: 100%;
    margin: 0;
    color: #000000;
    font-size: 14px;
    appearance: none;
    font-weight: 500;
}

.ccpa-content .ccpa-desc .ccpa-form select {
    background-image: url('../images/angle-down-solid.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-position: 0 3px;
    background-origin: content-box;
    background-position-x: right;
}

.ccpa-content .ccpa-desc .ccpa-form input[type="submit"] {
    display: block;
    width: auto;
    margin: 20px auto;
    padding: 13px 50px;
    background-color: #13679e;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s;
}

.ccpa-content .ccpa-desc .ccpa-form input[type="submit"]:hover {
    background-color: #565758;
    color: #ffffff;
}

#ccpa-request-form .form-top {
    position: relative;
}

#ccpa-request-form .form-top label.error {
    font-size: 15px;
    color: #ff0000;
    font-family: var(--font-default);
    margin: 0;
    font-weight: 400;
    position: absolute;
    bottom: -24px;
}

.ccpa-content .ccpa-desc .ccpa-form label.error {
    font-size: 15px;
    color: #ff0000;
    font-family: var(--font-default);
    margin: 0;
    font-weight: 400;
    position: absolute;
    bottom: -24px;
}

/* ccpa page css end */

/* Thank you page start */
.thank-you {
    padding: clamp(50px, 10.417vw, 150px) 0;
    text-align: center;
    color: #303133;
    font-family: var(--font-montserrat);
}

.thank-you h1 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you p {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.thank-you .primary-btn {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 30px;
    border-width: 3px;
}

/* Thank you page end */

/* footer section css stert */
footer {
    padding: 20px 0 40px;
    background: #E6E8EE;
    color: #000000;
    font-family: var(--font-montserrat);
    border-top: 5px solid var(--primary-color);
}

.main-footer {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-group {
    width: 25%;
    position: relative;
}

.footer-group::after {
    content: '';
    position: absolute;
    border-right: 1px solid #858585;
    right: -20px;
    top: 0;
    bottom: 0;
}

.footer-group img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-group .copy-right {
    font-size: 16px;
    margin-top: 10px;
}

.footer-group p {
    margin-top: 14px;
    font-size: 12px;
}

.footer-group.contact-us a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-group.contact-us a img {
    width: 18px;
    height: auto;
}

.footer-group .ft-content p {
    font-size: 12px;
    text-align: justify;
    margin-top: 0;
}

.footer-group li.day-list {
    display: flex;
    padding: 7px 10px;
    border-bottom: 1px solid #858585;
}

.footer-group li.day-list:last-child {
    border: 0;
}

.footer-group h2 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-group .hours-day-list .day-list p {
    margin: 0;
    color: #54595F;
    text-transform: uppercase;
}

.footer-group .hours-day-list .day-list p:first-child {
    width: 124px;
}

.footer-group .hours-day-list .current-day {
    background: var(--primary-color);
}

.footer-group .hours-day-list .current-day p {
    color: #ffffff;
    font-weight: 600;
}

.footer-group.links a {
    font-weight: 600;
    line-height: 1.2;
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-group.links a:last-child {
    margin-bottom: 0;
}

.ft-content p:last-child {
    margin-bottom: 0;
}

.ft-content p {
    color: #000000;
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 32px;
}

/* footer section css end */

/* Talk With Us Section Start */
.talk_with_us {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: clamp(80px, 8.333vw, 160px) 0;
}

.talk_with_us .talk_box {
    max-width: 620px;
    width: 100%;
}

.talk_with_us .talk_box p,
.talk_with_us .talk_box h3,
.talk_with_us .talk_box h2 {
    margin-block-end: 20px;
}

.talk_with_us .talk_box h2 {
    font-size: clamp(28px, 2.188vw, 42px);
    font-weight: 700;
    letter-spacing: 5px;
    color: #1b75bc;
    line-height: 1;
}

.talk_with_us .talk_box h3 {
    font-size: clamp(20px, 1.25vw, 24px);
    font-weight: 600;
    letter-spacing: 10px;
    color: #212529;
    font-family: "Montserrat", Sans-serif !important;
}

.talk_with_us .talk_box p {
    color: #212529;
    font-family: "Montserrat", Sans-serif !important;
    font-size: 16px;
    font-weight: 500;
}

.talk_with_us .talk_box a.link_btn {
    font-size: clamp(28px, 2.5vw, 48px);
    font-weight: 600;
    letter-spacing: 10px;
    color: #1b75bc;
    margin-bottom: 20px;
}

.talk_with_us .talk_box a.text_btn {
    text-decoration: none;
    position: relative;
    cursor: pointer;
    border: solid 2px #1b75bc;
    border-radius: 50px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #fff 50%, #1b75bc 50%);
    transition: background-position .2s ease-in-out, color .2s ease-in-out;
    white-space: nowrap;
    color: #1b75bc;
    width: 100%;
    padding: 15px 30px;
    font-size: 20px !important;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
}

.talk_with_us .talk_box a.text_btn:hover {
    background-position: 0 100%;
    color: #fff;
    border-color: #1b75bc;
}

/* Talk With Us Section End */

@media only screen and (max-width: 1280px) {
    .footer-group:last-child::after {
        display: none;
    }

    .testimonial {
        align-items: stretch;
    }

    .debt-program-inner .resolve-debt .right-side ul li,
    .debt-program-inner .resolve-debt .secondary-btn {
        font-size: 12px;
    }

    .debt-program-inner .resolve-debt .right-side h2 {
        font-size: 27px;
    }
}

@media only screen and (max-width: 1199px) {
    .multy-step-form h3 {
        margin-top: 0;
        font-size: 26px;
    }

    .multy-step-form-banner .form-heading h2 {
        font-size: 24px;
    }

    .main-footer {
        flex-wrap: wrap;
    }

    .footer-group:first-child {
        width: 100%;
    }

    .footer-group:first-child::after {
        display: none;
    }

    .footer-group {
        width: calc(33.33% - 27px);
    }

    .footer-group img {
        width: 120px;
    }

    .testimonial .content h2,
    .featured-in h2 {
        letter-spacing: 5px;
    }

    .testimonial>div {
        padding: 50px 20px;
    }

    .debt-program-inner {
        gap: 40px;
    }

    .debt-program-inner .relief-program h2 {
        font-size: 20px;
    }

    .debt-program-inner .relief-program .number {
        font-size: 48px;
    }

    .debt-program-inner .relief-program .content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .debt-program-inner .relief-program .content p {
        font-size: 15px;
    }

    .debt-program-inner .relief-program {
        padding: 80px 24px;
    }

    .debt-program-inner .resolve-debt>div {
        width: 50%;
        align-items: stretch;
    }

    .debt-program-inner .resolve-debt img {
        height: 100%;
    }

    .debt-program-inner .resolve-debt .right-side h2 {
        margin: 24px 0;
    }

    .debt-program-inner .resolve-debt .secondary-btn {
        font-size: 11px;
    }

    .ccpa-content {
        padding: 50px 0;
    }

    .ccpa-content .ccpa-desc h1 {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .banner-sec .row-custom {
        flex-wrap: wrap;
        gap: 30px;
    }

    .banner-sec .row-custom>div {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .main-footer {
        gap: 40px 30px;
        padding-bottom: 40px;
    }

    .footer-group {
        width: calc(33.33% - 20px);
    }

    .footer-group::after {
        right: -15px;
    }

    .footer-group .hours-day-list .day-list p {
        font-size: 11px;
    }

    .footer-group .hours-day-list .day-list p:first-child {
        width: 95px;
    }

    .footer-group h2 {
        font-size: 20px;
    }

    .testimonial .content h2,
    .featured-in h2 {
        letter-spacing: 1px;
    }

    .testimonial {
        flex-wrap: wrap;
    }

    .testimonial>div {
        width: 100%;
    }

    .testimonial .content {
        clip-path: none;
        text-align: center;
    }

    .testimonial .content h2,
    .testimonial .content ul,
    .testimonial .content p {
        max-width: 100%;
        justify-content: center;
    }

    .featured-in .partners>div {
        padding: 10px 20px;
    }

    .debt-program {
        background-position: center;
    }

    .debt-program-inner {
        flex-wrap: wrap;
    }

    .debt-program-inner .resolve-debt {
        margin-top: 80px;
    }

    .debt-program-inner .relief-program {
        clip-path: none;
        padding: 50px 24px;
        width: 100%;
    }

    .debt-program-inner .relief-program ul li {
        margin-bottom: 20px;
    }

    .debt-program-inner .relief-program ul li:last-child {
        margin-bottom: 0;
    }

    .debt-program-inner .relief-program h2 {
        margin-top: 0;
    }

    .debt-program-inner .resolve-debt .right-side ul li,
    .debt-program-inner .resolve-debt .secondary-btn {
        font-size: 15px;
    }

    .debt-program-inner .resolve-debt .right-side h2 {
        font-size: 30px;
    }

    .unsubscribe-inner {
        padding: 30px;
        margin-bottom: 0;
    }
}

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

    .main-header .logo img {
        width: 100px;
    }

    .banner-sec {
        padding: 50px 0 90px;
    }

    .banner-left-content h1 {
        font-size: 26px;
    }

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

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

    .multy-step-form-banner .form-heading h2 {
        font-size: 18px;
    }

    .primary-btn {
        padding: 2px 16px;
        font-size: 18px;
    }

    .primary-btn svg {
        width: 16px;
        height: 16px;
    }

    footer {
        padding: 30px 0;
    }

    .main-footer {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-group {
        width: 100%;
    }

    .footer-group::after {
        border: 0;
        border-bottom: 1px solid #858585;
        left: 0;
        right: 0;
        bottom: -15px;
        top: auto;
    }

    .footer-group .hours-day-list .day-list p:first-child {
        width: 150px;
    }

    .footer-group:first-child::after {
        display: block;
    }

    .ft-content p {
        margin-bottom: 18px;
    }

    .testimonial>div {
        padding: 30px 15px;
    }

    .testimonial .content ul li {
        font-size: 12px;
    }

    .testimonial .content {
        padding-top: 50px;
    }

    .testimonial .slider-sec {
        padding-bottom: 50px;
    }

    .featured-in {
        padding: 0px 0 50px;
    }

    .featured-in h2 {
        margin-bottom: 30px;
    }

    .featured-in .partners {
        flex-wrap: wrap;
    }

    .featured-in .partners>div {
        border: 0;
        border-bottom: 1px solid var(--primary-color);
        padding: 15px 0;
        width: 100%;
    }

    .featured-in .partners>div:first-child {
        padding-top: 0;
    }

    .featured-in .partners>div:last-child {
        padding-bottom: 0;
    }

    .featured-in .partners>div img {
        margin: 0 auto;
        width: 120px;
        height: auto;
    }

    .debt-program {
        background-size: auto;
    }

    .debt-program-inner .resolve-debt {
        margin-top: 0px;
        flex-wrap: wrap;
    }

    .debt-program-inner .resolve-debt>div {
        width: 100%;
    }

    .debt-program-inner .resolve-debt img {
        width: 100%;
        height: auto;
    }

    .debt-program-inner .resolve-debt .right-side {
        padding: 0 15px 30px;
    }

    .debt-program-inner .relief-program {
        padding: 30px 15px;
    }

    .debt-program-inner .relief-program ul li {
        margin-bottom: 30px;
    }

    .debt-program-inner .relief-program .content h3 {
        font-size: 22px;
    }

    .contact-form-inner .h1 {
        margin-bottom: 30px;
        letter-spacing: 5px;
    }

    .contact-form-inner>p {
        font-size: 16px;
    }

    .contact-form-inner .required {
        margin-top: 30px;
    }

    .contact-form-inner .checkbox {
        margin-bottom: 30px;
    }

    .contact-form-inner input.submit {
        font-size: 14px;
        padding: 8px 15px;
    }

    .privacy-terms-inner p,
    .privacy-terms-inner ul li {
        font-size: 16px;
    }

    .privacy-terms-inner .h5 {
        font-size: 22px;
    }

    .unsubscribe-inner {
        padding: 30px 20px;
    }

    .unsubscribe-inner h1 {
        font-size: 22px;
    }

    .unsubscribe-inner input[type="email"] {
        max-width: 100%;
    }

    .unsubscribe-inner input[type="submit"] {
        font-size: 16px;
        padding: 10px 30px;
        margin-top: 30px;
    }

    .unsubscribe-inner p {
        margin-bottom: 0;
    }

    .ccpa-content .ccpa-desc .ccpa-form .ccpa-input.small-input,
    .ccpa-content .ccpa-desc .ccpa-form .ccpa-input {
        width: 100%;
    }

    .ccpa-content .ccpa-desc p {
        line-height: 1.5;
    }

    .ccpa-content .ccpa-desc h1 {
        margin-bottom: 25px;
    }

    .ccpa-content .ccpa-desc h2 {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .ccpa-content .ccpa-desc h3 {
        margin: 20px 0 15px;
    }

    .input-group {
        align-items: start;
        margin-bottom: 6px;
    }

    .input-group input {
        margin-top: 5px;
    }

    .ccpa-content .ccpa-desc .ccpa-form {
        gap: 24px 0;
    }
    .custom-checkbox-main label#opt_special_offers-error {
        top: 40px;
        transform: translateX(-50%);
        left: 50%;
    }
}

@media (min-width: 992px) and (max-width: 1140px) {
    .custom-checkbox-main label#opt_special_offers-error {
        top: 44px;
    }
  }


.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 {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms 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;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
