:root {
    --primary: #1f3f81;
    --primaryDark: #021b39;
    --secondary: #df1f26;
    --secondaryDark: #e01f26;
    --danger: #dd0e16;
    --light: #ffffff;
    --dark: #000000;
    --paragraph: #41515f;
    --paragraphLight: #586673;
    --border: #b6b6b6;

    --lightOp: rgba(255, 255, 255, 0.7);
    --gray: #c4c2c2;
    --primaryLight: #f6e2e2;
    --disable: #d6d6d6;
    --inputBg: #fafafa;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

.content {
    flex: 1;
}

.header {
    background-color: var(--light) !important;
    box-shadow: 0 20px 15px -26px rgba(0, 0, 0, .12);
    padding: 1.2rem 0;
}

.logo img {
    max-width: 200px;
}

.search_input {
    border-radius: 25px;
}

.nav_link i {
    color: var(--dark) !important;
    padding-right: 5px;
}

.nav_link {
    color: var(--dark) !important;
    font-size: 14px;
    font-weight: 500;
    margin: 0.2rem .75rem !important;
}

.icon_link i {
    color: var(--primary) !important;
}

.nav_icon_link {
    color: var(--dark) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.nav_icon_link img {
    width: 30px;
    margin: auto;
}
.navbar-toggler{
    padding: 0;
    border: 0;
}
.navbar-toggler img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
@media (min-width: 992px) {
    .navbar-collapse {
        border-right: 1px solid var(--border);
    }
}

.btn_header {
    background-color: var(--secondary);
    color: var(--light) !important;
    padding: .6rem 1.5rem !important;
    border-radius: 50px;
    transition: .5s ease-in-out;
    margin-right: 1.5rem !important;
}

.btn_header i {
    color: var(--light) !important;
}

.btn_header:hover {
    background-color: var(--primary);
}

.slider_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    height: fit-content;
    margin: auto;
    display: block;
}

.slider_content h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 5.2vw;
    line-height: 1;
    color: var(--light);
    margin-bottom: 20px;
}

.slider_content h1 span {
    color: var(--secondary);
}

.slider_content p {
    color: var(--light);
    line-height: 1.625;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .slider_content p {
        width: 33%;
        font-size: 16px;
        line-height: 1.625;
    }
}

.slider_content p {
    color: var(--light);
}

@media (max-width: 992px) {
    .slider_content p {
        display: none;
    }
}

.slider_bottom {
    background-color: var(--danger);
    padding: 80px 0;
    background-image: url("../images/reflect-bg.png");
    background-position: left bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .slider_bottom {
        background-image: none;
        padding: 50px 0;
    }
    .content_box_icon img{
        width: 50px;
        height: 50px;
    }
}

.content_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .content_box{
        padding-right: 52px;
    }
}

.content_box h3 {
    color: var(--light);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content_box p {
    color: var(--light);
    margin-bottom: 20px;
}

.content_box_icon img {
    border-radius: 8px;
}

.tab_section {
    padding: 120px 0;
}

@media (min-width: 992px) {
    .tab_image img {
        width: 85%;
    }
}
@media (max-width: 992px) {
    .tab_section {
        padding: 50px 0;
    }
}

.nav_tabs {
    background-color: #f7f7f7;
    border: 0 !important;
    padding: 8px 0;
    margin-bottom: 30px;
}

.nav_tabs button {
    background-color: transparent !important;
    border: 0 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 1.5rem;
    position: relative;
    color: var(--paragraphLight) !important;
}

.nav_tabs li:not(:last-child) {
    border-right: 2px solid #e1e1e1 !important;
}

.nav_tabs button.active {
    color: var(--primary) !important;
}

.nav_tabs button.active:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    background-color: var(--primary);
    width: 100%;
    height: 4px;
}

.tab-content p{
    color: var(--paragraph);
    margin-bottom: 1rem;
}

.list_groups li{
    color: var(--paragraph);
    font-size: 15px;
    line-height: 2;
}

.list_groups li i{
    color: var(--secondary)
}
.quote_tab_section{
    background-color: #760a0e;
    padding: 80px 0;
    min-height: 90vh;
    background-image: url("../images/quote-bg.jpg");
    position: relative;
    background-size: cover;
    background-attachment: fixed;
}
.quote_tab_section:after{
    content: '';
    background-color: #760a0e;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}
@media (max-width: 768px) {
    .quote_tab_section{
        min-height: 65vh;
    }
}
.quote_section_body{
    position: relative;
    z-index: 1;
}
.heading_light h3{
    font-size: 30px;
    font-weight: bold;
    color: var(--light);
    text-transform: uppercase;
}
.nav_hr_buttom{
    background-color: #0c59bc !important;
    color: var(--light) !important;
    margin-bottom: 10px;
    padding: 25px 30px;
    font-weight: bold;
    border-radius: 4px !important;
    text-align: left !important;
    white-space: nowrap;
}
.nav_hr_buttom.active{
    background-color: #db0109 !important;
}
.nav_hr_buttom:hover{
    background-color: #db0109 !important;
}
.tab_content{
    background-color: var(--light);
    border-radius: 4px;
    padding: 40px;
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.quote_tab_images img{
    height: 405px;
    object-fit: contain;
    display: block;
    margin: auto;
}
@media (max-width: 992px) {
    .quote_tab_images img{
        height: 200px;
    }
    .tab_content{
        padding: 30px;
        min-height: auto;
    }
    .quote_tab_section{
        padding: 50px 0;
    }
    .heading_light h3 {
        font-size: 20px;
    }
    .nav_hr_buttom{
        padding: 12px 20px;
        font-size: 13px;
    }
}
.quote_tab_content h3{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.quote_tab_content p{
    color: var(--paragraphLight) !important;
    font-size: 13px;
    margin-bottom: 50px;
}
.data_driven{
    padding: 80px 0;
}
.data_driven p{
    color: var(--paragraphLight);
    font-size: 13px;
    margin-bottom: 40px;
}
@media (min-width: 992px){
    .data_driven img {
        height: 500px;
    }
}

.data_driven img{
    object-fit: contain;
    margin: auto;
    display: block;
}
.head p{
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
}
.head h3{
    color: var(--primary);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.why_choose_us{
    background-color: #e0eaff;
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.why_choose_us p{
    font-size: 13px;
    color: #4d5c67;
    margin-bottom: 40px;
}
.choose_heading p{
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.choose_heading h3{
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .why_choose_img img{
        height: 500px;
        object-fit: contain;
    }
}
@media (max-width: 992px){
    .data_driven {
        padding: 50px 0;
    }
    .head h3{
        font-size: 20px;
    }
    .why_choose_us{
        padding: 50px 0;
    }
    .choose_heading h3{
        font-size: 20px;
    }
}

.choose_list img{
    min-width: 40px;
}
.choose_list h3{
    font-size: 1rem;
    font-weight: bold;
}
.choose_list p{
    font-size: 13px;
    color: #4d5c67;
}
.software_section{
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.software_section p{
    font-size: 13px;
    color: var(--paragraphLight);
    margin-bottom: 0;
    line-height: 24px;
}
.soft_head p{
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.soft_head h3{
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}
.software_section img{
    height: 360px;
    width: 100%;
    object-fit: cover;
    margin: 0 auto 30px;
}

.important_section{
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #10295e;
}
.important_section_img img{
    /*height: 500px;*/
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}
@media (min-width: 992px){
    .important_section_img img{
        height: 500px;
    }
}
.important_section_content p{
    font-size: 13px;
    font-weight: 500;
    color: var(--light);
}
.important_head p{
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
}
.important_head h3{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}
.important_section_content .accordion-body{
    padding: 1rem;
}
.important_section_content .accordion-body p{
    font-size: 13px;
    color: #4a616a;
    margin: 0;
}
.important_section_content .accordion-item{
    border-radius: 0 !important;
    margin-bottom: 20px;
}
.important_section_content .accordion-item button{
    box-shadow: none !important;
    background-color: var(--light);
    font-size: 13px;
    font-weight: bold;
    color: var(--dark);
}
.important_section_content .accordion-item .accordion-collapse{
    border-top: 2px solid rgb(16, 41, 94);
}
@media (max-width: 992px) {
    .software_section{
        padding: 50px 0;
    }
    .software_section img{
        height: auto;
        margin: 20px auto;
    }
    .important_section{
        padding: 50px 0;
    }
    .important_head h3 {
        font-size: 20px;
    }
}
.accordion-button:not(.collapsed)::after{
    content: '-';
    background-image: none;
    font-size: 24px;
    font-weight: 300;
    line-height: 16px;
}
.accordion-button::after{
    background-image: none;
    font-size: 24px;
    font-weight: 300;
    line-height: 16px;
    content: '+';
    width: auto;
    height: auto;
}
.testimonials_section{
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonial_head p{
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary);
}
.testimonial_head h3{
    color: var(--secondary);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
}
.user_profile{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}
.user_profile img{
    width: 50px !important;
    height: 50px;
    object-fit: contain;
}
.testimonial_card{
    background-color: #ececec;
    padding: 31px;
    border-radius: 4px;
    min-height: 335px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial_content p{
    font-size: 15px;
    font-weight: 500;
    color: #3f4c5a;
    margin-bottom: 26px;
}
.rating{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rating span i{
    color: var(--primary);
    font-size: 15px;
}
.rating span i:not(:last-child){
    padding-right: 3px;
}
.rating img{
    height: 43px;
    object-fit: contain;
    width: auto !important;
}
.profile_info h3{
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #001538;
}
.profile_info small{
    font-size: 12px;
    color: #404d5e;
    font-weight: 400;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 67px;
}
.owl-theme .owl-dots .owl-dot span{
    width: 9px;
    height: 9px;
    background-color: var(--primary);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: var(--secondary);
}
.left_section{
    background-color: var(--primary);
    padding: 44px ;
    height: 100%;
}
.right_section{
    background-color: var(--secondary);
    padding: 44px 35px;
    height: 100%;
}
.help_section{
    background-color: var(--primary);
    position: relative;
}
.left_section p{
    color: var(--light);
    margin-bottom: 0;
    font-weight: bold;
    font-size: 18px;
}
.right_section h3{
    color: var(--light);
    margin-bottom: 0;
    font-weight: bold;
    font-size: 18px;
}
.right_section a{
    color: var(--light);
    margin-bottom: 0;
    font-weight: bold;
    font-size: 30px;
    text-decoration: none;
}
.help_section > img{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 27%;
}
@media (max-width: 992px) {
    .help_section > img{
        top: -40px;
        bottom: unset;
        width: 120px;
    }
}
.blog_section{
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 992px) {
    .blog_section{
        min-height: auto;
    }
}
.blog_heading{
    justify-content: space-between;
    align-items: end;
    margin-bottom: 62px;
}
.blog_head p{
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary);
}
.blog_head h3{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--secondary);
}
.blog_img img{
    width: 100%;
    height: 325px;
    object-fit: cover;
}
.blog_card{
    background-color: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.blog_content{
    padding: 30px 35px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.blog_inner_heading h3{
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}
.blog_inner_heading small{
    font-size: 12px;
    color: #7a7a7a;
}
.blog_body p{
    color: #00133b;
}
.icon_btn{
    background-color: var(--primary);
    border-radius: 50px;
    color: var(--light);
    padding: 7px 12px;
    transition: .9s ease-in-out;
    width: fit-content;
}
.icon_btn:hover{
    background-color: var(--secondary);
    color: var(--light);
}

footer {
    background-color: var(--primaryDark);
    padding: 90px 0;
}
.footer_top{
    padding-bottom: 60px;
    margin-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}
.subscribe_group input{
    height: 55px;
    border-radius: 4px;
}
.subscribe_group button{
    height: 55px;
    border-radius: 4px;
    background-color: var(--secondaryDark);
    border-color: var(--secondaryDark);
    color: var(--light);
    font-size: 13px;
    font-weight: bold;
}
.footer_top p{
    font-size: 13px;
    color: var(--light);
    margin-bottom: 0;
}
.footer_bottom {
    background-color: var(--secondaryDark);
    padding: 1rem;
}

.footer_bottom p {
    text-align: center;
    color: var(--light);
    margin-bottom: 0;
}

.footer_logo img {
    width: 200px;
}

.footer_widget h3 {
    color: var(--light);
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 22px;
}
.footer_widget p{
    font-size: 13px;
    color: var(--light);
    margin-bottom: 20px;
}

.footer_logo a {
    font-weight: bold;
    line-height: 1 !important;
}

.footer_widget a {
    text-decoration: none;
    color: var(--light);
    font-weight: normal;
    font-size: 13px;
}
.footer_widget li{
    margin-bottom: 8px;
}

.footer_widget .social_links a{
    width: 39px;
    height: 39px;
    display: block;
    text-align: center;
    line-height: 38px;
    background-color: #0b2d55;
    border-radius: 2px;
}
.footer_widget .social_links li:not(:last-child){
    padding-right: 8px;
}
.footer_widget .social_links a:hover{
    background-color: var(--secondaryDark);
}
@media (max-width: 992px) {
    .testimonials_section{
        padding: 50px 0;
        min-height: auto;
    }
    .testimonial_head h3{
        font-size: 20px;
    }
    .owl-theme .owl-nav.disabled+.owl-dots{
        margin-top: 20px;
    }
    .left_section, .right_section{
        padding: 25px;
    }
    .blog_section{
        padding: 50px 0;
    }
    .blog_img img {
        height: 250px;
        object-position: top;
    }
    .blog_head h3{
        font-size: 20px;
    }
    .blog_heading{
        margin-bottom: 25px;
    }
    .blog_content {
        padding: 20px;
    }
    footer {
        padding: 50px 0;
    }
    .subscribe_group button {
        height: 45px;
    }
    .subscribe_group input {
        height: 45px;
    }
    .footer_top {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

}
.inner_section {
    padding: 60px 0;
}

.side_bar_option {
    margin-bottom: 35px;
}

.side_bar_option h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary);
}

.side_bar_option a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 400;
    line-height: 2.5;
}

.sidebar_sub_option {
    padding-left: 1rem;
}

.line {
    background-color: var(--secondary);
    opacity: 1;
    width: 95%;
}

.sidebar {
    border-right: 1px solid var(--secondary);
    padding-right: 2rem;
    height: 100%;
}

.sidebar .side_bar_option:first-child {
    padding-top: 50px;
}

.quote_section h1 {
    color: var(--secondary);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

.quote_section p {
    color: var(--secondary);
}

.quote_card {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    margin-bottom: 2rem;
    background-color: var(--light);
    top: 0;
    transition: .6s ease-in-out;
    box-shadow: inset 0 0 13px -8px rgba(0, 0, 0, 0.57);
}

.quote_card:hover {
    top: -10px;
    box-shadow: 0 0 25px -8px rgba(0, 0, 0, 0.57);
}

.quote_body {
    padding: 1rem;
    min-height: 110px;
}

.quote_card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.quote_body h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--secondary);
}

.quote_body p {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.need_more {
    margin-top: 2rem;
}

.need_more h2 {
    font-size: 25px;
    font-weight: bold;
    color: var(--secondary);
}

.need_more p {
    font-weight: 400;
    color: var(--secondary);
    margin: 0;
}

.data_range {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.data_range h2 {
    font-size: 25px;
    font-weight: bold;
    color: var(--secondary);
}

.data_range p {
    font-weight: 500;
}

.form_select {
    border-radius: 0;
    border: 1px solid var(--gray);
}

.quote_form_card {
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.4);
}

.quote_form_card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: .5rem;
    border-radius: 15px;
}

.quote_form_card p {
    margin: 0;
}

.form_card_body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.form_control {
    border-radius: 0;
    border: 1px solid var(--gray);
}

.form_card_body h3 {
    font-size: 20px;
    color: var(--secondary);
    font-weight: bold;
    text-align: right;
}

.btn_outline_primary {
    background-color: var(--secondary);
    border-radius: 0;
    color: var(--light);
    transition: .9s;
    box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.57);
    font-size: 14px;
}

.btn_outline_primary.active {
    background-color: var(--primary);
    color: var(--light);
}

.btn_outline_primary:focus {
    background-color: var(--primary);
    color: var(--light);
}

.btn_outline_primary:hover {
    background-color: var(--primary);
    color: var(--light);
}

.form_card_body h2 {
    color: var(--secondary);
    font-size: 22px;
    font-weight: bold;
}

.spacer {
    margin: 0;
    opacity: 0;
    height: 20px !important;
}

.table_main td {
    color: var(--secondary);
    font-size: 14px;
    font-weight: normal;
    padding: 5px 0;
}

.table_main td:last-child {
    text-align: end;
}

.table_foot td {
    color: var(--secondary);
    font-size: 14px;
    font-weight: normal;
    padding: 5px 0;
}

.table_foot td:last-child {
    text-align: end;
}

.table_main {
    margin-bottom: 60%;
}

.dotted_line {
    opacity: 1;
    padding: 2px;
    margin: 5px 0;
    background: transparent;
    border-top: 2px dashed var(--secondary);
    border-bottom: 2px dashed var(--secondary);
}

.btn_primary {
    background-color: var(--secondary);
    color: var(--light) !important;
    padding: 10px 1.5rem;
    font-weight: 400;
    border-radius: 0;
    transition: .9s;
    line-height: unset !important;
    width: fit-content !important;
    font-size: 13px;
}

.btn_primary:hover, .btn_primary:focus, .btn_primary:active {
    background-color: var(--secondary);
    color: var(--light) !important;
    border-color: var(--secondary);
}

.btn_secondary {
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--light) !important;
    padding: 10px 2rem;
    font-weight: 600;
    border-radius: 0;
    transition: .9s;
    line-height: unset !important;
}

.btn_secondary:hover, .btn_secondary:focus, .btn_secondary:active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.right_sidebar {
    border-left: 1px solid var(--secondary);
    padding-left: 2rem;
    height: 100%;
}

.account_main {
    padding: 80px 15px;
}

.account_card {
    background-color: var(--light);
    padding: 20px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 0 11px -8px;
}

.account_card_head h3 {
    text-align: center;
    color: var(--primary);
}

.line_small {
    width: 9%;
    opacity: 1;
    margin: 8px auto;
    border-radius: 25px;
    height: 4px !important;
    background-color: var(--secondary);
}

.group_input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
}

.forgot_link {
    background-color: var(--inputBg) !important;
    border-color: #ced4da !important;
    color: var(--primary) !important;
    border-left: 0;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding: 10px;
}

/* @media only screen
  and (min-width: 820px)
  and (max-width: 1180px){
    .nav_link{
        font-size: 11px !important;
    }
    .nav_icon_link img {
        width: 25px;
    }
    .logo img{
        width: 150px;
    }
} */
#loader {
    position: fixed !important;
    left: 65px;
    top: 65px;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    background: none;
    border: none;
    cursor: wait;
    z-index: 1020;
}

#loader .loader-image {
    content: url('../images/loading.gif');
    margin: 0 auto;
}

.PrixMin {
    float: left;
    color: var(--primary);
    font-size: 19px;
    margin-right: 5px;
}

.selecteurPrix {
    padding-top: 15px;
}


.valeurPrix {
    position: absolute;
    bottom: -35px;
    left: 177px;
}

.range-slider {
    position: relative;
    width: 100%;
    float: left;
    /* margin-right: 5px; */
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.range-slider .input-range {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #ccc;
    outline: none;
}

.range-slider .input-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    -webkit-transition: background .15s ease-in-out;
    transition: background .15s ease-in-out;
}

.range-slider .input-range::-webkit-slider-thumb:hover {
    background: var(--primary);
}

.range-slider .input-range:active::-webkit-slider-thumb {
    background: var(--primary);
}

.range-slider .input-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    -webkit-transition: background .15s ease-in-out;
    transition: background .15s ease-in-out;
}

.range-slider .input-range::-moz-range-thumb:hover {
    background: var(--primary);
}

.range-slider .input-range:active::-moz-range-thumb {
    background: var(--primary);
}

.range-slider .range-value {
    display: inline-block;
    position: relative;
    width: 83px;
    color: #fff;
    font-size: 19px;
    line-height: 32px;
    text-align: center;
    border-radius: 3px;
    background: var(--primary);
    padding: 5px 10px;
    margin-left: 7px;
}

.range-slider .range-value:after {
    position: absolute;
    top: -10px;
    left: 40px;
    width: 0;
    height: 0;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--primary);
    border-top: 7px solid transparent;
    content: '';
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

::-moz-range-track {
    background: #ccc;
    border: 0;
}

.lh-0 {
    line-height: 0 !important;
}

.top_header {
    background-color: var(--primary);
    padding: 8px 0;
}

.contact_links {
    text-align: center;
}

.contact_links li {
    margin: 0 !important;
}
@media (min-width: 992px) {
    .contact_links li {
        padding-right: 2.2rem;
    }
}
.social_links li:not(:last-child) {
    padding-right: 1rem;
    margin: 0 !important;
}

.contact_links a, .social_links a {
    text-decoration: none;
    color: var(--light);
    font-size: 14px;
    font-weight: 300;
}

.top_head_dropdown {
    color: var(--light) !important;
    font-size: 14px;
    font-weight: 300;
    padding: 0;
    border: 0 !important;
}

.top_head_dropdown img {
    width: 20px;
    margin-right: 3px;
    vertical-align: bottom;
}

.dropdown_menu {
    border: 0;
    padding: 0;
    z-index: 12345;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 11px -5px;
}

.dropdown_menu li {
    border-bottom: 1px solid var(--primaryLight);
}

.dropdown_item {
    padding: 8px 1rem;
    font-size: 14px;
}

.dropdown_item:hover, .dropdown_item:focus {
    background-color: var(--primary);
    color: var(--light);
    transition: .9s;
}

.icon_link img {
    width: 37px;
    padding: 5px;
}

.badge_number {
    top: -2px;
    font-size: 9px;
    margin-left: -4px;
    background-color: var(--primary);
}

.empty_badge {
    background-color: var(--secondary);
}

.search_link {
    position: relative;
}

.form_group_search {
    position: absolute;
    width: 300px;
    right: 0;
    border-radius: 9px;
    padding: 12px;
    z-index: 2;
    box-shadow: 0 0 11px -5px;
    background-color: var(--light);
}

.dropdown_menu_cart {
    min-width: 350px;
    height: 300px;
}

.nav_cart_toggle::after {
    display: none;
}
.search{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
    transition: .9s ease-in-out;
    background: rgba(31, 63, 129, .9);
}
.search input{
    height: 50px;
}
.search .btn_close{
    color: var(--light) !important;
    font-size: 40px;
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 1;
}
.cart_card {
    height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
}

.cart_footer {
    padding: 6.5px 0;
    border-top: 1px solid #ddd;
}

.cart_item p {
    margin-bottom: 0;
    font-size: 14px;
}

.cart_item b {
    color: var(--secondary);
}

.cart_item small {
    color: #a7a7a7;
    font-size: 12px;
}

.cart_item {
    padding: 5px 15px;
    border-bottom: 1px solid var(--gray);
}

.close_cart {
    padding: 0;
    margin-left: 9px;
    color: var(--primary);
    font-size: 16px;
    line-height: 21px;
}

.close_cart:hover {
    color: var(--secondary);
}

.inner_section {
    padding: 45px 0;
}

.heading {
    position: relative;
    margin-bottom: 2rem;
}

.heading h3 {
    position: relative;
    padding-bottom: 14px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    color: var(--dark);
    width: fit-content;
}

.heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 35%;
    background-color: var(--primary);
    border-radius: 25px;
}

.heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 2px;
    width: 75%;
    background-color: var(--secondary);
}

.heading h1 {
    position: relative;
    padding-bottom: 14px;
    font-weight: bold;
    margin-bottom: 0;
    color: var(--secondary);
    width: fit-content;
}

.heading h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 35%;
    background-color: var(--primary);
    border-radius: 25px;
}

.heading h1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 2px;
    width: 75%;
    background-color: var(--secondary);
}

.table_dark th {
    background-color: var(--secondary);
    color: var(--light);
}

.range-slider-container {
    padding: 20px 0;
    position: relative;
}

.range-slider-container h3 {
    font-size: 16px;
}

.range-slider-container .rs-value {
    position: absolute;
    top: -20px;
    background: var(--primary);
    padding: .25em 1em;
    color: var(--light);
    border-radius: 5px;
}

.range-slider-container .rs-value:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: var(--primary);
    border-width: 10px;
    margin-left: -10px;
}

.range-slider-container .min-max {
    display: flex;
    justify-content: space-between;
    color: var(--primary);
    font-weight: 600;
    margin-top: 5px;
}

.range-slider-container input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 8.5px 0;
    background: linear-gradient(to right, var(--primaryLight) 0%, var(--primaryLight) 100%);
    transition: background 450ms ease-in;
    border-radius: 25px;
    height: 7px;
}

.range-slider-container input[type=range]:focus {
    outline: none;
}

.range-slider-container input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 0px;
    border: 0px solid var(--light);
}

.range-slider-container input[type=range]::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    border-radius: 25px;
    background: var(--primary);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8.5px;
}

.range-slider-container input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 0px;
    border: 0px solid var(--light);
}

.range-slider-container input[type=range]::-moz-range-thumb {
    border: 0px solid var(--dark);
    height: 25px;
    width: 25px;
    border-radius: 25px;
    background: var(--primary);
    cursor: pointer;
}

.range-slider-container input[type=range]::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.range-slider-container input[type=range]::-ms-fill-lower {
    background: var(--gray);
    border: 0px solid var(--primary);
    border-radius: 0px;
}

.range-slider-container input[type=range]::-ms-fill-upper {
    border: 0px solid var(--primary);
    border-radius: 0px;
}

.range-slider-container input[type=range]::-ms-thumb {
    border: 0px solid var(--dark);
    height: 25px;
    width: 25px;
    border-radius: 25px;
    background: var(--light);
    cursor: pointer;
    height: 8px;
}

.price_card {
    background-color: var(--light);
    padding: 25px 20px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 0 11px -8px;
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;
    top: 0;
    transition: .6s ease-in-out;
}

.price_card:hover {
    top: -10px;
    box-shadow: 0 0 25px -8px rgb(0 0 0 / 57%);
}

.price_card_head {
    margin-bottom: 35px;
}

.price_card_head h3 {
    color: var(--secondary);
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 5px;
}

.price_card_head p {
    text-align: center;
    font-size: 15px;
    margin-bottom: 0;
}

.price_info h2 {
    color: var(--secondary);
    font-size: 25px;
    text-align: center;
    margin-bottom: 5px;
}

.price_info span {
    color: var(--primary);
    font-weight: bold;
    font-size: 45px;
    text-align: center;
}

.price_info small {
    color: var(--dark);
    font-weight: 100;
    font-size: 15px;
}

.price_info p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.price_info {
    margin-bottom: 35px;
}

.price_card h4 {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 17px;
}

.price_list {
    padding-left: 1rem;
}

.price_list i {
    color: var(--primary);
    margin-right: 5px;
}

.price_list li {
    line-height: 2;
}

.more_link {
    text-decoration: none;
    color: var(--primary);
    text-align: center;
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.more_link:hover {
    color: var(--secondary);
}

.note_card {
    background-color: var(--light);
    padding: 25px 20px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 0 11px -8px;
    margin: 2.5rem 0;
}

.dmap {
    margin-top: 1rem;
}

.dmap img {
    /* max-width: 300px; */
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.card_instant_quote {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 0 12px -7px;
}

.nav_link.active {
    position: relative;
    width: fit-content;
    color: var(--secondary) !important;
}

.form-control {
    font-size: 14px;
    border-radius: 0;
    padding: 0.75rem 1rem;
    background-color: var(--inputBg);
    box-shadow: unset !important;
}

.form-select {
    font-size: 14px;
    border-radius: 0;
    padding: 0.75rem 1rem;
    background-color: var(--inputBg);
    box-shadow: unset !important;
    background-image: url('../images/arrow-down-gray.svg');
}

.select2-selection {
    font-size: 14px;
    border-radius: 0 !important;
    padding: 0.75rem 2.5rem 0.75rem 1rem !important;
    background-color: var(--inputBg) !important;
    box-shadow: unset !important;
    background-image: url('../images/arrow-down-gray.svg') !important;
    height: unset !important;
}

.form-control:disabled, .form-control[readonly] {
    background-color: var(--disable);
    color: var(--dark);
    cursor: not-allowed;
}

.form-select:disabled {
    background-color: var(--disable);
    color: var(--dark);
    cursor: not-allowed;
}

.form-check-input:disabled {
    cursor: not-allowed;
}

.card_map {
    margin-bottom: 2rem;
    /* overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 11px -8px; */
}

.dmap_img {
    /* padding: 20px;
    height: 280px; */
}

.dmap_foot {
    /* background-color: var(--inputBg); */
    /* padding: 10px;
    width: 100%; */
    /* border-bottom: 1px solid var(--secondary); */
}

.dmap_foot h1 {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    color: var(--secondary);
}

.input-group-text {
    border-radius: 0 !important;
}

.datepicker-dropdown {
    z-index: 12345 !important;
}

.dropdown_item.active {
    background-color: var(--primary);
}

.invalid-feedback {
    font-weight: bold;
}

.main_banner_content h1 {
    font-size: 35px;
    font-weight: bold;
    color: var(--secondary);
    /* text-shadow: 3px 3px 5px rgb(0 0 0 / 19%); */
}

.camp_option h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: var(--secondary);
}

.main_banner button {
    background-color: var(--primary);
    width: 40px;
    height: 30px;
    top: 45%;
    bottom: 45%;
    padding: 10px;
}

@media only screen and (max-width: 820px) {
    .wrapper {
        min-height: 80vh;
    }

    .logo img {
        max-width: 150px;
    }

    .quote_card img {
        height: 130px;
    }

    .quote_body h4 {
        font-size: 14px;
    }

    .quote_body p {
        font-size: 12px;
    }

    .main_banner_content h1 {
        font-size: 27px;
    }
}

@media only screen and (max-width: 767px) {
    .logo img {
        max-width: 140px;
    }

    .wrapper {
        min-height: 80vh;
    }

    .main_banner_content h1 {
        font-size: 13px;
    }

    .camp_option h3 {
        font-size: 18px;
    }

    .quote_body h4 {
        font-size: 15px;
    }

    .quote_body p {
        font-size: 13px;
    }

    .quote_section h1 {
        font-size: 29px;
    }

    .form_group_search {
        position: fixed;
    }
}

.contact_img {
    border-radius: 15px;
    box-shadow: 0 0 12px -7px;
}

.address i {
    color: var(--primary);
    margin-right: 6px;
}

.address li {
    line-height: 2.5;
}

.nav_tab_link {
    background-color: var(--light) !important;
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
}

.nav_tab_link.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--light) !important;
}