/* gradiant color - linear-gradient(-90deg, rgba(6, 182, 203, 1) 0%, rgba(37, 59, 149, 1) 100%) !important; */

/* container */
/* @media (min-width: 1200px) {
    .container {
        max-width: 1250px;
    }
} */

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

/* policy header img */
/* img.policy-img {
    width: 100%;
    border-radius: 10px;
} */

/* .quote-input {
    text-transform: uppercase;
    font-weight: 700;
}
.quote-input::placeholder {
    text-transform: none;
}
.quote-input::-moz-placeholder {
    text-transform: none;
}
.quote-input:-ms-input-placeholder {
    text-transform: none;
} */

/* .progress-step {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
} */
/* .progress-bar {
    animation: progress-animation 2s ease-in-out;
} */
/* @keyframes progress-animation {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
} */
/* .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
} */
/* .icon-cntr img {
    max-width: 150px;
}
.btn-cntr {
    margin-top: 10px;
}
.step-btn {
    letter-spacing: 0px;
    background-color: #fff;
    color: #000;
}
.step-btn:hover {
    background-color: linear-gradient(180deg, #207cbf 0%, #4bbed9 100%);
    color: #fff;
} */

/* .policy-container {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
} */
/*
.option {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    background-color: #7e57c2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    gap: 4px;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
} */

/* .option i {
    font-size: 40px;
    transition: font-size 0.2s;
}

.option:hover {
    transform: scale(1.1);
}

.option.selected {
    background-color: white;
    color: #000;
}

.option.selected i {
    font-size: 60px;
}
.option.selected span {
    position: relative;
    top: -11px;
} */

/* #content-container {
    background-color: #f7f9ff;
    padding: 20px;
    border-radius: 20px;
    transition: background-color 0.2s;
    margin-top: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

.content {
    display: none;
}

.content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.quote-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    width: 100%;
}

.quote-input {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box; /
} */

/* .quote-btn {
    padding: 10px;
    font-size: 16px;
    width: 40%;
    box-sizing: border-box; /
} */

/* input[type="text"] { */
/* padding: 10px; */
/* border: 2px solid #a6cbe5; */

/* outline: none; */
/* width: 60%; */
/* font-size: 20px; */
/* background-color: #f7f9ff; */
/* color: #207cbf; */
/* transition: border-color 0.2s, box-shadow 0.2s; */
/* border-radius: 0.25rem; */
/* margin-right: 20px; */
/* } */

input[type="text"]:focus {
    border-color: #207cbf;
    box-shadow: 0 0 5px #207cbf;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    /*width: 100% !important;*/
    position: relative;
    vertical-align: middle;
}

.select2-container--default .select2-selection--single {
    height: 37px;
    /* Adjust the height as needed */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px;
    /* Adjust to match the height */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 37px;
    /* Adjust to match the height */
}

.price-btn {
    /* color: #000; */
    letter-spacing: 1px;
}

.quote-btn {
    background: linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%) !important;
    letter-spacing: 1px;
}

.info {
    margin-bottom: 20px;
}

/* .new-car,
.new-bike {
    background-color: #f7f9ff;
    padding: 10px;
    border-radius: 20px;
}

.new-car > p {
    margin-bottom: 1rem;
} */

/* .car-quote {
    margin: 10px;
    width: 260px;
    height: 140px;
    text-decoration: none;
    background: url("../../images/car-bg.png") no-repeat;
    background-size: 260px 140px;
}

.car-quote:hover {
    background: url("../../images/car-gif.gif") no-repeat;
    width: 260px;
    height: 140px;
    background-size: 260px 140px;
} */
.login-modal {
    max-width: 400px;
}

.modal-body h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

.modal-body .option-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.modal-body .option {
    flex: 1 0 45%;
    /* Adjust the percentage to control the width */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.modal-body .option:hover {
    background-color: #f1f1f1;
}

.modal-body .option i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #207cbf;
}

.modal-body .option span {
    font-size: 1rem;
    color: #333;
}

.heading-text {
    margin: 12px 0px 6px;
    /* color: rgb(255, 255, 255); */
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    padding: 0px;
}

.small-heading {
    margin: 0px 0px 24px;
    font-size: 0.875rem;
    /* color: rgb(255, 255, 255); */
    text-align: center;
    font-weight: 400;
}

.btn-grd-primary {
    /* background-image: linear-gradient(
        -90deg,
        rgba(6, 182, 203, 1) 0%,
        rgba(37, 59, 149, 1) 100%
    ) !important; */
    background: #204e9d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
    color: #1d1d1d;
}

.active .bs-stepper-circle {
    background-color: #204e9d;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

/* partners */

/* .square-holder {
    padding: 30px;
    border: 1px solid #cecece;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    min-height: 186px;
}

.square-holder img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.square-holder:hover img {
    filter: none;
} */

/* quote listing */
/* .card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} */
.card {
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    box-shadow: 10px 10px 15px 10px #0d6efd12;
}

.idv-value {
    margin-right: 15px;
}

.btn-quote-grp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.card-title img {
    max-height: 60px;
    /* Increased image size */
    margin-right: 15px;
}

.idv-text {
    font-size: 12px;
}

.btn-quote-grp .btn {
    letter-spacing: 2px;
    font-size: 18px;
    /* Reduced font size */
}

/* body .btn-talk {
    padding: 12px !important;
    margin-top: 12px;
    letter-spacing: 2px;
} */
.btn-quote-grp p {
    margin: 0;
}

/* body .card-text.talkUs {
    line-height: normal;
} */
/* quote container */
.quote-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* accordian */
/* a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}
#accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 30px 10px 30px;
    overflow: hidden;
    position: relative;
} */
/* #accordion .panel-heading {
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
} */
/* #accordion .panel-title a {
    display: block;
    padding: 15px 20px;
    margin: 0;
    background: #fe7725;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 0;
    position: relative;
}
#accordion .panel-title a.collapsed {
    background: #1c2336;
} */
/* #accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 30px;
    height: 30px;
    line-height: 25px;
    border-radius: 50%;
    background: #fe7725;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-align: center;
    border: 3px solid #fff;
    position: absolute;
    top: 10px;
    right: 14px;
} */
/* #accordion .panel-title a.collapsed:before {
    content: "\f067";
    background: #ababab;
    border: 4px solid #626262;
} */
/* #accordion .panel-title a:after,
#accordion .panel-title a.collapsed:after {
    content: "";
    width: 17px;
    height: 7px;
    background: #fff;
    position: absolute;
    top: 22px;
    right: 0;
} */
/* #accordion .panel-title a.collapsed:after {
    width: 19px;
    background: #ababab;
} */
/* #accordion .panel-body {
    border-left: 3px solid #fe7725;
    padding: 10px;
    border-top: none;
    background: #fff;
    font-size: 15px;
    color: #1c2336;
    line-height: 27px;
    position: relative;
}
#accordion .panel-body:before {
    content: "";
    height: 3px;
    width: 50%;
    background: #fe7725;
    position: absolute;
    bottom: 0;
    left: 0;
} */

/* Increase the size of the checkbox and customize its appearance */
.checkbox input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 10px;
}

/* Optional: Style the label for better visibility */
.checkbox label {
    display: block;
    padding-top: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Customize appearance of radio buttons */
.radio input[type="radio"] {
    transform: scale(1.5);
    margin-right: 10px;
}

/* Optional: Style the label for better visibility */
.radio label {
    display: block;
    padding-top: 5px;
    font-size: 16px;
    cursor: pointer;
}

.c-image {
    padding: 16px;
    flex: 0 0 30%;
}

a.play-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #7249ac;
    border-radius: 50%;
    line-height: 70px;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
}

.ripple {
    position: relative;
    text-decoration: none;
    color: #fff;
    width: 70px;
    height: 70px;
    background-color: #7249ac;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.3),
            0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.3),
            0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3), 0 0 0 20px rgba(13, 110, 253, 0);
        box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3), 0 0 0 20px rgba(13, 110, 253, 0);
    }
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.3),
            0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.3),
            0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3), 0 0 0 20px rgba(13, 110, 253, 0);
        box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.3),
            0 0 0 10px rgba(13, 110, 253, 0.3),
            0 0 0 15px rgba(13, 110, 253, 0.3), 0 0 0 20px rgba(13, 110, 253, 0);
    }
}

.btn-talk i {
    transform: rotate(90deg);
}

.rightCard {
    margin-top: 54px;
}

.buyOnlineSteps ul li {
    margin-bottom: 30px;
}

.buyOnlineSteps ul li,
.askpolicy ul li {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

.buyOnlineSteps ul li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    height: 130px;
    width: 2px;
    background: #abc7ef;
    z-index: 1;
}

.buyOnlineSteps ul li:last-child:after {
    content: unset;
}

.buyOnlineSteps ul li img {
    width: 50px;
    height: 50px;
    z-index: 999;
    background: #0d6efd;
    border-radius: 100%;
}

.buyOnlineSteps ul li strong {
    display: block;
    color: #0d6efd;
}

.askpolicy ul li {
    margin-bottom: 10px;
}

/* OTP DESIGN */
.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}

.otp-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
    display: none;
}

.resend {
    font-size: 12px;
}

/* Premium modal */
.logoIcon {
    height: 70px;
    border: 1px solid #ddd;
}

.price p,
.text-grey {
    color: #a6a2a2;
    font-weight: 400;
}

.price p,
.price h3,
.bottomDiv>div h4 {
    font-size: 12px;
    margin-bottom: 0;
}

.price h3 {
    color: #000;
}

.bottomDiv {
    margin-top: 20px;
}

.logoDiv,
.bottomDiv>div h4 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.bottomDiv>div h4 {
    /* margin-bottom: 10px !important; */
    padding-bottom: 10px;
}

.btnGroup img {
    width: 20px;
    margin-right: 5px;
}

.btnGroup a {
    border: 1px solid;
    padding: 8px 10px;
    margin: 10px 0;
    display: inline-block;
    text-decoration: none;
    background-color: #e9ecf0;
    border-radius: 4px;
    font-size: 14px;
}

.btnLink {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

/* slick sliders */
/* .carousel{
    width:100%;
    margin:0px auto;
  } */
/* .slick-slide{
    margin:10px;
  }
  .slick-slide img{
    width:100%;
    border: 2px solid #fff;
  }
  .carousel .slick-dots li button:before {
    font-size:20px;
    color:white;
  }
.ban-card{
    border-radius: 20px;
    width: 25rem !important;
} */
.item-div {
    width: 380px;
    height: 240px;
}

/* .home-demo .item {
    background: #ff3f4d;
} */
/* .home-demo h2 {
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
} */

.owl-item {
    width: 128.906px;
    margin-right: 10px;
}

/* mobile app showcase */

.option {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    opacity: 1;
}

.option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f9ff;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    /* Adjust to match your card's border radius */
}

.option.selected {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.option.selected::before {
    opacity: 1;
}

.policy-img {
    width: 50px;
    /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease;
}

.option.selected .policy-img {
    transform: rotate(10deg);
}

.card {
    background: #fff;
    transition: background 0.3s ease;
}

.option.selected .card {
    background: linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
}

.option.faded {
    opacity: 0.5;
}

/* steps -> 4 steps */
/* .step-sub-text {
    font-size: 1.2rem;
} */
/* .about-section {
    position: relative;
    overflow: hidden;
} */

/* .background-shape-1,
.background-shape-2,
.background-shape-3 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}
.background-shape-4 {
    background-image: url("../../../front/images/bg-1.png");
    top: 0;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    right: 0;
    width: 500px;
    height: 300px;
    animation: treeMove 10s infinite alternate;
}

.background-shape-1 {
    background-image: url("../../images/backgrounds/insurance-banner-shape03-150x150.png");
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    animation: move-diagonal 10s infinite alternate;
}
.background-shape-2 {
    background-image: url("../../images/backgrounds/insurance-banner-shape03.png");
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    animation: move-horizontal 15s infinite alternate;
}
.background-shape-3 {
    background-image: url("../../images/backgrounds/about-shape03-150x150.png");
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    animation: move-vertical 12s infinite alternate;
} */
@keyframes move-diagonal {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(200px, 200px);
    }
}

@keyframes move-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200px);
    }
}

@keyframes move-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200px);
    }
}

.ads-banner {
    padding: 25px 0;
}

/* .process-steps {
    padding-bottom: 10px;
} */

/* .inner-icon img {
    height: 65px;
    width: 65px;
} */
/* .in-benefit-feature-item:hover {
    background: #f7f9ff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: bounce 1s;
} */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* laoder starts */
body {
    overflow-x: hidden;
    overflow-y: auto;
    /* Prevent scrolling when loader is visible */
}

.preloader-car {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* Ensure the background covers the entire screen */
    z-index: 9999;
    /* Ensure loader is on top of other elements */
}

.loader-hidden {
    opacity: 0;
    transition: opacity 0.3s;
}

.car__body {
    -webkit-animation: shake 0.2s ease-in-out infinite alternate;
    animation: shake 0.2s ease-in-out infinite alternate;
}

.car__line {
    transform-origin: center right;
    stroke-dasharray: 22;
    -webkit-animation: line 0.8s ease-in-out infinite;
    animation: line 0.8s ease-in-out infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.car__line--top {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.car__line--middle {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.car__line--bottom {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@keyframes shake {
    0% {
        transform: translateY(-1%);
    }

    100% {
        transform: translateY(3%);
    }
}

@keyframes line {
    0% {
        stroke-dashoffset: 22;
    }

    25% {
        stroke-dashoffset: 22;
    }

    50% {
        stroke-dashoffset: 0;
    }

    51% {
        stroke-dashoffset: 0;
    }

    80% {
        stroke-dashoffset: -22;
    }

    100% {
        stroke-dashoffset: -22;
    }
}

/* loader ends */

.btn-link:active {
    background-color: #fff !important;
}

.mob-number {
    width: 100%;
    letter-spacing: 2px;
    padding: 12px 20px !important;
    background-color: #204e9d;
}

.mob-number:hover {
    color: #fff;
    background: #204e9d;
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.mob-number .loader,
.otp-verify .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ecaa22;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 28%;
    left: 46%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* google button */
.g-sign-in-button {
    margin: 10px;
    display: inline-block;
    width: 240px;
    height: 50px;
    background-color: #4285f4;
    color: #fff;
    border-radius: 1px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
}

.g-sign-in-button:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
    box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
}

.g-sign-in-button:active {
    background-color: #3367d6;
    transition: background-color 0.2s;
}

.g-sign-in-button .content-wrapper {
    height: 100%;
    width: 100%;
    border: 1px solid transparent;
}

.g-sign-in-button img {
    width: 18px;
    height: 18px;
}

.g-sign-in-button .logo-wrapper {
    padding: 15px;
    background: #fff;
    width: 48px;
    height: 100%;
    border-radius: 1px;
    display: inline-block;
}

.g-sign-in-button .text-container {
    /* font-family: Roboto, arial, sans-serif; */
    font-weight: 500;
    letter-spacing: 0.21px;
    font-size: 16px;
    line-height: 48px;
    vertical-align: top;
    border: none;
    display: inline-block;
    text-align: center;
    width: 180px;
}

/* end google button */

.or-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
}

.or-text::before,
.or-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #000;
}

.or-text:not(:empty)::before {
    margin-right: 0.25em;
}

.or-text:not(:empty)::after {
    margin-left: 0.25em;
}

/* linear-gradient(-90deg, rgb(6 182 203 / 11%) 0%, rgb(37 59 149 / 28%) 100%) */

#loginModal .modal-header {
    background: linear-gradient(-90deg,
            rgb(6 182 203 / 25%) 0%,
            rgb(37 59 149 / 38%) 100%);
    color: #000;
    border: none;
    border-radius: 10px 10px 0 0;
}

.cat-section {
    padding: 20px 0;
}

/* hero slider */
/* .sliders .item {
    height: 15rem;
    background: #4DC7A0;
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
} */

/* .sliders .item img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
/*
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #4dc7a0;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    transition: background-color 0.3s;
} */

body .nav-container {
    max-width: 100% !important;
}

.navbar {
    padding: 0;
}

.navbar-nav {
    margin: 0 auto;
}

/* product css */

@media (max-width: 991px) {
    .home_banner_part_block {
        background-color: #fff;
    }

    .color-shadow-blocks {
        display: none;
    }
}

.home_banner_part_block {
    height: auto;
    /* padding-top: 30px; */
    position: relative;
}

.product-block .top_title {
    color: #000;
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.product-block .top_title span {
    color: #10498a;
}

.home_banner_part_block .home_banner_content img {
    display: block;
    margin: auto;
    width: 350px;
}

.home_banner_part_block .home_products_block {
    align-items: normal;
    border-radius: 0;
    display: inherit;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

.home_banner_part_block .home_products_block .home_products_btns {
    background: #2cb2b30d;
    border-radius: 0;
    margin: 0;
    padding: 0 5px;
    position: relative;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.home_banner_part_block .home_products_block .product-box {
    background-color: #fff;
    border: 1px solid #e4eef9;
    border-radius: 20px;
    margin: 12px 0;
    overflow: hidden;
    padding: 10px 0;
}

.home_banner_part_block .home_products_block .product-box h4.product-heading {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
    text-align: center;
}

.home_banner_part_block .home_products_block .product-box ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home_banner_part_block .home_products_block .product-box ul li {
    border-right: 1px solid #e4eef9;
    cursor: pointer;
    transition: all 0.3s;
}

.home_banner_part_block .home_products_block .product-box.four ul li {
    width: 20%;
}

.home_banner_part_block .home_products_block .product-box.three ul li {
    width: 33.33333%;
}

.home_banner_part_block .home_products_block .product-box.two ul li {
    width: 50%;
}

.home_banner_part_block .home_products_block .product-box.one ul li {
    width: 100%;
}

.home_banner_part_block .home_products_block .product-box ul li:hover {
    transform: translateY(-7px);
}

.home_banner_part_block .home_products_block .product-box ul li:hover a small b {
    color: #10498a;
}

.home_banner_part_block .home_products_block .product-box ul li:last-child {
    border-right: none;
}

.home_banner_part_block .home_products_block .product-box ul li a {
    margin: 0;
    padding: 0;
}

.home_banner_part_block .home_products_block .product-box ul li button.view_all_products {
    background: #0000;
    border: none;
    padding: 15px 5px;
    width: 100%;
}

.home_banner_part_block .home_products_block .home_products_btns abbr {
    background: #2cb2b3;
    border-radius: 0 8px 7px 0;
    color: #fff;
    display: inline-table;
    font-size: 10px;
    height: 14px;
    left: 0;
    letter-spacing: 0.5px;
    line-height: 14px;
    padding: 0 8px;
    position: absolute;
    right: 0;
    top: 0;
}

.bg-animastion {
    overflow: hidden;
}

.bg-animastion .bg-set {
    border-radius: 50%;
    filter: blur(100px);
    height: 500px;
    opacity: 20%;
    position: absolute;
    width: 500px;
    z-index: 0;
}

.bg-animastion .bg-set.bg-set3 {
    background: #00ffb8;
    right: 0;
    top: 0;
    width: 20%;
}

.home_banner_part_block .home_products_block .home_products_btns:hover {
    background-color: #2cb2b30d;
}

.home_banner_part_block .home_products_block .home_products_btns span {
    display: flex;
    height: 40px;
    margin-bottom: 0;
}

.home_banner_part_block .home_products_block .home_products_btns span img {
    width: 40px;
}

.home_banner_part_block .home_products_block .home_products_btns small {
    color: #111;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    margin-top: 5px;
    transition: 0.5s ease-in-out;
}

.home_banner_part_block .home_products_block .home_products_btns small b {
    color: #0d0d0d;
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
}

.top_slider_in .owl-carousel {
    margin-top: 18px;
}

.top_slider_in .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.top_slider_in .owl-carousel .owl-dots .owl-dot span {
    background: #00a0e3;
    border-radius: 5px;
    display: block;
    filter: Alpha(Opacity=50);
    height: 6px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 20px;
}

.top_slider_in .owl-carousel .owl-dots .owl-dot.active span {
    opacity: 1;
}

.top_slider_in .owl-carousel .owl-nav.disabled {
    display: none;
}

.home_banner_part_block .top_slider .home_ask_owl {
    margin: 0 auto;
    width: 70%;
}

.home_banner_part_block .top_slider .home_ask_owl img {
    border-radius: 10px;
    height: 220px;
    overflow: hidden;
}

.color-shadow-blocks {
    overflow-x: hidden;
    overflow-y: hidden;
    /* position: relative; */
}

.color-shadow-blocks .bg-animastion {
    overflow: hidden;
    /* position: relative; */
}

.color-shadow-blocks .bg-animastion .bg-set {
    border-radius: 50%;
    filter: blur(100px);
    height: 500px;
    opacity: 20%;
    position: absolute;
    width: 500px;
    z-index: 0;
}

.color-shadow-blocks .bg-animastion .bg-set.bg-set1 {
    background: #00a0e3;
    left: -10%;
    top: 30%;
    width: 30%;
}

.color-shadow-blocks .bg-animastion .bg-set.bg-set3 {
    /* background: url('../../../front/images/bg-1.jpg'); */
    background: #00a0e3;
    right: -10%;
    top: 30%;
    width: 30%;
}

body .headerNav {
    max-width: 1400px;
    margin: auto;
}

@media (max-width: 1220px) {
    body .headerNav {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .home_banner_part_block .home_products_block .product-box {
        border: none;
        border-radius: 10px;
        margin: 7px 0;
        padding: 10px 0;
    }

    .home_banner_part_block .top_slider .home_ask_owl {
        margin: 0 auto;
        width: 80%;
    }

    .home_banner_content h1 {
        margin: 0 auto;
        text-align: center;
    }

    .home_banner_part_block .home_products_block .home_products_btns {
        width: calc(16.66667% - 6px);
    }

    .home_banner_part_block .home_products_block .home_products_btns:hover {
        background-color: initial;
    }

    .home_banner_part_block .home_products_block a span {
        margin: 0 auto;
    }

    .home_banner_part_block .home_products_block a small b {
        font-size: 10px;
        font-weight: 600;
    }

    .home_banner_part_block .home_products_block a small {
        font-size: 10px;
    }

    .home_banner_part_block .top_slider img {
        height: 220px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home_banner_part_block .home_products_block a {
        width: 32%;
    }

    .home_banner_part_block .home_banner_content h1 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .home_banner_part_block .top_slider img {
        width: 80%;
    }

    .home_banner_part_block .home_banner_content h1 {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .home_banner_part_block .top_slider .home_ask_owl {
        margin: 0 auto;
        width: 80%;
    }

    .home_banner_part_block .top_slider img {
        width: 100%;
    }

    .home_banner_part_block .home_banner_content h1 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px;
        text-align: center;
    }

    .home_banner_part_block .home_products_block a {
        text-align: center;
        width: 15.5%;
    }

    .home_banner_part_block {
        background-color: #f4fbfb;
        padding-top: 25px;
    }

    .home_banner_part_block .home_products_block .product-box h4.product-heading {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 0 20px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .home_banner_part_block .home_products_block .product-box h4.product-heading {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 0 20px;
        text-align: left;
    }

    .home_banner_part_block .top_slider .home_ask_owl {
        margin: 0 auto;
        width: 80%;
    }

    .home_banner_part_block .home_products_block .home_products_btns span img {
        width: 35px;
    }

    .top_slider_in {
        padding-bottom: 15px;
        padding-top: 20px;
    }

    .top_slider_in .owl-carousel .owl-dots .owl-dot span {
        height: 4px;
        margin: 0 5px;
        width: 15px;
    }

    .top_slider_in .owl-carousel {
        margin-top: 0;
    }

    .home_banner_part_block .home_products_block .home_products_btns {
        width: calc(20% - 6px);
    }

    .home_banner_part_block .home_products_block a {
        line-height: normal;
    }

    .home_banner_part_block .home_banner_content h1 {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }

    .home_banner_part_block .home_products_block .home_products_btns small {
        font-size: 10px;
        line-height: 12px;
        word-break: break-all;
    }

    body .ads-bottom-banner .owl-item .item .item-img img {
        height: auto;
    }

    body .section-head.style-4 .title_small {
        margin-bottom: 10px;
        display: inline-block;
    }

    body .faq-section .tab-btn-box li {
        margin-bottom: 20px;
    }

    body .section-larger {
        padding-top: 100px !important;
    }
}

@media (max-width: 576px) {
    body .btnGroup button {
        margin: 0 5px !important;
        padding: 7px 10px !important;
    }

    body .headerNav {
        padding: 0 20px;
    }

    .home_banner_part_block .top_slider .home_ask_owl {
        width: 100%;
    }

    .product-block .top_title {
        font-size: 16px;
    }

    .home_banner_part_block .home_products_block .product-box h4.product-heading {
        font-size: 15px;
        font-weight: 600;
        margin-left: 15px;
        text-align: left;
    }

    .home_banner_part_block .home_products_block .product-box {
        border: none;
        border-radius: 10px;
        margin: 4px 0;
    }

    .home_banner_part_block .top_slider img {
        height: 150px;
    }

    .home_banner_part_block .top_slider .home_ask_owl img {
        height: 160px;
    }

    .home_banner_part_block .home_products_block a {
        margin: 3px 3px 5px;
        padding: 0;
        width: calc(50% - 20px);
    }

    .home_banner_part_block {
        /* background-color: #e4eef9; */
        padding-top: 10px;
    }

    .top_slider {
        margin-top: 15px;
    }

    .home_banner_part_block .home_banner_content h1 {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        margin: 0 auto 10px;
    }

    .home_banner_part_block .home_products_block a span img {
        display: block;
        width: 40px;
    }

    .home_banner_part_block .home_products_block a {
        width: calc(33.33333% - 6px);
    }

    .home_banner_part_block .home_products_block {
        justify-content: center;
    }

    .owl-carousel .owl-nav .owl-next {
        right: -10px !important;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: -10px !important;
    }

    .home_banner_part_block .home_products_block .home_products_btns span img {
        width: 30px;
    }

    .home_banner_part_block .home_products_block .home_products_btns abbr {
        border-radius: 5px;
        overflow: hidden;
    }

    .home_banner_part_block .home_products_block .home_products_btns {
        margin: 10px 0;
    }

    .home_banner_part_block .home_products_block .product-box.four ul li {
        margin: 0;
        padding: 5px;
        width: 33.33333%;
    }

    .home_banner_part_block .home_products_block .product-box.three ul li {
        margin: 0;
        padding: 0 5px;
        width: 33.33333%;
    }

    .home_banner_part_block .home_products_block .product-box.two ul li {
        margin: 0;
        padding: 0 5px;
        width: 50%;
    }

    .home_banner_part_block .home_products_block .home_products_btns small b {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 3px;
    }

    .home_banner_part_block .home_products_block .product-box ul li button.view_all_products {
        padding: 0 5px;
    }
}

@media only screen and (min-width: 506px) and (max-width: 576px) {
    .home_banner_part_block .home_products_block a {
        width: calc(20% - 6px);
    }
}

@media only screen and (min-width: 421px) and (max-width: 505px) {
    .home_banner_part_block .home_products_block a {
        width: calc(25% - 6px);
    }
}

@media only screen and (min-width: 320px) and (max-width: 420px) {
    .home_banner_part_block .home_products_block a {
        line-height: normal;
        margin: 3px 3px 5px;
        padding: 0;
        width: 31%;
    }

    .home_banner_part_block .home_products_block .home_products_btns {
        line-height: normal;
        padding: 0;
        width: 31%;
    }
}

.owl-carousel {
    -webkit-tap-highlight-color: transparent;
    display: none;
    position: relative;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    -moz-backface-visibility: hidden;
    position: relative;
    touch-action: manipulation;
}

.owl-carousel .owl-stage:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0);
}

.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
}

.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-backface-visibility: hidden;
    float: left;
    min-height: 1px;
    position: relative;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0 !important;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

/* End Homepage card */

/* FAQ block */
/* .home_faq_blocks {
    position: relative;
}
.home_faq_blocks .faq_title {
    color: #10498a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 0;
    text-align: center !important;
}

.home_faq_blocks .accordion .accordion-item {
    border: 2px solid #e4eef9;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0;
    width: 100%;
}
.home_faq_blocks
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button {
    align-items: center;
    box-shadow: none;
    color: #10498a;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 0;
    outline: none;
    padding: 6px 15px;
} */
/* .accordion-button:after {
    background-color: #e4eef9;
    background-position: 50%;
    background-size: 16px;
    border-radius: 3px;
    filter: drop-shadow(0 0 10px rgba(29, 19, 82, 0.08));
    height: 35px !important;
    line-height: 35px;
    text-align: center;
    width: 35px !important;
} */
/* .home_faq_blocks .accordion .accordion-item .accordion-body {
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
}
.home_faq_blocks .accordion .accordion-item .accordion-body p {
    color: #111;
    font-size: 14px;
    margin: 0;
}
.home_faq_blocks .accordion .accordion-item .accordion-body ul {
    padding-left: 0;
}
.home_faq_blocks .accordion .accordion-item .accordion-body ul li {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 20px;
    position: relative;
}
.home_faq_blocks .accordion .accordion-item .accordion-body ul li:before {
    background-color: #03a9f4;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 8px;
}
@media (max-width: 991px) {
    .home_faq_blocks .faq_title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
    .accordion-button:after {
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
    .home_faq_blocks
        .accordion
        .accordion-item
        .accordion-header
        .accordion-button {
        font-size: 15px;
        padding: 4px 12px;
    }
    .home_faq_blocks .accordion .accordion-item {
        border: 1px solid #e4eef9;
    }
}
@media (max-width: 768px) {
    .home_faq_blocks {
        margin-bottom: 30px;
    }
    .home_faq_blocks .faq_title {
        font-size: 20px !important;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .home_faq_blocks .accordion .accordion-item {
        border: 1px solid #e4eef9;
    }
    .home_faq_blocks
        .accordion
        .accordion-item
        .accordion-header
        .accordion-button {
        font-size: 14px;
        font-weight: 0;
        line-height: 18px;
    }
    .home_faq_blocks .faq_title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
@media (max-width: 576px) {
    .home_faq_blocks
        .accordion
        .accordion-item
        .accordion-header
        .accordion-button {
        font-size: 14px;
    }
    .accordion-button:after {
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
}
End FAQ block */

/* contact us block */

/* end contact us block */

/* why choose us */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.custom-card {
    flex: 1 1 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgb(10 106 121 / 38%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* height: 200px; */
}

.custom-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.custom-card:hover img {
    /* transition: transform 0.3s ease, filter 0.3s ease; */
    animation: right-left 1s infinite;
}

@keyframes right-left {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.custom-card img {
    height: 80px;
    width: 80px;
    margin: 0 auto;
    margin-top: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.custom-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 1rem;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.custom-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 2px solid #007bff;
    border-radius: 10px;
    transition: width 0.3s ease, height 0.3s ease;
}

.custom-card:hover::before {
    width: 100%;
    height: 100%;
}

/* end why choose us */

/* mobile app */
/* .mobile-section,
.banner-section {
    padding: 0;
}
.mobile_space_part {
    margin-bottom: 20px;
    margin-top: 45px;
    position: relative;
}
.mobile_space_part .mobile_left_banneer {
    text-align: center;
}
.mobile_space_part .mobile_left_banneer img {
    width: 90%;
}
.mobile_space_part .mobile_content_part {
    margin-top: 50px;
}
.mobile_space_part .mobile_content_part h2 {
    color: #10498a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.mobile_space_part .mobile_content_part p {
    color: #111;
    font-size: 14px;
    font-weight: 400;
}
.mobile_space_part .mobile_content_part ul {
    padding-left: 0;
}
.mobile_space_part .mobile_content_part ul li {
    color: #111;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
    padding-left: 20px;
    position: relative;
}
.mobile_space_part .mobile_content_part ul li:before {
    background-color: #03a9f4;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 8px;
}
.mobile_space_part .mobile_content_part .mobile_app_btn {
    display: flex;
    margin-top: 30px;
}
.mobile_space_part .mobile_content_part .mobile_app_btn a {
    align-items: center;
    display: flex;
    margin-bottom: 15px;
    margin-right: 10px;
}
.mobile_space_part .mobile_content_part .mobile_app_btn a img {
    max-width: 145px;
    width: 100%;
}
.mobile_space_part .mobile_content_part .mobile_app_btn a:last-child {
    margin-right: 0;
}
.mobile_space_part .main_rating_block {
    align-items: center;
    border: 2px solid #e4eef9;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding: 0 25px;
}
.mobile_space_part .main_rating_block .rating_box {
    align-items: center;
    border-right: 2px solid #e4eef9;
    display: flex;
    justify-content: center;
    padding-right: 50px;
}
.mobile_space_part .main_rating_block .rating_box a {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    padding: 10px 0;
}
.mobile_space_part .main_rating_block .rating_box.bdr-none {
    border: none !important;
}
.mobile_space_part .main_rating_block .rating_box .icon {
    align-items: center;
    background: #10498a;
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.mobile_space_part .main_rating_block .rating_box .icon img {
    width: 25px;
}
.mobile_space_part .main_rating_block .rating_box .text_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    width: calc(100% - 40px);
}
.mobile_space_part .main_rating_block .rating_box .text_box span {
    color: #10498a;
    display: block;
    font-size: 16px;
    font-weight: 600;
}
.mobile_space_part .main_rating_block .rating_box .text_box small {
    color: #111;
    font-size: 12px;
    line-height: 14px;
}
@media (max-width: 1199px) {
    .mobile_space_part .main_rating_block .rating_box .text_box span {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .mobile_space_part .mobile_left_banneer img {
        width: 90%;
    }
    .mobile_space_part .mobile_left_banneer {
        margin-top: 20px;
    }
    .mobile_content_part {
        margin-top: 40px;
        padding: 0 10px;
    }
    .mobile_space_part .mobile_left_banneer img {
        margin-bottom: 20px;
    }
    .mobile_space_part .main_rating_block {
        align-items: baseline;
    }
    .mobile_space_part .main_rating_block .rating_box {
        flex-direction: column;
    }
    .mobile_space_part .main_rating_block .rating_box .text_box {
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
        width: 100%;
    }
    .mobile_space_part .mobile_content_part h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mobile_space_part .mobile_content_part .mobile_app_btn a img {
        max-width: 150px;
    }
    .mobile_space_part .main_rating_block .rating_box {
        border-right: none;
        padding-right: 0;
    }
    .mobile_space_part .mobile_left_banneer img {
        width: 70%;
    }
    .mobile_space_part .mobile_content_part {
        margin-top: 20px;
    }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
    .mobile_space_part .mobile_content_part .mobile_app_btn a img {
        max-width: 135px;
    }
    .mobile_space_part .mobile_content_part ul li {
        font-size: 13px;
        font-weight: 500;
        line-height: 26px;
    }
    .mobile_space_part .mobile_content_part ul li:before {
        top: 8px;
    }
    .mobile_space_part .main_rating_block .rating_box {
        border-right: none;
        padding: 10px;
    }
    .mobile_space_part .main_rating_block {
        margin-top: 20px;
        padding: 0;
    }
    .mobile_space_part .main_rating_block .rating_box .icon {
        font-size: 15px;
        height: 35px;
        line-height: 35px;
        margin: 0 auto;
        width: 35px;
    }
    .mobile_space_part .main_rating_block .rating_box .text_box {
        padding-left: 8px;
        padding-top: 0;
        text-align: center;
        width: 100%;
    }
    .mobile_space_part .main_rating_block .rating_box a {
        display: inline-block;
        padding: 0;
    }
    .mobile_space_part .main_rating_block .rating_box .icon img {
        width: 16px;
    }
}
@media (max-width: 768px) {
    .mobile_space_part .mobile_left_banneer img {
        width: 60%;
    }
    .mobile_space_part .main_rating_block {
        display: none !important;
    }
    .mobile_space_part .mobile_content_part h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .mobile_space_part .row.col-reverse {
        display: flex;
        flex-direction: row-reverse;
    }
}
@media (max-width: 576px) {
    .mobile_space_part .main_rating_block {
        flex-wrap: wrap;
    }
    .mobile_space_part .main_rating_block .rating_box {
        padding: 10px 15px;
    }
    .mobile_space_part .mobile_content_part ul li {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 7px;
        padding-left: 15px;
        position: relative;
    }
    .mobile_space_part .mobile_content_part ul li:last-child {
        border-bottom: 0;
    }
    .mobile_space_part .mobile_content_part ul li:before {
        top: 7px;
    }
    .mobile_space_part .main_rating_block {
        display: inline-block;
        margin-top: 40px;
        padding: 0;
        width: 100%;
    }
    .mobile_space_part .main_rating_block .rating_box {
        border-bottom: 1px solid #ddd;
        border-right: none;
        flex-direction: inherit;
        justify-content: flex-start;
    }
    .mobile_space_part .main_rating_block .rating_box .text_box {
        padding-left: 15px;
        padding-top: 0;
        text-align: left;
        width: 100%;
    }
    .mobile_space_part .mobile_content_part .mobile_app_btn a img {
        max-width: 120px;
    }
    .mobile_space_part .mobile_content_part .mobile_app_btn {
        margin-top: 15px;
    }
    .mobile_space_part .mobile_left_banneer img {
        width: 70%;
    }
    .mobile_space_part .main_rating_block .rating_box .icon {
        display: revert;
        font-size: 16px;
        height: 30px;
        line-height: 32px;
        text-align: center;
        width: 38px;
    }
    .mobile_space_part .main_rating_block .rating_box .text_box small {
        font-size: 12px;
    }
    .mobile_space_part .main_rating_block .rating_box .text_box {
        line-height: 14px;
    }
    .mobile_space_part {
        margin-bottom: 10px;
        margin-top: 0;
    }
    .mobile_content_part {
        margin-top: 0 !important;
    }
} */
/* end mobile app */

/* middle slider */
.ask_add_banner {
    height: 100%;
    padding: 40px 0 60px;
    position: relative;
}

.ask_add_banner .owl-stage-outer {
    border-radius: 5px;
    overflow: hidden;
}

.ask_add_banner .offers-ask.items {
    display: flex;
}

.ask_add_banner .offers-ask .ask_half1 {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px 0 30px;
    width: 40%;
}

.ask_add_banner .offers-ask .ask_half1 h3 {
    color: #1a5493;
    font-size: 24px;
    font-weight: 600;
    line-height: inherit;
    margin: 0 0 10px;
    text-align: left !important;
}

.ask_add_banner .offers-ask .ask_half1 p {
    color: #4b4b4b;
    font-size: 14px;
}

.ask_add_banner .offers-ask .ask_half1 a {
    background: #10498a;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    text-align: center;
    width: 280px;
}

.ask_add_banner .offers-ask .ask_half1.bg-pcv-banner {
    background-color: #dff5fe;
}

.ask_add_banner .offers-ask .ask_half1.bg-bike-banner {
    background-color: #ead9f0;
}

.ask_add_banner .offers-ask .ask_half1.bg-car-banner {
    background-color: #f0fafe;
}

.ask_add_banner .offers-ask .ask_half1.bg-life-banner {
    background-color: #fefce5;
}

.ask_add_banner .offers-ask .ask_half1.bg-health-banner {
    background-color: #e5fdee;
}

.ask_add_banner .offers-ask .ask_half2 {
    width: 60%;
}

.ask_add_banner .offers-ask .ask_half2 img {
    overflow: hidden;
    width: 100%;
    height: 280px;
}

@media (max-width: 1199px) {
    .ask_add_banner .offers-ask .ask_half1 {
        padding: 20px 10px 20px 30px;
        width: 100%;
    }

    .ask_add_banner {
        padding: 10px 0 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .offers-ask .ask_half2 {
        display: none;
    }

    .offers-ask .ask_half1 {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .offers-ask .ask_half2 {
        display: none;
    }

    .offers-ask .ask_half1 {
        width: 100%;
    }

    .ask_add_banner .offers-ask .ask_half1 a {
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 768px) {
    .ask_add_banner .offers-ask .ask_half2 {
        display: none !important;
    }

    .ask_add_banner .offers-ask .ask_half1 h3 {
        font-size: 18px;
    }

    .ask_add_banner .offers-ask .ask_half1 a {
        display: inline-block;
        padding: 5px 15px;
        width: auto;
    }

    .ask_add_banner .offers-ask .ask_half1 p {
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .offers-ask .ask_half2 {
        display: none;
    }

    .offers-ask .ask_half1 {
        padding: 30px;
        width: 100%;
    }

    .ask_add_banner {
        padding: 20px 0 0;
    }

    .ask_add_banner .offers-ask .ask_half1 {
        padding: 20px 30px;
    }
}

/* .owl-carousel {
    -webkit-tap-highlight-color: transparent;
    display: none;
    position: relative;
    width: 100%;
    z-index: 1;
}
.owl-carousel .owl-stage {
    -moz-backface-visibility: hidden;
    position: relative;
    touch-action: manipulation;
}
.owl-carousel .owl-stage:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}
.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0);
}
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
}
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-backface-visibility: hidden;
    float: left;
    min-height: 1px;
    position: relative;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
} */

/* product pop */

.main_custom_popup {
    align-items: center;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: #28354f5c;
    bottom: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    margin: auto;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.main_custom_popup .main_custom_popup_inner {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #10498a6b;
    box-shadow: 0 0 10px 0 var(--main_primary) 6b;
    height: auto;
    margin: 0 auto auto;
    overflow: hidden;
    position: relative;
    width: 350px;
}

#view_all_products.main_custom_popup .main_custom_popup_inner {
    margin: auto;
    max-width: 750px;
    width: 100%;
}

#view_all_products.main_custom_popup .main_custom_popup_inner .main_custom_popup_inner_body {
    max-height: 450px !important;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 5px 20px;
}

.main_custom_popup .main_custom_popup_inner .close_btn_pop {
    cursor: pointer;
    position: absolute;
    right: 21px;
    top: 10px;
}

.main_custom_popup .main_custom_popup_inner .close_btn_pop img {
    width: 15px !important;
}

.main_custom_popup .main_custom_popup_inner .main_custom_popup_header {
    color: #10498a;
    font-size: 20px;
    font-weight: 600;
    padding: 11px 20px;
}

.main_custom_popup .main_custom_popup_inner .main_custom_popup_inner_body {
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 5px 20px 15px;
}

.main_custom_popup .main_custom_popup_inner .main_custom_popup_inner_body::-webkit-scrollbar {
    width: 0;
}

.cs_main_insurance_products_inner {
    background-color: #fff;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block {
    background: #f7f9ffd9;
    border: 1px solid #e4eef9;
    border: 1px solid var(--main_claim_back);
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 20px 20px 0;
    width: 100%;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block h4 {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: normal;
    margin: 0 0 5px;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul {
    padding: 0;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul li {
    border-right: 1px solid #e4eef9;
    border-right: 1px solid var(--main_claim_back);
    display: inline-block;
    margin: 10px 0;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: calc(16.66667% - 5px);
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul li:last-child {
    border-right: none;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block a span {
    display: block;
    margin-bottom: 5px;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block a span img {
    width: 36px;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block a small {
    color: #3c3c3c;
    display: block;
    font-size: 10px;
    font-weight: 500;
    line-height: 18px;
    transition: 0.5s ease-in-out;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block a small b {
    color: #10498a;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.cs_main_insurance_products_inner .cs_scrol_box .home_products_block a abbr {
    background: #2cb2b3;
    border-radius: 8px 1px;
    color: #fff;
    display: inline-table;
    font-size: 10px;
    height: 14px;
    left: 0;
    letter-spacing: 0.5px;
    line-height: 14px;
    margin: 0 auto;
    padding: 0 8px;
    position: absolute;
    right: 0;
    top: -15px;
}

.main_custom_popup_inner.show {
    transform: scale(1);
}

@media (max-width: 576px) {
    .cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul li {
        width: calc(33.33333% - 5px);
    }
}

.home_banner_part_block .home_banner_content img {
    display: block;
    margin: auto;
    width: 350px;
}

.home_banner_part_block .home_products_block {
    align-items: normal;
    border-radius: 0;
    display: inherit;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .home_banner_part_block .home_products_block a span {
        margin: 0 auto;
    }

    .home_banner_part_block .home_products_block a small b {
        font-size: 10px;
        font-weight: 600;
    }

    .home_banner_part_block .home_products_block a small {
        font-size: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home_banner_part_block .home_products_block a {
        width: 32%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul li {
        width: calc(20% - 5px);
    }

    .home_banner_part_block .home_products_block a {
        text-align: center;
        width: 15.5%;
    }
}

@media (max-width: 768px) {
    .home_banner_part_block .home_products_block a {
        line-height: normal;
    }

    .cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul li {
        width: calc(25% - 5px);
    }

    .main_custom_popup .main_custom_popup_inner .main_custom_popup_header {
        font-size: 18px;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .cs_main_insurance_products_inner .cs_scrol_box .home_products_block ul li {
        width: calc(33.33333% - 5px);
    }

    .home_banner_part_block .home_products_block a {
        margin: 3px 3px 5px;
        padding: 0;
        width: calc(50% - 20px);
    }

    .home_banner_part_block .home_products_block a span img {
        display: block;
        width: 40px;
    }

    .home_banner_part_block .home_products_block a {
        width: calc(33.33333% - 6px);
    }

    .home_banner_part_block .home_products_block {
        justify-content: center;
    }

    .cs_main_insurance_products_inner .cs_scrol_box .home_products_block a span img {
        width: 30px;
    }

    .cs_main_insurance_products_inner .cs_scrol_box .home_products_block {
        padding: 15px 10px 0;
    }

    .main_custom_popup .main_custom_popup_inner .main_custom_popup_header {
        font-size: 18px;
        font-weight: 600;
    }
}

@media only screen and (min-width: 506px) and (max-width: 576px) {
    .home_banner_part_block .home_products_block a {
        width: calc(20% - 6px);
    }
}

@media only screen and (min-width: 421px) and (max-width: 505px) {
    .home_banner_part_block .home_products_block a {
        width: calc(25% - 6px);
    }
}

@media only screen and (min-width: 320px) and (max-width: 420px) {
    .home_banner_part_block .home_products_block a {
        line-height: normal;
        margin: 3px 3px 5px;
        padding: 0;
        width: 31%;
    }
}

.in-btn-2 {
    border-radius: 5px;
    display: inline-block;
    /* background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#0163ea),
        color-stop(50%, #00bcf9),
        to(#0163ea)
    );
    background: linear-gradient(
        -90deg,
        rgba(6, 182, 203, 1) 0%,
        rgba(37, 59, 149, 1) 100%
    ); */
    background: #204e9d;
    background-size: 200%, 1px;
    -webkit-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
}

.in-btn-2 a {
    z-index: 1;
    color: #fff;
    height: 60px;
    width: 200px;
    display: block;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    position: relative;
}

.in-btn-2 a:before,
.in-btn-2 a:after {
    top: 2px;
    left: 2px;
    right: 0;
    z-index: -2;
    width: 196px;
    content: "";
    height: 56px;
    border-radius: 5px;
    position: absolute;
    background-color: #fff;
    -webkit-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
}

.in-btn-2 a:after {
    top: 7px;
    left: 7px;
    width: 186px;
    height: 46px;
    border-radius: 5px;
    /* background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#0163ea),
        color-stop(50%, #00bcf9),
        to(#0163ea)
    );
    background: linear-gradient(
        -90deg,
        rgba(6, 182, 203, 1) 0%,
        rgba(37, 59, 149, 1) 100%
    ); */
    background: #204e9d;
    background-size: 200%, 1px;
}

.in-btn-2:hover {
    background-position: 100%;
    /* background: linear-gradient(
        -90deg,
        rgba(6, 182, 203, 1) 0%,
        rgba(37, 59, 149, 1) 100%
    ) !important; */
    background: #204e9d;
    color: #fff !important;
    border-color: unset !important;
}

.in-btn-2:hover a:before,
.in-btn-2:hover a:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.in-btn-2:hover a:after {
    background-position: 100%;
}

.in-btn-2:active,
.in-btn-2:focus,
in-btn-2:visited {
    background-color: #204e9d !important;
    color: #fff !important;
    border-color: unset !important;
}

.bold-btn {
    font-size: 1.1rem;
}

/* custom card */
/* Card styling */
.card-custom {
    position: relative;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    /* Light background color */
    border-radius: 15px;
}

.card-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 2px solid #007bff;
    border-radius: 15px;
    /* Match the card's border radius */
    transition: all 0.5s ease;
}

.card-custom:hover::before {
    width: 100%;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 1rem;
    background-color: #fff;
    /* Light background color */
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.product-link .card-body {
    padding: 0;
}

.product-link .card-body img {
    width: 4.063em;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* margin-bottom: 10px; */
    margin-top: 5px;
    padding: 5px;
}

.product-link .card-body:hover img {
    transform: scale(1.1);
}

.card-text {
    text-align: center;
    /* margin-top: 10px; */
    color: #333;
}

.card-text small {
    /* font-size: 14px;
    font-weight: 500; */
    transition: color 0.3s ease;
}

.card-custom:hover .card-text small {
    color: #333;
    /* Change text color on hover */
}

.product-block {
    padding: 20px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-link:hover .card-body {
    background-color: #fff;
    /* Slightly darker background on hover */
}

/* feedback */

/* .auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
} */

/* .centered {
    text-align: center;
}

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}
.sec-title .title {
    position: relative;
    color: #03e1b9;
    font-size: 18px;
    display: block;
}
.sec-title h2 {
    position: relative;
    color: #39436f;
    font-weight: 600;
    line-height: 1.2em;
    margin-top: 15px;
}
.sec-title.centered {
    text-align: center !important;
}
.testimonial-section {
    position: relative;
    padding: 0px 0px 110px;
}
.testimonial-section .owl-dots,
.testimonial-section .owl-nav {
    display: none;
}
.testimonial-section .pattern-layer-one {
    position: absolute;
    left: 0px;
    top: -60px;
    right: 0px;
    bottom: 0px;
    background-position: center top;
    background-repeat: no-repeat;
}
.testimonial-section .inner-container {
    position: relative;
    padding: 0px 30px;
}
.testimonial-block {
    position: relative;
}
.testimonial-block .inner-box {
    position: relative;
}
.testimonial-block .inner-box .content {
    position: relative;
    padding: 45px 100px 65px;
    text-align: center;
    background-color: #ffffff;
    display: block;
}
.testimonial-block .inner-box .content .text {
    position: relative;
    color: #39436f;
    opacity: 0.8;
    font-size: 18px;
    line-height: 1.9em;
}
.testimonial-block .inner-box .info-box {
    position: relative;
    text-align: center;
    margin-top: -35px;
}
.testimonial-block .inner-box .info-box .author-image {
    position: relative;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50px;
}
.testimonial-block .inner-box .info-box h5 {
    position: relative;
    margin-top: 15px;
    color: #39436f;
    font-weight: 400;
}
.testimonial-block .inner-box .info-box .designation {
    position: relative;
    margin-top: 2px;
    color: #39436f;
    font-weight: 400;
    font-size: 14px;
}

@media only screen and (max-width: 1023px) {
    .testimonial-section .inner-container {
        padding: 0px 0px;
    }
}
@media only screen and (max-width: 767px) {
    .sec-title h2 {
        font-size: 28px;
    }
    .testimonial-block .inner-box .content {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media only screen and (max-width: 599px) {
    h2 {
        font-size: 30px;
    }
    .testimonial-block .inner-box .content .text {
        font-size: 16px;
    }
}
@media only screen and (max-width: 479px) {
    .sec-title h2 {
        font-size: 20px;
        line-height: 1.4em;
    }
} */

/* New Mobile */

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: #204e9d;
    color: #fff;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 19.5px 40px;
    border-radius: 100px;
}

.th-btn:before {
    position: absolute;
    content: "";
    background: #000;
    width: 110%;
    min-height: 200px;
    z-index: -1;
    border-radius: 15%;
    top: 100%;
    left: 100%;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.th-btn:hover {
    color: white;
}

.th-btn:hover:before {
    top: -75px;
    left: -1px;
}

.th-btn.style2 {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 20px 40px;
    box-shadow: none;
}

.th-btn.style2:hover {
    color: #fff;
    border-color: #000;
}

.th-btn.style2:hover:before,
.th-btn.style2:hover:after {
    background-color: #000;
}

.sub-title {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-font);
    color: #204e9d;
    margin-bottom: 30px;
    text-transform: capitalize;
    border-radius: 30px;
    padding: 3px 20px;
    display: inline-block;
    margin-top: 0;
}

.sub-title:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #204e9d;
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
}

@media (max-width: 1199px) {
    .sub-title {
        margin-bottom: 20px;
    }
}

.shape-mockup-wrap {
    /* z-index: 2; */
    position: relative;
}

.shape-mockup {
    position: absolute;
    z-index: -1;
}

.shape-mockup.z-index-3 {
    z-index: 3;
}

.z-index-3 {
    z-index: 3;
}

.btn-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

.th-hero-wrapper {
    position: relative;
    /*z-index: 2;*/
    overflow: hidden;
}

.hero-text {
    font-family: var(--title-font);
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-2 {
    position: relative;
    /*z-index: 2;*/
    /* background-color: #0163ea14; */
    background-color: #cfe5fc;
}

/* .mb-40{margin-bottom: 40px;}
.mb-sm-40{margin-bottom: 40px;}
.mb-xs-35{margin-bottom: 35px;} */
/* @media (max-width: 1799px){
.hero-2{margin:0 20px;}
} */
.mt-35 {
    margin-top: 35px;
}

.mb-30 {
    margin-bottom: 30px;
}

.app-btn .icon.img-contain img {
    width: 80%;
}

@media (max-width: 1500px) {
    .hero-2 {
        margin: 0;
    }
}

.hero-2 .hero-img {
    /*margin:30px -180px 0 -30px;*/
    height: 650px;
}

@media (max-width: 1399px) {
    .hero-2 .hero-img {
        margin: 30px -100px 0 -30px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-img {
        height: 100%;
    }
}

.hero-2 .hero-img img {
    min-width: 670px;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .hero-2 .hero-img img {
        min-width: 600px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-img img {
        min-width: 500px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-img img {
        min-width: 100%;
    }
}

.hero-2 .hero2-image .hero-shape {
    position: absolute;
    top: -13%;
    right: 0;
    z-index: -1;
}

@media (min-width: 1330px) {
    .hero-2 .hero2-image .hero-shape {
        right: 5%;
    }
}

@media (max-width: 1799px) {
    .hero-2 .hero2-image .hero-shape {
        right: 0%;
    }
}

@media (max-width: 1299px) {
    .hero-2 .hero2-image .hero-shape {
        right: -8%;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero2-image .hero-shape {
        top: unset;
        bottom: 0;
        right: 0;
    }
}

.hero-style2 {
    padding: 278px 0 291px 0;
}

@media (max-width: 1199px) {
    .hero-style2 {
        text-align: center;
        padding: 150px 0 0px 0;
    }

    .hero-style2 .hero-text {
        display: block;
        margin: auto auto 30px auto;
    }
}

@media (max-width: 575px) {
    .hero-style2 {
        padding: 100px 0 0px 0;
    }
}

.hero-style2 .sub-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .hero-style2 .sub-title {
        font-size: 16px;
    }
}

.hero-style2 .hero-title {
    text-transform: capitalize;
}

@media (max-width: 1399px) {
    .hero-style2 .hero-title {
        font-size: 54px;
    }
}

@media (max-width: 767px) {
    .hero-style2 .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .hero-style2 .hero-title {
        font-size: 34px;
    }
}

.hero-style2 .hero-text {
    max-width: 522px;
}

.th-hero-wrapper .container .row .col-xl-6 {
    position: static;
}

.th-hero-wrapper .container .row .col-xl-6 .me-xl-5 {
    padding: 100px 0 100px 0 !important;
}

/*! CSS Used keyframes */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

/* .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled {
    pointer-events: none;
    opacity: 0.65;
}

.order-0 {
    order: 0 !important;
}
.order-2 {
    order: 2 !important;
}
.me-2 {
    margin-right: 0.5rem !important;
}
.me-3 {
    margin-right: 1rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.lh-1 {
    line-height: 1 !important;
}

.rounded-circle {
    border-radius: 50% !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}
@media (min-width: 992px) {
    .order-lg-0 {
        order: 0 !important;
    }
    .order-lg-2 {
        order: 2 !important;
    }
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}
@media (min-width: 1200px) {
    .fs-2 {
        font-size: 2rem !important;
    }
}

.op-4 {
    opacity: 0.4;
}
.lh-1 {
    line-height: 1;
}
.icon-30 {
    width: 30px;
    height: 30px;
}
.img-contain {
    display: block;
}
.img-contain img {
    max-width: 145px;
    width: 80%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto;
}*/
.btn {
    /* padding: 12px 30px; */
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn small {
    font-size: 12px;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

.btn:hover {
    background: #204e9d;
    border-color: transparent;
}

.about.style-4 {
    overflow: hidden;
    position: relative;
}

.about.style-4 .top-wave {
    position: absolute;
    top: -2px;
    width: 100%;
}

.about.style-4 .bottom-wave {
    position: absolute;
    bottom: -2px;
    width: 100%;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.about.style-4 .mobile-content {
    position: relative;
    padding-bottom: 40px;
}

.about.style-4 .mobile-content ul li h6 {
    font-size: 15px;
}

.about.style-4 .mobile-content.frs-content .lines {
    position: absolute;
    left: 0;
    top: -80px;
    width: 40%;
    max-width: unset;
    max-height: unset;
}

.about.style-4 .mobile-content.frs-content .bubble,
.about.style-4 .mobile-content.trd-content .bubble {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    max-width: unset;
    max-height: unset;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

.about.style-4 .mobile-content.sec-content .bubble2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    max-width: unset;
    max-height: unset;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

.about.style-4 .btn-img {
    text-align: initial;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: #f4f2fb;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about.style-4 .btn-img .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #0001;
    width: 45px;
}

.about.style-4 .btn-img .inf {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about.style-4 .btn-img .inf small {
    font-size: 10px;
    color: #666;
}

.about.style-4 .btn-img .inf h6 {
    font-size: 12px;
    color: #000;
    font-weight: bold;
    line-height: 1.5;
}

.about.style-4 .integration {
    position: relative;
}

.about.style-4 .integration .intg-back {
    position: absolute;
    left: 0;
    bottom: 19%;
    width: 100%;
    max-height: unset;
    -o-object-fit: cover;
    object-fit: cover;
}

.about.style-4 .integration .mobile-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.about.style-4 .integration .mobile-content .img {
    -webkit-animation: slide_up_down 1.7s ease-in-out infinite alternate both;
    animation: slide_up_down 1.7s ease-in-out infinite alternate both;
}

.about.style-4 .integration .mobile-content .img:nth-of-type(1) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.about.style-4 .integration .mobile-content .img:nth-of-type(2) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.about.style-4 .integration .mobile-content .img:nth-of-type(3) {
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
}

.about.style-4 .integration .mobile-content .img:nth-of-type(4) {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.about.style-4 .integration .mobile-content .img:nth-of-type(5) {
    -webkit-animation-delay: -2.5s;
    animation-delay: -2.5s;
}

.faq.style-3 .accordion-item {
    border: 0;
    border-bottom: 1px solid #9995;
    background: transparent;
}

.faq.style-3 .accordion-item .accordion-button {
    font-weight: bold;
    font-size: 14px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: capitalize;
    padding: 25px 15px;
}

.faq.style-3 .accordion-item .accordion-button::after {
    background-size: 15px;
}

.faq.style-3 .accordion-item .accordion-collapse {
    background-color: #fff;
}

.faq.style-3 .accordion-item .accordion-collapse .accordion-body {
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 10px;
    color: #666;
}

.faq.style-3.style-4 .accordion-item h2 {
    padding-bottom: 10px;
}

.faq.style-3.style-4 .accordion-item {
    border: 0;
    border-radius: 7px;
    overflow: hidden;
}

.faq.style-3.style-4 .accordion-item .accordion-button {
    padding: 0;
    font-size: 15px;
}

.faq.style-3.style-4 .accordion-item .accordion-collapse {
    background-color: #f4f2fb;
}

.faq.style-3.style-4 .accordion-item .accordion-collapse .accordion-body {
    font-size: 13px;
}

@media screen and (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-head h2 {
        font-size: 25px;
    }

    .section-head h2 {
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .style-4 br {
        display: none;
    }

    .about.style-4 .mobile-content {
        padding: 40px 0;
    }

    .faq.style-3.style-4 {
        overflow: hidden;
    }

    .section-head.style-4 h2 {
        font-size: 25px;
    }

    .section-head.style-4 h2 {
        font-size: 18px;
    }
}

/*! CSS Used keyframes */
@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

@-webkit-keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* End New Mobile */

/* Benefits of askpolicy */

.gy-40 {
    --bs-gutter-y: 40px;
}

.sec-title {
    margin-bottom: calc(var(--section-title-space) - 10px);
    margin-top: -0.32em;
    text-transform: capitalize;
}

.sub-title {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-font);
    color: #4661ff;
    margin-bottom: 30px;
    text-transform: capitalize;
    border-radius: 30px;
    padding: 3px 20px;
    display: inline-block;
    margin-top: 0;
}

.sub-title:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4661ff;
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
}

.sub-title.sub-title4 {
    position: relative;
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 25px;
}

.sub-title.sub-title4::before,
.sub-title.sub-title4:after {
    content: "";
    position: absolute;
    top: 48%;
    height: 1px;
    width: 50px;
    opacity: 1;
}

@media (max-width: 575px) {

    .sub-title.sub-title4::before,
    .sub-title.sub-title4:after {
        width: 30px;
    }
}

@media (max-width: 450px) {

    .sub-title.sub-title4::before,
    .sub-title.sub-title4:after {
        display: none;
    }
}

.sub-title.sub-title4::before {
    background-color: #4661ff;
    margin-left: -2.5rem;
}

@media (max-width: 575px) {
    .sub-title.sub-title4::before {
        margin-left: -1.3rem;
    }
}

.sub-title.sub-title4::after {
    background-color: #4661ff;
    margin-left: 10px;
}

.box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -0.32em;
}

.title-area {
    margin-bottom: calc(var(--section-title-space) - 10px);
    position: relative;
    z-index: 2;
}

.title-area .sec-title {
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .sub-title {
        margin-bottom: 20px;
    }

    .title-area,
    .sec-title {
        --section-title-space: 60px;
    }
}

@media (max-width: 991px) {

    .title-area,
    .sec-title {
        --section-title-space: 50px;
    }
}

.shape-mockup-wrap {
    /* z-index: 2; */
    position: relative;
}

.shape-mockup {
    position: absolute;
    z-index: -1;
}

.process-card2 .box-number:after,
.process-card2 .box-number:before {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

.movingX {
    -webkit-animation: movingX 8s linear infinite;
    animation: movingX 8s linear infinite;
}

.jump {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite;
}

.process-area2 {
    position: relative;
    max-width: 1620px;
    display: block;
    margin: auto;
}

.process-card2 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .process-card2 {
        padding: 0;
    }
}

.process-card2-wrap:nth-child(even) {
    margin-top: -40px;
}

@media (max-width: 767px) {
    .process-card2-wrap:nth-child(even) {
        margin-top: 40px;
    }
}

.process-card2-wrap:nth-child(2) .box-number {
    background: #f3ba0e;
    top: 40px;
    left: 10px;
}

.process-card2-wrap:nth-child(2) .box-number:after,
.process-card2-wrap:nth-child(2) .box-number:before {
    background-color: #f3ba0e;
}

.process-card2-wrap:nth-child(2) .box-icon:before {
    top: 50%;
    left: -73%;
    background-color: #f3ba0e;
}

.process-card2-wrap:nth-child(3) .box-number {
    background: #70d715;
    top: 47px;
    left: 20px;
}

.process-card2-wrap:nth-child(3) .box-number:after,
.process-card2-wrap:nth-child(3) .box-number:before {
    background-color: #70d715;
}

.process-card2-wrap:nth-child(3) .box-icon:before {
    top: 60%;
    left: -70%;
    background-color: #70d715;
}

.process-card2 .box-number {
    position: absolute;
    top: 10px;
    left: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: #4661ff;
}

.process-card2 .box-number:after,
.process-card2 .box-number:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #4661ff;
    opacity: 0.3;
    z-index: -2;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.process-card2 .box-number:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.process-card2 .box-icon {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: block;
    margin: auto auto 30px auto;
    background-color: #fff;
    box-shadow: 0px 10px 50px 10px #e8e8e8;
}

.process-card2 .box-icon img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.process-card2 .box-icon:before {
    content: "";
    position: absolute;
    top: 40%;
    left: -80%;
    width: 89px;
    height: 35.12px;
    background-color: #4661ff;
    -webkit-mask-image: url("https://html.themeholy.com/sassa/demo/assets/img/icon/line-shape2.svg");
    background-image: url("https://html.themeholy.com/sassa/demo/assets/img/icon/line-shape2.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.process-card2 .box-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.process-card2 .box-text {
    margin-bottom: -0.3rem;
}

.process-card2:hover .box-icon img {
    -webkit-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.process-btn {
    text-align: center;
    border: 1px solid var(--smoke-color);
    border-radius: 30px;
    padding: 5px 40px;
    margin: auto;
}

@media (max-width: 375px) {
    .process-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
}

.mt-40 {
    margin-top: 40px;
}

.mb-130 {
    margin-bottom: 130px;
}

.space-top {
    padding-top: var(--section-space);
}

.space-extra2-bottom {
    padding-bottom: calc(var(--section-space) - 40px);
}

@media (max-width: 991px) {
    .space-top {
        padding-top: var(--section-space-mobile);
    }

    .space-extra2-bottom {
        padding-bottom: 70px;
    }
}

/*! CSS Used keyframes */
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@-webkit-keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.icon-40 {
    width: 40px;
    height: 40px;
}

.img-contain {
    display: block;
}

.img-contain.f1 img {
    width: 80%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    animation: slide_up_down 1.7s ease-in-out infinite alternate both;
}

.section-head.style-4 .title_small {
    font-size: 12px;
    padding: 8px 10px;
    background: linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
    border-radius: 5px;
    color: #fff;
    /*margin-bottom: 20px;*/
}

.section-head.style-4 h2 {
    font-size: 40px;
    line-height: 1.3;
    color: #000;
    margin-top: 10px;
}

.section-head.style-4 h2 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
    background-image: -webkit-linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
    background-image: -o-linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
    background-image: linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
}

.features.style-4 {
    background-color: #e0dfe51f;
    position: relative;
    overflow: hidden;
}

.features.style-4 .img-circle {
    position: absolute;
    top: 40px;
    width: 76%;
    left: 12%;
    max-height: unset;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

.features.style-4 .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.features.style-4 .content .features-card {
    text-align: center;
}

.features.style-4 .content .features-card .icon {
    width: 125px;
    height: 125px;
    display: block;
    margin: 0 auto 30px;
    position: relative;
}

.features.style-4 .content .features-card .icon .label {
    position: absolute;
    top: 0;
    right: -5px;
    z-index: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 10px;
}

.features.style-4 .content .features-card h6 {
    font-weight: bold;
    font-size: 15px;
    line-height: 23px;
}

@media screen and (max-width: 991px) {
    .section-head h2 {
        font-size: 25px;
    }

    .section-head h2 {
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .style-4 .mb-70 {
        margin-bottom: 40px !important;
    }

    .style-4 br {
        display: none;
    }

    .features.style-4 .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .features.style-4 .content .features-card {
        margin: 15px 0;
    }

    .section-head.style-4 h2 {
        font-size: 25px;
    }

    .section-head.style-4 h2 {
        font-size: 18px;
    }
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

/* end of Benefits of askpolicy */

/* Testimonial */
.testimonial {
    margin: 0 20px 40px;
}

.testimonial .testimonial-content {
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    position: relative;
    box-shadow: 5px 20px 20px #d7cfcf;
}

.testimonial .testimonial-content:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    border-top: 15px solid #718076;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.testimonial .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    border-top: 15px solid #718076;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}

.testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #020202;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}

.testimonial .description {
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}

.testimonial .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 -20px 0;
}

.testimonial .post {
    display: block;
    font-size: 14px;
    color: #0cca4a;
}

.owl-theme .owl-controls {
    margin-top: 20px;
}

.owl-theme .owl-controls .owl-page span {
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #0cca4a;
}

/* End Testimonial */

/* Start Faq */
.warpper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab {
    cursor: pointer;
    /* padding: 10px 30px; */
    margin: 0px 5px;
    /* background: #00a0e3; */
    display: inline-block;
    color: #fff;
    border-radius: 3px 3px 0px 0px;
    /* box-shadow: 0 0.5rem 0.8rem #19a8d5ab; */
}

.panels {
    /* background: #fff; */
    /* box-shadow: 0 2rem 2rem #00000080; */
    min-height: 200px;
    width: 100%;
    /* max-width: 500px; */
    border-radius: 3px;
    overflow: hidden;
    /* padding: 20px; */
}

.warpper .panels .panel {
    display: none;
    animation: fadein 0.8s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.panel-title {
    font-size: 1.5em;
    font-weight: bold;
}

.warpper .radio {
    display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel,
#four:checked~.panels #four-panel,
#five:checked~.panels #five-panel,
#six:checked~.panels #six-panel {
    display: block;
}

.tabs {
    margin-bottom: 1rem;
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab,
#four:checked~.tabs #four-tab,
#five:checked~.tabs #five-tab,
#six:checked~.tabs #six-tab {
    background: #fff;
    color: #000;
    border-top: 3px solid #32557f;
}

.panel h2.accordion-header {
    padding-bottom: 0;
}

/* Remove default background color for the accordion headers */
.accordion-button {
    background-color: #fff;
    border: none;
}

/* Set the background color only when the item is opened */
.accordion-button:not(.collapsed) {
    background-color: #204e9d;
    color: #fff !important;
}

/* Optional: Add hover effect for better UX */
.accordion-button:hover {
    background-color: #204e9d;
    color: #fff !important;
}

/* End Faq */

/* clients section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,
            minmax(100px, 1fr));
    /* Responsive grid with minimum item width */
    gap: 20px;
    /* Gap between grid items */
}

.partner {
    display: flex;
    justify-content: center;
}

.partner-card {
    width: 100%;
    height: 70px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    /* Align items horizontally */
    align-items: center;
    /* Align items vertically */
}

.partner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center horizontally within its parent */
    filter: grayscale(100%);
    /* Initially grayscale */
    transition: filter 0.3s ease;
    /* Smooth transition for filter */
    mix-blend-mode: multiply;
}

.partner:hover img {
    filter: grayscale(0%);
    /* Revert to color on hover */
}

/* end clients section */

.ads-primary-slider .owl-item img {
    border-radius: 15px;
}

.ads-bottom-banner .owl-item img {
    border-radius: 10px;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.faq.style-3.style-4 .accordion-button:hover {
    color: #000;
}

.warpper .panels .panel .accordion-body {
    font-size: 14px;
}

.faq-bg {
    background-color: #f5f5f5ad;
}

.bg-color {
    padding: 10px;
}

/* Get Quote Page */

::selection {
    background-color: rgba(3, 3, 3, 0.7);
    color: #fff;
}

.line-height-reset {
    line-height: 1.42857143;
}

.margin-top-reset {
    margin-top: 0;
}

.w--button {
    font-size: var(--fn-medium);
    padding: 10px 15px;
}

.w--text_input--label {
    position: absolute;
    pointer-events: none;
    color: var(--input_labelColor-70);
    font-size: var(--fn-medium);
    left: 0;
    top: 14px;
    font-weight: 400;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media all {
    .w--button {
        font-size: var(--fn-medium);
        padding: 10px 15px;
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
    }

    .w--button:empty {
        display: none;
    }

    @media (max-width: 499px) {
        .w--button:focus {
            outline: 0;
        }
    }

    .w--button--orange-gradient {
        background: var(--home-primary-btn);
        color: var(--button_accent_textColor);
        padding: 12px 24px;
        border: 0;
        text-decoration: none;
    }

    .w--button--orange-gradient:hover {
        background: var(--button_accent_hover);
        text-decoration: none;
        color: var(--button_accent_textColor);
    }

    .w--button:disabled {
        opacity: 0.6;
    }

    .w--text_input {
        position: relative;
        margin-bottom: 10px;
    }

    .w--text_input hr {
        margin: 0;
        position: relative;
        border-top: 1px solid var(--border-color-40);
        overflow: visible;
    }

    .w--text_input hr:after {
        transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: absolute;
        bottom: -1px;
        height: 2px;
        background: linear-gradient(270deg,
                var(--modal_greetings_title_gradientColor-4),
                var(--modal_greetings_title_gradientColor-5),
                var(--modal_greetings_title_gradientColor-6));
        border-radius: 3px;
        content: "";
        left: 0;
        right: 100%;
    }

    .w--text_input input {
        width: 100%;
        border: none;
        outline: 0;
        color: #333 / 80%;
        background: 0 0;
        padding-top: 15px;
        padding-left: 0;
        opacity: 1;
    }

    .w--text_input--label {
        position: absolute;
        pointer-events: none;
        color: #333/80%;
        font-size: 14px;
        left: 0;
        top: 14px;
        font-weight: 400;
        transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
}

.flow-links {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    max-width: 400px;
    margin-top: 12px;
}

.flow-links__item {
    cursor: pointer;
    color: #204e9d;
    font-size: 14px;
    line-height: 19px;
    position: relative;
}

.flow-links__item:after,
.flow-links__item:before {
    position: absolute;
    right: -10px;
    top: 9px;
    content: "";
}

@media only screen and (max-width: 499px) {

    .flow-links__item:after,
    .flow-links__item:before {
        width: 5px;
        height: 5px;
        border: 1px solid #204e9d;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-left: none;
        border-top: none;
        content: "";
    }
}

.flow-links__item:before {
    right: -7px;
}

.flow-links__item:last-child {
    margin-right: 10px;
}

.flow-links__item:after,
.flow-links__item:before {
    display: none;
}

.w--button:focus {
    outline: none;
}

.w--registration-input {
    border: none;
    margin: auto auto 16px;
}

.w--registration-input .w--text_input {
    margin-bottom: 0;
}

.w--registration-input .w--text_input .w--text_input--label {
    top: 21px;
    left: 84px;
    font-size: var(--fn-default);
}

.w--registration-input .w--text_input input {
    text-align: left;
    font-size: var(--fn-default);
    height: 64px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    padding: 23px 12px 6px 84px;
    transition: background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-image: url(https://www.coverfox.com/static/img/icons/car.svg);
    background-repeat: no-repeat;
    background-position: 19px 21px;
}

.w--registration-input .w--text_input input:hover {
    background-color: var(--hover_bg);
}

.w--registration-input .w--text_input hr {
    display: none;
}

.car-flow-fastlane {
    width: 504px;
    margin: auto;
}

.car-flow-fastlane .w--registration-input {
    border-width: 0;
}

.car-flow-fastlane .w--registration-input input {
    display: block;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.car-flow-fastlane .w--registration-input input:focus {
    border: 1px solid var(--input_active_color-60);
    box-shadow: 0 2px 5px 1px var(--input_active_color-30);
}

.car-flow-fastlane {
    width: 565px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
}

.car-flow-fastlane .w--button--view-quotes {
    /* width: 205px;
  height: 64px; */
    background-color: #204e9d;
    color: #fff;
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.07);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 1;
    margin-left: -1px;
}

.car-flow-fastlane .w--registration-input {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 4px;
}

.car-flow-fastlane .w--registration-input .w--text_input--label {
    left: 72px;
    color: rgba(49, 68, 81, 0.5);
}

.car-flow-fastlane .w--registration-input input {
    min-width: auto;
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.07);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-position: 12px 21px;
    padding-left: 72px;
}

.flow-links {
    max-width: 565px;
    margin-top: 0;
    line-height: 17px;
}

.flow-links__item {
    font-size: 14px;
    margin-left: 1px;
}

.flow-links__item:after,
.flow-links__item:before {
    display: none;
}

.flow-links__item span {
    margin-right: 4px;
}

.flow-links__item span:first-child {
    color: rgba(49, 68, 81, 0.7);
}

.hero-widget__inner-wrapper {
    width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
}

.hero-widget__header {
    font-size: 54px;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) and (max-width: 1367px) {
    .hero-widget__header {
        font-size: 48px;
        margin-top: 24px;
        margin-bottom: 32px;
    }
}

.hero-widget__form-wrapper {
    -webkit-flex-basis: 848px;
    -ms-flex-preferred-size: 848px;
    flex-basis: 848px;
    max-width: 848px;
    box-shadow: 20px 24px 108px -20px #0d6efd24, 0 0 34px -10px #0d6efd4a,
        0 2px 64px 0 #0d6efd0a;
    border-radius: 6px;
    padding: 20px;
    position: relative;
    /* border: 1px solid rgba(107, 122, 254, 0.15); */
}

.hero-widget__form-wrapper__renew-block {
    /* height: 40px; */
    /* min-width: 222px; */
    /* position: absolute; */
    /* right: 20px;
  bottom: 20px; */
    /* text-align: right; */
}

.hfr__title-text {
    font-size: 15px;
    font-weight: 400;
}

.hfr__link {
    font-size: 16px;
    /* color: #030303; */
    cursor: pointer;
}

.hfr__link span {
    color: #204e9d;
    border-bottom: 1px solid #204e9d;
}

.hero-widget {
    background-color: #fdfdff;
    padding-top: 64px;
    margin-top: -65px;
}

.hero-widget__form-wrapper {
    padding: 40px 60px;
    max-width: 770px;
    margin-bottom: 50px;
}

.hero-widget__header {
    color: #030303;
    margin-bottom: 40px;
    font-size: 36px;
}

.hero-widget__form-header {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0.7;
}

.hero-widget__inner-wrapper {
    margin-bottom: 0;
}

.car-new-qf {
    position: relative;
}

.car-flow-fastlane {
    width: 650px;
    display: block;
    text-align: center;
}

.car-flow-fastlane .w--registration-input .w--text_input--label {
    left: 16px;
}

.car-flow-fastlane .w--registration-input .w--text_input {
    box-shadow: 0 2px 22px 0 rgba(70, 90, 207, 0.16);
    border: 1px solid rgba(107, 122, 254, 0.3);
    border-radius: 4px;
}

.car-flow-fastlane .w--registration-input input {
    padding: 16px 16px 7px 16px;
    background-image: none;
    border-radius: 4px;
}

.car-flow-fastlane .w--button--view-quotes {
    border-radius: 0.375rem;
    font-size: 14px;
    /* font-weight: 600; */
    margin-top: 40px;
}

.flow-links {
    position: absolute;
    top: 75px;
    width: 100%;
    max-width: none;
}

.flow-links__item span:last-child {
    font-weight: 500;
}

.flow-links__item span:first-child {
    color: rgba(3, 3, 3, 0.8);
}

.organic-car-container .car-new-qf .flow-links {
    margin-top: 12px;
}

.organic-car-container .hero-widget__form-wrapper {
    background: url("../../../front/icons/bg_form.png") bottom repeat-x;
    background-position: left 0 bottom 0;
}

.organic-car-container .hero-widget__form-wrapper__renew-block {
    /* right: 20px;
  bottom: 15px; */
    min-width: initial;
    display: -webkit-flex;
    /* padding-right: 200px; */
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    /* background: url('../../../front/icons/car-new.svg') no-repeat; */
    background-position: 415px 0;
    padding-top: 10px;
}

.organic-car-container .hero-widget__form-wrapper__renew-block .hfr__title-text {
    margin-right: 10px;
}

.line-height-reset {
    line-height: 1.42857143;
}

.margin-top-reset {
    margin-top: 0;
}

/* End Get Quote Page */

/* Navabr */

.headerNav .wrapper .menu_Nav li .sub_Menu li .navHeading {
    font-weight: 600;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul li a:hover,
p {
    font-weight: 500;
}

.primary-btn:hover {
    background-color: #ea9c23;
}

.headerNav .sidebar-contact.sidebar-contact-mob {
    display: none;
}

.primary-btn {
    font-size: 14px;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 100px;
    display: inline-block;
    background-color: #204e9d;
    border: 1px solid #204e9d;
    cursor: pointer;
    min-width: 210px;
    text-align: center;
    color: #000;
}

.primary-btn.outline {
    border: unset;
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 0 1px #000;
}

.primary-btn.outline:hover {
    color: #000;
    border-color: #204e9d;
    background-color: #204e9d;
}

.sidebar-contact .toggle {
    transform: rotate(180deg);
}

.sidebar-contact {
    margin: auto;
    position: fixed;
    right: 0;
    cursor: pointer;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: 0.5s;
    bottom: 0;
    top: 0;
    background: #fff;
    border-radius: 16px 0 0 16px;
    z-index: 10;
    width: 0;
}

.headerNav .wrapper .menu_Nav li:hover .sub_Menu {
    opacity: 1;
    visibility: unset;
}

.sidebar-contact .toggle {
    position: absolute;
    left: -47px;
    top: 140px;
    padding: 32px 15px;
    background: #204e9d;
    border-radius: 0 8px 8px 0;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    font-weight: 700;
    font-size: 14px;
}

.headerNav .sidebar-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    border-radius: 6px;
    position: unset;
    height: unset;
    overflow: unset;
    width: 35px !important;
    text-align: center;
}

.headerNav .wrapper .content-wrapper {
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.hero-widget__form-wrapper__renew-block {
    gap: 20px;
}

@media (max-width: 1199px) {
    .sidebar-contact {
        font-size: 0;
        height: 0%;
        border-radius: 20px 20px 0 0;
        overflow: auto;
        bottom: -100px;
        left: 0;
        top: unset;
        right: 0;
        margin: 0;
        background: #fff;
        width: 100%;
    }

    .sidebar-contact .toggle {
        position: unset;
        border-radius: unset;
        transform: unset;
        padding: 5px;
        background: hsla(0, 0%, 100%, 0);
        font-size: 0;
    }

    .headerNav .sidebar-contact.sidebar-contact-mob {
        display: flex;
        margin-left: 10px;
        height: 34px;
        /* margin-top: 10px; */
    }
}

@media (min-width: 1366px) {
    .container {
        max-width: 1272px;
    }
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul li a:hover:before,
.headerNav .wrapper .menu_Nav li:hover span:before {
    opacity: 1;
}

@media (max-width: 768px) {
    p {
        font-size: 14px;
    }

    .primary-btn {
        min-width: 176px;
    }
}

.burger,
.closeHam,
.headerNav .wrapper .menu_Nav li.no-arrow {
    display: none;
}

.headerNav {
    transition: 0.2s;
    z-index: 10;
    position: relative;
}

.headerNav .wrapper {
    display: flex;
    padding: 0;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.headerNav .wrapper .menu_Nav ul {
    margin-left: 40px;
    display: flex;
}

.headerNav .wrapper .menu_Nav li {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-weight: bold;
    font-size: 1rem;
}

.headerNav .wrapper .menu_Nav li:first-child {
    padding-left: 0;
    padding-right: 16px;
}

.headerNav .wrapper .menu_Nav li:nth-child(2) .sub_Menu li {
    min-width: 250px;
}

.headerNav .wrapper .menu_Nav li span {
    font-size: 14px;
    display: flex;
    align-items: center;
    -moz-column-gap: 16px;
    column-gap: 16px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    padding: 26px 0;
    font-size: 1rem;
}

.headerNav .wrapper .menu_Nav li span:before {
    content: "";
    position: absolute;
    width: 13px;
    height: 8px;
    display: block;
    background-image: url("../../../front/icons/inidcator.png");
    left: 0;
    right: 0;
    margin: auto;
    bottom: -2px;
    opacity: 0;
    transition: 0.2s;
}

.headerNav .wrapper .menu_Nav li span:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("../../../front/icons/arrow.svg");
    transition: 0.2s;
}

.headerNav .wrapper .menu_Nav li .sub_Menu {
    position: absolute;
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding: 30px 20px 20px;
    border-top: 2px solid #204e9d;
    background-color: #fff;
    margin-left: -18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    margin-top: 25px;
    top: 46px;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
}

.headerNav .wrapper .menu_Nav li .sub_Menu.no-gap {
    -moz-column-gap: 0;
    column-gap: 0;
    margin-left: -150px;
    z-index: 9;
}

.headerNav .wrapper .menu_Nav li .sub_Menu.no-gap li {
    width: 270px;
}

.headerNav .wrapper .menu_Nav li .sub_Menu.col-gap {
    -moz-column-gap: 0;
    column-gap: 0;
}

.headerNav .wrapper .menu_Nav li .sub_Menu.sub-gap li {
    width: 200px;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li {
    row-gap: 22px;
    display: grid;
    padding: 0;
    max-width: 340px;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul {
    display: grid;
    row-gap: 12px;
    margin-left: 0;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul li {
    padding-left: 0;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul li a {
    font-size: 14px;
    display: flex;
    position: relative;
    transition: 0.2s;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul li a.additional {
    font-size: 14px;
    line-height: 22px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #276fbf;
}

.headerNav .wrapper .menu_Nav li .sub_Menu li ul li a:before {
    content: "";
    display: block;
    height: 100%;
    width: 4px;
    background: #204e9d;
    position: absolute;
    left: -8px;
    opacity: 0;
    transition: 0.2s;
}

.headerNav .wrapper .content-wrapper {
    position: relative;
    display: flex;
    /* margin-left: auto; */
    align-items: center;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.headerNav .wrapper .content-wrapper .primary-btn {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
}

.burger {
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    z-index: 2;
    flex-direction: column;
    justify-content: space-around;
    right: 0;
    left: unset;
}

.burger .line {
    display: block;
    height: 2px;
    width: 26px;
    border-radius: 60px;
    background: #000;
    padding: 0;
}

.burger .line1 {
    transform-origin: 0 0;
    transition: transform 0.4s ease-in-out;
}

.burger .line2 {
    transition: transform 0.2s ease-in-out;
}

.burger .line3 {
    transform-origin: 0 100%;
    transition: transform 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .container {
        max-width: 100%;
    }
}

.sub_Menu>li:last-child {
    row-gap: 10px;
}

@media (max-width: 767px) {
    .sub_Menu>li:last-child ul li:last-child {
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .headerNav .wrapper .menu_Nav li span:before {
        background-image: unset;
    }
}

.logo {
    margin-top: 10px;
}

.logo img {
    max-height: 60px;
}

.sidebar-contact .toggle {
    top: 280px !important;
}

/* end navbar */

/* login Pop */
#loginas .modal-content {
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #204e9d url("../../../front/icons/bg_form.png") bottom repeat-x;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

#loginas .modal-header {
    border-bottom: 6px solid #204e9d;
    padding: 15px;
    /* background-color: #007bff; */
    color: rgb(51, 51, 51) !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    /* background: url(); */
    /*box-shadow: rgb(52 79 153 / 66%) 0px -50px 36px -28px inset;*/
}

#loginas .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

#loginas .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
}

#loginas .btn-close:hover {
    color: #e1e1e1;
}

#loginas .modal-body {
    padding: 20px;
}

#loginas .modal-body p {
    font-size: 1rem;
    color: #555;
}

.btn-custom {
    display: block;
    padding: 12px 24px;
    margin: 10px auto;
    font-size: 1rem;
    font-weight: 500;
    color: #fff !important;
    background-color: #204e9d;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-custom:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-custom:active {
    background-color: #004085;
    transform: translateY(0);
}

/* end login pop */

/* offcanvas start */
.offcanvas.offcanvas-end {
    width: 26em;
}

.offcanvas-body {
    font-family: Arial, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    /* width: 40px; */
    margin-right: 10px;
}

.logo h2 {
    margin: 0;
    font-size: 1.5rem;
}

.offcanvas-body nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
}

.offcanvas-body nav ul li {
    /* margin: 10px 0; */
    cursor: pointer;
    font-size: 1rem;
    padding: 10px;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #007bff;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.contact-info .contact-item img {
    width: 20px;
    margin-right: 10px;
}

.phone-numbers p,
.email,
address {
    margin: 5px 0;
    display: flex;
    align-items: center;
    padding: 10px;
}

.phone-numbers p img,
.email img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.app-links {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.app-links img {
    width: 120px;
}

.follow-us h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #204e9d;
    text-align: center;
}

.follow-us .social-icons {
    display: flex;
    justify-content: center;
}

.social-icons img {
    width: 30px;
    margin: 0 5px;
}

address {
    margin-top: 20px;
    font-style: normal;
    font-size: 0.8em;
}

.privacy {
    margin-top: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.privacy i {
    margin-right: 5px;
}

/* offcanvas end */

.make-list,
.model-list,
.variant-list,
.rto-list,
.fuel-list {
    height: 300px;
    flex-direction: column;
}

/* Quotation FOrm */
.make-list ul,
.model-list ul,
.variant-list ul,
.rto-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: 300px;
    overflow-y: auto;
    /* padding: 10px; */
    /*margin: 0 -10px 20px;*/
}

.fuel-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.make-list>ul>li,
.model-list>ul>li,
.fuel-list>ul>li {
    width: 23%;
    height: 45%;
    text-align: center;
    padding: 0 5px;
}

.variant-list>ul>li {
    width: 23%;
    height: 39%;
    text-align: center;
    padding: 0 10px;
}

.rto-list>ul>li {
    width: 23%;
    height: 35%;
    text-align: center;
    padding: 0 10px;
}

.model-list>ul>li {
    width: 23%;
    height: 25%;
    text-align: center;
    padding: 0 10px;
}

/* .make-list>ul>li:last-child,
.model-list>ul>li:last-child,
.variant-list>ul>li:last-child,
.rto-list>ul>li:last-child,
.fuel-list>ul>li:last-child {
    width: 100%;
} */

.make-list>ul>li>a,
.model-list>ul>li>a,
.variant-list>ul>li>a,
.rto-list>ul>li>a,
.fuel-list>ul>li>a {
    display: block;
    border: 2px solid #2a55a0;;
    color: black;
    margin-bottom: 10px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    /* z-index: 1; */
    border-radius: 6px;
    overflow: hidden;
    word-wrap: break-word;
    white-space: normal;
}

.text-truncate {
    white-space: wrap;
}

.make-list>ul>li>a:hover,
.model-list>ul>li>a:hover,
.variant-list>ul>li>a:hover,
.rto-list>ul>li>a:hover,
.fuel-list>ul>li>a:hover {
    background-color: #204e9d;
    color: white !important;
    border: 2px solid var(--green);

}

.rto-list>ul>li:hover p {
    color: white !important;
    transition: none;
}


.active-details {
    color: white !important;
    background: #204e9d;
}

.active-brand {
    border: 2px solid #204e9d;
    color: #212529 !important;
}
/* .card {
    width: 100%;
    max-width: 500px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
} */

.card-body {
    padding: 20px;
}

/* .card-body h6 {
    font-size: 1.25rem;
    color: #1d1d1d;
    margin-bottom: 1rem;
    text-align: center;
} */

.feature-list-style {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.feature-list li {
    font-size: 0.875rem;
    color: #1d1d1d;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #204e9d;
    margin-right: 8px;
    font-size: 1rem;
}

.feature-img {
    text-align: center;
}

.feature-img img {
    max-width: 100%;
    height: auto;
}

.feature-img:hover img {
    transition: none;
}

.left-div:hover img {
    transform: none;
    transition: none;
}

#test-vl-1 .text-muted {
    font-size: 0.75rem;
}

#test-vl-1 h6,
#test-vl-3 h6,
#test-vl-4 h6,
#test-vl-5 h6,
#test-vl-6 h6 {
    margin-bottom: 0;
    font-size: 1em;
}

.bs-stepper-circle {
    border-radius: 10%;
    width: 3.7rem;
    height: 3.7rem;
}

.bs-stepper .step-trigger {
    gap: 0.5rem;
}

.step-trigger p {
    font-size: 0.7em;
    line-height: 1.2rem;
}

.form-details {
    display: block;
    width: 100%;
    height: 39px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    appearance: none;
    border: 1px solid #207cbf;
    background-clip: padding-box;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.quote-section {
    padding: 0;
}

/* End Quotation FOrm */

.radio-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-wrapper .form-check {
    display: flex;
    align-items: center;
}

.radio-wrapper .form-check-label {
    margin-left: 5px;
}

.radio-wrapper input[type="radio"] {
    display: none;
}

.radio-wrapper input[type="radio"]+label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #007bff;
    cursor: pointer;
}

.radio-wrapper input[type="radio"]:checked+label {
    background-color: #007bff;
    color: white;
}

.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    display: none;
}

.custom-radio span {
    position: relative;
    padding-left: 30px;
}

.custom-radio span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 50%;
    background: white;
}

.custom-radio input[type="radio"]:checked+span::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #007bff;
}

.form-group {
    margin-top: 20px;
}

#idvRangeSlider {
    width: 100%;
    margin-top: 10px;
}

#idvValue {
    display: block;
    margin-top: 10px;
    font-size: 16px;
}

.btn-primary {
    background-color: #204e9d;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

#idvModal .modal-content {
    padding: 0;
}

#idvModal .card-body {
    padding: 0;
}

#idvModal .modal-header {
    background-color: #204e9d29;
    color: white;
    padding: 10px 20px;
}

#idvModal .modal-footer {
    justify-content: center;
}

#idvModal .modal-footer button {
    margin-top: 10px;
}

/* new faq */

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    padding: 25px 0;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after {
    content: "prev";
}

.swiper-button-next {
    right: 10px;
    left: auto;
}

.swiper-button-next:after {
    content: "next";
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.section {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .section {
        padding: 40px 0px !important;
    }
}

.text-primary {
    color: #1f3469 !important;
}

.title-sm span {
    font-size: 14px;
    color: #e4ab00;
    font-weight: 400;
    letter-spacing: 1px;
}

.accordion .accordion-item {
    border: none;
    border-color: rgba(189, 189, 189, 0.301) !important;
}

.accordion .accordion-item .accordion-button {
    color: #1f3469;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.accordion .accordion-item .accordion-button:focus {
    box-shadow: none !important;
}

.accordion .accordion-item .accordion-button::after {
    background-image: url(https://themesdesign.in/techbar/layout/images/add-fill.png);
    opacity: 0.6;
}

.accordion .accordion-body {
    font-size: 15px;
}

.accordion .accordion-collapse {
    background-color: #e9f2fd;
    letter-spacing: 1px;
}

/* end faq */

/* new testimonials */

.client-testimonial__item,
button,
span,
p,
li,
img,
h2,
h5,
h6 {
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.section-space {
    padding-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {

    .organic-car-container .car-new-qf .flow-links,
    body .otherLinks {
        display: block !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-space {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.section-bg-2 {
    background: aliceblue;
}

.title-animation {
    overflow: hidden;
}

.section-3__title-wrapper {
    position: relative;
    z-index: 55;
}

.section-3__subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: rgba(1, 9, 21, 0.8);
    font-weight: 500;
}

.section-3__title {
    font-size: 50px;
    line-height: 60px;
}

.section-3__title span {
    position: relative;
    color: var(--rr-theme-primary);
}

.section-3__title span:after {
    width: 100%;
    height: 7%;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    background: var(--rr-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .section-3__title {
        font-size: 38px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .organic-car-container .hero-widget__form-wrapper__renew-block {
        display: block !important;
        text-align: center;
    }

    body .otherLinks {
        margin-bottom: 20px;
    }

    .section-3__title {
        font-size: 30px;
        line-height: 42px;
    }
}

@media (max-width: 450px) {
    .section-3__title {
        font-size: 27px;
        line-height: 37px;
    }
}

.clip-t-b {
    z-index: 10;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-animation: clip-t-b 1s;
    animation: clip-t-b 1s;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.client-testimonial__based-review {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: rgba(1, 9, 21, 0.8);
    background: #fff;
    -webkit-box-shadow: 0px 1px 2px rgba(29, 29, 29, 0.14);
    box-shadow: 0px 1px 2px rgba(29, 29, 29, 0.14);
    border-radius: 50px;
    padding: 6px 21.5px;
}

.client-testimonial__item {
    padding: 42px 50px 55px 40px;
    border: 1px solid rgba(1, 9, 21, 0.1);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .client-testimonial__item {
        padding: 35px 40px;
    }
}

.client-testimonial__item-author {
    gap: 14px;
}

.client-testimonial__item-author-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    overflow: hidden;
    border-radius: 500px;
}

.client-testimonial__item-author-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.client-testimonial__item-author-title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #000;
}

.client-testimonial__item-author-date {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 0;
    color: rgba(1, 9, 21, 0.6);
}

.client-testimonial__item-header {
    gap: 30px;
}

.client-testimonial__item-rating {
    gap: 4.5px;
    list-style: none;
}

.client-testimonial__item p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #000;
    opacity: 0.6;
}

.client-testimonial__item:hover {
    background: #fff;
}

.client-testimonial__slider .swiper-slide-active .client-testimonial__item {
    -webkit-box-shadow: 0px 10px 120px rgba(11, 23, 40, 0.2);
    box-shadow: 0px 10px 120px rgba(11, 23, 40, 0.2);
    background: #fff;
}

.client-testimonial__slider__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.client-testimonial__slider__arrow-prev,
.client-testimonial__slider__arrow-next {
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    width: 50px;
    border-radius: 500px;
    height: 50px;
    border: 1px solid rgba(1, 9, 21, 0.1);
}

.client-testimonial__slider__arrow-prev:hover,
.client-testimonial__slider__arrow-prev:focus,
.client-testimonial__slider__arrow-next:hover,
.client-testimonial__slider__arrow-next:focus {
    background: var(--rr-theme-primary);
    color: #fff;
}

.mb-minus-120 {
    margin-bottom: -120px;
}

.mt-minus-120 {
    margin-top: -120px;
}

/* Base styling for the tooltip container */
.tooltip-content {
    display: none;
    padding: 10px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 5px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    max-width: 300px;
    position: absolute;
    z-index: 1000;
}

/* Tooltip button styling */
.info-btn {
    background: #434343;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #0163ea;
    /* --- Pijl kleur --- */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black;
    /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #0163ea;
    /* --- Lijn progres kleur --- */
    stroke-width: 6;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Blogs */

.th-slider.has-shadow {
    padding-left: 12px;
    padding-right: 12px;
    margin: -25px -12px;
}

.th-slider.has-shadow .swiper-wrapper {
    padding: 25px 0;
}

.slider-area {
    position: relative;
}

.slider-arrow {
    display: inline-block;
    padding: 0;
    background-color: #fff;
    box-shadow: 0px 0px 30px 10px rgba(206, 206, 206, 0.55);
    border-radius: 30px;
    color: var(--body-color);
    border: 1px solid transparent;
    position: absolute;
    top: 50%;
    left: var(--pos-x, -120px);
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    line-height: var(--icon-size, 60px);
    font-size: var(--icon-font-size, 20px);
    margin-top: calc(var(--icon-size, 0px) / -2);
    z-index: 3;
    border-radius: 50%;
}

@media (max-width: 1500px) {
    .slider-arrow {
        display: none !important;
    }
}

.slider-arrow.style3 {
    background-color: #204e9d;
    color: #fff;
    border-color: #204e9d;
    box-shadow: none;
}

.slider-arrow.style3:hover {
    background-color: #000;
    border-color: #000;
}

.slider-arrow.slider-next {
    right: var(--pos-x, -120px);
    left: auto;
}

.slider-arrow:hover {
    background-color: #204e9d;
    color: #fff;
    border-color: #204e9d;
}

.arrow-wrap {
    position: relative;
}

.arrow-wrap .slider-arrow {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
}

@media (max-width: 1299px) {
    .arrow-wrap .slider-arrow {
        display: none;
    }
}

.arrow-wrap:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 1500px) {
    .slider-arrow {
        --arrow-horizontal: -20px;
        --pos-x: -70px;
    }
}

@media (max-width: 1399px) {
    .slider-arrow {
        --arrow-horizontal: 40px;
        --pos-x: -17px;
    }
}

@media (max-width: 991px) {
    .slider-arrow {
        --icon-size: 40px;
        line-height: 38px;
        margin-right: 40px;
        font-size: 14px;
    }

    .slider-arrow.slider-next {
        margin-right: 0;
        margin-left: 40px;
    }
}

.line-btn {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: -1px;
    text-transform: capitalize;
    color: #000;
}

.line-btn i {
    margin-left: 5px;
    font-size: 0.9rem;
}

.line-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.line-btn:hover {
    color: #204e9d;
}

.line-btn:hover::before {
    background-color: #204e9d;
    width: 45px;
}

.sec-title {
    margin-bottom: calc(var(--section-title-space) - 10px);
    margin-top: -0.32em;
    text-transform: capitalize;
}

.sub-title {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #204e9d;
    margin-bottom: 30px;
    text-transform: capitalize;
    border-radius: 30px;
    padding: 3px 20px;
    display: inline-block;
    margin-top: 0;
}

.sub-title:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #204e9d;
    opacity: 0.1;
    border-radius: 30px;
    z-index: -1;
}

.sec-text2 {
    color: #000;
}

.sub-title.sub-title3 {
    display: inline-block;
    padding: 0 20px;
    color: #000;
}

.sub-title.sub-title3:before,
.sub-title.sub-title3:after {
    position: absolute;
    content: "";
    -webkit-mask-image: url("https://html.themeholy.com/sassa/demo/assets/img/icon/dot.svg");
    background-image: url("https://html.themeholy.com/sassa/demo/assets/img/icon/dot.svg");
    background-color: #204e9d;
    position: absolute;
    top: 6px;
    left: 0px;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.sub-title.sub-title3:before {
    border-radius: 0;
}

.sub-title.sub-title3:after {
    left: unset;
    right: 0px;
}

.box-title {
    font-size: 20px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -0.32em;
}

.box-title a {
    color: inherit;
}

.box-title a:hover {
    color: #204e9d;
}

.title-area {
    margin-bottom: calc(var(--section-title-space) - 10px);
    position: relative;
    z-index: 2;
}

.title-area .sec-title {
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .hero-widget__form-wrapper {
        max-width: 100%;
        flex-basis: unset;
    }

    .hero-widget__inner-wrapper {
        width: 100%;
    }

    .sub-title {
        margin-bottom: 20px;
    }

    .title-area,
    .sec-title {
        --section-title-space: 60px;
    }
}

@media (max-width: 991px) {
    .car-flow-fastlane {
        width: 100%;
    }

    .title-area,
    .sec-title {
        --section-title-space: 50px;
    }
}

#blog-sec {
    padding: 50px 0 50px 0;
}

.bg-white {
    background-color: #fff !important;
}

.blog-meta {
    display: block;
}

.blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
    position: relative;
    margin-right: 20px;
}

.blog-meta a i {
    margin-right: 6px;
    color: #204e9d;
}

.blog-meta a:last-child {
    margin-right: 0;
}

.blog-meta a:hover {
    color: #204e9d;
}

@media (max-width: 1199px) {
    .blog-meta a {
        margin-right: 6px;
        padding-right: 15px;
    }
}

.global-img {
    position: relative;
    min-width: 50%;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.global-img:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: skewX(25deg);
    -ms-transform: skewX(25deg);
    transform: skewX(25deg);
    z-index: 2;
}

.global-img img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: 1.3s all ease;
    transition: 1.3s all ease;
}

@media (max-width: 991px) {
    .global-img {
        margin-bottom: 30px;
    }
}

.global-img:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.global-img:hover:before {
    -webkit-animation: shine 1.9s;
    animation: shine 1.9s;
}

.blog-grid .box-img {
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: 0 4px 8px 0 #0163ea21, 0 6px 20px 0 #0163ea12;
}

.blog-grid .box-img img {
    border-radius: 15px;
}

.blog-grid .blog-meta {
    margin-bottom: 15px;
}

.blog-grid .blog-meta i {
    color: var(--body-color);
}

.blog-grid .line-btn {
    font-size: 16px;
}

.space {
    padding-top: var(--section-space);
}

.space {
    padding-bottom: var(--section-space);
}

@media (max-width: 991px) {
    .space {
        padding-top: var(--section-space-mobile);
    }

    .space {
        padding-bottom: var(--section-space-mobile);
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* End Blogs */

.step-desc {
    font-size: 0.8rem;
    color: #000;
    margin-top: 40px;
}

/* footer css */
.th-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 34px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 50%;
}

.th-social a:hover {
    padding-left: 0;
}

.th-social a:last-child {
    margin-right: 0;
}

.th-social a:hover {
    background-color: #204e9d;
    color: #fff;
}

.icon-masking {
    position: relative;
    display: inline-block;
    height: auto;
    width: auto;
}

.icon-masking .mask-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    mix-blend-mode: hue;
    background: #d5effb;
    top: 0;
}

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

.widget_nav_menu .menu {
    margin: 0 0 -10px 0;
}

.widget_nav_menu a {
    display: block;
    background-color: #fff;
    border: 1px solid var(--smoke-color);
    margin: 0 0 10px 0;
    padding: 16px 45px 19px 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.313;
    color: #000;
    border-radius: 100px;
}

.widget_nav_menu a::before {
    content: "\f061";
    position: absolute;
    right: 25px;
    top: 17px;
    font-family: var(--icon-font);
    font-weight: 600;
    color: #d5effb;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.widget_nav_menu li {
    display: block;
    position: relative;
}

.widget_nav_menu a:hover {
    color: #fff;
    background-color: #d5effb;
}

.widget_nav_menu a:hover:before {
    color: #fff;
}

.widget_nav_menu a {
    padding-right: 20px;
}

.widget {
    padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
    background-color: var(--smoke-color2);
    margin-bottom: 40px;
    position: relative;
    border-radius: 30px;
}

.widget .th-social a {
    box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06);
}

.widget_title {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 28px 0;
}

@media (max-width: 1199px) {
    .widget {
        --widget-padding-y: 30px;
        --widget-padding-x: 30px;
    }

    .widget_title {
        font-size: 22px;
        margin: -0.12em 0 24px 0;
    }
}

@media (max-width: 991px) {
    .widget {
        --widget-padding-y: 40px;
        --widget-padding-x: 40px;
    }
}

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

.footer-widget {
    margin-bottom: 50px;
}

.footer-widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.footer-widget .widget_title {
    color: #000;
    margin: -0.12em 0 15px 0;
    /*padding:0 0 17px 0;*/
}

.footer-widget .widget_title:before,
.footer-widget .widget_title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background: #d5effb;
}

.footer-widget .widget_title:after {
    width: 16px;
    border: 2px solid var(--smoke-color3);
    height: 10px;
    background: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite;
}

.footer-widget.widget_nav_menu ul {
    margin-top: -5px;
}

.footer-widget.widget_nav_menu .menu {
    margin-bottom: -5px;
}

.footer-widget.widget_nav_menu a {
    font-size: 14px;
    font-weight: 400;
    padding: 0px;
    font-family: var(--body-font);
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
    border: none;
    position: relative;
}

.footer-widget.widget_nav_menu a:before {
    display: none;
}

.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: #000000;
}

.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0;
}

.th-widget-about .about-logo {
    position: relative;
    top: -30px;
    margin-bottom: -30px;
}

.th-widget-about .about-text {
    margin-bottom: 20px;
    margin-top: -0.5em;
    color: #000;
    font-size: 0.8rem;
}

@media (max-width: 1199px) {
    .footer-widget.widget_nav_menu a {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .footer-widget .widget_title {
        margin-bottom: 35px;
    }

    .th-widget-about .about-text {
        margin-bottom: 20px;
    }
}

.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    position: relative;
    /* z-index: 2; */
    overflow: hidden;
}

.widget-area {
    padding-top: var(--section-space);
    padding-bottom: 30px;
}

.copyright-wrap {
    border-top: 2px solid #fff;
    padding: 25px 0;
    background-size: 100% auto;
}

.copyright-text {
    margin: 0;
}

.copyright-text a {
    color: #d5effb;
}

.copyright-text a:hover {
    color: #000;
}

@media (max-width: 991px) {
    .footer-wrapper .widget-area {
        padding-top: var(--section-space-mobile);
        padding-bottom: 30px;
    }

    .copyright-text {
        text-align: center;
    }
}

.footer-layout3 {
    background-color: #d5effb;
}

.footer-layout3 .footer-widget .widget_title:after {
    border: 2px solid #d5effb;
}

.footer-layout3 .copyright-wrap {
    position: relative;
    border: none;
    padding: 25px 0;
    background-color: #204e9d;
    /* z-index: 2; */
}

.footer-layout3 .copyright-wrap .copyright-text {
    color: #fff;
}

/*! CSS Used keyframes */
@-webkit-keyframes footerLine {
    0% {
        left: 40px;
    }

    50% {
        left: 0;
    }

    100% {
        left: 40px;
    }
}

@keyframes footerLine {
    0% {
        left: 40px;
    }

    50% {
        left: 0;
    }

    100% {
        left: 40px;
    }
}

/* end footer */

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none;
    color: #212529;
}

.owl-item .item .item-img img {
    height: 150px;
}

.footer-content {
    display: flex;
    align-items: center;
    padding: 40px 0;
    /* Keeps the vertical spacing */
}

.footer-logo-card {
    max-width: 250px;
    /* Increases the card width to accommodate larger image */
    margin-bottom: 20px;
    border: none;
    /* Keeps the card border removed */
    background-color: transparent;
}

.footer-logo-card .card-body {
    padding: 20px;
    /* Adds internal padding for the card */
    background-color: #f8f9fa;
    /* Light background for visibility */
    border-radius: 8px;
    /* Softens the edges */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: auto;
}

.lics_test {
    padding-left: 20px;
    /* Keeps space between the image and the text */
}

.lics_test p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #333;
    /* Preferred font color */
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .footer-logo-card {
        margin-bottom: 15px;
    }

    .lics_test {
        padding-left: 0;
    }
}

.sec-title {
    position: relative;
    display: block;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 16px;
}

.sec-title p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: #5e5e5e;
}

.tabs-box .tab {
    position: relative;
    display: none;
}

.tabs-box .tab.active-tab {
    display: block;
}

.tabs-box .tab {
    transform: scale(0) translateY(0px);
}

.tabs-box .tab.active-tab {
    transform: scale(1) translateY(0px);
}

.faq-section {
    position: relative;
    display: block;
}

.faq-section .tabs-box .tab {
    position: relative;
    display: none;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.faq-section .tabs-box .tab.active-tab {
    display: block;
}

.faq-section .tabs-box .tab {
    transform: scale(0.9, 0.9) translateY(0px);
}

.faq-section .tabs-box .tab.active-tab {
    transform: scale(1) translateY(0px);
}

.faq-section .sec-title {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.faq-section .tab-btn-box li {
    position: relative;
    display: inline-block;
    max-width: 220px;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    text-align: center;
    padding: 10px 15px 10px 10px;
    margin-bottom: 15px;
    transition: all 500ms ease;
    cursor: pointer;
}

.faq-section .tab-btn-box li.active-btn,
.faq-section .tab-btn-box li:hover {
    /* box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1); */
    border: 1px solid #fff;
    box-shadow: 0px 0px 45px rgba(56, 152, 226, 0.3);
}

.faq-section .tab-btn-box li .icon-box {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    border: 1px solid #cceede;
    border-radius: 50%;
    background: #e6f7ef;
    color: #01ac5c;
    margin-bottom: 16px;
    transition: all 500ms ease;
}

.faq-section .tab-btn-box li:last-child {
    margin-bottom: 0px;
}

.faq-section .tab-btn-box li.active-btn .icon-box,
.faq-section .tab-btn-box li:hover .icon-box {
    background: #01ac5c;
    border-color: #01ac5c;
    color: #fff;
}

.faq-section .tab-btn-box li h5 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #2e2e2e;
}

.accordion-box {
    position: relative;
    height: 518px;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    /*box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0px 0px 45px rgba(56, 152, 226, 0.3);
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn h5 {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2e2e2e;
    padding: 20px 60px 21px 25px;
    cursor: pointer;
    transition: all 500ms ease;
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding: 0px 100px 27px 25px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content .text {
    position: relative;
    display: block;
    color: #818181;
    font-size: 16px;
    line-height: 28px;
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 20px;
    color: #2e2e2e;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: #2e2e2e;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
    content: "\f106";
}

/* .faq-section.faq-page-2{padding:200px 0px 150px 0px;} */
.faq-section.faq-page-2 .tab-btn-box li .icon-box {
    background: #cfd1d530;
    border-color: #ffeadd;
    color: #204e9d;
}

.faq-section.faq-page-2 .tab-btn-box li.active-btn .icon-box,
.faq-section.faq-page-2 .tab-btn-box li:hover .icon-box {
    background: linear-gradient(-90deg,
            rgba(6, 182, 203, 1) 0%,
            rgba(37, 59, 149, 1) 100%);
    color: #fff;
}

/*! CSS Used from: http://azim.commonsupport.com/Cubart/css/responsive.css */
@media only screen and (max-width: 991px) {
    .faq-section .tab-btn-box {
        margin-bottom: 50px;
    }

    .faq-section .tab-btn-box li {
        margin-bottom: 0px;
    }

    .faq-section.faq-page-2 {
        padding-top: 120px;
    }

    .accordion-box {
        height: auto;
    }

    .accordion-box .block .acc-content {
        padding-right: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-box .block .acc-content {
        padding-right: 50px;
    }

    .faq-section .tab-btn-box li {
        display: block;
        margin: 0 auto;
    }

    .faq-section.faq-page-2 {
        padding: 65px 0px 70px 0px;
    }
}

@media only screen and (max-width: 499px) {
    .sec-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.acc-content .content {
    display: block;
}

/* floating btn */
/* .section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #abc6e3;
  overflow: hidden;
} */

.section-wrapper .floating-action-button {
    position: fixed;
    /* Change from absolute to fixed */
    right: 60px;
    /* Adjust as needed */
    bottom: 100px;
    /* Adjust as needed */
    width: 60px;
    height: 60px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    /* transform: rotate(45deg); */
}

.section-wrapper .floating-action-button .share-btn {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #e91e63;
    border-radius: 10px;
    box-shadow: 0px 2px 17px -1px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.section-wrapper .floating-action-button .share-btn #share-icon {
    display: block;
}

.section-wrapper .floating-action-button .share-btn #close-icon {
    display: none;
}

.section-wrapper .floating-action-button .share-btn.active #share-icon {
    display: none;
}

.section-wrapper .floating-action-button .share-btn.active #close-icon {
    display: block;
}

.section-wrapper .floating-action-button ul {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.section-wrapper .floating-action-button ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f237506e;
    color: black;
    list-style-type: none;
    transform: scale(0.95);
    transition: 0.5s;
    border-radius: 10px;
    font-size: 1.6rem;
}

.section-wrapper .floating-action-button ul.active li:hover {
    background-color: #ffcdab;
}

.section-wrapper .floating-action-button ul.active li:nth-child(1) {
    top: 100%;
    left: 100%;
    transition-delay: 0s;
}

.section-wrapper .floating-action-button ul.active li:nth-child(2) {
    top: 100%;
    left: 0%;
    transition-delay: 0.2s;
}

.section-wrapper .floating-action-button ul.active li:nth-child(3) {
    top: 100%;
    left: -100%;
    transition-delay: 0.4s;
}

.section-wrapper .floating-action-button ul.active li:nth-child(4) {
    top: 0%;
    left: -100%;
    transition-delay: 0.6s;
}

.section-wrapper .floating-action-button ul.active li:nth-child(5) {
    top: -100%;
    left: -100%;
    transition-delay: 0.8s;
}

.section-wrapper ion-icon {
    font-size: 18px;
    transform: rotate(-45deg);
}

.hide {
    display: none;
}

.show {
    display: block;
}

/* contact Form */
.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 48px; */
}

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
}

.formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.formbold-input-flex>div {
    width: 50%;
}

.formbold-input-radio-wrapper {
    margin-bottom: 28px;
}

.formbold-radio-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.formbold-radio-label {
    font-size: 14px;
    line-height: 24px;
    color: #07074d;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.formbold-input-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.formbold-radio-checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1px solid #dde3ec;
    border-radius: 50%;
}

.formbold-radio-label .formbold-input-radio:checked~.formbold-radio-checkmark {
    background-color: #6a64f1;
}

.formbold-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.formbold-radio-label .formbold-input-radio:checked~.formbold-radio-checkmark:after {
    display: block;
}

.formbold-radio-label .formbold-radio-checkmark:after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.formbold-form-input {
    width: 100%;
    padding: 5px 5px;
    border-radius: 5px;
    border: 1px solid #dde3ec;
    background: #ffffff;
    font-weight: 500;
    font-size: 14px;
    color: #07074d;
    outline: none;
    resize: none;
}

.formbold-form-input::placeholder {
    color: #536387;
}

.formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-form-label {
    color: #07074d;
    font-size: 13px;
    /* line-height: 24px; */
    display: block;
    margin-bottom: 0;
}

.formbold-form-select {
    width: 100%;
    padding: 6px 6px;
    border-radius: 5px;
    border: 1px solid #dde3ec;
    background: #ffffff;
    font-size: 14px;
    color: #536387;
    outline: none;
    resize: none;
}

.formbold-btn {
    text-align: center;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    padding: 14px 25px;
    border: none;
    font-weight: 500;
    background-color: #6a64f1;
    color: white;
    cursor: pointer;
    margin-top: 25px;
}

.select-opt {
    margin-bottom: 10px;
}

.formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.header-img img {
    width: 100%;
}

/* .about-info p {
  color: #000;
  font-size: 15px;
}
.about-info p a {
  color: #000;
} */
.about-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Space between each line */
}

.about-info p {
    display: flex;
    align-items: center;
    font-size: 14px;
    /* Adjust font size as needed */
    color: #000;
    /* Your preferred color */
}

.about-info i {
    margin-right: 8px;
    /* Space between the icon and text */
    font-size: 18px;
    /* Adjust icon size */
    color: #555;
    /* Icon color */
}

.about-info a {
    color: #000;
    /* Link color */
    text-decoration: none;
}

.about-info a:hover {
    color: #000;
}

.shape-mockup-wrap {
    position: relative;
}

.shape-mockup {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.th-social a {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 40px;
    background-color: var(--smoke-color);
    color: var(--body-color);
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 99px;
}

.th-social a:last-child {
    margin-right: 0;
}

.th-social a:hover {
    background-color: #204e9d;
    color: #fff;
}

.box-text {
    margin-bottom: -0.4em;
}

.spin {
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

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

.widget_nav_menu a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 17px 32px 17px 0;
    font-size: 16px;
    line-height: 1.313;
    color: var(--title-color);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-bottom: 1px solid #000;
}

.widget_nav_menu a::before {
    content: "\f061";
    position: absolute;
    right: 0;
    top: 17px;
    font-family: var(--icon-font);
    font-weight: 600;
    color: inherit;
}

.widget_nav_menu li {
    display: block;
    position: relative;
}

.widget_nav_menu .menu>li:last-child>a {
    border-bottom: none;
}

.widget_nav_menu a:hover {
    color: #204e9d;
    box-shadow: none;
}

.widget_nav_menu a {
    padding-right: 20px;
}

.widget {
    padding: var(--widget-padding-y, 32px) var(--widget-padding-x, 32px);
    background-color: transparent;
    margin-bottom: 32px;
    position: relative;
    border-radius: 8px;
    border: 1px solid #000;
}

.widget .th-social a {
    box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}

.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    padding-bottom: 20px;
    margin: -0.12em 0 32px 0;
}

.widget_title:after,
.widget_title:before {
    content: "";
    height: 3px;
    width: 100%;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
}

.widget_title:after {
    background-color: #204e9d;
    width: 50px;
}

@media (max-width: 1199px) {
    .widget {
        --widget-padding-y: 30px;
        --widget-padding-x: 30px;
    }

    .widget_title {
        font-size: 22px;
        margin: -0.12em 0 28px 0;
    }
}

@media (max-width: 991px) {
    .widget {
        --widget-padding-y: 40px;
        --widget-padding-x: 40px;
    }
}

@media (max-width: 767px) {
    .widget {
        padding: 20px;
        border-radius: 10px;
    }
}

.footer-widget {
    margin-bottom: 50px;
}

.footer-widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.footer-widget .widget_title {
    max-width: 270px;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: -0.09em 0 32px 0;
    padding: 0;
}

.footer-widget .widget_title:after,
.footer-widget .widget_title:before {
    display: none;
}

.footer-widget .widget_title img {
    margin: -6px 3px 0 0;
}

.footer-widget.widget_nav_menu ul {
    margin-top: -5px;
}

.footer-widget.widget_nav_menu .menu {
    margin-bottom: -5px;
}

.footer-widget.widget_nav_menu a {
    font-weight: 400;
    padding: 0 0 0 16px;
    margin-bottom: 5px;
    font-family: var(--body-font);
    color: #000;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border: none !important;
    box-shadow: none;
    position: relative;
}

.footer-widget.widget_nav_menu a:before {
    content: "\f054";
    font-weight: 600;
    left: 0;
    top: 2px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    font-size: 0.9em;
    background-color: transparent;
    border: none;
    color: inherit;
}

.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: #204e9d;
}

.footer-widget.widget_nav_menu a:hover:before {
    color: #204e9d;
}

.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0;
}

.about-logo {
    margin-bottom: 15px;
}

.th-widget-about {
    max-width: 260px;
}

/* .th-widget-about .about-logo{margin-bottom:32px;} */
.th-widget-about .about-text {
    margin-bottom: 26px;
    margin-top: -0.4em;
}

@media (max-width: 1199px) {
    .footer-widget.widget_nav_menu a {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .footer-widget .widget_title {
        margin-bottom: 35px;
    }
}

.footer-wrapper {
    --th-border-color: rgba(255, 255, 255, 0.2);
    --body-color: #fff;
    position: relative;
    background-color: #101018;
    overflow: hidden;
}

.footer-wrapper .th-social a {
    --icon-size: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #000;
}

.footer-wrapper .th-social a:hover {
    background-color: #204e9d;
    color: #fff;
}

.widget-area {
    padding-top: 100px;
    padding-bottom: 48px;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-size: 14px;
    font-family: var(--body-font);
    display: inline-block;
    padding-right: 25px;
    margin-right: 10px;
    position: relative;
}

@media (max-width: 575px) {
    .footer-links li {
        padding-right: 20px;
        margin-right: 5px;
    }
}

.footer-links li:after {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 10px;
    background-color: #204e9d;
    right: 0;
}

.footer-links li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.footer-links li:last-child:after {
    display: none;
}

.footer-links a {
    font-family: inherit;
    color: #000;
}

.footer-links a:hover {
    color: #204e9d;
}

.copyright-wrap {
    padding: 22px 0;
    background-size: 100% auto;
    border-top: 1px solid #000;
}

.copyright-wrap .copyright-text {
    font-size: 14px;
    color: #fff;
}

.copyright-wrap .copyright-text a {
    color: #204e9d;
}

.copyright-wrap .copyright-text a:hover {
    color: #fff;
}

.copyright-text {
    margin: 0;
}

.copyright-text a {
    color: #204e9d;
}

.copyright-text a:hover {
    color: #fff;
}

.th-widget-contact {
    max-width: 265px;
}

@media (max-width: 991px) {
    .footer-wrapper .widget-area {
        padding-top: var(--section-space-mobile);
        padding-bottom: 30px;
    }

    .copyright-text {
        text-align: center;
    }
}

.th-widget-contact {
    max-width: 280px;
}

.info-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box .box-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    line-height: 36px;
    font-size: 20px;
    border: 1px solid 00000073;
    color: #204e9d;
    border-radius: 8px;
    text-align: center;
    margin-right: 10px;
}

.info-box .box-text {
    color: #000;
    margin-top: -0.45em;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    line-height: 1.5;
    font-size: 0.8rem;
}

.info-box .box-link {
    display: inline-block;
    color: #000;
}

.info-box .box-link:hover {
    color: #204e9d;
}

.hammer-ani1 img {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation: hammer1 1.5s cubic-bezier(0.38, -0.07, 0.58, 1) infinite;
    animation: hammer1 1.5s cubic-bezier(0.38, -0.07, 0.58, 1) infinite;
}

.footer-layout4 {
    --th-border-color: rgba(255, 255, 255, 0.2);
    background-color: #cfe5fc;
}

.footer-layout4 .th-social a:not(:hover) {
    background-color: #ffffff;
}

.footer-layout4 .widget-area {
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-layout4 .widget-area .divider {
    width: 1px;
    background-color: #00000012;
    padding: 0;
}

.footer-layout4 .footer-widget {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .footer-layout4 .footer-widget {
        margin-bottom: 50px;
    }

    .footer-layout4 .widget-area {
        padding-bottom: 30px;
    }

    .footer-layout4 .widget-area .divider {
        display: none;
    }
}

@media (max-width: 1199px) {
    .sec-shape1 {
        max-width: 80px;
    }
}

.quote-contain .container {
    max-width: 1496px;
}

.toggle-switch {
    position: relative;
    width: 80px;
    height: 34px;
    display: inline-block;
    margin-left: 10px;
}

.toggle-switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "No";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

input:checked+.slider {
    background-color: #4caf50;
}

input:checked+.slider:before {
    transform: translateX(46px);
    content: "Yes";
}

.info {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 14px;
    color: #555;
}

.info-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.info span {
    font-size: 0.9em;
}

.submit-button {
    background-color: #204e9d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s;
}

#editDetaails label {
    margin-bottom: 0;
    font-size: 13px;
    color: #000;
}

#editDetaails .modal-body {
    padding: 0.4rem 0.9rem !important;
}

#editDetaails .modal-body .form-control {
    padding: 0.275rem 0.55rem;
    margin-bottom: 5px !important;
    margin-top: 5px !important;
}

#editDetaails .modal-header {
    padding: 0.8rem 0.8rem;
}

#editDetaails .modal-body .form-group {
    margin-top: 0;
    margin-bottom: 0;
}

.insurance-policy-section .insurance-policy-description-section .insurance-policy-description-text {
    margin-bottom: 30px;
    color: #000;
}

.insurance-policy-section .insurance-policy-description-section .insurance-policy-description-text:last-child {
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .insurance-policy-section .insurance-policy-description-section .insurance-policy-description-text {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .insurance-policy-section .insurance-policy-description-section .insurance-policy-description-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 420px) {
    .insurance-policy-section .insurance-policy-description-section .insurance-policy-description-text {
        font-size: 15px;
    }
}

.tblbkg {
    background: #fff;
    -webkit-box-shadow: 0px 4px 40px rgb(0 0 0 / 10%);
    box-shadow: 0px 4px 40px rgb(0 0 0 / 10%);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.tblbkg table {
    width: 100%;
}

.tblbkg table th,
.tblbkg table td {
    font-size: 0.9rem;
    padding: 15px;
}

.tblbkg table tr:nth-child(odd) {
    background: #d5effb40;
}

ul.list_type2 {
    padding: 0 0 0 40px;
    list-style: none;
}

ul.list_type1 li,
.list_type2 li {
    position: relative;
}

.list_type2:last-child {
    padding-bottom: 0;
    margin: 0;
}

.list_type2 li:before {
    content: "";
    display: inline-block;
    background: url(../../../front/icons/checklist.png) no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -25px;
    top: 3px;
}

.quote-page {
    background-color: #f6f6f6;
}

.btn_filter {
    font-weight: 600;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 4px;
    color: #3d3d3d;
    z-index: 99;
    background: #fff;
}

.btn_filter:before {
    content: "";
    height: 15px;
    width: 15px;
    background-size: 100%;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(https://www.smcinsurance.com/static/media/filter-solid.7a218d4b.svg);
    filter: var(--AllImages);
}

.quotesDetails {
    position: relative;
}

::placeholder {
    text-transform: capitalize;
}

.quotesDetailsIn h3,
.quotesDetailsIn span {
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.ASK_QDetailsIn h3,
.ASK_QDetailsIn span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: #3d3d3d;
    text-transform: capitalize;
}

.ASK_QDetailsIn h3 {
    font-weight: 700;
    display: block;
    margin: 0;
}

.quotesDetailsIn span strong {
    color: #444;
    font-weight: 500;
}

.quotesDetailsIn span strong {
    cursor: pointer;
}

.quotesDetailsIn img {
    width: 25%;
}

.quotesDetailsIn .fa-chevron-down {
    font-size: 12px;
    line-height: 0;
}

.SMCquotesDetailsIn .quoteP {
    margin: 0;
    color: #999;
    font-size: 10px;
    position: absolute;
    top: 5px;
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1rem;
}

.SMCquotesDetailsIn {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px 10px 5px;
    position: relative;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.058823529411764705);
    height: 40px;
}

.quoteP {
    margin: 0;
}

.quotesDetailsRow {
    margin-top: 10px;
}

.quotesDetailsRow {
    padding: 15px;
    border-radius: 4px;
    background: #fff;
    height: auto;
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.1803921568627451);
    position: relative;
}

.Motor_Cust {
    display: flex;
}

.quotesDetailsInMtrCust {
    display: inline-block;
    border-right: 1px solid #ccc;
}

.quotesDetailsInMtrCust:first-child {
    width: 30%;
}

.quotesDetailsInMtrCust:nth-child(2) {
    width: 45%;
}

.quotesDetailsInMtrCust:nth-child(3) {
    width: 30%;
    border: none;
    padding-right: 0;
}

.quotesDetailsInMtrCust:nth-child(2),
.quotesDetailsInMtrCust:nth-child(3) {
    display: inline-flex;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 0 30px;
}

.quotesDetailsInMtrCust:nth-child(2) .quotesDetailsIn,
.quotesDetailsInMtrCust:nth-child(3) .quotesDetailsIn {
    width: 47%;
    margin: 0;
}

.Motor_Cust .quotesDetailsIn .SMCquotesDetailsIn {
    padding-right: 0;
    width: 100% !important;
}

.Motor_Cust .quotesDetailsIn .cashlessgarage {
    cursor: pointer;
    display: flex;
    width: 100%;
    margin-left: 20px;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    position: relative;
    padding: 15px 10px 0 0;
    border-bottom: 2px solid #ccc;
}

@media (max-width: 768px) {
    .Motor_Cust .quotesDetailsIn .cashlessgarage {
        margin-left: 5px;
    }
}

.Motor_Cust .quotesDetailsIn .cashlessgarage .showGaragesSelected .tagline {
    margin: 0;
    color: #999;
    font-size: 10px;
    position: absolute;
    top: 5px;
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Motor_Cust .quotesDetailsIn .SMCquotesDetailsIn div span {
    display: block;
}

.Motor_Cust .quotesDetailsIn .SMCquotesDetailsIn div span strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    border-bottom: 2px solid #ccc;
}

.Motor_Cust .quotesDetailsIn.typecashless {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 40px;
}

@media (max-width: 768px) {
    .Motor_Cust .quotesDetailsIn.typecashless {
        flex-flow: nowrap !important;
        width: auto !important;
    }
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn {
    width: 47%;
    border: none;
}

@media (max-width: 768px) {
    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn {
        margin-right: 10px;
    }
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn .ChooseIdvOpt {
    display: flex;
    align-items: center;
    justify-content: end;
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV {
    width: 100%;
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV strong label {
    font-weight: 500;
    color: #3d3d3d;
}

.ChooseIdvOpt .chosIDV {
    margin-right: 15px;
    min-width: 75px;
}

.Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn .ChooseIdvOpt .chosIDV:last-child {
    margin-right: 0;
}

.ChooseIdvOpt .chosIDV .MTR_P_T_Box .checkMTR_P_T_Box {
    top: 2px;
}

.QuestionPopupPage {
    position: relative;
}

.EditVehicleDet {
    position: absolute;
    right: 15px;
    top: 0;
    display: flex;
    font-size: 12px;
    color: #204e9d;
    font-weight: 500;
    cursor: pointer;
}

.EditVehicleDet img {
    width: 12px !important;
    margin-right: 5px;
}

.cashlessgarage .filter i {
    padding-right: 5px;
}

.cashlessgarage .filter .initial i {
    font-weight: 100 !important;
    color: grey;
}

.Motor_Cust .SMCquotesDetailsIn {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 10px 0 0;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .container {
        max-width: 100%;
    }

    .quotesDetailsInMtrCust:nth-child(2),
    .quotesDetailsInMtrCust:nth-child(3) {
        padding: 0 10px;
    }

    .quotesDetailsIn h3,
    .quotesDetailsIn span,
    .ASK_QDetailsIn h3,
    .ASK_QDetailsIn span {
        font-size: 11px;
    }

    .quotesDetailsInMtrCust:first-child {
        width: 25%;
    }

    .ChooseIdvOpt .chosIDV {
        margin-right: 6px;
    }

    .ChooseIdvOpt .chosIDV .MTR_P_T_Box {
        font-size: 9px;
        padding-left: 18px;
    }
}

@media (max-width: 768px) {
    .QuestionPopupPage {
        display: none;
    }

    .quotesDetailsIn h3,
    .quotesDetailsIn span {
        font-size: 12px;
    }

    .chosIDV {
        display: flex;
        align-items: center;
        margin: 0 !important;
    }

    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn {
        width: 100%;
        padding: 0;
        height: 19px;
    }

    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV,
    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV strong {
        height: 0;
    }

    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn .ChooseIdvOpt {
        justify-content: start;
    }

    .quotesDetailsInMtrCust:nth-child(3) .quotesDetailsIn {
        display: none;
    }

    .quotesDetailsIn img {
        margin-right: 10px;
    }

    .quotesDetails {
        padding: 0;
        margin: 0;
        position: relative;
    }

    .quotesDetailsIn h3,
    .quotesDetailsIn span {
        line-height: normal;
        margin-right: 0 !important;
    }

    .quotesDetailsIn span {
        float: none;
    }

    .quotesDetailsIn span .fa-chevron-down {
        top: 2px;
    }

    .quotesDetailsIn div p {
        text-align: left;
    }

    .QuestionPopupInnerPage {
        display: none !important;
    }

    .EditVehicleDet {
        font-size: 0 !important;
        right: 7px;
        top: 15px;
    }

    .quotesDetailsRow {
        margin: 0 -12px;
        border-radius: 0;
        padding: 5px 10px;
        background-color: #f4ffec;
    }

    .Motor_Cust {
        display: flex;
        width: 100%;
        overflow: scroll;
        flex-flow: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .quotesDetailsIn.ASK_QDetailsIn span,
    .quotesDetailsIn img {
        display: none;
    }

    .cashlessgarage .filter {
        min-height: 30px;
        border-radius: 5px;
        min-width: 145px;
    }

    .cashlessgarage .filter i {
        font-size: 13px;
    }

    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV strong label {
        font-size: 0;
    }

    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn span.LowIDV strong label span {
        position: absolute;
        top: 5px;
        left: 75px;
        font-size: 10px;
        width: 100px;
    }

    .quotesDetailsInMtrCust:nth-child(2) .quotesDetailsIn {
        width: 160px;
        flex-flow: wrap;
        margin-left: 8px;
    }

    .quotesDetailsInMtrCust:nth-child(2),
    .quotesDetailsInMtrCust:nth-child(3) {
        padding: 0;
        width: auto;
        flex-flow: row-reverse;
    }

    .quotesDetailsInMtrCust:first-child {
        width: auto;
        display: inline-block;
    }

    .quotesDetailsInMtrCust:first-child .quotesDetailsIn {
        width: 140px;
        position: relative;
    }

    div[data-target="#myModalEdit"] {
        display: none;
    }

    .checkMTR_P_T_Box {
        height: 14px !important;
        width: 14px !important;
    }

    .checkMTR_P_T_Box:after {
        top: 3px !important;
        left: 3px !important;
        width: 7px !important;
        height: 7px !important;
    }

    .MTR_P_T_Box .checkMTR_P_T_Box {
        top: 3px !important;
    }

    .MTR_P_T_Box {
        padding-left: 17px;
    }

    .ChooseIdvOpt .chosIDV {
        margin-right: 10px !important;
    }

    .Motor_Cust .quotesDetailsIn .SMCquotesDetailsIn {
        padding-top: 20px;
    }

    #mo_flt_ul {
        position: absolute;
        z-index: 99;
        right: 0;
        background: #f4ffec;
        top: 0;
        bottom: 0;
        display: flex !important;
        align-items: center;
        padding: 0 8px;
        box-shadow: -6px 0 8px -9px #000;
    }

    .quotesDetailsInMtrCust:nth-child(2) .quotesDetailsIn:nth-child(2) {
        width: 100px;
    }

    .quotesDetailsInMtrCust:nth-child(2) .quotesDetailsIn:first-child {
        margin-right: 40px;
    }

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

    .quotesDetailsIn.ASK_QDetailsIn span.YearNDFuel {
        display: block;
    }

    .quotesDetailsInMtrCust {
        position: inherit !important;
        border: none;
    }

    .quotesDetailsInMtrCust:nth-child(2) {
        border-left: 1px solid #ccc;
    }

    .PositionSikty {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 99;
    }

    .ASK_QDetailsIn h3 {
        width: 130px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .EditVehicleDet img {
        margin-right: 0;
        width: 12px !important;
        display: block;
    }
}

.SMCbody div,
.SMCbody h3,
.SMCbody input,
.SMCbody label,
.SMCbody p {
    font-family: var(--Font-Family) !important;
}

#mo_flt_ul {
    display: none;
}

::placeholder {
    color: #5f6368 !important;
    font-weight: 400 !important;
}

.chosIDV {
    display: flex;
    align-items: center;
}

.chosIDV .MTR_P_T_Box {
    margin: 0;
}

.QuestionPopupPage span {
    text-transform: capitalize;
}

/*
.QuestionPopupPage,
input {
cursor: pointer;
} */

.QuestionPopupPage:hover .QuestionPopupInnerPage {
    display: block;
}

.quotesDetailsInMtrCust {
    position: relative;
}

.QuestionPopupPage span {
    font-size: 8px !important;
    color: #888;
    margin-right: 0;
    font-weight: 600 !important;
    text-decoration: underline;
}

.QuestionPopupInnerPage {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.3215686274509804);
    border-radius: 5px;
    top: 35px;
    right: -18px;
    min-width: 300px;
    width: auto;
    color: #777;
    font-size: 12px;
    padding: 15px 20px;
    z-index: 999;
    font-weight: 400;
    text-transform: none;
}

.QuestionPopupInnerPage:after {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-bottom: 8px solid #fff;
    border-right: 6px solid transparent;
    content: "";
    position: absolute;
    top: -8px;
    right: 20px;
}

.container {
    display: block !important;
}

.MTR_P_T_Box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkMTR_P_T_Box {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

input:checked~.checkMTR_P_T_Box {
    border-color: #204e9d;
}

.checkMTR_P_T_Box:after {
    content: "";
    position: absolute;
    display: none;
}

input:checked~.checkMTR_P_T_Box:after {
    display: block;
    background-color: #204e9d;
}

.checkMTR_P_T_Box:after {
    top: 2px;
    left: 2px;
    width: 10.5px;
    height: 10.5px;
    border-radius: 50%;
    background: #fff;
}

.MTR_P_T_Box {
    font-size: 12px;
    font-weight: 600;
    color: #3d3d3d;
    padding-left: 25px;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    margin-right: 40px;
}

.MTR_P_T_Box .checkMTR_P_T_Box {
    top: 3px;
}

@media (max-width: 768px) {
    .MTR_P_T_Box {
        padding-left: 20px;
    }

    .Motor_Cust .quotesDetailsIn.quotesDetailsInIDV .SMCquotesDetailsIn .ChooseIdvOpt .chosIDV .MTR_P_T_Box {
        font-size: 10px;
    }
}

/* Btns */
.custom_btn .rollover-btn,
.custom_btn .new-btn,
.renew-btn {
    color: #fff !important;
    background-color: #204e9d;
    margin-top: 0;
}

.renew-btn {
    padding: 5px 8px;
    font-size: 12px;
    background-color: #204e9d;
}

.divider-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider-line {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #3b3838;
    margin: 0 10px;
}

.divider-text {
    font-size: 16px;
    font-weight: bold;
    color: #666;
}

/* Get QUote New Design */
.manufactureList {
    height: auto;
    padding: 0;
    max-height: 410px;
    overflow: auto;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.manufactureList .brandBox {
    background: linear-gradient(-45deg, #f4ffec 40%, #fff 0 60%, #0d6efd57 0) 100% / 500% 100% no-repeat,
        linear-gradient(-45deg, transparent 40%, #0d6efd29 0 60%, transparent 0) 100% / 500% 100% no-repeat;
    background-clip: text, padding-box;
    width: 95px;
    height: auto;
    text-align: center;
    margin: 15px;
    background-color: #fff;
    padding: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

.manufactureList .brandBox img {
    width: auto;
    display: block;
    height: 50px;
    margin: auto;
    filter: grayscale(0);
    opacity: 1;
}

.manufactureList .brandBox span {
    display: block !important;
    margin-top: 5px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #555 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brandBox:hover {
    background-position: 0;
    transition: 1s;
}

.model-div {
    display: flex;
    flex-wrap: wrap;
}

.checkbox_radio_container.fuel_type {
    margin: 0 auto;
    width: 50%;
}

.swal2-actions button:hover,
.swal2-actions button:focus,
.swal2-actions button:active,
.swal2-actions button {
    color: #fff !important;
}

.span_pseudo,
.chiller_cb span:before,
.chiller_cb span:after {
    content: "";
    display: inline-block;
    background: #fff;
    width: 0;
    height: 0.2rem;
    position: absolute;
    transform-origin: 0% 0%;
}

.chiller_cb {
    position: relative;
    height: 2rem;
    display: flex;
    align-items: center;
}

.chiller_cb input {
    display: none;
}

.chiller_cb input:checked~span {
    background: #fd2727;
    border-color: #fd2727;
}

.chiller_cb input:checked~span:before {
    width: 1rem;
    height: 0.15rem;
    transition: width 0.1s;
    transition-delay: 0.3s;
}

.chiller_cb input:checked~span:after {
    width: 0.4rem;
    height: 0.15rem;
    transition: width 0.1s;
    transition-delay: 0.2s;
}

.chiller_cb input:disabled~span {
    background: #ececec;
    border-color: #dcdcdc;
}

.chiller_cb input:disabled~label {
    color: #dcdcdc;
}

.chiller_cb input:disabled~label:hover {
    cursor: default;
}

.chiller_cb label {
    padding-left: 2rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-bottom: 0;
}

.chiller_cb span {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #ccc;
    position: absolute;
    left: 0;
    transition: all 0.2s;
    z-index: 1;
    box-sizing: content-box;
}

.chiller_cb span:before {
    transform: rotate(-55deg);
    top: 1rem;
    left: 0.37rem;
}

.chiller_cb span:after {
    transform: rotate(35deg);
    bottom: 0.35rem;
    left: 0.2rem;
}

.switch-prev input {
    display: none;
}

.switch-prev {
    display: inline-block;
    width: 55px;
    height: 25px;
    margin: 8px;
    /* transform:translateY(50%); */
    position: relative;
}

/* Style Wired */
.slider-prev {
    position: absolute;
    /*top: 0;*/
    bottom: 0;
    left: -130px;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #777, 0 0 4px #777;
    cursor: pointer;
    border: 4px solid transparent;
    overflow: hidden;
    transition: 0.4s;
}

/*.slider-prev:before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #777;*/
/*    border-radius: 30px;*/
/*    transform: translateX(-30px);*/
/*    transition: 0.4s;*/
/*}*/

input:checked+.slider-prev:before {
    transform: translateX(30px);
    background: limeGreen;
}

input:checked+.slider-prev {
    box-shadow: 0 0 0 2px limeGreen, 0 0 2px limeGreen;
}

.policy-container {
    background-color: #fff;
    padding: 25px;
    max-width: 1196px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.vehicle-info {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.vehicle-title {
    color: #888;
}

.vehicle-name {
    color: #333;
}

.separator-line {
    border: 0.5px solid #e0e0e0;
    margin: 5px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.info-item {
    font-size: 14px;
    color: #333;
}

.edit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edit-btn:hover {
    background-color: #0056b3;
}

/* New IDV */

.popover-modal {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 50px;
    /* Adjust as per your IDV section position */
    left: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* padding: 20px; */
    z-index: 999;
    width: 300px;
}

.popover-content {
    padding: 20px;
    border-radius: 10px;
}

.idv-label {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

.input-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.currency-symbol {
    font-size: 20px;
    padding-right: 5px;
}

#idvValue {
    width: 100%;
    padding: 5px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: right;
}

.slider-container {
    margin-bottom: 20px;
}

#idv-slider {
    width: 100%;
    margin-bottom: 5px;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

.button-container .btn-primary {
    margin-top: 0;
}

.bg-gray {
    background-color: darkgray;
}

.info-text {
    /* background: lightgrey; */
    border-left: 3px solid #204e9d;
    color: #000;
}

.info-text p {
    font-size: x-small;
    line-height: 1rem;
    padding: 5px;
}

.Vehicle_input_details .form-group,
#middle-wizard .form-group {
    margin-bottom: 10px;
    margin-top: 0;
}

.coming-soon-badge {
    position: absolute;
    top: 0.5rem;
    /* left: 0.5rem; */
    background-color: #0d6efd;
    color: white;
    font-size: 0.5rem;
    font-weight: bold;
    padding: 0.1rem 0.6rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}


/* tooltip */

.custom-tooltip {
    position: relative;
    /* display: inline-block; */
}

.tooltip-box {
    display: none;
    position: absolute;
    top: 50%;
    left: 75%;
    /* Position the tooltip to the right */
    transform: translateY(-50%);
    width: 270px;
    background-color: #fff;
    border: 1px solid #204e9d;
    border-radius: 8px;
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
    padding: 5px;
    z-index: 100;
    text-align: left;
    font-size: 0.7rem;
    /* color: #333; */
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    /* Adjust the arrow position */
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #ccc;
}

.tooltip-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.custom-tooltip:hover .tooltip-box {
    display: block;
}

.custom-tooltip:hover .form-check-label {
    border-left: 3px solid #007bff;
    /* Adjust color to match your design */
    padding-left: 8px;
    /* Add some spacing to avoid overlapping the text */
    transition: all 0.3s ease-in-out;
    /* Smooth transition */
}

.brandLogo {
    width: 60px;
    border-radius: 5%;
    height: 60px;
    margin: auto;
}

.btn-secondary {
    --bs-btn-bg: #6c757d !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    margin-top: 20px !important;
}

.selected p {
    color: #fff;
}

.bg-primary{
    background-color: #204e9d !important;
}

.brandBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px; /* You can adjust card height */
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}
.brandBox:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.brandLogo {
    width: auto;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}
.brandBox span {
    font-size: 0.8rem;
    color: #000;
    /*margin-top: 5px;*/
}
.otherBox {
    display: flex !important;
    align-items: center;   /* vertical center */
    justify-content: center; /* horizontal center */
    width: 137px;
    height: 57px;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    white-space: normal;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    font-weight: 500; /* make text look better */
}

.variantBox {
    display: flex !important;
    align-items: center;   /* vertical center */
    justify-content: center; /* horizontal center */
    width: 120px;
    height: 100px;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    white-space: normal;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    font-weight: 500; /* make text look better */
}

.rtoBox {
    display: block !important;
    flex-direction: column;
    align-items: center;             /* center horizontally */
    justify-content: center;         /* center vertically */
    width: 123px;
    height: 85px;
    padding: 10px !important;
    margin: 18px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;              /* center text inside p tags */
    overflow: hidden;
    white-space: normal;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    font-weight: 500;
}


.rtoBox p {
    margin: 0;
    line-height: 1.6 !important;
}

.rtoBox .rto-code {
    margin: 4px;
    line-height: 1.6 !important;
}

.rtoBox .rto {
    margin: 0;
    font-size: 13px;
    line-height: 1.6 !important;
}

.rto-list > ul > li > a {
    display: flex !important;
    align-items: center;
}

.rto-list > ul > li > a span {
    display: flex;
    flex-direction: column;
    align-items: center; /* Optional: center-align the text horizontally */
    justify-content: center; /* Vertically center content inside span */
}

.text-danger{
    font-size: initial !important;
}
.custom-login-icon,otp-img {
    margin-bottom: 20px;
}
.custom-login-icon::after, .otp-img::after {
    content: "";
    position: absolute;
    height: 200px;
    width: 200px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    border-radius: 55% 45% 19% 81% / 28% 31% 69% 72%;
    background-color: rgb(0 190 213 / 30%);
    z-index: -1;
}
.custom-login-icon, .otp-img {
    position: relative;
    z-index: 1;
    text-align: center;
}
.custom-login-icon img {
    width: 100px;
    height: auto;
}
.otp-img {
    max-width: 212px;
    margin: 0 auto;
}
@media (max-width: 576px) {
    .custom-login-icon img {
        width: 80px;
    }

}
.modal-overlay {
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

/* Show modal when active */
.modal-overlay.active {
    display: flex;
}

/* Modal Container */
#modalOverlay.modal-content {
    display: flex;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 15px;
    width: 650px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #1a3c5e;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Left Section (Form) */
.modal-left {
    flex: 1;
    padding-right: 25px;
}

.modal-left h2 {
    color: #1a3c5e;
    font-size: 25px;
    font-weight: 600;
    /*margin-bottom: 10px;*/
    background: linear-gradient(to right, #1a3c5e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0;
}

.modal-left p {
    color: #6b7280;
    /*font-family: 'Poppins', sans-serif;*/
    /*font-size: 14px;*/
    /*margin-bottom: 25px;*/
}

.modal-left .form-group {
    margin-bottom: 20px;
}

.modal-left input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-left input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
}

.modal-left button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #204e9d, #0d6efd);
    border: none;
    border-radius: 8px;
    color: white;
    /*font-family: 'Poppins', sans-serif;*/
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.modal-left button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
}

/* Right Section (Checklist) */
.modal-right {
    flex: 1;
    background: linear-gradient(135deg, #204e9d30, #0163ea00);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    border-left: 1px solid #e5e7eb;
}

.modal-right .lightbulb {
    position: absolute;
    top: -25px;
    left: -25px;
    background: #fef08a;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(254, 240, 138, 0.5);
    animation: glow 2s infinite alternate;
}

.modal-right .lightbulb::before {
    content: "💡";
    font-size: 24px;
}

/* Glow Animation for Lightbulb */
@keyframes glow {
    from { box-shadow: 0 0 10px rgba(254, 240, 138, 0.5); }
    to { box-shadow: 0 0 20px rgba(254, 240, 138, 0.8); }
}

.modal-right ul {
    list-style: none;
    padding: 0;
}

.modal-right li {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #374151;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.modal-right li:hover {
    transform: translateX(5px);
}

.modal-right li::before {
    content: "✔";
    color: #22c55e;
    margin-right: 10px;
    font-size: 18px;
}

/* Trigger Link Styling */
/*.open-modal {*/
/*    display: inline-block;*/
/*    padding: 10px 20px;*/
/*    margin: 20px;*/
/*    background: #3b82f6;*/
/*    color: white;*/
/*    text-decoration: none;*/
/*    border-radius: 5px;*/
/*    font-family: 'Poppins', sans-serif;*/
/*    font-size: 16px;*/
/*    transition: background 0.3s ease;*/
/*}*/

/*.open-modal:hover {
    background: #2563eb;
}*/
.health-model-content{
    display: flex;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 15px;
    width: 650px;
    flex-direction: row;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.health-wrapper{
    height: 340px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: rgb(37 59 149 / 44%);
}
#login-form .form-control{
    font-size: 1.3rem;
}
