@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #1abc9c;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #1abc9c;
    --bs-secondary: #2c3e50;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 26, 188, 156;
    --bs-secondary-rgb: 44, 62, 80;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: "Manrope", sans-serif;
    /*
  --bs-font-sans-serif: "Lato", -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";
  */
    --bs-font-monospace: "Manrope", sans-serif;
    --bs-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 0.125rem;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.75rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #1abc9c;
    --bs-link-hover-color: #15967d;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    /* color: var(--bs-body-color); */
    color: var(--bs-body-bg);
    text-align: var(--bs-body-text-align);
    /* background-color: var(--bs-body-bg); */
    background-color: #100f0f;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* .container {
  min-width: 400px;
} */
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 0.125rem solid;
    opacity: 0.25;
}

.card {
    background-color: #191919 !important;
    box-shadow: none !important;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "Manrope", sans-serif;
    /* font-family: "Montserrat", -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"; */
    font-weight: 700;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
    h1,
    .h1 {
        font-size: 2.5rem;
    }
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
    h2,
    .h2 {
        font-size: 2rem;
    }
}

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
    h3,
    .h3 {
        font-size: 1.75rem;
    }
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
    h4,
    .h4 {
        font-size: 1.5rem;
    }
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    /* color: var(--bs-link-color); */
    text-decoration: none;
}
/* a:hover {
  color: var(--bs-link-hover-color);
} */

/* a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
} */
.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #fff;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}
.nav-link:hover,
.nav-link:focus {
    color: #8a8989;
}
.nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    --bs-nav-tabs-border-width: 0.125rem;
    --bs-nav-tabs-border-color: #dee2e6;
    --bs-nav-tabs-border-radius: 0.5rem;
    --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color: #495057;
    --bs-nav-tabs-link-active-bg: #fff;
    --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: var(--bs-nav-tabs-border-width) solid
        var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    background: none;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    isolation: isolate;
    border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
    margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.dropdown-menu .dropdown-item:active {
    background-color: #ca1c2c!important;
}
.nav-pills {
    --bs-nav-pills-border-radius: 0.5rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #1abc9c;
}
.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    background-color: transparent;
    border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%;
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(0, 0, 0, 0.55);
    --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
    --bs-navbar-toggler-border-radius: 0.5rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}
.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
    color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
    position: static;
}

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
    color: var(--bs-navbar-active-color);
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y)
        var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #fff;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none;
    }
}
.navbar-toggler:hover {
    text-decoration: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}
.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.navbar-expand .navbar-nav {
    flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
    overflow: visible;
}
.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}
.navbar-expand .navbar-toggler {
    display: none;
}
.navbar-expand .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
    display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
}

.navbar-dark {
    --bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.accordion-button::after {
    background: none;
    content: "\002B";
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    margin-top: -30px;
}
.accordion-button:not(.collapsed)::after {
    background: none;
    content: "\2212";
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    transform: none !important;
}
.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    --bs-breadcrumb-bg: ;
    --bs-breadcrumb-border-radius: ;
    --bs-breadcrumb-divider-color: #6c757d;
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: var(--bs-breadcrumb-border-radius);
}
.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}
.breadcrumb-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
#willEstate .jumbotron {
    background-color: #fffdfa;
    border-radius: 20px;
    box-shadow: 0 3px 10px 0 rgba(212, 195, 170, 0.31);
    border: solid 1px #fffdfa;
    padding: 29px 80px 29px 60px;
    margin: 0px 0px 60px 0px;
}
#willEstate .hd-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
#willEstate h1 {
    font-size: 35px;
    font-weight: bold;
    color: #000;
}
#willEstate p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: normal;
    color: #797878;
}
#willEstate .side-img {
    width: 300px;
    float: right;
}
img.combined-shape {
    border-radius: 6px;
    display: inline-block;
    vertical-align: top;
}
.ratebeat {
    width: 158px;
    height: 49px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: normal;
    color: #494949;
}
.mortgage {
    font-size: 12px;
    font-weight: 500;
    color: #494949;
    vertical-align: top;
}
.mortgage::before {
    content: "";
    display: inline-block;
    border-bottom: 2px solid #000;
    width: 56%;
    margin: 0 auto;
    margin-right: 2px;
}
.userIcon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: inline-block;
    margin: 0px 15px;
}
.ratebeat .text-style-1 {
    font-weight: normal;
}
.column-logo {
    display: inline-block;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
}
.breadcrumb-holder {
    margin-top: 30px;
}
.outerDiv {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#b4 .card-body {
    min-height: 100%;
}

#b4 .card {
    min-height: 420px;
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 3px 0 rgba(228, 228, 228, 0.5);
    border: solid 1px #ededed;
    background-color: #fefefe;
    margin-bottom: 30px;
}
#b4 .link {
    /* margin: 20px 470px 0 0; */
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #af1c2a;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}
#b4 p {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #797878;
}
#b4 .card-title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

#hero {
    margin-top: 80px;
}
#hero h3 {
    margin-top: 70px;
    font-size: 44px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}
#hero p {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #797878;
    margin: 30px 160px 60px 160px;
}

#hero .card {
    text-align: center;
    border-radius: 20px;
    background-color: #fffdfa;
    justify-content: center;
    box-shadow: 0 0.5px 5px -1px rgba(251, 141, 141, 0.811);
}

#threecard {
    padding: 80px 0 80px 0;
}
#threecard .card {
    min-height: 420px;
    border-radius: 20px;
    border: solid 1px #ededed;
    box-shadow: 0 4px 3px 0 rgba(228, 228, 228, 0.5);
}

#threecard img {
    max-width: 64px;
    margin: 30px 0px 20px 30px;
}

#threecard .card-title {
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}
#threecard p {
    margin: 20px 0 29px 0px;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: normal;
    color: #797878;
}

#threecard a {
    margin: 29px 0px 0 0.5px;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #af1c2a;
}
#answers .sec-title {
    font-size: 48px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}
#answers .card {
    /* padding: 30px 10px 30px 0; */
    border-radius: 10px;
    box-shadow: 0 2px 20px 2px rgba(1, 1, 0, 0.1);
}
#answers img {
    padding: 10px 32px 10px 40px;
}
#answers .card a {
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #5c5b5a;
}

#ans {
    margin-bottom: 20px;
}
#formsA .sec-title {
    font-size: 48px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    margin: 60px 0px 60px 0px;
}
#formsA .card {
    border-radius: 20px;
    box-shadow: 0 4px 3px 0 rgba(228, 228, 228, 0.5);
    border: solid 1px #ededed;
    background-color: #fefefe;
    /* min-height: 400px; */
}
#formsA .card-body {
    padding: 74px 30px 60px;
}
#formsA .card-title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}
#formsA .card-body p {
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #797878;
}

#formsA .card-body a {
    font-size: 21px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #af1c2a;
}
#form-sec-head .sec-title {
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    /* color: #fff; */
    text-align: left;
    margin-top: 30px;
}
#form-sec-head .sec-sub-title {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.83;
    letter-spacing: normal;
    color: #797878;
}
.form-holder {
    padding-bottom: 50px;
}
.wrap-sec {
    width: 100%;
    margin: 0 auto;
    background-color: #191919;
    padding: 20px 0 0 0;
    /* background-image: url("/images/group.png"); */
}

.footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #2c3e50;
    color: #fff;
}
.input-group {
    flex-wrap: nowrap !important;
}

.skip-btn {
    color: #c5c1be !important;
    border: none !important;
    background-color: #191919 !important;
}
.skip-btn:hover {
    background-color: #303030 !important;
}
.back-btn {
    color: #c5c1be !important;
    border-color: #d3d1cf !important;
    /* border: none !important; */
}
.back-btn:hover {
    background-color: #303030 !important;
}
.pets-details .form-control {
    border: none !important;
    border-bottom: solid 1px #9b9b9b !important;
    border-radius: 0 !important;
    font-weight: 600;
    color: #171717;
}
.pets-details .input-group-text {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    background: none !important;
    border: none !important;
    padding: 0rem 0rem !important;
}

/* //@media (min-width: 576px) { */
@media (max-width: 576px) and (min-width: 300px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
    .navbar-expand-sm .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }
    .navbar-expand-sm .offcanvas .offcanvas-header {
        display: none;
    }
    .navbar-expand-sm .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
    #willEstate .jumbotron {
        padding: 50px 50px 29px 50px;
    }
    .userIcon {
        display: none;
    }
    #threecard {
        padding: 40px 0 20px 0;
    }
    #hero p {
        margin: 20px 0px 20px 0px;
    }
    #threecard a {
        margin: 0px 0px 0 0px;
    }
    #threecard .card {
        margin-bottom: 30px;
    }
    #formsA .sec-title {
        font-size: 28px;
        margin: 30px 0px 30px 0px;
    }
    #answers .sec-title {
        font-size: 28px;
    }
    #answers img {
        display: none;
    }
    #form-sec-head .sec-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .breadcrumb-item a {
        font-size: 12px;
    }
    #form-sec-head .sec-sub-title {
        line-height: 1.5;
        font-size: 16px;
    }
    #signUpForm .form-header .stepIndicator {
        font-size: 16px;
        text-align: start;
    }
    #signUpForm .card {
        padding: 10px !important;
    }
    #signUpForm .form-header,
    .form-footer {
        flex-wrap: wrap !important;
    }

    #signUpForm .card .box {
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .step .remove {
        display: none;
    }
    .step .faq-box .title {
        font-size: 28px;
    }
    .step .faq-box p {
        margin: 20px 0 0 !important;
        font-size: 18px !important;
    }
    #addtostatevault {
        padding: 50px 5px;
    }
    #landing-image {
        padding: 160px 0 100px 0 !important;
    }
    #landing-image h2 {
        font-size: 20px;
    }
    #landing-image p {
        font-size: 17px !important;
    }
    #small-cards h3 {
        /* font-size: 24px !important; */
        font-size: 22px !important;
        font-weight: 700;
        width: 96%;
        margin: auto;
    }
    #footer h3 {
        font-size: 13px !important;
    }
    #footer h5 {
        font-size: 16px !important;
    }
    #footer h2 {
        font-size: 22px;
    }
    #footer h6 {
        line-height: 1.5;
        font-size: 16px;
    }
    #footer h4 {
        font-size: 18px;
    }
    #will-estate p {
        font-size: 18px;
    }
    #will-estate .free-will-estate-text {
        padding: 20px 0 0 19px;
    }
    #welcome-back {
        padding: 57px 0 !important;
    }
    #welcome-back h1 {
        font-size: 36px !important;
    }
    #welcome-back p {
        font-size: 8px;
    }
    #welcome-back h4 {
        margin-top: 56px;
        font-size: 13px;
    }
    #welcome-back h6 {
        font-size: 8px;
    }
    #footer .chat-with-us-card {
        text-align: center;
        padding: 10px;
        border-radius: 15px;
        background-color: #454545 !important;
        margin-top: -91px;
        margin-bottom: 41px;
    }
    #footer button {
        font-size: 16px;
    }
    #footer input {
        font-size: 12px;
    }
    #trust-creation-process img {
        width: 100% !important;
        height: auto !important;
    }
}
@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }

    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
    .navbar-expand-md .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }
    .navbar-expand-md .offcanvas .offcanvas-header {
        display: none;
    }
    .navbar-expand-md .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
    #answers img {
        padding: 0px 0px 0px 0px;
    }
    #landing-image {
        padding: 182px 0 130px 0 !important;
    }
}
@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
    #mainNav {
        padding-top: 1rem;
        padding-bottom: 1rem;
        /* font-family: "Montserrat", -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"; */
        font-weight: 700;
        border-bottom: solid 1px #989898;
    }
    #mainNav .navbar-brand {
        color: #494949;
    }
    #mainNav .navbar-nav {
        margin-top: 0rem;
    }
    #mainNav .navbar-nav li.nav-item a.nav-link {
        color: #fff;
    }
    #mainNav .navbar-nav li.nav-item a.nav-link:hover {
        color: #af1c2a;
    }
    #mainNav .navbar-nav li.nav-item a.nav-link:active,
    #mainNav .navbar-nav li.nav-item a.nav-link:focus {
        /* color: #000; */
        color: #8a8989;
    }
    #mainNav .navbar-nav li.nav-item a.nav-link.active {
        color: #af1c2a;
    }
    #mainNav .navbar-toggler {
        font-size: 80%;
        padding: 0.8rem;
    }

    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }
    .navbar-expand-lg .offcanvas .offcanvas-header {
        display: none;
    }
    .navbar-expand-lg .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
    #landing-image {
        padding: 263px 0 263px 0 !important;
    }
    #will-estate .free-will-estate-text {
        padding: 102px 0 0 35px;
    }
    #will-estate p {
        font-size: 15px;
    }
}
@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
    .navbar-expand-xl .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }
    .navbar-expand-xl .offcanvas .offcanvas-header {
        display: none;
    }
    .navbar-expand-xl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
    #landing-image {
        padding: 263px 0 141px 0 !important;
    }
    #will-estate .free-will-estate-text {
        padding: 198px 0 0 0;
    }
    #will-estate p {
        font-size: 20px;
    }
}
@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-xxl .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-xxl .navbar-toggler {
        display: none;
    }
    .navbar-expand-xxl .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }
    .navbar-expand-xxl .offcanvas .offcanvas-header {
        display: none;
    }
    .navbar-expand-xxl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
    #will-estate .free-will-estate-text {
        padding: 198px 0 0 0;
    }
    #will-estate p {
        font-size: 20px;
    }
    /* #landing-image {
        padding: 341px 0 271px 0 !important;
    } */
    #landing-image h2 {
        font-size: 62px !important;
    }
    #landing-image p {
        font-size: 33px !important;
    }
    /* start #WT-132 */
    #welcome-to-will-trust h2 {
        font-size: 46px;
    }
    #welcome-to-will-trust p {
        font-size: 23px;
    }
    #why-choose-us h4 {
        font-size: 27px;
    }
    #why-choose-us p {
        font-size: 22px;
    }
    #why-choose-us img {
        width: 55%;
    }
    #our-services-include h2 {
        font-size: 39px;
    }
    #our-services-include h6 {
        font-size: 30px;
    }
    #our-services-include img {
        width: 25%;
    }
    #our-services-include h5 {
        font-size: 28px;
    }
    #our-services-include p {
        font-size: 23px;
    }
    #our-services-include h4 {
        font-size: 25px;
    }
    #meet-our-team h6 {
        font-size: 23px;
    }
    #meet-our-team p {
        font-size: 17px;
    }
    /* end #WT-132 */
    /* start #WT-118 */
    #essential-guide h2 {
        font-size: 62px;
    }
    #essential-guide p {
        font-size: 31px;
    }
    #understanding-trusts {
        padding: 178px 140px 69px 65px;
    }
    #understanding-trusts h1 {
        font-size: 66px;
    }
    #understanding-trusts p {
        font-size: 23px;
    }
    #trust-type h1 {
        font-size: 63px;
    }
    #trust-type h6 {
        font-size: 29px;
    }
    #trust-type h5 {
        font-size: 32px;
    }
    #trust-type p {
        font-size: 24px;
    }
    #benefits-of-trust h1 {
        font-size: 60px;
    }
    #benefits-of-trust h3 {
        font-size: 30px;
    }
    #benefits-of-trust h4 {
        font-size: 22px;
    }
    #creating-trust h2 {
        font-size: 54px;
    }
    #creating-trust h6 {
        font-size: 24px;
    }
    #creating-trust h5 {
        font-size: 28px;
        margin-top: 25px;
    }
    #creating-trust p {
        font-size: 23px;
    }
    #fund-review .card-title {
        font-size: 35px;
    }
    #fund-review p {
        font-size: 22px;
    }
    #conclusion h4 {
        font-size: 53px;
        line-height: 2;
    }
    #conclusion p {
        font-size: 22px;
    }
    #conclusion-estate p {
        font-size: 22px;
        line-height: 1.8 !important;
    }
    /* end #WT-118 */
    #welcome-back {
        padding: 349px 0px;
    }
    #estate-life-stages .for-image {
        margin: -39px 0 0 118px;
    }
    #estate-life-stages h5 {
        margin-top: 25px !important;
    }
    #creating-trust .for-image {
        margin: -39px 0 0 118px;
    }
    #will-making-process .progress-line {
        margin: 94px 2px 0px 4px;
    }
    #will-making-process .review-revision {
        margin: 25px 0 53px 0;
    }
    #the-trust-creation-process .progress-line {
        margin: 97px 2px 0px 2px;
    }
}
/* start #WT-61 */
@media (min-width: 1600px) {
    /* #landing-image {
        padding: 356px 0 441px 0 !important;
    } */
    #landing-image h2 {
        font-size: 62px !important;
    }
    #landing-image p {
        font-size: 33px !important;
    }
    /* start #WT-118 */
    #understanding-trusts {
        padding: 298px 163px 132px 65px;
    }
    /* end #WT-118 */
    #welcome-back {
        padding: 349px 0px;
    }
    #will-making-process .progress-line {
        width: 72px;
    }
    #the-trust-creation-process .progress-line {
        width: 130px;
    }
}
@media (min-width: 2100px) {
    /* #landing-image {
        padding: 371px 0 600px 0 !important;
    } */
    /* start #WT-142 */
    #understanding-trusts {
        padding: 550px 163px 132px 65px;
    }
    /* end #WT-142 */
    #welcome-back {
        padding: 349px 0px;
    }
}
/* end #WT-61 */
.tooltip {
    z-index: 0 !important;
}
.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
input:focus {
    margin-top: 5px !important;
    border-color: #af1c2a !important; /* Change to your desired focus border color */
    box-shadow: 0 0 0 0.2rem rgba(175, 28, 42, 0.8) !important; /* Change to your desired box shadow color */
}
#signUpForm input:focus {
    border: none !important;
}
#login-page .card {
    border: solid 2px #555 !important;
}
#login-page .card-title h3 {
    font-family: Manrope;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}
input {
    color: #fff;
}
#login-page input {
    background-color: #000 !important;
    color: #fff;
    margin: 0px !important;
}
#login-page label {
    font-family: Manrope;
    font-size: 20px;
}

#will-health-card .card-header h5 {
    font-size: 30px !important;
}
#will-health-card .card-body p {
    font-size: 20px !important;
}
/*This screen size represents Mobile*/
/*This screen size represents Mobile*/
@media (max-width: 576px) and (min-width: 300px) {
    #login-page .login-img {
        margin: 0px !important;
    }
    #login-page .login-img {
        margin: 0px !important;
        padding: 25px !important;
    }
    #login-page .card {
        padding: 0px !important;
        margin: 0px !important;
    }
    #login-page img {
        width: 60% !important;
        height: auto;
    }
    #login-page .card-title {
        padding: 0px !important;
    }
    #footer img {
        width: 75% !important;
    }
    #signUpForm input {
        width: 100% !important;
    }
    #signUpForm .card-body {
        padding: 10px 10px !important;
    }
    .custom-button-yn label {
        padding: 7px 14px;
        font-size: 15px;
    }
    .card .card-title,
    #child .card-title,
    #trustee-container .card-title,
    #executor-container .card-title,
    #gift-container .card-title {
        margin: 30px 0px;
        font-size: 15px !important;
    }
    .card .card-title {
        font-size: 20px !important;
    }
    .form-holder {
        padding-bottom: 5px;
    }
    /* #signUpForm .card {
        padding: 15px 5px !important;
    } */
    .faq-box {
        margin-top: 42px !important;
    }
    .custom-m-status-self label {
        min-width: 100%;
        min-height: auto;
        padding: 35px;
    }
    .custom-m-status-self img {
        width: 25%;
    }
    .property label {
        min-width: 100% !important;
    }
    #signUpForm .form-footer button {
        padding: 6px 20px;
        font-size: 16px;
    }
    /* start #WT-23 */
    #small-cards .card {
        padding: 22px 13px !important;
        height: 140px;
    }
    #most-trusted-name h4 {
        font-size: 34px !important;
    }
    #most-trusted-name h6 {
        font-size: 22px !important;
        line-height: 1.3;
    }
    #pricing h3 {
        /* font-size: 24px !important; */
        font-size: 22px !important;
        font-weight: 700;
        width: 96%;
        margin: auto;
        line-height: 1.5;
    }
    #footer h3 {
        font-size: 22px !important;
    }
    #footer input {
        width: 60%;
    }
    #most-trusted-name .most-trusted-name-dis {
        font-size: 20px !important;
    }
    #most-trusted-name .corousel-card {
        padding: 39px !important;
        margin: 20px 0px 0px 0px !important;
    }

    /* end #WT-23 */
    /* start #WT-61 */
    #landing-image button {
        background-color: #af1c2a;
        border-radius: 58px;
        padding: 10px 32px;
        border: none !important;
        font-family: Manrope;
        font-size: 20px;
        font-weight: 700;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #ffefef;
        margin: 10px -0px !important;
    }
    #company-logos {
        margin-top: -40px;
    }
    #company-logos img {
        background-color: #000;
        padding: 5px 0;
        /* margin: -35px 0px 30px; */
        height: auto;
        width: 100%;
    }
    #landing-image p {
        /* font-size: 22px !important;
        line-height: 1.3; */
        font-size: 20px !important;
        line-height: 1.4;
        width: 80%;
    }
    #landing-image h2 {
        /* font-size: 35px !important; */
        font-size: 26px !important;
        width: 80%;
    }
    #landing-image {
        /* background-position: -434px, 0 !important; */
        background-position: 80%;
    }
    /* end #WT-61 */
    #trust-page .trust-page-text {
        padding-top: 0px !important;
    }
    /* #trust-page {
        padding: 100px 10px !important;
    } */
    #pricing-page p {
        font-size: 20px !important;
        line-height: 1.4;
    }
    #pricing-page h1 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #your-peace-in-mind h3 {
        font-size: 22px !important;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 36px;
    }
    #will-trust-additional h4 {
        font-size: 18px !important;
        line-height: 1.4;
        text-align: justify;
    }
    #why-establish h5 {
        font-size: 23px !important;
    }
    #establishing-turst .card-title {
        font-size: 33px !important;
    }
    #success-page img {
        width: 25% !important;
    }
    #failed-page img {
        width: 25% !important;
    }
    /* start #WT-99 */
    #essential-guide {
        padding: 50px 0px !important;
    }
    #essential-guide h2 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #essential-guide p {
        line-height: 1.4;
        font-size: 20px;
    }
    #understanding-trusts {
        padding: 50px 0px !important;
        /* background-position: -357px 0px; */
        background-position: 76%;
    }
    #understanding-trusts h1 {
        font-size: 45px !important;
    }
    #understanding-trusts p {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    #trust-type {
        padding: 50px 0px !important;
    }
    #trust-type h6 {
        font-size: 20px !important;
        line-height: 1.4 !important;
        text-align: center;
        font-weight: normal;
    }
    #trust-type h1 {
        font-size: 45px !important;
    }
    #trust-type h5 {
        font-size: 20px !important;
        font-weight: bold;
        line-height: 1.4;
    }
    #trust-type p {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #benefits-of-trust {
        padding: 50px 0px !important;
    }
    #benefits-of-trust img {
        margin: 30px 0 !important;
    }
    #benefits-of-trust h1 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 16px;
    }
    #benefits-of-trust h4 {
        font-size: 18px !important;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    #creating-trust .for-image {
        margin: -39px 0 0 135px !important;
    }
    #fund-review {
        padding: 50px 0px !important;
    }
    #fund-review .row {
        row-gap: 10px !important;
    }
    #conclusion {
        padding: 50px 0px 150px 0px !important;
    }
    /* end #WT-99 */
    /* start #WT-104 */
    #welcome-to-will-trust p {
        font-size: 20px !important;
        line-height: 1.4;
    }
    #welcome-to-will-trust {
        padding: 50px 0px !important;
    }
    #why-choose-us h1 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 12px;
        text-align: center;
    }
    #why-choose-us h4 {
        font-size: 20px;
        text-align: center;
    }
    #our-services-include h5 {
        margin-top: 11px;
    }
    #why-choose-us img {
        height: 100% !important;
        width: 40% !important;
        margin-bottom: 50px !important;
    }
    #why-choose-us p {
        font-size: 18px !important;
        line-height: 1.4;
        text-align: center;
    }
    #why-choose-us .row {
        margin-bottom: 15px;
    }

    #schedule-consultation .card {
        padding: 40px 5px !important;
        margin-top: 0px;
    }
    #schedule-consultation p {
        font-size: 18px !important;
    }
    #schedule-consultation .row {
        text-align: center !important;
    }
    #schedule-consultation button {
        margin-top: 34px !important;
        font-size: 20px;
    }
    #schedule-consultation h3 {
        font-size: 20px;
        font-weight: bold;
    }
    #our-services-include p {
        margin-top: 20px !important;
        font-size: 18px !important;
        line-height: 1.4;
    }
    #our-services-include h2 {
        font-size: 22px !important;
    }
    /* end #WT-104 */
    /* start #WT-101 */
    #medical-decisions {
        padding: 50px 0px !important;
    }
    #medical-decisions h2 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #medical-decisions p {
        font-size: 20px !important;
        line-height: 1.4;
    }
    #health-care-directive {
        padding: 50px 0px !important;
    }
    #health-care-directive h5 {
        font-size: 20px !important;
        font-weight: bold;
    }
    #health-care-directive p {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #our-healthcare-directive-services {
        padding: 50px 0px !important;
    }
    #our-healthcare-directive-services h1 {
        font-size: 30px !important;
    }
    #our-healthcare-directive-services h3 {
        font-size: 22px !important;
        font-weight: 600;
    }
    #our-healthcare-directive-services .row {
        row-gap: 15px !important;
    }
    #our-healthcare-directive-services .card {
        padding: 20px 0px !important;
    }
    #our-healthcare-directive-services .card-title {
        font-size: 20px !important;
        font-weight: bold;
    }
    #our-healthcare-directive-services p {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #heathcare-bottom-paragraph {
        padding: 50px 0px 150px 0px !important;
    }
    #heathcare-bottom-paragraph p {
        font-size: 18px !important;
        line-height: 1.4;
        text-align: justify;
    }
    /* end #WT-101 */
    /* start #WT-98 */
    #estate-comprehensive-guide h2 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #estate-comprehensive-guide {
        padding: 50px 0px !important;
    }
    #understanding-estate {
        padding: 50px 0px !important;
        /* background-position: -132px 0px; */
        background-position: 76%;
    }
    #understanding-estate h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 16px;
    }
    #understanding-estate p {
        font-size: 18px;
        line-height: 1.4;
    }
    #component-estate-planning {
        padding: 50px 0px !important;
    }
    #component-estate-planning h3 {
        font-size: 22px !important;
        line-height: 1.4;
        font-weight: 600;
        text-align: center;
    }
    #component-estate-planning h5 {
        font-size: 20px !important;
        font-weight: bold;
    }
    #component-estate-planning p {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #importance-estate-planning {
        padding: 50px 0px !important;
    }
    #importance-estate-planning h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin: 0px;
        line-height: 1.4;
    }
    #importance-estate-planning h6 {
        font-size: 20px;
        line-height: 1.4;
        font-weight: normal;
    }
    #importance-estate-planning img {
        margin: 30px 0px !important;
    }
    #importance-estate-planning h5 {
        font-size: 20px !important;
        font-weight: bold;
    }
    #importance-estate-planning h4 {
        font-size: 18px !important;
    }
    #estate-life-stages h3 {
        line-height: 1.4 !important;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
    }
    #estate-life-stages h6 {
        line-height: 1.4 !important;
        font-size: 20px;
        font-weight: normal;
        text-align: center;
    }
    #estate-life-stages h5 {
        font-size: 20px !important;
    }
    #estate-life-stages p {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #estate-life-stages .for-image {
        margin: -39px 0 0 141px !important;
    }
    #conclusion-estate {
        padding: 50px 0px 150px 0px;
    }
    #conclusion-estate img {
        margin: 30px 0 !important;
    }

    /* end #WT-98 */
    /* start #WT-108 */
    #all-faqs {
        padding: 50px 0px !important;
    }
    #all-faqs h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    #all-faqs p {
        font-size: 20px;
        line-height: 1.4;
    }
    #all-faqs-faq {
        padding: 30px 0px 150px 0px !important;
        margin-top: -15px;
    }
    #all-faqs-faqSec .accordion-button {
        font-size: 18px !important;
        padding: 15px 0px !important;
        font-weight: bold;
    }
    #all-faqs-faqSec .accordion-body {
        font-size: 18px;
        padding: 10px 0px !important;
        line-height: 1.4;
    }
    /* end #WT-108 */
    /* start #WT-100 */
    #deed-transfer {
        padding: 50px 0px !important;
    }
    #deed-transfer h2 {
        font-size: 26px;
        line-height: 1.4;
    }
    #deed-transfer p {
        font-size: 20px;
        line-height: 1.4;
    }
    #types-of-deed-transfer {
        padding: 50px 0px !important;
    }
    #types-of-deed-transfer h1 {
        font-size: 47px !important;
    }
    #types-of-deed-transfer h5 {
        font-size: 20px !important;
        font-weight: bold;
    }
    #types-of-deed-transfer p {
        font-size: 18px;
        line-height: 1.4;
    }
    #types-of-deed-transfer .row {
        row-gap: 15px;
    }
    #deedtransfer-faq {
        padding: 50px 0px 150px 0px !important;
    }
    #deedtransfer-faq h1 {
        font-size: 22px !important;
    }
    #deedtransfer-faq h4 {
        font-size: 20px;
        line-height: 1.4;
    }
    #deedtransfer-faqSec .accordion-button {
        font-size: 18px !important;
        padding: 15px 0px !important;
        font-weight: bold;
    }
    #deedtransfer-faqSec .accordion-body {
        font-size: 18px;
        padding: 10px 0px !important;
        line-height: 1.4;
    }
    /* end #WT-100 */
    /* start #WT-115 */
    #crafting-your-will {
        padding: 50px 0px;
    }
    #crafting-your-will h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    #crafting-your-will p {
        font-size: 20px;
        text-align: justify;
        line-height: 1.4;
    }
    #crafting-your-will img {
        width: 90%;
        margin-top: 45px;
    }
    #why-create-will {
        padding: 50px 0px;
    }
    #why-create-will h1 {
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        margin: auto;
    }
    #why-create-will h6 {
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
    }
    #why-create-will .card-text {
        font-size: 18px;
        line-height: 1.4;
    }
    #will-making-process {
        padding: 50px 0px;
    }
    #will-making-process h1 {
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    #will-making-process h6 {
        font-size: 20px;
        text-align: justify;
        line-height: 1.4;
        text-align: center;
        margin: auto;
    }
    #will-making-process .row {
        justify-content: center !important;
    }
    #will-making-process img {
        margin-top: 10px;
        width: 80%;
    }
    #will-making-process .mobile-custom-width,
    #the-trust-creation-process .mobile-custom-width {
        width: 75%;
    }
    #will-making-process h5 {
        font-size: 20px;
        margin: 20px 0px;
        font-weight: bold;
    }
    #will-making-process p {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 31px;
    }
    #types-of-wills {
        padding: 50px 0px;
    }
    #types-of-wills h1 {
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: -16px;
    }
    #types-of-wills h5 {
        font-size: 20px;
        font-weight: bold;
    }
    #types-of-wills p {
        margin-bottom: 30px !important;
        text-align: justify;
        font-size: 18px;
        line-height: 1.4;
    }
    #types-of-wills a {
        font-size: 20px;
    }
    #periodic-review {
        padding: 50px 0px 150px 0px;
    }
    #periodic-review h1 {
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 600;
        text-align: center;
    }
    #periodic-review p {
        font-size: 18px;
        line-height: 1.4;
        text-align: justify;
    }
    /* end #WT-115 */
    /* start #WT-116 */
    #types-of-deed-transfer .card-title {
        margin: 0px 0px 19px 0px !important;
    }
    /* end #WT-116 */
    /* start #WT-110 */
    #trust-page {
        padding: 50px 0px;
    }
    #trust-page h2 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #trust-page p {
        text-align: justify;
        margin-bottom: 53px;
        font-size: 20px;
        line-height: 1.4;
    }
    #trust-page img {
        width: 90%;
    }
    #why-establish {
        padding: 50px 0px;
    }
    #why-establish .row {
        row-gap: 10px !important;
        text-align: center !important;
    }
    #why-establish h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 12px;
    }
    #why-establish h5 {
        font-size: 20px !important;
        font-weight: bold !important;
    }
    #why-establish .card {
        padding: 20px 5px;
    }
    #why-establish .card-title {
        margin: 0px 0px 15px 0px !important;
    }
    #why-establish .card-text {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #our-trust-services {
        padding: 50px 0px;
    }
    #our-trust-services h1 {
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        margin-bottom: -3px;
    }
    #our-trust-services h6 {
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
        font-weight: normal;
        margin-bottom: 12px;
    }
    #our-trust-services .row {
        justify-content: center !important;
        row-gap: 10px !important;
    }
    #our-trust-services .card {
        padding: 20px 5px;
    }
    #our-trust-services .card-title {
        font-size: 20px !important;
        font-weight: bold;
        margin: 0px 0px 15px 0px !important;
    }
    #our-trust-services .card-text {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #the-trust-creation-process {
        padding: 50px 0px;
    }
    #the-trust-creation-process h1 {
        font-size: 22px !important;
        font-weight: 600;
        text-align: center;
        margin-bottom: 12px;
    }
    #the-trust-creation-process .row {
        justify-content: center !important;
    }
    #the-trust-creation-process h5 {
        font-size: 20px;
        font-weight: bold;
        margin: 20px 0px;
    }
    #the-trust-creation-process p {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 0px;
        margin-bottom: 31px;
    }
    #the-trust-creation-process img {
        margin-top: 10px;
        width: 80% !important;
    }
    #trust-form {
        padding: 60px 0px;
    }
    #trust-form h3 {
        text-align: justify;
        font-size: 20px;
        line-height: 1.4;
    }
    #trust-page-faq {
        padding: 60px 0px 150px 0px;
    }
    #trust-page-faq p {
        font-size: 20px;
        line-height: 1.4;
    }
    /* end #WT-110 */
    /* start #WT-142 */
    #creating-trust h6 {
        line-height: 1.4;
        font-size: 20px;
        font-weight: normal;
        text-align: center;
    }
    /* end #WT-142 */
    /* start #WT-153 */
    #invoice-page .for-vertical-border {
        display: none !important;
    }
    #invoice-page h3 {
        font-size: 39px;
    }
    #invoice-page h2 {
        font-size: 38px;
        margin: 0 0 37px 0;
    }
    #invoice-page h5 {
        font-size: 21px;
    }
    #invoice-page p {
        font-size: 22px;
    }
    #invoice-page img {
        width: 100%;
        margin: 48px 0px;
    }
    /* end #WT-153 */
    /* start #WT-194 */
    #small-cards {
        padding: 50px 0px !important;
    }
    #small-cards p {
        /* font-size: 20px !important;
        line-height: 1.5; */
        font-size: 18px !important;
        line-height: 1.5;
        width: 86%;
        margin: auto;
        text-align: center;
        /* margin: 48px auto 0px; */
    }
    #small-cards button {
        background-color: #af1c2a;
        border-radius: 58px;
        padding: 10px 32px;
        border: none !important;
        font-family: Manrope;
        font-size: 20px;
        font-weight: 700;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #ffefef;
        /* margin: 10px -0px !important; */
    }

    #pricing {
        padding: 50px 0px !important;
    }
    #pricing .two-card .card-title {
        font-size: 20px !important;
        font-family: Manrope;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 2.67;
        letter-spacing: normal;
        text-align: center;
        color: #fff;
    }
    #pricing .two-card .card-subtitle {
        font-size: 35px !important;
        font-family: Manrope;
        font-weight: 700;
        font-stretch: normal;
        font-style: normal;
        line-height: 1;
        letter-spacing: normal;
        text-align: center;
        color: #af1c2a;
    }
    #pricing .two-card .card-text {
        font-size: 20px !important;
        font-family: Manrope;
        font-weight: 400;
        font-stretch: normal;
        font-style: normal;
        /* line-height: 1.67; */
        letter-spacing: normal;
        text-align: center;
        color: #fff;
        margin: 16px 0 0;
    }
    #pricing button {
        font-family: Manrope;
        font-size: 20px;
        margin: 20px 0 20px;
        background-color: #af1c2a;
        border-radius: 40px;
        padding: 12px 42px;
        border: none !important;
        color: #fff;
    }
    #pricing a {
        font-family: Manrope;
        font-size: 20px;
        font-weight: 700;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #ffefef;
    }
    #pricing .three-card .card-text {
        /* font-size: 20px !important; */
        font-size: 18px;
        line-height: 1.5;
    }
    #pricing .three-card h4 {
        /* font-size: 22px !important; */
        font-size: 20px;
    }
    #pricing .three-card .card {
        border-radius: 15px;
        border: solid 2px #3e3e3e !important;
        background-color: rgba(0, 0, 0, 0.82) !important;
        padding: 0px 16px 23px 16px;
        height: 100%;
    }
    #pricing .three-card .card-body {
        padding: 0px !important;
    }
    #trust-will-button .heading h3 {
        /* font-size: 24px !important; */
        margin-bottom: 12px !important;
        font-size: 22px !important;
        width: 95%;
        text-align: center;
        margin: 0 auto;
        line-height: 1.5;
        font-weight: 600;
    }
    #trust-will-button .switch6-light > span span {
        font-size: 20px;
    }
    #trust-will-button .heading h6 {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 600;
    }
    #trust-will-button h3 {
        /* font-size: 24px;
        margin-bottom: 16px; */
        font-size: 22px !important;
        width: 96%;
        text-align: center;
        margin: 0 auto;
        line-height: 1.5;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 12px;
    }
    #trust-will-button p {
        font-size: 18px;
        line-height: 1.5;
    }
    #following-documents .accordion-button {
        font-size: 18px !important;
        padding: 15px 0px !important;
    }
    #following-documents .accordion-body {
        font-size: 18px !important;
        padding: 10px 0px !important;
    }
    #trust-will-button .accordion-heading {
        padding-left: 0px;
    }
    #most-trusted-name {
        padding: 50px 0px !important;
    }
    #most-trusted-name h3 {
        font-size: 24px;
        margin-bottom: 16px !important;
    }
    #faq h3 {
        /* font-size: 24px;
        margin-bottom: 16px; */
        font-size: 22px !important;
        width: 95%;
        text-align: center;
        margin: 0 auto 12px auto;
        line-height: 1.5;
        font-weight: 600;
    }
    #faqSec .accordion-button {
        /* font-size: 22px !important;
        padding: 10px 0px !important; */
        font-size: 18px !important;
        padding: 15px 0px !important;
        font-weight: bold;
    }
    .accordion-button::after {
        margin-top: -20px;
    }
    #faqSec .accordion-body {
        font-size: 18px;
        padding: 10px 0px !important;
        line-height: 1.4;
    }
    #faq {
        padding: 50px 0px 150px 0px !important;
    }
    #trust-will-button {
        padding: 50px 0px !important;
    }
    #faq h5 {
        line-height: 1.3;
        font-size: 18px;
        width: 96%;
        font-weight: 600;
    }
    #footer input[type="text"] {
        font-size: 16px !important;
    }
    #types-of-wills h6 {
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
        font-weight: normal;
    }
    #why-create-will .row {
        row-gap: 10px;
    }
    #trust-page-faq h1 {
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 600;
    }
    #trust-page-faqSec .accordion-button {
        font-size: 18px !important;
        padding: 15px 0px !important;
        font-weight: bold;
    }
    #trust-page-faqSec .accordion-body {
        font-size: 18px;
        padding: 10px 0px !important;
        line-height: 1.4;
    }
    #estate-comprehensive-guide p {
        font-size: 20px;
        line-height: 1.4;
    }
    #importance-estate-planning p {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    #conclusion-estate h4 {
        font-size: 22px;
        margin-bottom: 16px;
        font-weight: 600;
        text-align: center;
    }
    #conclusion-estate p {
        font-size: 18px;
        line-height: 1.4;
    }
    #understanding-trusts h3 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.4;
    }
    #trust-type h3 {
        font-size: 22px;
        font-weight: 600;
        text-align: center;
    }
    #benefits-of-trust h3 {
        font-size: 20px;
    }
    #creating-trust h2 {
        font-size: 22px;
        font-weight: 600;
        text-align: center;
    }
    #creating-trust h5 {
        font-size: 20px !important;
    }
    #creating-trust p {
        font-size: 18px;
        line-height: 1.4;
    }
    #fund-review .card-title {
        font-size: 20px !important;
    }
    #fund-review .card-text {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    #fund-review .card {
        padding: 20px 0px !important;
    }
    #conclusion h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 16px;
        line-height: normal;
        text-align: center;
    }
    #conclusion p {
        font-size: 18px;
        line-height: 1.4;
    }
    #welcome-to-will-trust h2 {
        font-size: 26px;
        line-height: 1.4;
    }
    #why-choose-us {
        padding: 50px 0px;
    }
    #our-services-include {
        margin-top: -146px;
    }
    #meet-our-team {
        padding: 50px 0px 150px 0px;
    }
    #meet-our-team h1 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    #our-services-include {
        padding: 193px 0 14px 0;
    }
    #pricing-page {
        padding: 50px 0px;
    }
    #your-peace-in-mind {
        padding: 50px 0px 320px 0px;
    }
    #your-peace-in-mind h5 {
        font-size: 20px !important;
        font-weight: bold;
    }
    #your-peace-in-mind p {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #will-trust-additional h1 {
        font-size: 22px;
        font-weight: bold;
    }
    #will-trust-additional p {
        font-size: 18px !important;
        margin-top: 0px;
        line-height: 1.4;
    }
    #will-trust-additional h3 {
        font-size: 22px;
        font-weight: bold;
    }
    #will-trust-additional h5 {
        font-size: 20px;
    }
    #will-trust-additional ul li {
        font-size: 18px;
        line-height: 1.4;
    }
    /* end #WT-194 */
    #will-making-process .progress-line {
        display: none !important;
    }
    #the-trust-creation-process .progress-line {
        display: none !important;
    }
    /* start #WT-205 */
    #importance-of-healthcare-directives,
    #advance-healthcare-d,
    #components-of-advance-h-d,
    #planning-an-estate,
    #creating-advance-h-d,
    #conclusion-h-d {
        padding: 50px 0px;
    }
    #importance-of-healthcare-directives h2 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #importance-of-healthcare-directives p {
        font-size: 20px;
        line-height: 1.4;
    }
    #advance-healthcare-d h3 {
        font-size: 22px !important;
        font-weight: bold;
        margin-bottom: 12px;
    }
    #advance-healthcare-d p {
        font-size: 20px;
        line-height: 1.4;
    }
    #components-of-advance-h-d .card-title {
        font-size: 20px !important;
        font-weight: bold;
    }
    #components-of-advance-h-d h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 36px;
    }
    #components-of-advance-h-d .card {
        padding: 10px 0px !important;
    }
    #components-of-advance-h-d .card-text {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #planning-an-estate h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 12px;
    }
    #creating-advance-h-d h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 36px;
    }
    #planning-an-estate h6 {
        font-size: 20px;
    }
    #planning-an-estate .card-title {
        font-size: 20px;
    }
    #planning-an-estate .card {
        padding: 10px 0px;
    }
    #planning-an-estate .card-text {
        font-size: 18px !important;
        line-height: 1.4;
    }
    #conclusion-h-d h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 16px;
        text-align: center;
    }
    #conclusion-h-d p {
        font-size: 18px;
        line-height: 1.4;
    }
    #conclusion-h-d h6 {
        font-size: 18px;
        line-height: 1.4;
    }
    #creating-advance-h-d h4 {
        font-weight: bold;
        font-size: 20px;
    }
    #creating-advance-h-d p {
        font-size: 18px;
    }
    #old-new-blog p {
        font-size: 18px;
    }
    #old-new-blog a {
        margin-bottom: 30px;
        line-height: 1.4;
        font-size: 20px;
    }
    #old-new-blog {
        padding: 50px 0px 130px 0px;
    }
    #old-new-blog .row {
        row-gap: 25px;
    }
    /* end #WT-205 */
    /* start #WT-206 */
    #learn-more-about-will-trust {
        padding: 50px 0px;
    }
    #learn-more-about-will-trust h2 {
        font-size: 26px !important;
        line-height: 1.4;
    }
    #featured-blog-listing {
        padding: 50px 0px 130px 0px;
    }
    #featured-blog-listing h3 {
        font-size: 22px !important;
        font-weight: 600;
        margin-bottom: 10px;
    }
    #featured-blog-listing a {
        font-size: 20px;
        margin-bottom: 10px;
    }
    #featured-blog-listing p {
        font-size: 18px;
        margin-top: 16px;
    }
    #featured-blog-listing .row {
        padding: 20px 0px;
    }
    /* end #WT-206 */
    #your-recent-activity h2 {
        font-size: 24px;
    }
    #your-recent-activity .card-title {
        font-size: 20px !important;
        margin: 0px 0px 10px 0px !important;
    }
    #your-recent-activity .card {
        padding: 26px 15px 8px 15px;
    }
    #your-recent-activity .card-body {
        padding: 0px !important;
    }
    #our-services-include h4 {
        line-height: 1.4;
    }
    /* start #WT-231 */
    #what-are-advance-a-d h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }
    #what-are-advance-a-d h6 {
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
    }
    #what-are-advance-a-d ul li {
        font-size: 20px;
        font-weight: 400;
    }
    #what-are-advance-a-d p {
        font-size: 16px;
        line-height: 1.5;
    }
    #what-are-advance-a-d h5 {
        text-align: justify;
        font-size: 16px;
    }
    /* end #WT-231 */
}
/*This screen size represents Tab*/
@media (max-width: 768px) and (min-width: 578px) {
    #order-history-page .table-responsive-sm {
        overflow-x: auto;
    }
    #signUpForm .card {
        padding: 30px !important;
    }
    .faq-box {
        margin-top: 42px;
    }
    .custom-m-status-self label {
        /* min-width: 100%; */
        min-height: auto;
    }
    /* .custom-m-status-self label {
        min-width: 100%;
        min-height: auto;
    } */
    /* start #WT-23 */
    #most-trusted-name h4 {
        font-size: 36px !important;
    }
    #footer h3 {
        font-size: 33px !important;
    }
    #footer h2 {
        font-size: 32px !important;
    }
    #small-cards h3 {
        font-size: 22px !important;
    }
    #most-trusted-name h4 {
        font-size: 36px !important;
    }
    #most-trusted-name h6 {
        font-size: 24px !important;
    }
    #will-estate .free-will-estate-text {
        padding: 64px 0 0 71px !important;
    }
    #will-estate p {
        font-size: 17px !important;
    }
    /* end #WT-23 */
    /* start #WT-61 */
    #landing-image {
        background-position: -223px, 0 !important;
    }
    /* end #WT-61 */
    #trust-page .trust-page-text {
        padding-top: 0px !important;
    }
    #trust-page h2 {
        font-size: 29px !important;
    }
    #pricing-page h1 {
        font-size: 52px !important;
    }
    #pricing-page p {
        font-size: 25px !important;
        text-align: justify;
    }
    /* start #WT-99 */
    #essential-guide h2 {
        font-size: 45px !important;
    }
    #essential-guide p {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    /* #understanding-trusts {
        background-position: -565px 0px !important;
    } */
    #understanding-trusts h1 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #understanding-trusts p {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    #trust-type h1 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #trust-type h6 {
        line-height: 1.8 !important;
    }
    #trust-type h5 {
        font-size: 22px;
    }
    #trust-type p {
        font-size: 20px !important;
        line-height: 2;
    }
    #benefits-of-trust h1 {
        font-size: 45px !important;
    }
    #benefits-of-trust h3 {
        font-size: 30px !important;
    }
    #benefits-of-trust h4 {
        font-size: 20px !important;
    }
    #benefits-of-trust img {
        margin: 30px 0 !important;
    }
    #creating-trust h2 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #creating-trust h6 {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    #creating-trust .margin-bottom {
        justify-content: center !important;
        text-align: center !important;
    }
    #creating-trust .for-image {
        margin: -39px 0 0 132px !important;
    }
    #creating-trust h5 {
        font-size: 26px !important;
    }
    #creating-trust p {
        font-size: 20px !important;
    }
    #fund-review h5 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #fund-review p {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    #conclusion h4 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #conclusion p {
        font-size: 22px;
        line-height: 1.8;
    }
    #conclusion img {
        margin: 30px 0 !important;
    }
    /* end #WT-99 */
    /* start #WT-98 */

    #estate-comprehensive-guide p {
        font-size: 20px !important;
    }

    #understanding-estate p {
        font-size: 20px !important;
    }
    #component-estate-planning p {
        font-size: 20px !important;
    }
    #importance-estate-planning img {
        margin: 30px 0 !important;
    }
    #importance-estate-planning h4 {
        font-size: 20px !important;
    }

    #estate-life-stages h6 {
        line-height: 2 !important;
    }
    #estate-life-stages .for-image {
        margin: -39px 0 0 131px !important;
    }
    #estate-life-stages p {
        font-size: 20px !important;
    }
    #conclusion-estate img {
        margin: 30px 0 !important;
    }
    #conclusion-estate p {
        font-size: 20px !important;
    }

    /* end #WT-98 */
    #trust-creation-process img {
        width: 100% !important;
        height: auto !important;
    }
    /* start #WT-104 */

    #welcome-to-will-trust p {
        font-size: 25px !important;
    }
    #why-choose-us {
        text-align: center;
        justify-content: center;
    }
    #why-choose-us h1 {
        font-size: 65px !important;
    }
    #why-choose-us h4 {
        font-size: 43px !important;
    }
    #why-choose-us p {
        font-size: 29px !important;
        text-align: justify !important;
    }
    #why-choose-us img {
        margin-bottom: 30px !important;
    }
    #schedule-consultation .card {
        padding: 40px 32px !important;
    }
    #our-services-include {
        padding: 219px 10px 100px 10px !important;
    }
    #our-services-include h5 {
        font-size: 45px !important;
    }
    #our-services-include p {
        margin-top: 32px !important;
        font-size: 28px !important;
    }
    #our-services-include h4 {
        font-size: 35px !important;
    }
    #our-services-include h6 {
        font-size: 33px !important;
    }
    #our-services-include h2 {
        font-size: 47px !important;
    }
    /* end #WT-104 */
    /* start #WT-108 */
    #all-faqs p {
        font-size: 22px !important;
    }
    #all-faqs-faqSec .accordion-body {
        font-size: 22px !important;
        padding: 10px 0px;
    }
    /* end #WT-108 */
    /* start #WT-101 */
    #medical-decisions p {
        font-size: 21px !important;
    }
    #health-care-directive .card-title {
        font-size: 19px !important;
    }
    #health-care-directive p {
        font-size: 18px !important;
    }
    #our-healthcare-directive-services p {
        font-size: 22px !important;
    }
    #heathcare-bottom-paragraph p {
        font-size: 24px !important;
    }
    /* end #WT-101 */
    /* start #WT-100 */
    #types-of-deed-transfer h1 {
        font-size: 47px !important;
        line-height: 2 !important;
    }
    #deedtransfer-faq h1 {
        font-size: 47px !important;
        line-height: 2 !important;
    }
    #deedtransfer-faqSec .accordion-body {
        font-size: 20px !important;
        padding: 10px 0px;
    }
    #deedtransfer-faqSec .accordion-button {
        font-size: 24px !important;
        padding: 10px 0px;
    }
    /* start #WT-100 */
    /* start #WT-115 */
    #crafting-your-will h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }
    #crafting-your-will p {
        font-size: 25px;
        text-align: justify;
    }
    #crafting-your-will img {
        margin-top: 65px;
        /* width: 93%; */
    }
    #why-create-will h1 {
        font-size: 50px;
    }
    #why-create-will h6 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    #why-create-will .card-text {
        font-size: 19px;
    }
    #will-making-process h1 {
        font-size: 50px;
    }
    #will-making-process h6 {
        font-size: 25px;
    }
    #will-making-process img {
        margin-top: 30px;
    }
    #will-making-process .row {
        justify-content: space-around !important;
    }
    #will-making-process h5 {
        font-size: 27px;
    }
    #will-making-process p {
        font-size: 20px;
    }
    #types-of-wills h1 {
        font-size: 57px;
        margin-bottom: 0px;
    }
    #types-of-wills h6 {
        font-size: 25px;
    }
    #types-of-wills h5 {
        font-size: 30px;
        font-weight: bold;
    }
    #types-of-wills p {
        font-size: 25px;
        text-align: justify;
        margin-bottom: 55px !important;
    }
    #types-of-wills a {
        font-size: 30px;
    }
    #periodic-review h1 {
        font-size: 55px;
    }
    #periodic-review p {
        font-size: 25px;
        text-align: justify;
    }
    /* end #WT-115 */
    /* start #WT-116 */
    #types-of-deed-transfer .card-title {
        margin: 0px 0px 19px 0px !important;
    }
    /* end #WT-116 */
    /* start #WT-110 */
    #trust-page {
        padding: 100px 0px;
    }
    #trust-page h2 {
        font-size: 52px !important;
    }
    #trust-page p {
        font-size: 24px;
        text-align: justify;
        margin-bottom: 40px;
    }
    #why-establish {
        padding: 100px 0px;
    }
    #why-establish .row {
        row-gap: 22px;
    }
    #why-establish h3 {
        font-size: 52px;
    }
    #why-establish h5 {
        font-size: 30px;
    }
    #why-establish .card-text {
        font-size: 21px !important;
    }
    #our-trust-services h1 {
        font-size: 52px;
        line-height: 1;
    }
    #our-trust-services h6 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    #our-trust-services .card-text {
        font-size: 20px !important;
    }
    #the-trust-creation-process h1 {
        font-size: 52px;
    }
    #the-trust-creation-process img {
        margin: 30px 0 30px 0;
    }
    #the-trust-creation-process h5 {
        font-size: 40px;
    }
    #the-trust-creation-process p {
        font-size: 21px;
    }
    #trust-form h3 {
        font-size: 30px;
        text-align: justify;
    }
    #trust-page-faq h1 {
        font-size: 52px;
    }
    #trust-page-faq p {
        font-size: 20px;
    }
    /* end #WT-110 */
    /* start #WT-152 */
    #small-cards {
        padding: 50px 0px;
    }
    #small-cards h4 {
        font-size: 31px;
    }
    #small-cards button {
        font-size: 20px;
    }
    #pricing {
        padding: 50px 0px;
    }
    #pricing .two-card .card-title {
        font-size: 30px !important;
    }
    #pricing .two-card .card-subtitle {
        font-size: 55px !important;
    }
    #pricing .two-card .card-text {
        font-size: 23px !important;
    }
    #pricing button {
        font-size: 20px;
    }
    #pricing a {
        font-size: 22px;
    }
    #pricing .three-card h4 {
        font-size: 29px;
    }
    #pricing .three-card .card-text {
        font-size: 20px !important;
    }
    #trust-will-button h3 {
        font-size: 33px;
    }
    #trust-will-button p {
        font-size: 20px;
    }
    /* end #WT-152 */
    /* start #WT-194 */
    #following-documents .accordion-button {
        padding: 10px 0px;
    }
    #following-documents .accordion-body {
        padding: 10px 0px;
        font-size: 20px;
    }
    #trust-will-button .accordion-heading {
        padding-left: 0px;
    }
    #will-making-process .review-revision {
        margin: 25px 0 55px 0;
    }
    #trust-page-faqSec .accordion-button {
        padding: 10px 0px;
    }
    #trust-page-faqSec .accordion-body {
        padding: 10px 0px;
        font-size: 20px !important;
    }
    #the-trust-creation-process .drafting {
        margin-top: 16px;
    }
    #the-trust-creation-process .funding {
        margin: 13px 0px 78px 0px;
    }
    #estate-life-stages h5 {
        margin: 20px 0px;
    }
    #estate-life-stages .married-with-children {
        margin: 20px 0px 51px 0px !important;
    }
    #all-faqs-faqSec .accordion-button {
        padding: 10px 0px;
    }
    #your-peace-in-mind {
        padding: 50px 0px 338px 0px;
    }
    #your-peace-in-mind p {
        font-size: 18px;
    }
    #will-trust-additional p {
        font-size: 22px;
        margin: 0px 0px 21px 0px;
    }
    #featured-blog-listing,
    #periodic-review,
    #faq,
    #trust-page-faq,
    #heathcare-bottom-paragraph,
    #deedtransfer-faq,
    #will-trust-additional,
    #all-faqs-faq,
    #conclusion,
    #conclusion-estate {
        padding: 50px 0px 150px 0px !important;
    }
    #learn-more-about-will-trust,
    #importance-of-healthcare-directives,
    #advance-healthcare-d,
    #components-of-advance-h-d,
    #planning-an-estate,
    #creating-advance-h-d,
    #conclusion-h-d,
    #trust-will-button,
    #most-trusted-name,
    #crafting-your-will,
    #why-create-will,
    #will-making-process,
    #types-of-wills,
    #periodic-review,
    #why-establish,
    #our-trust-services,
    #trust-page,
    #the-trust-creation-process,
    #trust-form,
    #trust-page-faq,
    #essential-guide,
    #understanding-trusts,
    #trust-type,
    #benefits-of-trust,
    #fund-review,
    #conclusion,
    #estate-comprehensive-guide,
    #understanding-estate,
    #component-estate-planning,
    #importance-estate-planning,
    #estate-life-stages,
    #conclusion-estate,
    #medical-decisions,
    #health-care-directive,
    #our-healthcare-directive-services,
    #heathcare-bottom-paragraph,
    #welcome-to-will-trust,
    #why-choose-us,
    #all-faqs,
    #all-faqs-faq,
    #deed-transfer,
    #types-of-deed-transfer,
    #deedtransfer-faq,
    #pricing-page,
    #will-trust-additional,
    #pick-up-your-answers {
        padding: 50px 0px;
    }
    #your-recent-activity {
        padding: 50px 0px 100px 0px;
    }
    /* end #WT-194 */
    #will-making-process .progress-line {
        display: none !important;
    }
    #the-trust-creation-process .progress-line {
        display: none !important;
    }
    #featured-blog-listing p {
        font-size: 22px;
        margin-top: 16px;
    }
    #our-healthcare-directive-services .row {
        row-gap: 25px !important;
    }
    #types-of-deed-transfer .row {
        row-gap: 25px;
    }
}
/* start #WT-23 */
/*This screen size represents ipad*/
@media (min-width: 770px) and (max-width: 912px) {
    #order-history-page .table-responsive-sm {
        overflow-x: auto;
    }
    #footer h3 {
        font-size: 37px !important;
    }
    #small-cards h3 {
        font-size: 24px !important;
    }
    #most-trusted-name h4 {
        font-size: 38px !important;
    }
    #most-trusted-name h6 {
        font-size: 26px !important;
    }
    #will-estate .free-will-estate-text {
        padding: 64px 0 0 71px !important;
    }
    #will-estate p {
        font-size: 17px !important;
    }
    #landing-image h2 {
        font-size: 38px !important;
    }
    #landing-image p {
        font-size: 28px !important;
    }
    #trust-page .trust-page-text {
        padding-top: 0px !important;
    }
    #trust-page h2 {
        font-size: 29px !important;
    }
    #pricing-page h1 {
        font-size: 25px !important;
    }
    #pricing-page p {
        font-size: 25px !important;
        text-align: justify;
    }
    /* start #WT-99 */
    #essential-guide h2 {
        font-size: 45px !important;
    }
    #essential-guide p {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    /* #understanding-trusts {
        background-position: -441px 0px !important;
    } */
    #understanding-trusts h1 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #understanding-trusts p {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    #trust-type h1 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #trust-type h6 {
        line-height: 1.8 !important;
    }
    #trust-type h5 {
        font-size: 22px;
    }
    #trust-type p {
        font-size: 20px !important;
        line-height: 2;
    }
    #benefits-of-trust h1 {
        font-size: 45px !important;
    }
    #benefits-of-trust h3 {
        font-size: 30px !important;
    }
    #benefits-of-trust h4 {
        font-size: 20px !important;
    }
    #benefits-of-trust img {
        margin: 30px 0 !important;
    }
    #creating-trust h2 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #creating-trust h6 {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    #creating-trust .margin-bottom {
        justify-content: center !important;
        text-align: center !important;
    }
    #creating-trust .for-image {
        margin: -39px 0 0 132px !important;
    }
    #creating-trust h5 {
        font-size: 26px !important;
    }
    #creating-trust p {
        font-size: 20px !important;
    }
    #fund-review h5 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #fund-review p {
        font-size: 22px !important;
        line-height: 1.8 !important;
    }
    #conclusion h4 {
        font-size: 45px !important;
        line-height: 1.45 !important;
    }
    #conclusion p {
        font-size: 22px;
        line-height: 1.8;
    }
    #conclusion img {
        margin: 30px 0 !important;
    }
    /* end #WT-99 */
    /* start #WT-98 */
    #estate-comprehensive-guide p {
        font-size: 20px !important;
    }
    #understanding-estate p {
        font-size: 20px !important;
    }
    #importance-estate-planning img {
        margin: 30px 0 !important;
    }
    #importance-estate-planning h4 {
        font-size: 20px !important;
    }

    #estate-life-stages h6 {
        line-height: 2 !important;
    }
    #estate-life-stages .for-image {
        margin: -39px 0 0 131px !important;
    }
    #estate-life-stages p {
        font-size: 20px !important;
    }

    #conclusion-estate img {
        margin: 30px 0 !important;
    }
    #conclusion-estate p {
        font-size: 20px !important;
    }
    /* end #WT-98 */
    #trust-creation-process img {
        width: 100% !important;
        height: auto !important;
    }
    /* start #WT-104 */

    #welcome-to-will-trust p {
        font-size: 25px !important;
    }
    #why-choose-us {
        text-align: center;
        justify-content: center;
    }
    #why-choose-us h1 {
        font-size: 65px !important;
    }
    #why-choose-us h4 {
        font-size: 43px !important;
    }
    #why-choose-us p {
        font-size: 29px !important;
        text-align: justify !important;
    }
    #why-choose-us img {
        margin-bottom: 30px !important;
    }
    #schedule-consultation .card {
        padding: 40px 32px !important;
    }
    #our-services-include {
        padding: 219px 10px 100px 10px !important;
    }
    #our-services-include h5 {
        font-size: 45px !important;
    }
    #our-services-include p {
        margin-top: 32px !important;
        font-size: 28px !important;
    }
    #our-services-include h4 {
        font-size: 35px !important;
    }
    #our-services-include h6 {
        font-size: 33px !important;
    }
    #our-services-include h2 {
        font-size: 47px !important;
    }
    /* end #WT-104 */
    /* start #WT-108 */
    #all-faqs p {
        font-size: 22px !important;
    }
    #all-faqs-faqSec .accordion-body {
        font-size: 20px !important;
    }
    /* end #WT-108 */
    /* start #WT-101 */
    #medical-decisions p {
        font-size: 21px !important;
    }
    #health-care-directive .card-title {
        font-size: 19px !important;
    }
    #health-care-directive p {
        font-size: 18px !important;
    }
    #our-healthcare-directive-services p {
        font-size: 22px !important;
    }
    #heathcare-bottom-paragraph p {
        font-size: 24px !important;
    }
    /* end #WT-101 */
    /* start #WT-100 */
    #types-of-deed-transfer h1 {
        font-size: 47px !important;
        line-height: 2 !important;
    }
    #deedtransfer-faq h1 {
        font-size: 47px !important;
        line-height: 2 !important;
    }
    #deedtransfer-faqSec .accordion-body {
        font-size: 20px !important;
        padding: 10px 0px;
    }
    #deedtransfer-faqSec .accordion-button {
        font-size: 24px !important;
        padding: 10px 0px;
    }
    /* start #WT-100 */
    /* start #WT-115 */
    #crafting-your-will h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }
    #crafting-your-will p {
        font-size: 25px;
        text-align: justify;
    }
    #crafting-your-will img {
        margin-top: 65px;
        /* width: 93%; */
    }
    #why-create-will h1 {
        font-size: 50px;
    }
    #why-create-will h6 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    #why-create-will .card-text {
        font-size: 19px;
    }
    #will-making-process h1 {
        font-size: 50px;
    }
    #will-making-process h6 {
        font-size: 25px;
    }
    #will-making-process img {
        margin-top: 30px;
    }
    #will-making-process .row {
        justify-content: space-around !important;
    }
    #will-making-process h5 {
        font-size: 27px;
    }
    #will-making-process p {
        font-size: 20px;
    }
    #types-of-wills h1 {
        font-size: 57px;
        margin-bottom: 0px;
    }
    #types-of-wills h6 {
        font-size: 25px;
    }
    #types-of-wills h5 {
        font-size: 30px;
        font-weight: bold;
    }
    #types-of-wills p {
        font-size: 25px;
        text-align: justify;
        margin-bottom: 55px !important;
    }
    #types-of-wills a {
        font-size: 30px;
    }
    #periodic-review h1 {
        font-size: 55px;
    }
    #periodic-review p {
        font-size: 25px;
        text-align: justify;
    }
    /* end #WT-115 */
    /* start #WT-116 */
    #types-of-deed-transfer .card-title {
        margin: 0px 0px 19px 0px !important;
    }
    /* end #WT-116 */
    /* start #WT-110 */
    #trust-page {
        padding: 100px 0px;
    }
    #trust-page h2 {
        font-size: 52px !important;
    }
    #trust-page p {
        font-size: 24px;
        text-align: justify;
        margin-bottom: 40px;
    }
    #why-establish {
        padding: 100px 0px;
    }
    #why-establish .row {
        row-gap: 22px;
    }
    #why-establish h3 {
        font-size: 52px;
    }
    #why-establish h5 {
        font-size: 30px;
    }
    #why-establish .card-text {
        font-size: 21px !important;
    }
    #our-trust-services h1 {
        font-size: 52px;
        line-height: 1;
    }
    #our-trust-services h6 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    #our-trust-services .card-text {
        font-size: 20px !important;
    }
    #the-trust-creation-process h1 {
        font-size: 52px;
    }
    #the-trust-creation-process img {
        margin: 30px 0 30px 0;
    }
    #the-trust-creation-process h5 {
        font-size: 40px;
    }
    #the-trust-creation-process p {
        font-size: 21px;
    }
    #trust-form h3 {
        font-size: 30px;
        text-align: justify;
    }
    #trust-page-faq h1 {
        font-size: 52px;
    }
    #trust-page-faq p {
        font-size: 20px;
    }
    /* end #WT-110 */
    /* start #WT-152 */
    #small-cards {
        padding: 50px 0px;
    }
    #small-cards h4 {
        font-size: 31px;
    }
    #small-cards button {
        font-size: 20px;
    }
    #pricing {
        padding: 50px 0px;
    }
    #pricing .two-card .card-title {
        font-size: 30px !important;
    }
    #pricing .two-card .card-subtitle {
        font-size: 55px !important;
    }
    #pricing .two-card .card-text {
        font-size: 23px !important;
    }
    #pricing button {
        font-size: 20px;
    }
    #pricing a {
        font-size: 22px;
    }
    #pricing .three-card h4 {
        font-size: 29px;
    }
    #pricing .three-card .card-text {
        font-size: 20px !important;
    }
    #trust-will-button h3 {
        font-size: 33px;
    }
    #trust-will-button p {
        font-size: 20px;
    }
    /* end #WT-152 */
    #will-making-process .progress-line {
        display: none !important;
    }
    #the-trust-creation-process .progress-line {
        display: none !important;
    }
    /* start #WT-194 */
    #following-documents .accordion-button {
        padding: 10px 0px;
    }
    #following-documents .accordion-body {
        padding: 10px 0px;
        font-size: 20px;
    }
    #trust-will-button .accordion-heading {
        padding-left: 0px;
    }
    #will-making-process .review-revision {
        margin: 25px 0 55px 0;
    }
    #trust-page-faqSec .accordion-button {
        padding: 10px 0px;
    }
    #trust-page-faqSec .accordion-body {
        padding: 10px 0px;
        font-size: 20px !important;
    }
    #the-trust-creation-process .drafting {
        margin-top: 16px;
    }
    #the-trust-creation-process .funding {
        margin: 13px 0px 78px 0px;
    }
    #estate-life-stages h5 {
        margin: 20px 0px;
    }
    #estate-life-stages .married-with-children {
        margin: 20px 0px 51px 0px !important;
    }
    #all-faqs-faqSec .accordion-button {
        padding: 10px 0px;
    }
    #your-peace-in-mind {
        padding: 50px 0px 338px 0px;
    }
    #your-peace-in-mind p {
        font-size: 18px;
    }
    #will-trust-additional p {
        font-size: 22px;
        margin: 0px 0px 21px 0px;
    }
    #featured-blog-listing,
    #periodic-review,
    #faq,
    #trust-page-faq,
    #heathcare-bottom-paragraph,
    #deedtransfer-faq,
    #will-trust-additional,
    #all-faqs-faq,
    #conclusion,
    #conclusion-estate {
        padding: 50px 0px 150px 0px !important;
    }
    #learn-more-about-will-trust,
    #importance-of-healthcare-directives,
    #advance-healthcare-d,
    #components-of-advance-h-d,
    #planning-an-estate,
    #creating-advance-h-d,
    #conclusion-h-d,
    #trust-will-button,
    #most-trusted-name,
    #crafting-your-will,
    #why-create-will,
    #will-making-process,
    #types-of-wills,
    #why-establish,
    #our-trust-services,
    #trust-page,
    #the-trust-creation-process,
    #trust-form,
    #essential-guide,
    #understanding-trusts,
    #trust-type,
    #benefits-of-trust,
    #fund-review,
    #estate-comprehensive-guide,
    #understanding-estate,
    #component-estate-planning,
    #importance-estate-planning,
    #estate-life-stages,
    #medical-decisions,
    #health-care-directive,
    #our-healthcare-directive-services,
    #welcome-to-will-trust,
    #why-choose-us,
    #all-faqs,
    #deed-transfer,
    #types-of-deed-transfer,
    #pricing-page,
    #pick-up-your-answers {
        padding: 50px 0px;
    }
    #your-recent-activity {
        padding: 50px 0px 100px 0px;
    }
    /* end #WT-194 */
    #featured-blog-listing p {
        font-size: 22px;
        margin-top: 16px;
    }
    #our-healthcare-directive-services .row {
        row-gap: 25px !important;
    }
    #types-of-deed-transfer .row {
        row-gap: 25px;
    }
}
/* end #WT-23 */
#small-cards .card:hover {
    border-color: red;
}
#your-recent-activity .card-title {
    font-size: 26px;
    font-family: Manrope;
}
#your-recent-activity .card-subtitle {
    font-family: Manrope;
    font-size: 20px;
}
#your-recent-activity .card-text,
.card-completion {
    font-size: 18px;
    font-family: Manrope;
    color: #af1c2a !important;
}
.pick {
    max-width: 80px;
}
.q-holder h4 {
    font-size: 26px;
}

.q-holder p {
    font-size: 18px;
}
.card-completion a {
    color: #f56300 !important;
}

#assets-container textarea,
#gifts-container textarea {
    color: white !important;
}
.property label {
    min-width: 150px;
    min-height: 100px;
}

.preview-section .p-2 .row {
    font-size: 14px !important;
    font-weight: normal !important;
    line-height: 30px;
    color: #fafafa !important;
}

#answerdynamicModal .modal-dialog {
    border-radius: 10px;
}
#answerdynamicModal .btn-close {
    color: #fff;
    background: none;
}
#answerdynamicModal .modal-content {
    background-color: #1e2229;
}

#answerdynamicModal .modal-content .modal-header,
#answerdynamicModal .modal-content .modal-footer {
    border-color: #424242;
}

#verification {
    font-family: Manrope;
    font-size: 26px;
}
#verification .card-body {
    font-size: 22px;
}
.verification-btn {
    color: #f56300 !important;
    font-size: 22px;
}
#signUpForm input::placeholder {
    display: none !important;
    color: transparent !important;
}
#willView .accordion-body p {
    font-size: 16px;
    color: #a9a9a9;
    font-family: var(--bs-font-sans-serif);
}

/* Payment styles */
/*Payment Page--START*/
/*
* Author: Vidhi Shah
* Updated date: 26th Mar 2024
* Desctiption: For applying margin to the edit option as same as pay now button
*/
.pay_nowBtn, #edit_button{
    margin-top: 40px;
    margin-left: 0px;
}
.print_btn{
    margin-left: 21px;
}
@media (max-width: 408px){/*For mobile screen*/
    .pay_nowBtn{
        margin-top: 3px;
        width: 100%;
    }
    .print_btn{
        margin-left: 0px;    
    }

}
.loading_payment_form{
    color: #af1c2a;
} 
/*
* Author: Vidhi Shah
* Updated date: 18th mar 2024 
* Description: Change "Back to Dashboard" text color to the red color
*/
.back_dashboard_btn{
    color:#af1c2a;
}
.back_dashboard_btn:hover{
    color:#ca1c2c;
} 
.payment_form_container{
    margin-bottom: 150px;
    margin-top: 40px;
}
/*Payment Page--END*/

.payment-content .modal-body p {
    color: #bab5b5 !important;
}
.payment-content .modal-body span {
    color: #fff;
    font-weight: bold;
}
.payment-content .btn-close {
    border: none !important;
    padding: 0px !important;
}

.payment-card{
    /* padding: 50px; */
    border-radius: 15px;
    box-shadow: 0 2px 6px 2px rgba(170, 167, 167, 0.25);
    background-color: #fff;
    border: solid 1px #4e4d4d;
    /* margin-bottom: 150px; */
}

/* ************************************************************************************** */
/* Variables */
#paymentModal .modal-header,
#selectPricesModal .modal-header {
    background: #af1c2a;
}
#paymentModal h5,
#paymentModal .modal-header .close span {
    color: #fff !important;
}
#paymentModal .close,
#selectPricesModal .close {
    background: none !important;
    border: none;
    color: #fff;
}
#card-errors {
    color: red;
}
.payment-button,
.payment-total-price-button {
    box-shadow: none !important;
    border: none;
    background: none;
}
.payment-button span,
.payment-total-price-button {
    border-radius: 15px;
    border: solid 2px #af1c2a;
    padding: 10px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #f5efef!important;
    font-size: 16px;
    background-color: #af1c2a;
}
.payment-button span:hover,.payment-total-price-button:hover {
    color: #f5efef!important;
    background-color: #ca1c2c !important;
    border: solid 2px #ca1c2c !important;
}

.payment-back-button{
    border-radius: 15px;
    border: solid 2px #d3d1cf;
    padding: 10px 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #c5c1be;
    font-size: 16px;
    background-color: #191919;
}
.payment-back-button:hover{
    color: #c5c1be;
    background-color: #ca1c2c;
    border: solid 2px #ca1c2c;
}

#total_price_tr {
    background-color: #100f0f;
    color: #fff;
}
.total_text {
    padding-left: 51px!important;
}
.price-form-check, #form_price, #attorneyPriceDisplay {
    color: #ffff;
}
input#formPriceCheckbox {
    width: 25px !important;
}
input#attorneyPriceCheckbox, input#authorizedCheckbox{
    width: 25px !important;
    height: 25px !important;
    border: 1px solid #c5c1be !important;
    margin-top: 0px !important;
    box-shadow: 0 0 0 0.1rem #c5c1be!important;
}
input#attorneyPriceCheckbox:checked,input#authorizedCheckbox:checked {
    background-color: #100f0f !important;
    border: 1px solid #ca1c2c !important;
    box-shadow: 0 0 0 0.1rem #ca1c2c!important;
}
#attorneyPriceCheckbox,#authorizedCheckbox{
    background-color: #100f0f;
}
.attorneyPriceCheckboxlable, .formPriceCheckboxlabel, .authorizedCheckboxlable{
    padding-left: 18px;
}
#pre .card {
    padding: 8px !important;
    border-radius: 8px;
    border-left: 5px solid #4e4d4d;
}

#pre .card-body {
    padding-top: 12px !important;
    padding-left: 2px !important;
    padding-bottom: 2px !important;
}

/* Blue outline on focus */
.StripeElement--focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#card-number-element.form-control,
#card-cvc-element.form-control,
#card-expiry-element.form-control,
#address-name-element.form-control {
    display: inline-block;
}
/* Variables */

.hidden {
    display: none;
}

#payment-message {
    color: rgb(105, 115, 134);
    font-size: 16px;
    line-height: 20px;
    padding-top: 12px;
    text-align: center;
}

#payment-element {
    margin-bottom: 24px;
}

/* Buttons and links */
button:hover {
    filter: contrast(115%);
}
button:disabled {
    opacity: 0.5;
    cursor: default;
}

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}
.spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.spinner:before,
.spinner:after {
    position: absolute;
    content: "";
}
.spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #5469d4;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: #5469d4;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}

#small-cards .form-check-label.selected {
    border: 1px solid #821d26;
}
#small-cards .form-check-label {
    display: flex;
    flex-direction: column;
    height: 200px; /* Adjust the height as needed */
    width: 100%;
    padding: 80px 10px;
    background-color: rgba(0, 0, 0, 0.82) !important;
    border-radius: 15px;
    border: solid 1px #3e3e3e;
    text-align: center;
}
/* WT-109 */
#small-cards .round {
    position: relative;
}

#small-cards .round span {
    /* background-color: #fff; */
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    position: absolute;
    top: 21%;
    left: 46%;
    width: 28px;
}

#small-cards .round span:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

#small-cards .round input[type="checkbox"] {
    visibility: hidden;
}

#small-cards .round input[type="checkbox"]:checked + span {
    background-color: #af1c2a;
    border-color: #af1c2a;
}

#small-cards .round input[type="checkbox"]:checked + span:after {
    opacity: 1;
}

/* WT-109 end */
@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 600px) {
    form {
        /* width: 95vw; */
        min-width: initial;
    }
}

/*WT-157 -----START----*/
span.relative.inline-flex.items-center.px-4.py-2.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.cursor-default.leading-5.rounded-md {
    background-color: #060606 !important;
    color: #fff;
}
a.relative.inline-flex.items-center.px-4.py-2.text-sm.font-medium.text-gray-700.bg-white.border.border-gray-300.leading-5.rounded-md.hover\:text-gray-500.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-700.transition.ease-in-out.duration-150,
a.relative.inline-flex.items-center.px-4.py-2.ml-3.text-sm.font-medium.text-gray-700.bg-white.border.border-gray-300.leading-5.rounded-md.hover\:text-gray-500.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-700.transition.ease-in-out.duration-150 {
    background-color: #fff !important;
    color: #060606;
}
nav.flex.items-center.justify-between {
    text-align: right;
}
/*WT-157 -----END----*/
/* WT-218 start */
.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    /* white-space: nowrap; */
}
.scoll-head {
    min-width: 700px;
}
@media screen and (min-width: 700px) {
    .scrolling-wrapper {
        overflow-x: hidden !important;
    }
}
/* end WT-218 */


/* Document Download  Button  -- START*/
.downloadBtnSuccess{
    background-color: #ca1c2c!important;
    border-color: #ca1c2c!important;
}
.download_message_modal{
    background-color: #ca1c2c!important;
}
 
.enter_otp_input:focus{
    margin-top : 0px!important;
}
.download_otp_send_fail{
    color: #df1717!important;
}
.download_otp_send_success{
    color: #47c99d!important;
}
/*
* Author: Vidhi Shah
* Updated date: 26th Mar 2024
* Desctiption: Added class for styling waiting message on edit pop up
*/
.download_document_wating_text,.edit_document_wating_text{
    color: #af1c2a !important;
    font-family: Manrope;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-size: 1rem;
}
/* Document Download  Button  -- END*/
/*Paid Text ---START---*/
.paid_text{
    color: #fff !important;
    font-weight: bolder;
}
/*Paid Text ---END---*/
/*Under Prcess Tooltip --START--*/
.under_process{
    color: #fff !important;
    min-width: 200px;
    text-align: right;
}
.under_process_tooptip_box .tooltip {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
    z-index: auto !important;
}
.under_process_tooptip_box .tooltip .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: #af1c2a;
    color: #fff;
    border-radius: 6px;
    padding: 20px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.under_process_tooptip_box .tooltip:hover .tooltiptext {
    visibility: visible;
}
.under_process_tooptip_box .tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%; /* At the top of the tooltip */
    left: 70%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #af1c2a transparent;
}
/*Under Prcess Tooltip --END--*/

/*Social Login --START*/

/*status page*/
#status-page{
    margin-bottom: 160px;
    margin-top: 48px;
}

/*Google Button css --START--*/
.google-sign-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Adjust the gap as needed */
    color:#fff!important;
    font-weight: 600;
}
.google-icon {
    width: 10%!important;/* Adjust the width as needed */
    height: 10%!important; /* Adjust the height as needed */
}
.google_login_btn{
    background: #191919;
    padding: 10px;
    border-radius: 40px;
    border: 2px solid #fff;
    margin-right: 50px;
    margin-left: 50px;
}
/*Google Button css --END--*/
/*Social Login --END*/

/*START - Disable form steps if payment has done then user can not edit the will form*/
.stepIndicator_disabled{
    /* And disable the pointer events */
    pointer-events: none;
    opacity: 0.5;
} 
.stepIndicator_disabled a{
    color: #9d9b9b !important; /* Make the disabled links grayish*/
    cursor: not-allowed; /* Set the cursor to 'not-allowed' */
    
}
/*END - Disable form steps if payment has done user then can not edit the will form*/

/*START - dislaimer content css */
.dislaimer-header{
    color: #af1c2a ;
}
.dislaimer-message{
    color: #191919 ;
}
/*END - dislaimer content css */

/**
 * CSS styles for user details modal.
 */
.user-details .modal {
    background-color: rgba(0, 0, 0, 0.9) !important; /* Black with 50% opacity */
}
.user-details .login-button {
    background-color: #af1c2a!important; 
    text-align: center;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    border-radius: 43px;
    padding: 12px;
    margin: 20px 0 20px
}

/*START - Reset Password CSS*/
.reset_password_email_input{
    pointer-events: none;
    opacity: 0.5;
    cursor: none;
}
.set-password-title{
    font-weight: 600;
}
/*END - Reset Password CSS*/

/**
 * Styling for jQuery UI widgets and components.
 * 
 * These styles define the appearance of various jQuery UI elements.
 * 
 * @Devoloper Theshan Thanuhska
 * @date 2024-04-17
 */

.ui-widget.ui-widget-content {
    background-color: #000
}
.ui-state-default {
    border: 1px solid #c5c5c5;
    background: #454545!important;
    font-weight: normal;
    color: #f6f6f6!important;
}
.ui-datepicker table span{
      color: #f6f6f6!important;
}
.ui-widget-header {
    border: 1px solid #dddddd!important;
    background: #3e3e3e00!important;
}
/* END - Styling for jQuery UI */

/**
 * Styling for Profile Page.
 * 
 * These styles define the appearance of various Profile UI elements.
 * 
 * @Devoloper Theshan Thanuhska
 * @date 2024-04-22
 */
 
 #personal-information .form-control:focus {color:#fff;}

 #profile{
    min-height: 300px;
    margin: 20px 0px 150px 0px;
}
.profile-view{
    display: flex;
    padding: 20px!important;
}
.upload-btn{
    padding: 10px 30px;
    height: 60px;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #e8e7e7;
    border-radius: 15px;
    border: solid 3px #979797;
}
.profile-name{
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;

}
.profile-pic img{
    width: 96px;
    height: 96px;
    border-radius: 100%;
    margin-right:27px
}
#personal-information .card-header + .card-body {
    margin-top: 30px; /* Add margin to the card-body element */
}
.profile .card-header{
    border-bottom: solid 1px #979797;
}
.profile .card{
    border: solid 1px #686868;
    background-color: #191919;
}
#personal-information{
    border-radius: 20px;
    border: solid 1px #4e4d4d; /*Same as form page card*/
    background-color:#191919 !important; /*Same as form page card*/
    margin: 30px;
}
#profile-holder{
    border-radius: 25px;
    border: solid 1px #686868;
    background-color: #000 !important;
}
.form-set input{
    background: #30303000!important;
    border:none;
    border-bottom: solid 1px #979797;
    border-radius: 0px;
    padding: 10px 0px 10px!important;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}
.form-set select{
    background: #30303000!important;
    border:none;
    border-bottom: solid 2px #c5c1be;
    border-radius: 0px;
    padding: 10px 0px 10px!important;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}

.form-set label{
    opacity: 0.8;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    padding: 10px 0px 10px !important;/*To overlap the bootstrap input For vertical label CSS to show in vertical alignment*/
}
#inputholder{
padding: 30px;
}
#profile-holder .card-header{
padding: 40px 40px 0px 40px!important;
}
#personal-information .card-header {
    font-size: 30px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;    
    padding: 30px 30px 30px 30px !important;
    border-bottom: solid 1px #979797; /* Add the bottom border directly to the card-header */
}
.cancel-btn{
    padding: 15px 30px;
    margin: 5px;
    border-radius: 15px;
    border: solid 3px #979797!important;
    background-color: #403e3e!important;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #e8e7e7!important;
}
.update-btn{
    padding: 15px 30px;
    margin: 5px;
    border-radius: 15px;
    background-color: #af1c2a!important;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #e8e7e7!important;
}
.update-btn-header{
    padding: 12px 15px;
    width:100%;
    margin: 5px;
    border-radius: 15px;
    background-color: #af1c2a;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #e8e7e7;
}
.form-set #savedata{
    background: #30303000!important;
    border:none;
    border-radius: 0px;
    padding: 10px 0px 10px!important;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}
.profile-page-title{
    margin: 22px 5px;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}
.back-to-dashboard {
    margin: 22px 0px 5px 0px;
    font-family: Manrope;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 30px;
    letter-spacing: normal;
    color: #e8e7e7;
}
.back-to-dashboard .fa{
    margin-right: 10px;
    font-size: 18px;
}
#profile .form-control:disabled{
    opacity: 0.5!important;
}
.back-to-dashboard a{
    color: #fff;
}
.back-to-dashboard a:hover{
    color: #af1c2a;
}
/**
START - Profile Input Css should be same as other pages input
Author:Gurupriya Solanki
Update Date: 2 May 2024
*/
#personal-information input{
    border-bottom: solid 2px #c5c1be !important;
}
#personal-information .modified-input:focus, #personal-information select:focus {
    box-shadow: none !important; /* Remove any box-shadow */
    outline: none !important; /* Remove the outline */
    padding: none !important;
    border-bottom: 2px solid #af1c2a!important;
    margin-top: 0px !important;
}
#personal-information select option{
    background-color: #fff !important;
    color: #333!important;
}
.update-btn:hover, .cancel-btn:hover,.update-btn-header:hover{
    background-color: #ca1c2c !important;
    color:#fff!important;
}
.cancel-btn:hover{
    border: 3px solid #ca1c2c !important;
}
/**END - Profile Input Css should be same as other pages input*/
/**
START - Contact Admin  text style
Author:Gurupriya Solanki
Update Date: 2 May 2024
*/
.profile_edit_request_link{
    color: #af1c2a!important;
    cursor: pointer;
}
.profile_edit_request_link:hover{
    color: #ca1c2c!important;
}
/**END - Contact Admin  text style*/
.photo-save{
    border:1px solid #fff;
    border-radius: 25px;
    padding: 30px;
    margin: 10px;
    display: none;
}
.form-set input[type=file]{
    margin-left: 20px;
} 
.form-control-file:hover {
    cursor: pointer;
}
/* Change cursor to pointer for file input button */
#photo::-webkit-file-upload-button {
    cursor: pointer;
}
#photo::-ms-browse {
    cursor: pointer;
}
#photo::file-selector-button {
    cursor: pointer;
}
.save-btn{
    width:100%;
}
@media (max-width: 576px) and (min-width: 300px){
    .cancel-btn, .update-btn{
        width: 100%;
        font-size: 14px;
    }
    .btn-sec{
        display: block!important;
    }
    #profile-holder .card-header {
        padding: 10px 10px 0px 10px !important;
    }
    #personal-information .card-header {
        padding: 20px 20px 20px 20px !important;
        font-size: 25px;
    }
    .profile-name {font-size: 25px;}
    .upload-btn {width: 100%}
    #personal-information {
         margin: 5px;
    }
}
@media (max-width: 768px) and (min-width: 578px){
    .upload-btn {font-size: 14px;}
    .update-btn-header {
        font-size: 14px!important
    }
}
@media (min-width: 912px){
    /* Your styles for devices with a minimum width of 912 pixels */
    .upload-btn { font-size: 14px; }
    .update-btn-header {
        font-size: 14px!important
      }
}
@media only screen 
and (min-device-width: 834px) 
and (max-device-width: 1366px) 
and (-webkit-min-device-pixel-ratio: 2) {
.update-btn-header {
  font-size: 15px!important
}
}
.verifypage-link a:hover{
    color: #fff!important;
}

/**
START - Mobile Verification CSS
Author : Gurupriya Solanki
Update Date : 05 June 2024
*/
.otp_inputs input {
    width: 40px;
    height: 40px;
    background: #100f0f;
    color: #fff!important;
    border: 2px solid #fff;
}

.otp_inputs input:focus{
    margin-top: 8px !important;
    background: #100f0f;
    color: #fff!important;
    border: 2px solid #fff;
}
.otp_inputs input:disabled {
    background-color: #100f0f!important;
    opacity: 0.8!important;
}
.mobile_verification_content{
    font-size: 18px;
}
/*END - Mobile Verification CSS*/

/**
START - Subscribe Newsletter CSS
Author : Gurupriya Solanki
Update Date : 10 June 2024
*/
.subscribe_newsletter_btn{
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
    line-height: 48px;
}
/*END - Subscribe Newsletter CSS*/

/*
START - Change Autocomplete styles in Chrome
Author : Gurupriya Solanki
Update Date : 13 June 2024
*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}
/*END - Change Autocomplete styles in Chrome*/