/*Index
1. Common css
2. Header
3. Footer
4. Homepage
*/

/*Common css*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&family=Playfair+Display:wght@500;600&display=swap");
:root {
    --primary-white: #ffffff;
    --primary-light-black: #333333;
    --primary-grey: #666666;
    --primary-blue: #04519a;
    --font-300: 300;
    --font-400: 400;
    --font-500: 500;
    --font-600: 600;
    --font-700: 700;
    --font-size-40: 40px;
    --base-font: "DM Sans", sans-serif;
    --title-font: "Playfair Display", serif;
}
button:focus {
    outline: none;
}
body {
    font-family: "DM Sans", sans-serif;
    /*font-family: 'Playfair Display', serif;*/
    color: var(--primary-grey);
}
.container {
    max-width: 1230px;
    padding-inline: 15px;
}
a {
    transition: all 0.3s linear;
    text-decoration: none;
}
img {
    max-width: 100%;
}
a:hover {
    text-decoration: none;
}
.no-list-style li {
    list-style: none;
}
ul {
    padding-left: 0;
}
.close-nav {
    display: none;
}
.primary_title {
    font-size: var(--font-size-40);
    color: var(--primary-light-black);
    font-family: var(--title-font);
    margin-bottom: 20px;
}
.mt-30 {
    margin-top: 20px;
}
.bg_light {
    background-color: #f5f8fb;
}
.section_padding {
    padding-block: 80px;
}
/*Header*/
.top-header {
    background-color: var(--primary-blue);
    padding-block: 7px;
}
.top-header-social .nice-select {
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    background-color: #166aba;
    border: none;
    color: var(--primary-white);
    font-size: 16px;
    font-weight: var(--font-400);
    padding-left: 35px;
}
.top-header-social .nice-select:after {
    border: none !important;
    background-image: url(../newImages/down-arrow.png);
    width: 12px !important;
    height: 12px !important;
    transform: none !important;
    margin-top: -6px !important;
}
.top-header-social .nice-select {
    position: relative;
}
.top-header-social .nice-select:before {
    position: absolute;
    content: "";
    left: 21px;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../newImages/location.png);
    width: 10px;
    height: 12px;
}
.top-header-social .nice-select .option {
    color: var(--primary-light-black);
}
.top-header-mailer a {
    color: var(--primary-white);
    font-size: 14px;
}
.top-header-mailer a:hover,
.social-share li a:hover {
    opacity: 0.8;
}
.top-header-mailer img {
    margin-right: 10px;
}
.social-share {
    margin-bottom: 0;
    padding-left: 0px;
}
.social-share li {
    list-style: none;
    margin-left: 15px;
}
.primary-header .navbar-collapse {
    justify-content: flex-end;
}
.primary-header .navbar {
    padding-inline: 0;
    padding-block: 15px;
}
.primary-header .navbar .nav-item {
    padding-inline: 20px;
}
.primary-header .navbar .nav-link {
    color: var(--primary-light-black);
    font-size: 16px;
    font-weight: var(--font-400);
    padding-inline: 20px;
    position: relative;
    padding: 0;
}
.primary-header .navbar .nav-link:after {
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--primary-blue);
    left: 0;
    bottom: -5px;
    position: absolute;
    transition: all 0.3s linear;
}
.sign-btn .nav-link:after {
    display: none !important;
}
.primary-header .navbar .nav-link:hover:after {
    width: 100%;
}
.sign-btn {
    margin-left: 40px;
    padding: 0 !important;
}
.nav-item.active .nav-link:after {
    width: 100%;
}
.primary-header .navbar .sign-btn .nav-link,
.primary_btn,
.dropdown-btn {
    border-radius: 100px;
    background: linear-gradient(77deg, #04519a 19.76%, #2f87da 108.64%);
    color: var(--primary-white);
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
    font-weight: var(--font-600);
    padding: 12px 30px;
    display: inline-block;
    background-size: 300% 100%;
    line-height: normal;
    border: 0;
    cursor: pointer;
}
.primary_btn {
    padding: 13px 35px;
}
.primary-btn-sm {
    padding: 7px 20px;
    font-size: 14px;
}
.secondary_btn {
    border-radius: 100px;
    background-color: var(--primary-white);
    color: var(--primary-blue);
    transition: all 0.4s linear;
    text-transform: uppercase;
    font-weight: var(--font-600);
    padding: 13px 30px;
    display: inline-block;
    line-height: normal;
}
.secondary_btn:hover {
    color: var(--primary-white);
    background-color: var(--primary-blue);
}
.primary-header .navbar .sign-btn .nav-link:hover,
.primary_btn:hover,
.primary-btn:hover {
    background-position: 100% 100%;
    moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: var(--primary-white);
}
.primary-header .navbar-nav {
    align-items: center;
}
.primary-header .navbar .nav-link:hover,
.primary-header .navbar .active .nav-link {
    color: var(--primary-blue);
}
.dropdown-btn {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
}
.dropdown {
    position: absolute;
    color: #e3dfe9;
    font-size: 18px;
    background: var(--primary-white);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    width: 250px;
    transform: scale(0.01);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease,
        box-shadow 0.3s ease 0.15s;
    transform-origin: center top;
    z-index: 2;
    list-style: none;
    top: 100%;
    right: 0;
    margin-top: -10px;
}

.dropdown.open {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0px 0px 30px 0px #00000026;
}

.dropdown a {
    position: relative;
    color: var(--primary-grey);
    text-decoration: none;
    display: block;
    padding: 12px 25px;
    transition: color 0.2s ease, background-color 0.2s ease,
        padding-left 0.2s ease;
    overflow: hidden;
    font-size: 16px;
}
.dropdown_item-1 img {
    margin-right: 15px;
}

.dropdown a.clicked {
    padding-left: 35px;
    color: var(--primary-blue);
}

.dropdown a:hover {
    color: var(--primary-blue);
}
.user-icon {
    max-width: 15px;
}

.dropdown-outer .dropdown:before {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    content: "";
    background-color: var(--primary-white);
    z-index: 3;
    position: absolute;
    right: 15px;
    top: -10px;
}
.dropdown-arrow {
    box-sizing: border-box;
    height: 7px;
    width: 7px;
    border-style: solid;
    border-color: white;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    margin-left: 8px;
    margin-top: -3px;
}
.dropdown-btn i {
    margin-right: 5px;
    margin-top: -1px;
}
/*Banner*/
.hero-carousel {
    width: 100%;
    background-size: cover;
}
.hero-carousel .carousel-inner-content {
    max-width: 510px;
}
.hero-carousel .carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-white);
    background-color: var(--primary-white);
    cursor: pointer;
}
.hero-carousel .carousel-indicators li.active {
    background-color: var(--primary-blue);
}
.hero-carousel .carousel-item {
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-carousel .carousel-item h1 br{
   display: none;
}
.hero-carousel .carousel-inner-content{
   min-height: calc(100dvh - 300px);
   align-items: center;
   display: grid;
   padding-block: 50px;
}
.hero-carousel .carousel-item h1 {
    font-size: 28px;
    font-weight: var(--font-700);
    color: var(--primary-white);
    word-spacing: 3px;
}
.hero-carousel .carousel-item p {
    font-size: 18px;
    font-weight: var(--font-500);
    color: var(--primary-white);
}
.hero-carousel .carousel-item li {
    margin-right: 20px;
}
.hero-carousel .carousel-item ul {
    margin-top: 40px;
}
.three-col p {
    color: var(--primary-grey);
    font-weight: var(--font-400);
    font-family: var(--base-font);
}
.poster {
    position: relative;
    display: inline-flex;
    width: 100%;
}
.poster:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    transition: 1s ease;
    cursor: pointer;
    background-blend-mode: multiply;
    background: url(../newImages/author.png) rgba(4, 81, 154, 0.7);
}
.poster-active:after {
    opacity: 0;
    pointer-events: none;
}
.posterActive {
    display: table;
    width: auto;
    position: relative;
    max-width: 346px;
    margin: auto;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    background-blend-mode: multiply;
}
.posterActive:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    transition: 1s ease;
    cursor: pointer;
    background-blend-mode: multiply;
}

.playpause {
    background-image: url(../newImages/play-icon.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-size: contain;
    background-position: center;
    z-index: 2;
}
.poster {
    display: table;
    width: auto;
    position: relative;
    max-width: 346px;
    margin: auto;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    background-blend-mode: multiply;
}
.video-section .col-sm-4 {
    padding-inline: 30px;
}
.video-section .row {
    margin-inline: -30px;
    align-items: center;
}
.video-section .primary_btn {
    margin-top: 20px;
}
.three-col .primary_title {
    margin-bottom: 15px;
}
.title-section {
    text-align: center;
}
.title-section .primary_title {
    margin-bottom: 20px;
}
.title-section p {
    color: var(--primary-grey);
}
.fdd-tools h2 {
    font-size: 24px;
    font-weight: var(--font-500);
    font-family: var(--title-font);
    color: var(--primary-light-black);
    margin-top: 20px;
}
.tools-thumb {
    width: 85px;
    height: 85px;
    padding: 10px;
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.fdd-tools ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px 10px rgb(4 81 154 / 4%);
    margin-top: 50px;
}
.fdd-tools ul li {
    text-align: center;
    border-right: 1px solid #cbe2f8;
    border-bottom: 1px solid #cbe2f8;
    flex-basis: 33.33%;
    list-style: none;
    padding: 35px 25px;
}
.fdd-tools ul li:nth-child(3n) {
    border-right: 0;
}
.fdd-tools ul li:nth-child(7),
.fdd-tools ul li:nth-child(8),
.fdd-tools ul li:nth-child(9) {
    border-bottom: 0;
}
.bg_white {
    background-color: var(--primary-white);
}
.inner-image-text {
    padding-right: 50px;
}
.attorney-section {
    background-color: var(--primary-blue);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-block: 80px;
}
.attorney-section:before {
    background-image: url(../newImages/attorney.png);
    content: "";
    right: 10px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 207px;
    height: 175px;
    bottom: 0;
}
.attorney-section .primary_title,
.attorney-section p {
    color: var(--primary-white);
}
.border-btn {
    border: 1px solid var(--primary-white);
    border-radius: 25px;
    color: var(--primary-white);
    font-size: 16px;
    font-weight: var(--font-600);
    display: inline-block;
    padding: 12px 35px;
    text-transform: uppercase;
    line-height: normal;
    transition: all 0.3s linear;
}
.border-btn:hover {
    background-color: var(--primary-white);
    color: var(--primary-blue);
}
.attorney-section p {
    padding-right: 70px;
}
.attorney-section a {
    margin-top: 20px;
}
.inner-image-text h6 {
    font-size: 16px;
    font-weight: var(--font-600);
    margin-bottom: 15px;
    color: var(--primary-light-black);
}
.how-work-lists h3 {
    font-size: 24px;
    font-weight: var(--font-600);
    font-family: var(--title-font);
    color: var(--primary-light-black);
}
.how-work-lists li {
    display: flex;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 0 50px 0 rgba(4, 81, 154, 0.08);
    margin-bottom: 25px;
    padding: 15px;
    position: relative;
    padding-left: 35px;
}
.how-work-lists--thumb {
    margin-right: 20px;
}
.list-num {
    font-size: 24px;
    font-weight: var(--font-600);
    color: var(--primary-blue);
    position: absolute;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    left: -22px;
    background-color: var(--primary-white);
    text-align: center;
    line-height: 45px;
}
.how-work-lists--desc p {
    margin-bottom: 0;
}
.offers .card-header {
    background: linear-gradient(77.42deg, #04519a 19.76%, #2f87da 108.64%);
    color: var(--primary-white);
    border-radius: 10px;
    padding-block: 40px;
}
.offers .card-header h4 {
    font-size: 30px;
    font-weight: var(--font-700);
    font-family: var(--base-font);
    color: var(--primary-white);
}
.offers .card {
    box-shadow: 0 0 50px 0 rgba(4, 81, 154, 0.08);
    border: 0;
    border-radius: 20px;
    padding: 15px;
}
.offers h3 {
    font-size: 20px;
    font-family: var(--title-font);
    font-weight: var(--font-600);
    color: var(--primary-light-black);
    margin-bottom: 10px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}
.offers h6 {
    font-size: 16px;
    font-weight: var(--font-600);
}
.offers .card-body {
    padding-inline: 15px;
    padding-bottom: 10px;
}
.offers .border-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    margin-top: 5px;
}
.offers .border-btn:hover,
.button-outer .border-btn:hover {
    background-color: var(--primary-blue);
    color: var(--primary-white);
}
.offers .row {
    margin-top: 60px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 30px;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
.offers .row {
    scrollbar-width: auto;
    scrollbar-color: var(--primary-blue) transparent;
}

/* Chrome, Edge, and Safari */
.offers .row::-webkit-scrollbar {
    width: 12px;
}

.offers .row::-webkit-scrollbar-track {
    background: #f5f8fb;
}

.offers .row::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 10px;
    border: 3px solid #ffffff;
}
.service-provider {
    position: relative;
}
.service-provider:after {
    position: absolute;
    content: "";
    right: 0;
    background-image: url(../newImages/Ellipse.svg);
    width: 672px;
    height: 370px;
    bottom: 0;
}
.progress {
    overflow: unset;
    background-color: #d0e8ff;
}
.progress-bar {
    height: 10px;
    background: linear-gradient(77.42deg, #04519a 19.76%, #2f87da 108.64%);
    border-radius: 100px;
    position: relative;
    top: -3px;
}
.progress-outer label {
    color: var(--primary-light-black);
    font-weight: var(--font-600);
    margin-bottom: 10px;
}
.progress-outer {
    margin-bottom: 30px;
}
.progress-bar--outer .progress-outer:last-child {
    margin-bottom: 0;
}
.progress-bar--outer {
    margin-top: 30px;
}
.service-provider--thumb {
    position: relative;
    right: -50px;
}
.testimonial-author {
    font-size: 20px;
    color: var(--primary-light-black);
    font-family: var(--title-font);
    font-weight: var(--font-600);
    border-top: 1px solid #d9d9d9;
    padding-top: 30px;
    margin-top: 30px;
}
.testimonial-author span {
    display: block;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: var(--font-500);
    font-family: var(--base-font);
}
.testimonial-inner {
    margin-top: 60px;
    padding-inline: 20px;
}
.main-footer {
    padding-block: 50px 30px;
    background-color: #10161c;
}
/*.main-footer ul{
    column-count: 3;
    column-gap: 46px;
}*/
.main-footer ul li {
    list-style: none;
    margin-inline: 10px;
}
.main-footer ul {
    margin-top: 20px;
    margin-bottom: 0;
}
.main-footer ul li a {
    font-size: 16px;
    color: #7c8895;
    font-weight: var(--font-400);
    position: relative;
}
.main-footer ul li a:hover {
    color: var(--primary-white);
}
.main-footer ul li a:after {
    content: "";
    height: 1px;
    width: 0;
    background-color: var(--primary-white);
    left: 0;
    bottom: -5px;
    position: absolute;
    transition: all 0.3s linear;
}
.main-footer ul li a:hover:after {
    width: 100%;
}
.main-footer h4 {
    color: var(--primary-white);
    font-family: var(--title-font);
    font-weight: var(--font-600);
    margin-bottom: 30px;
    font-size: 20px;
}
.main-footer p {
    color: #7c8895;
    margin-top: 5px;
}
.copyright-section {
    padding-block: 12px;
    background-color: #0d1217;
    color: #7c8895;
}
/*Testimonials*/
.testimonials .carousel-control-next,
.testimonials .carousel-control-prev {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 11px 1px rgb(0 0 0 / 8%);
    top: 50%;
    transform: translateY(-50%);
}
.testimonials .carousel-control-next-icon {
    background-image: url(../newImages/arrow-right.svg);
}
.testimonials .carousel-control-prev-icon {
    background-image: url(../newImages/arrow-left.svg);
}
.testimonials .carousel-control-next {
    right: -40px;
}
.testimonials .carousel-control-prev {
    left: -40px;
}

/*signin*/
.modal-popup .modal-content {
    padding-block: 40px 60px;
    border-radius: 20px;
}
.modal-popup .modal-dialog {
    max-width: 550px;
    margin: 100px auto;
}
.modal-popup .modal-header {
    justify-content: center;
    border: 0;
    padding-top: 0;
}
.modal-popup .modal-header h5 {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}
.modal-popup .modal-header .close {
    position: absolute;
    right: 20px;
    top: 20px;
}
.form-group .form-control {
    display: block;
    width: 100%;
    padding: 8px 25px;
    font-size: 16px;
    line-height: 1.5;
    background-color: #eff7ff;
    background-clip: padding-box;
    border: 0;
    border-radius: 50px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #999;
}
.form-group .form-control::placeholder {
    color: #999;
    opacity: 1; /* Firefox */
}

.form-group .form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #999;
}
.form-control:focus {
    box-shadow: none;
}

.form-control.custom_select {
    background-color: #eef7fe;
    border: 0;
    width: 100%;
    border-radius: 25px;
    color: var(--primary-grey);
}
.signin_outer .primary_btn {
    border: 0;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 25px;
    cursor: pointer;
}
.modal-body {
    width: 100%;
    max-width: 350px;
    margin: auto;
}
.signin_outer input[type="checkbox"] {
    accent-color: #eef7fe;
}
.sub-text {
    font-size: 16px;
    color: var(--primary-grey);
    text-align: center;
}
.signin_outer .border-btn {
    background-color: transparent;
    width: 100%;
    padding-left: 68px;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.4s linear;
    float: none !important;
}
.signin_outer .border-btn:hover {
    background-color: var(--primary-blue);
    color: var(--primary-white);
}
.signin_outer .row a {
    text-decoration: underline;
    color: var(--primary-blue);
    transition: all 0.3s linear;
}
.signin_outer .row a:hover {
    color: var(--primary-light-black);
}
.outer-checkbox {
    margin: 0;
}

.signin_outer .form-group {
    margin-bottom: 15px;
}
.modal-popup.modal {
    padding-right: 0 !important;
    overflow: unset;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}

.fdd-documents-list-modal .modal-body {
    max-width: 100%;
    margin: 0 !important;
    padding-inline: 30px;
}
.fdd-documents-list-modal .modal-footer {
    padding: 20px 20px 0 0;
}
.fdd-documents-list-modal li span,
.fdd-documents-list-modal p span {
    font-family: var(--base-font) !important;
}
.fdd-documents-list-modal p span {
    color: var(--primary-light-black);
}
/*signin*/
.small-container {
    max-width: 830px;
    margin: auto;
    padding-inline: 15px;
}
.sign-outer {
    background-color: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0px 4px 80px 0px #002d5814;
    padding-block: 30px 0;
}
.sign-outer .signin_outer {
    max-width: 430px;
    margin: auto;
    padding-inline: 15px;
    margin-top: 30px;
}
.sign-bg-outer {
    background: url("../newImages/sign-in-bg.png"), var(--primary-blue);
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: 50px;
    margin-top: 50px;
    border-radius: 0 0 20px 20px;
    padding-inline: 15px;
}
.sign-bg-outer h2,
.sign-bg-outer p {
    color: var(--primary-white);
}
.sign-bg-outer .border-btn {
    background-color: transparent;
    border: 1px solid var(--primary-white);
    color: var(--primary-white);
    transition: all 0.3s linear;
    cursor: pointer;
    float: none !important;
}
.sign-bg-outer .border-btn:hover {
    background-color: var(--primary-white);
    color: var(--primary-blue);
}
.sign-bg-outer p {
    font-size: 20px;
    font-weight: var(--font-400);
    margin-bottom: 25px;
}
.sign-bg-outer a {
    text-decoration: underline;
    transition: all 0.3s linear;
    color: var(--primary-white);
    font-weight: var(--font-600);
}
.sign-bg-outer a:hover {
    opacity: 0.7;
}
.main-header {
    border-bottom: 1px solid #d3d3d3;
}
.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border-right: none;
    padding: 13px 45px 13px 20px;
    border-radius: 50px;
    outline: none;
    color: #999;
    border: 0;
    background-color: #eff7ff;
}

.searchButton {
    border: 0;
    background: transparent;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}
.mapImage {
   max-width: 100%;
   height: auto;
}
.mapImage path[id]:hover {
    /* fill: #005596; */
}

.popup {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.state {
    /* stroke-width: 1; */
    cursor: pointer;
}
.colorInfo{
   display: flex;
   align-items: center;
   justify-content: center;
   margin-block: 25px;
   gap: 15px;
}
.colorInfo .colorBox{
   display: flex;
   align-items: center;
   gap: 10px;
}
.colorInfo .colorBox span{
   display: inline-block;
   height: 30px;
   width: 30px;
}
.headerSelectBox {
    margin-bottom: 0 !important;
}
.headerSelectBox .list {
    min-width: 200px;
}
/*Resize the wrap to see the search bar change!*/
.wrap {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.register-form .attorny-subtitle p {
    margin-bottom: 0;
    background-color: transparent;
    padding-left: 0;
}
.register-form .attorny-subtitle p strong {
    color: var(--primary-light-black);
}
.register-form .primary_title {
    margin-bottom: 70px;
}
.select-box .nice-select {
    border: transparent;
    background-color: #eef7fe;
    border-radius: 25px;
    width: 100%;
    font-size: 16px;
    color: #999;
    line-height: normal;
    margin-bottom: 1rem;
}
.top-header-social .select-box .nice-select {
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    background-color: #166aba;
    border: none;
    color: var(--primary-white);
    font-size: 16px;
    font-weight: var(--font-400);
    padding-left: 35px;
}
.top-header-social .select-box .nice-select:after {
    right: 12px;
}
.register-form .form-group {
    margin-bottom: 1rem;
    position: relative;
}
.select-box .nice-select:after {
    height: 8px;
    margin-top: -5px;
    right: 20px;
    width: 8px;
}
.select-box .nice-select.open .list {
    width: 100%;
    border-radius: 24px;
    z-index: 999;
}
.top-header-social .select-box .nice-select.open .list {
    border-radius: 8px;
}
.select-box .nice-select .option:hover,
.select-box .nice-select .option.focus,
.select-box .nice-select .option.selected.focus {
    background-color: #edf7fd;
    color: var(--primary-grey);
}
.radio-button-outer ul li {
    color: var(--primary-grey);
    display: block;
    position: relative;
    padding-left: 30px;
}

.radio-button-outer ul li input[type="radio"] {
    position: absolute;
    visibility: hidden;
}

.radio-button-outer ul li label {
    display: block;
    position: relative;
    font-size: 15px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    margin-bottom: 0;
}

.radio-button-outer ul li .check {
    display: block;
    position: absolute;
    border: 2px solid var(--primary-grey);
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 2px;
    left: 0px;
    z-index: 5;
    transition: border 0.25s linear;
    -webkit-transition: border 0.25s linear;
}

.radio-button-outer ul li .check::before {
    display: block;
    position: absolute;
    content: "";
    border-radius: 100%;
    height: 10px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin: auto;
    transition: background 0.25s linear;
    transform: translate(-50%, -50%);
}

.radio-button-outer input[type="radio"]:checked ~ .check {
    border: 2px solid var(--primary-blue);
}

.radio-button-outer input[type="radio"]:checked ~ .check::before {
    background: var(--primary-blue);
}
.radio-button-outer {
    margin-top: 20px;
}
.checkbox_form {
    margin-bottom: 25px;
}
.button-outer {
    margin-top: 30px;
}
.button-outer .primary_btn {
    padding: 13px 55px;
}
.step-wizard-form .nav-tabs .nav-item {
    margin-bottom: 0px;
}
.step-wizard-form .nav-tabs .nav-link {
    border: 0;
}
.register-form ul {
    list-style: none;
}
.button-outer .border-btn {
    background-color: transparent;
    color: var(--primary-grey);
    border: 1px solid var(--primary-grey);
    cursor: pointer;
}
.date-picker:before {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "";
    background-image: url(../newImages/calender.svg);
    width: 21px;
    height: 23px;
    transform: translateY(-50%);
}
.ui-datepicker.ui-widget.ui-widget-content {
    z-index: 9 !important;
}
.term-condition-text {
    background-color: #eff7ff;
    border-radius: 20px;
    padding: 30px 20px 20px;
    margin-bottom: 25px;
}
.term-condition-text h5 {
    font-size: 18px;
    font-weight: var(--font-600);
    color: var(--primary-light-black);
    margin-bottom: 15px;
}
.term-condition-text p {
    margin-bottom: 10px;
}
.step-wizard-sections .nav-tabs .nav-item {
    margin-bottom: 0;
}
.step-wizard-sections .nav-tabs {
    position: relative;
}
.step-wizard-sections .nav-tabs:before {
    position: absolute;
    content: "";
    left: 0;
    width: calc(100% - 120px);
    height: 1px;
    background-color: #ddd;
    top: 25px;
    z-index: -1;
    left: 60px;
}
.step-wizard-sections .nav-tabs .nav-link {
    border: 0;
    padding: 0;
    color: var(--primary-grey);
    font-weight: var(--font-500);
    border-radius: 50%;
    background-color: #ddd;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
}
.step-wizard-sections .nav-tabs .nav-item span {
    margin-top: 8px;
    display: block;
    text-align: center;
    padding-inline: 10px;
}

.step-wizard-sections .nav-tabs .nav-item.show .nav-link,
.step-wizard-sections .nav-tabs .nav-link.active {
    color: var(--primary-white);
    background-color: var(--primary-blue);
    border-color: #dee2e6 #dee2e6 #fff;
}
.step-wizard-sections .nav-tabs {
    border-bottom: 0;
    background-color: transparent;
    margin-bottom: 50px;
    margin-inline: auto;
    justify-content: space-between;
    max-width: 700px;
}
.step-wizard-sections {
    margin: 0 !important;
    padding: 0 !important;
}
.step-wizard-sections .nav-tabs .nav-link.active + span {
    color: var(--primary-blue);
}
.register-form .lookupicone {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.text_anger {
    position: absolute;
    background: #eff3f7;
    bottom: -50px;
    z-index: 1;
    font-size: 12px;
}
.radio-dropdown {
    background-color: #eef7fe;
    padding: 20px;
    border-radius: 10px;
}
.select-box .list {
    max-height: 250px;
    overflow-y: auto !important;
}
/*Responsive*/
@media only screen and (min-width: 992px) {
    .togle-section .sign-btn {
        display: none;
    }
}
@media only screen and (max-width: 1366px) {
    :root {
        --font-size-40: 34px;
    }

    .hero-carousel .carousel-item {
        background-position: center top;
    }
    .video-section .row {
        margin-inline: -15px;
    }
    .video-section .col-sm-4 {
        padding-inline: 15px;
    }
    .fdd-tools h2 {
        font-size: 20px;
    }
    .tools-thumb {
        width: 65px;
        height: 65px;
    }
    .tools-thumb img {
        height: 30px;
    }
    .fdd-tools ul li {
        padding: 25px;
    }
    .service-provider--thumb {
        right: 0;
    }
    .primary-header .navbar .sign-btn .nav-link,
    .primary_btn,
    .dropdown-btn {
        padding: 10px 25px;
    }
    .secondary_btn {
        padding: 10px 25px;
    }
    .primary_btn {
        padding: 10px 30px;
    }
    .testimonial-inner {
        margin-top: 40px;
        padding-inline: 40px;
    }
    .sign-btn {
        margin-left: 20px;
    }
    .main-footer {
        padding-block: 30px 30px;
    }
    .how-work-lists {
        margin-bottom: 0;
    }
    .how-work-lists li:last-child {
        margin-bottom: 0;
    }
    .testimonials .carousel-control-prev {
        left: 0;
    }
    .testimonials .carousel-control-next {
        right: 0;
    }
}
@media only screen and (max-width: 1170px) {
    .attorney-section {
        padding-block: 30px;
        margin-block: 40px;
    }
    .section_padding {
        padding-block: 60px;
    }
    .primary-header .navbar .nav-item {
        padding-inline: 15px;
    }
    .sign-btn {
        margin-left: 10px;
    }
}
@media only screen and (max-width: 1024px) {
    .how-work-lists h3 {
        font-size: 18px;
    }
    .how-work-lists--thumb {
        width: 100px;
    }
    .list-num {
        font-size: 20px;
    }
    .primary-header .navbar .nav-item {
        padding-inline: 12px;
    }
    .three-col .primary_title {
        font-size: 25px;
    }
}
@media only screen and (max-width: 991px) {
    :root {
        --font-size-40: 28px;
    }
    .navbar-toggler {
        background-color: var(--primary-blue);
        padding: 5px 10px;
        font-size: 16px;
        min-height: 29px;
    }
    .navbar-toggler-icon {
        width: 15px;
        height: 2px;
        background-color: #fff;
        position: relative;
        display: block;
    }
    .navbar-toggler-icon:nth-child(1) {
        top: -4px;
    }
    .navbar-toggler-icon:nth-child(2) {
        top: 0px;
    }
    .navbar-toggler-icon:nth-child(3) {
        top: 4px;
    }
    .primary-header .navbar-collapse {
        justify-content: flex-end;
        position: fixed;
        left: 0;
        height: 100%;
        bottom: 0;
        top: 0;
        background-color: #fff;
        z-index: 16;
        width: 300px;
        left: -300px;
        transition: all 0.3s linear;
        display: block;
    }
    .primary-header .navbar-collapse.show {
        left: 0px;
    }
    .primary-header .navbar-nav {
        display: block;
    }
    .primary-header .navbar .nav-link:after {
        display: none !important;
    }
    .navbar-nav {
        margin-block: 40px;
    }
    .primary-header .navbar .nav-item {
        border-bottom: 1px solid #efefef;
        padding: 13px 25px;
    }
    .sign-btn {
        margin-left: 0;
        padding: 5px 20px 16px 20px !important;
        margin-top: 10px;
        text-align: center;
    }
    .nav-item:last-child {
        border: none !important;
    }
    .sign-btn .nav-link {
        width: 100%;
        padding-block: 10px !important;
    }
    .primary-header .navbar .nav-link {
        font-size: 18px;
    }
    .fdd-tools h2 {
        font-size: 16px;
    }
    .offers .card-header {
        padding: 25px;
    }
    .offers h3 {
        font-size: 17px;
        line-height: 1.7;
        min-height: auto;
    }
    .offers .col-md-4 {
        padding: 0 8px;
        padding: 0 8px;
        max-width: 50%;
        width: 50%;
        flex: 0 0 50%;
    }

    .offers .row {
        margin-inline: -8px;
        padding-bottom: 10px;
    }
    .section_padding {
        padding-block: 50px;
    }
    .main-footer h4 {
        margin-bottom: 20px;
        font-size: 15px;
    }
    .main-footer ul li a {
        font-size: 15px;
    }
    .poster {
        min-height: 270px;
    }
    .main-header.active .primary-header .navbar-collapse {
        left: 0px;
    }
    .main-header .primary-header .navbar-collapse {
        left: -300px;
    }
    .close-nav {
        border: none;
        background-color: transparent;
        color: var(--primary-blue);
        font-size: 40px;
        position: absolute;
        right: 0;
        top: -10px;
        display: block;
        width: auto;
    }
    .register-form .primary_title {
        margin-bottom: 20px;
    }
    .step-wizard-sections .nav-tabs {
        margin-bottom: 20px;
    }
    .radio-button-outer .col-sm-5 ul {
        display: block !important;
    }
    .togle-section {
        display: flex;
        align-items: center;
    }
    .navbar-collapse .sign-btn {
        display: none;
    }
}
@media only screen and (max-width: 850px) {
    .main-footer .col-sm-5 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .main-footer .col-sm-2,
    .main-footer .col-sm-3 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}
@media only screen and (max-width: 767px) {
   .hero-carousel .carousel-inner-content{
   min-height: 600px;
   }
    .primary_title br {
        display: none;
    }
    .inner-image-text {
        padding-right: 0;
    }
    .image-with-text .text-right {
        text-align: center !important;
        margin-bottom: 30px;
    }
    .image-with-text .row.practice-section {
        flex-direction: column-reverse;
    }
    .attorney-section img {
        margin: 0 auto 20px;
        display: block;
    }
    .attorney-section .col-sm-12 {
        padding-inline: 30px;
    }

    .list-num {
        left: -5px;
    }
    .how-work-lists li {
        padding-left: 50px;
        margin-bottom: 20px;
    }
    .offers .card {
        max-width: 500px;
        margin: 0 auto 20px;
    }
    .offers .row {
        margin-top: 30px;
    }
    .attorney-section p {
        padding-right: 0;
    }
    .poster {
        margin-block: 30px;
    }
    .fdd-tools ul li {
        padding: 15px;
    }
    .hero-carousel .carousel-item li {
        margin-right: 10px;
    }
    .hero-carousel .carousel-item ul {
        margin-top: 10px;
    }
    .border-btn {
        padding: 8px 30px;
    }
    .primary_btn {
        padding: 7px 25px 8px;
    }
    .secondary_btn {
        padding: 7px 20px 8px;
    }
    .main-footer p {
        margin-top: 0;
    }
    .register-form .row {
        margin-inline: -5px;
    }
    .register-form .col-sm-4 {
        padding-inline: 5px;
    }
    .radio-button-outer li {
        flex-basis: 50%;
        margin-bottom: 10px;
    }

    .radio-button-outer p,
    .radio-button-outer ul li label {
        font-size: 14px;
    }
}
@media only screen and (max-width: 575px) {
   .colorInfo{
      flex-wrap: wrap;
   }
   .colorInfo .colorBox{
      width: 100%;
   }
    .fdd-tools h2 {
        font-size: 13px;
        margin-top: 10px;
    }
    .fdd-tools ul li {
        padding: 10px;
    }
    .tools-thumb {
        width: 55px;
        height: 55px;
    }
    .fdd-tools p br {
        display: none;
    }
    .main-footer .invisible {
        display: none;
    }
    .main-footer .col-sm-5,
    .main-footer .col-sm-2,
    .main-footer .col-sm-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offers .col-md-4 {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }
    .main-footer ul {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .main-footer ul li {
        margin-bottom: 5px;
    }
    .modal-popup .modal-dialog {
        width: 98%;
    }
    .signin_outer .row a,
    .form-check label {
        font-size: 14px;
    }
    .signin_outer .border-btn {
        padding: 8px 25px;
    }
    .sign-bg-outer h2 {
        font-size: 24px;
    }
    .sign-bg-outer p {
        font-size: 16px;
    }
    .navbar-brand img {
        max-width: 145px;
    }
    .primary-header .navbar .sign-btn .nav-link {
        padding: 5px 16px;
        font-size: 13px;
    }
    .primary-header .sign-btn {
        margin-left: 0;
        padding: 0px 10px 0px 0px !important;
        margin-top: 0;
        text-align: center;
    }
}
@media only screen and (max-width: 420px) {
    .top-header-inner {
        display: block !important;
        text-align: center;
    }
    .top-header-social {
        justify-content: center;
        margin-top: 5px;
    }
    .fdd-tools ul li {
        flex-basis: 50%;
    }
    .fdd-tools ul li:nth-child(3n) {
        border-right: 1px solid #cbe2f8;
    }
    .fdd-tools ul li:nth-child(2n) {
        border-right: 0;
    }
    .fdd-tools ul {
        justify-content: start;
    }
    .fdd-tools ul li:nth-child(7),
    .fdd-tools ul li:nth-child(8) {
        border-bottom: 1px solid #cbe2f8;
    }
    .radio-button-outer li {
        flex-basis: 100%;
    }
    .button-outer .primary_btn {
        padding: 13px 25px;
    }
    .button-outer {
        display: block !important;
    }
    .button-outer li {
        width: 100%;
        margin-bottom: 10px;
    }
    .button-outer button {
        width: 100% !important;
    }
}
