﻿body {
    font-family: "Roboto", sans-serif;
    max-width: 100%;
    width: 100%;
}

/*<<<<<<<<<Nav-start>>>>>>>>>>>*/
.wrapper {
    position: fixed;
    width: 100%;
    box-shadow: 2px 2px 5px #ffffff47, -2px -2px 2px #ffffff;
    background: linear-gradient(105deg, #ffffff, #ffe1e4);
    z-index: 10;
}

.wrapper nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 90px;
    align-items: center;
    justify-content: space-between;
}

nav .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav .nav-content .links {
    display: flex;
    gap: 30px;
    margin: 0px
}

.nav-content .logo {
    display: flex;
    align-items: center;
}


.nav-content .logo {
    color: #a443ff;
    font-size: 30px;
    font-weight: 600;
}

.nav-content .links li {
    list-style: none;
    line-height: 70px;
}

.nav-content .links li a,
.nav-content .links li label {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Roboto';
}

.nav-content .links li,
.nav-content .links li label {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Roboto';
}

.nav-content .links li label {
    display: none;
}

.nav-content .links li a:hover,
.nav-content .links li label:hover {
    color: #d6051b;
}

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #fff1f1;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}

.wrapper .menu-icon {
    display: none;
}

.wrapper #show-search:checked~.search-icon i::before {
    content: "\f00d";
}

.wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked~.search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #000;
    background: #ffff;
    padding: 0 100px 0 15px;
}

.search-box input::placeholder {
    color: #545252;
}

.search-box .go-icon {
    position: absolute;
    display: flex;
    right: 10px;
    top: 50%;
    align-items: center;
    transform: translateY(-50%);
    line-height: 60px;
    width: 51px;
    height: 50px;
    justify-content: center;
    border: none;
    outline: none;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
}

.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
    position: absolute;
    background: #dfaf7a;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    padding: 0px
}

.nav-content .links li:hover>ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.nav-content .links ul li a {
    color: #fff;
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
}

.nav-content .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
}

.nav-content .links ul li {
    position: relative;
}

.nav-content .links ul li:hover ul {
    top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
    .wrapper nav {
        max-width: 100%;
        padding: 0 20px;
    }

    nav .nav-content .links {
        margin-left: 30px;
    }

    .nav-content .links li a {
        color: #fff;
        padding: 8px 13px;
        font-size: 17px;
    }


    .wrapper .search-box {
        max-width: calc(100% - 100px);
    }

    .wrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

.nav-content .logo img {
    width: 170px;
}

@media screen and (max-width: 900px) {
    .wrapper .menu-icon {
        display: block;
        color: #ff0000;
        background: #fff;
        border-radius: 15px;
        border: 1px solid #291f1e24;
        font-size: 30px;
        line-height: 2;
    }

    .nav-content .logo a {
        font-size: 25px;
    }

    .nav-content .logo img {
        width: 150px;
    }

    nav .nav-content {
        justify-content: end;
    }

    .wrapper #show-menu:checked~.menu-icon i::before {
        content: "\f00d";
    }

    nav .nav-content .links {
        display: block;
        position: fixed;
        background: #14181f;
        height: 100%;
        width: 100%;
        top: 90px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }

    nav #show-menu:checked~.nav-content .links {
        left: 0%;
        background: linear-gradient(105deg, #ffffff, #ffe1e4);
    }



    .nav-content .links li a,
    .nav-content .links li label {
        line-height: 20px;
        font-size: 17px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
        font-family: 'Roboto';
        color: #000;
    }

    .nav-content .links li a.desktop-link {
        display: none;
    }

    /* dropdown responsive code start */
    .nav-content .links ul,
    .nav-content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
    }

    .nav-content .links #show-features:checked~ul,
    .nav-content .links #show-services:checked~ul,
    .nav-content .links #show-items:checked~ul {
        max-height: 100vh;
    }

    .nav-content .links ul li {
        margin: 7px 20px;
    }

    .nav-content .links ul li a {
        font-size: 17px;
        line-height: 30px;
        border-radius: 5px !important;
    }
}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 10px;
    }

    .nav-content .logo a {
        font-size: 23px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

    .wrapper .search-box .go-icon {
        width: 30px;
        right: 0;
    }

    .wrapper .search-box input {
        padding-right: 30px;
    }
}

/*<<<<<<<<<Nav-End>>>>>>>>>>>*/
/*<<<<<<<<<banner-start>>>>>>>>>>>*/

.banner-sm-heading {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-100%, 50%);
    text-align: center;
    z-index: 1;
    display: block;
    padding: 30px;
}

.banner-sm-heading .h1 {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    font-family: 'Roboto';
    display: block
}

.banner-sm-heading .p {
    font-size: 18px;
    color: #fff;
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
}


/*<<<<<<<<<banner-End>>>>>>>>>>>*/


/*<<<<<<<<<section1-start>>>>>>>>>>>*/

section.section1.new1 {
    padding-top: 0px;
    padding-bottom: 30px;
}

.section1-card-heding {
    font-family: 'Roboto';
    font-size: 17px;
    font-weight: 500;
    margin-top: 5px;
    display: block
}

.section1-card-sub-heding {
    font-size: 15px;
    font-family: 'Roboto';
    display: block;
}

.section1 {
    padding: 50px 0px;
}

.section1-card {
    background: #fff;
    transition: .5s ease all
}

.section1-card:hover {
    background: #d6051b;
}

.section1-card:hover .section1-card-sub-heding {
    color: #fff
}

.section1-card:hover .section1-card-heding {
    color: #fff
}

/*<<<<<<<<<section1-End>>>>>>>>>>>*/


/*<<<<<<<<<section2-start>>>>>>>>>>>*/
.section2 {
    padding: 80px;
    background: #faf7f6;
}

.pbmit-fld-wrap {
    text-align: right;
}

.pbmit-fid-title {
    color: #00112e;
    margin-top: 15px;
    display: block;
    font-weight: 500;
}

.pbmit-fid-inner {
    color: #ffffff;
}

.pbmit-fid-inner {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 0;
    font-weight: 700;
    color: transparent;
    -webkit-text-size-adjust: 0;
    overflow: visible !important;
    text-shadow: 1px 1px 0 #d6051b, -1px -1px 0 #020202, 1px -1px 0 #ffffff, -1px 1px 0 #d6051b, 1px 1px 0 #000000;
    -webkit-text-stroke-color: #00358d;
    -webkit-text-fill-color: inherit;
    -webkit-text-stroke-width: 0;
}

.section2-card2 {
    padding: 30px;
    background: #fff;
    border-radius: 35px;
    border: 1px solid #f0f0f7;
}

.section2-card2 .heading {
    margin-bottom: 50px;
    font-weight: 500;
    font-family: 'Roboto';
    font-size: 35px;
    display: block;
}

.section2-card1 {
    border-radius: 35px;
    overflow: hidden;
}

.section2-text .p {
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: 400;
    color: #00112e;
    margin-bottom: 15px;
    display: block;
}

.section2-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section2-text ul li {
    font-size: 14px;
    line-height: 26px;
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #43484a;
    align-self: center;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section2-text ul li i {
    margin-right: 15px;
    color: red;
}

/*<<<<<<<<<section2-End>>>>>>>>>>>*/

/*<<<<<<<<<section3-start>>>>>>>>>>>*/
.section3 {
    padding: 100px 0px;
}


.color-heading img {
    margin-left: 5px;
}

.color-heading {
    color: #000000;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.section3-text .h1 {
    font-size: 60px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.section3-sub-heading {
    font-size: 20px;
    margin: 15px 0px;
    display: block;
    margin-bottom: 15px;
}


.section3-ul li {
    margin: 15px 0px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.section3-ul {
    font-size: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.box.d-flex.align-items-center.mt-15 {
    border: 1px solid #0000001f;
    padding: 15px;
    border-radius: 20px;
    background: #deb789;
}

.section3-img img {
    border-radius: 0px 0px 65px 65px;
}

.section3-text {
    padding-left: 60px;
}

.box.d-flex.align-items-center.mt-15 strong {
    font-size: 14px;
}

/*<<<<<<<<<section3-End>>>>>>>>>>>*/


/*<<<<<<<<<section5-start>>>>>>>>>>>*/
.section5 {
    margin: 50px 0px;
}

.section5-card {
    background: #D6051B;
    padding: 30px;
    border-radius: 15px;
}

.section5-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: red;
    display: block
}

.section5-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 50px;
    display: block
}

.section5-card .p {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0px;
    display: block
}

.section5-card .h1 {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 50px;
    color: #ffffff;
    display: block
}

.fomr-control {
    display: block;
    font-weight: normal;
    line-height: normal;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    height: 60px;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 40px;
    width: 100%;
    outline: none;
    color: #000;
}

.fomr-control::placeholder {
    color: #000 !important;
}

.section5-img img {
    height: 545px;
    border-radius: 30px;
}

.fomr-control::placeholder {
    color: #fff
}

.btn-form-section5 {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding: 15px;
    background: #ffffff;
    color: #d6051b;
    font-size: 18px;
    font-weight: 500;
    transition: .5s ease all;
}

.btn-form-section5:hover {
    background: #000000;
    color: #ffffff;
}

/*<<<<<<<<<section5-End>>>>>>>>>>>*/
/*<<<<<<<<<section6-start>>>>>>>>>>>*/
.section6 {
    margin: 50px;
    margin-top: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
}

/*<<<<<<<<<section6-End>>>>>>>>>>>**/
/*<<<<<<<<<faq-start>>>>>>>>>>>**/

/* FAQ Container */
.faq-container {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0px !important
}

.faq-content {
    padding: 40px;
}

/* Header Section */
.faq-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff, #fbd4d4);
    color: var(--white);
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Search Bar */
.search-container {
    margin: 30px auto;
    max-width: 600px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--shadow);
}

.search-box i {
    color: var(--light-text);
    margin-right: 10px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
}

.search-box input::placeholder {
    color: var(--light-text);
}

.clear-search {
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 5px;
    display: none;
}

.clear-search.visible {
    display: block;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.category-btn {
    padding: 8px 20px;
    border: 1px solid #ff0000;
    border-radius: 25px;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.category-btn.active {
    background: red;
    color: #fff;
}

/* FAQ Content */
.faq-content {
    padding: 40px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(74, 144, 226, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--light-text);
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-top: 1px solid #e1e1e1;
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-content {
        padding: 20px;
    }

    .category-filter {
        gap: 5px;
    }

    .category-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .faq-header {
        padding: 30px 15px;
    }

    .faq-header h1 {
        font-size: 1.8rem;
    }

    .search-box {
        padding: 8px 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/*<<<<<<<<<faq-End>>>>>>>>>>>**/
/*<<<<<<<<<section7-start>>>>>>>>>>>**/

.text-content {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(40%, 60%);
    color: #fff;
    text-align: center;
}

.sub-title.p {
    display: block;
    margin-bottom: 15px;
    font-size: 17px;
}

.section7 {
    padding: 30px 0px;
}

.section7-single-list ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.theme-btn1-section7 .text {
    padding: 15px;
    width: 100%;
    margin: 10px 0px;
    color: #d6051b;
    border-bottom: 2px solid #d6051b;
    border-top: 2px solid #d6051b;
    display: block;
    text-align: center;
    transition: .5s ease all
}

.section7-single-list ul li span i {
    width: 20px;
    border: 1px solid #d6051b;
    padding: 5px;
    border-radius: 5px;
    background: #d6051b;
    color: #fff;
    height: 20px;
    font-size: 11px;
    text-align: center;
}

.theme-btn1-section7 .text:hover {
    border: 2px solid #d6051b;
    border-radius: 5px;
    background: #d6051b;
    color: #fff;
}

.section7-single-list ul li span {
    margin-right: 10px;
}

.section7-single-list ul li {
    margin-bottom: 16px;
    font-size: 15px;
}

.heading1.section7 .h2 {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.heading1.section7 .p {
    font-size: 17px;
    margin-bottom: 20px;
    display: block;
}

/*<<<<<<<<<section7-End>>>>>>>>>>>**/
/*<<<<<<<<<Footer-start>>>>>>>>>>>**/
.footer {
    background: linear-gradient(105deg, #070707, #061324);
    padding-top: 80px;
    padding-bottom: 30px;
}

/*/*END FOOTER SOCIAL DESIGN*/


@media only screen and (max-width:768px) {
    .single_footer {
        margin-bottom: 30px;
    }
}

.single_footer .h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.single_footer .h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: #fff;
    margin-top: 20px;
}

.single_footer .p {
    color: #fff;
}

.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.single_footer ul li .a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 600;
}

.single_footer ul li .a:hover {
    color: #fff;
}

.single_footer_address ul li {
    color: #fff;
}

.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.subscribe__input {
    background-color: #fff;
    border: medium none;
    border-radius: 5px;
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0 150px 0 20px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}

@media only screen and (max-width:768px) {
    .subscribe__input {
        padding: 0 50px 0 20px;
    }
}

.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: #01c7e9;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

.subscribe__btn i {
    transition: all 0.3s ease 0s;
}

@media only screen and (max-width:768px) {
    .subscribe__btn {
        right: 0px;
    }
}

.subscribe__btn:hover i {
    color: #ff3666;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {
    margin-top: 40px;
}

.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.social_profile ul li {
    float: left;
}

.social_profile ul li .a {
    text-align: center;
    border: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
    .social_profile ul li span svg {
        color: #fff;
    }

    .social_profile ul {
        gap: 10px;
        display: flex;
        color:#fff
    }

@media only screen and (max-width:768px) {
    .social_profile ul li .a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:480px) {
    .social_profile ul li .a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.social_profile ul li .a:hover {
    background: #ff3666;
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}

/* -------------------Faq Start------------------------- */
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #d6051b;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 0 !important;
}

.accordion-body {
    box-shadow: -10px 10px 30px rgba(0, 0, 0, .06);
    background: #d6051b3b;
}

.accordion-button {
    font-weight: bold;
    background: #070b10;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .06);
}

.accordion-item {
    border: none;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb(255,255,255)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

/* -------------------Faq Start End------------------------- */
/*END SOCIAL PROFILE CSS*/
.copyright {
    margin-top: 30px;
    padding-top: 30px;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    width: 100%;
    display: block;
}

.copyright .a {
    color: #01c7e9;
    transition: all 0.2s ease 0s;
}

.copyright .a:hover {
    color: #ff3666;
}

.single_footer ul li {
    margin-bottom: 5px;
    color: #fff;
}

.social_profile ul li spna i {
    padding: 15px;
    color: #fff;
    margin-top: 0px !important;
    padding-top: 0;
}

.footer-contact {
    display: flex;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    align-items: start;
    margin-top: 15px;
}

.footer-contact svg {
    width: 20px;
}

.footer-contact span {
    width: calc(100% - 30px);
}

/*<<<<<<<<<Footer-End>>>>>>>>>>>**/
.banner-img {
    width: 100%;
    height: 100%;
}

/*<<<<<<<<<Responsiv-start>>>>>>>>>>>**/
@media(max-width:991px) {
    .banner-sm-heading {
        position: absolute;
        transform: translate(0%, 35%);
        top: 0;
        left: 0;
        padding: 25px;
    }

    .banner-sm-heading .h1 {
        font-size: 45px;
        font-weight: bold;
    }
    .btn-new-call-design-call, .btn-new-call-design {
        font-size: 14px !important;
    }
    .copyright {
        padding-bottom: 15px;
    }

    .banner-section::before {
        display: none
    }
    .social_profile ul li span svg{
        color:#fff;
    }
    .social_profile ul {
        gap: 10px;
        display: flex;
    }

    .banner-sm-heading .p {
        font-size: 14px;
    }

    img.img-fluid.banner-img {
        height: 490px;
    }


    .section2 {
        padding: 10px;
        background: #e5e9f2;
    }

    .section2-card1 {
        margin-bottom: 15px
    }

    .section2-card2 {
        margin-bottom: 15px
    }

    .section2-card2 .heading {
        font-size: 25px;
    }

    .section3-text {
        padding: 20px;
        margin-top: 15px
    }

    .section3-text .h1 {
        font-size: 25px;
    }

    .box.d-flex.align-items-center.mt-15 {
        margin-bottom: 15px
    }


    .big-heading {
        font-size: 25px;
    }

    .section5-heading {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .section5-img img {
        height: auto;
        border-radius: 30px;
        margin-bottom: 20px
    }

    .section5-card .h1 {
        font-size: 32px;
    }

    .heading1.section7 .h2 {
        font-size: 30px;
    }
}

/*<<<<<<<<<Responsiv-End>>>>>>>>>>>**/

.banner-btn1 {
    width: 250px;
    background: red;
    padding: 15px;
    margin-top: 15px;
    border-radius: 15px;
    border: 1px solid #ffffff;
    color: #ffff;
    font-family: 'Roboto';
    transition: .5s all ease
}

.banner-btn1:hover {
    background: #ffffff;
    border: 1px solid #d6051b;
    color: #d6051b;
}

.heading-new1 {
    text-align: center;
    margin-bottom: 40px;
}

.heading-new1 p {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #726d6d;
}

.Insurance-Dekho-heading {
    font-size: 18px;
    margin-bottom: 15px;
}

.Insurance-Dekho-sub-heading {
    font-size: 14px;
    color: #646262;
    font-family: system-ui;
}

.list-icici ul li span {
    font-size: 11px;
    color: #3e3e3e;
    margin: 10px 0px !important;
    display: block;
    font-weight: 500;
}

.list-icici ul li .span {
    font-weight: 600;
    color: #000000;
    margin: 0px !important;
}

.list-icici ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.icici-footer-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    margin: 0;
}

.icici-footer-list ul li {
    color: #444040;
    font-weight: 500;
    font-family: 'Roboto';
    font-size: 12px;
}

.Key-Features {
    color: #3a9f59 !important;
    font-weight: 500;
    font-family: 'Roboto';
    font-size: 15px;
}

.section-Third-Party {
    padding-bottom: 30px;
}

.toptile {
    font-size: 17px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.toptile span {
    font-weight: 500;
    font-size: 14px;
    color: #5a5858;
}

.light {
    margin-left: 4px;
    vertical-align: middle;
}

.quickwrapper {
    border-bottom: 1px solid rgba(184, 203, 226, .3);
    padding-bottom: 12px;
    margin: 4px 0 12px;
    width: 100%;
}

.quicksteps li {
    display: flex;
    text-align: center;
    font-size: 12px;
    position: relative;
    width: auto;
    margin-right: 0;
    height: unset;
    vertical-align: top;
    align-items: center;
    gap: 10px;
}

li .seprat {
    position: static;
    margin: unset;
    display: unset;
}

.quicksteps {
    display: flex;
    gap: 10px;
    position: unset;
    margin: 0;
    padding: 0;
}

.sidetitle {
    font-size: 13px !important;
    line-height: unset !important;
}

.car-number-input {
    font-size: 13px !important;
    margin: 15px 0px !important;
    padding: 15px !important;
    border: 1px solid gray !important;
}

.Car-Insurance-btn img {
    width: 22px;
    margin-left: 5px;
}

.Car-Insurance-btn {
    padding: 15px !important;
    width: 100%;
    background: red !important;
    border: 1px solid #fff !important;
    transition: .5s all ease;
    font-weight: 500 !important;
}

.Car-Insurance-btn:hover {
    background: #0d6efd !important;
    transition: .5s all ease
}


.link {
    font-size: 14px;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
    font-weight: 500;
    color: #007fff;
    text-decoration: underline;
}

.review-card img {
    width: 30px;
    display: block;
    margin-bottom: 15px;
}

.review-card b {
    margin-bottom: 8px;
    display: block;
}

.review-card p {
    font-size: 15px;
    color: #4e4a4a;
}

.review.section {
    padding: 50px 0px;
}

.review.section {
    padding: 50px 0px;
}

.review-card img {
    width: 30px;
    display: block;
    margin-bottom: 15px;
}

.review-card b {
    margin-bottom: 8px;
    display: block;
}

.review-card p {
    font-size: 15px;
    color: #4e4a4a;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    z-index: 99;
    background: #000000;
    opacity: 1;
    display: block;
    left: -110px;
    position: relative;
    border-radius: 15px;
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    z-index: 99;
    background: #000000;
    opacity: 1;
    display: block;
    right: -110px;
    position: relative;
    border-radius: 15px;
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.review-card {
    text-align: center;
    padding: 20px;
}

.carousel .card {
    margin: auto;
}

.faq-color-heading {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
}

.faq-heading {
    font-size: 14px;
}


@media(max-width:991px) {
    .carousel-control-next-icon {
        right: 0;
    }

    .carousel-control-prev-icon {
        left: 0px
    }

    .list-icici ul li span {
        font-size: 11px;
        color: #000000;
        margin: 8px 0px !important;
        display: block;
    }

    .list-icici ul li .span {
        margin: 0px !important;
        font-weight: bold;
        color: #000;
    }

    .icici-footer-list ul {
        flex-wrap: wrap;
    }

    .icici-footer-list ul li {
        margin: 5px 0px;
    }

    .section2-text ul li {
        color: #000000
    }

    .banner-section::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #d6051b 50%, rgb(41 31 30) 50%);
    }

    .banner-section {
        position: relative;
    }
}


.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.single_footer ul li .a a {
    text-decoration: none;
    color: #fff;
}

.setion1-card-icon img {
    width: 45px;
}

.card.text-center.section1-card .card-body {
    padding: 10px 5px;
}

.lname {
    font-weight: bold;
}

.accordion-item {
    font-weight: 500;
    color: #000;
}
.overfolow-content{
    max-height: 390px;
    overflow-y: auto;
}
.overfolow-content::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.overfolow-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.overfolow-content::-webkit-scrollbar-thumb {
  background: #D6051B;
}

/* Handle on hover */
.overfolow-content::-webkit-scrollbar-thumb:hover {
  background: #d6051b;
}
.fixed-footer{
    position: fixed;
    left: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mob-call{
    width: 50%;
    padding: 10px 10px;
    display: flex;
    align-items:center ;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #3997f5;
}
.mob-call.whatsapp-btn{
    background-color: #25D366;
    color: #fff;
}
.mob-call.whatsapp-btn i{
    font-size: 20px;
}
.btn-new-call-design-call,
.btn-new-call-design{
    padding: 10px 26px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
}
.btn-new-call-design{
    background-color: #3a9f59;
}
.btn-new-call-design-call{
    border: 1px solid #000;
    color: #000;
}