@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* --------------- Password ------------- */
div#password-strength-status {
    font: normal normal 600 15px / 33px Montserrat;
    text-transform: capitalize;
}

/* Background Gradient Section */

.rad-grad-dark {
    background: transparent radial-gradient(closest-side at 50% 50%, #222E40, #0D152A) 40% 20% no-repeat padding-box;
}

.lin-grad-med {
    background: transparent linear-gradient(180deg, #3E5460 0%, #0C1113 100%) 0% 0% no-repeat padding-box;
}

.bg-color-dark {
    background-color: #070d20;
}

/* Common CSS */

.link-txt {
    color: var(--link-txt);
}

/* ----------------- Video Section------------------- */
.cover {
    width: 100%;
    position: relative;
}

.cover video {
    opacity: 0;
    width: 100%;
    transition: 1s;
    z-index: -1;
    height: 560px;
    display: none;
    background: url('../images/homepage/video-bg.png');
    border-radius: 0;
    margin: 0;
}

.cover #play-pause-button {
    position: absolute;
    top: 50%;
    left: 0;
    right: 5%;
    margin: 0 auto;
    transform: translate(50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 0;
    background-color: #000000a3;
    color: #fff;
    font-size: 16px;
    padding: 20px 25px;
}

.cover button:focus {
    outline: 0;
}

.cover video::-webkit-media-controls-play-button {
    display: initial !important;
}

.cover video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.cover video::-webkit-media-controls-current-time-display,
.cover video::-webkit-media-controls-time-remaining-display,
.cover video::-webkit-media-controls-mute-button,
.cover video::-webkit-media-controls-timeline,
.cover video::-webkit-media-controls-volume-slider,
.cover .video::-webkit-media-controls-fullscreen-button,
.cover .video::-webkit-media-controls-play-button,
.cover .video::-webkit-media-controls-pause-button {
    display: none !important;
}

.cover video::-webkit-media-controls-play-button,
.cover video::-webkit-media-controls-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    z-index: 998;
    /* Ensure it's below the play/pause button */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /* Text color */
}

.cover video::-webkit-media-controls-panel {
    height: 100vh;
    background: transparent;
}

video {
    width: 740px;
    border-radius: 0;
    display: block;
    margin: 0 auto 20px auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 30px;
    min-width: 740px;
}

.videoBanner {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    width: 740px;
    height: 468px;
    margin: 0 auto;
}

.videoBanner i.fa.fa-play {
    position: absolute;
    top: 42%;
    color: #ffffff;
    background-color: rgb(0 0 0 / 35%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    font-size: 25px;
    padding: 36px;
    cursor: pointer;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* ======================= Inter App =========================== */

#intuitive-app {
    background-position: -54% 50% !important;
    background-size: 70% !important;
    background-repeat: no-repeat !important;
    color: #070d20;
    background: #E0E0E0;
    background-image: url("../images/homepage/intuitive-app.png");
}

#intuitive-app p {
    margin: 0 auto 20px;
    color: var(--txt-dark);
}

/* ----------------- Pricing page ------------------- */
#darkBody {
    background: transparent linear-gradient(175deg, var(--color-five) 0%, var(--color-six) 100%) 0% 0% no-repeat padding-box;
    /* background: var(--color-six); */
}

.titlePlan {
    text-align: center;
    font: normal normal 500 16px/20px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
}

.section-title {
    font: normal normal 800 45px/55px Montserrat;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.section-small-title {
    font: normal normal normal 30px/40px Montserrat;
    letter-spacing: 0px;
}

.section-para {
    font: normal normal 300 19px/26px Poppins;
    letter-spacing: -0.2px;
}

.text-darks {
    color: #070d20;
}

/* –––––––––––––––––––– SWITCH STYLES ––––––––––––––––––––– */
.switch-wrapper {
    position: relative;
    display: inline-flex;
    padding: 7px 9px;
    margin: 40px 0 20px;
    background: transparent;
    border: 0.5px solid #ffffff;
    border-radius: 12px;
}

.switch-wrapper [type="radio"] {
    position: absolute;
    left: -9999px;
}

.switch-wrapper [type="radio"]:checked#monthly~label[for="monthly"],
.switch-wrapper [type="radio"]:checked#yearly~label[for="yearly"] {
    border-radius: 7px;
    opacity: 1;
}

.switch-wrapper [type="radio"]:checked#monthly~label[for="monthly"]:hover,
.switch-wrapper [type="radio"]:checked#yearly~label[for="yearly"]:hover {
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) 0% 0% no-repeat padding-box;
    border-radius: 7px;
    opacity: 1;
}

.switch-wrapper [type="radio"]:checked#monthly+label[for="yearly"]~.highlighter {
    transform: none;
}

.switch-wrapper [type="radio"]:checked#yearly+label[for="monthly"]~.highlighter {
    transform: translateX(100%);
}

.switch-wrapper label {
    z-index: 1;
    cursor: pointer;
    border-radius: 12px;
    transition: color 0.25s ease-in-out;
    text-align: center;
    font: normal normal 500 16px/19px Montserrat;
    letter-spacing: 0px;
    margin: 0;
    padding: 12px 30px;
}

.switch-wrapper label.active {
    background: linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) !important;
    color: var(--color-five);
    font-weight: bold;
}

.switch-wrapper label.inactive {
    background: none;
    color: var(--color-three);
    font-weight: normal;
}


.switch-wrapper label:hover {
    background: rgb(204 204 204 / 27%);
}

.switch-wrapper .highlighter {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 30px;
    background: var(--darkgreen);
    transition: transform 0.25s ease-in-out;
}

.price-page .plan-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 70px;
    height: 70px;
    background-color: var(--color-five);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    display: none;
}

.plan-hover-img {
    /* max-width: 100%; 
    max-height: 100%; */
    object-fit: cover;
}

.equal-height-col:hover .plan-hover {
    display: flex;
}

small.priceSmall {
    background: #353E4E;
    border-radius: 7px;
    opacity: 1;
    text-align: center;
    font: normal normal 500 16px/20px Montserrat;
    letter-spacing: 0px;
    font-weight: bold;
    color: var(--txt-light);
    padding: 17px 40px;
}

.priceFaqHead h2 {
    text-align: center;
    font: normal normal 800 50px/65px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.priceFaqHead p {
    text-align: center;
    font: normal normal 500 38px/45px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    /* text-transform: uppercase; */
    margin: 0 0 50px;
}

.faq {
    list-style: none;
    padding-left: 40px;
    padding-right: 20px;
}

.faq li {
    border: 1px solid #e9e9e9;
    margin-bottom: 15px;
    padding: 0 30px;
}

.faq li.active .answer {
    max-height: max-content !important;
    padding-bottom: 25px;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}

.faq li.active .question {
    color: #ffffff;
    transition: color 0.5s ease;
}

.faq .answer {
    color: #ffffff;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    letter-spacing: 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}

.faq .answer p,
.question p {
    margin: 0;
}

.faq .plus-minus-toggle {
    cursor: pointer;
    height: 21px;
    position: absolute;
    width: 21px;
    left: -40px;
    top: 32%;
    z-index: 2;
    background-color: #fff;
    border-radius: 50%;
}

.faq .plus-minus-toggle:before,
.faq .plus-minus-toggle:after {
    background: #4d105d;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px;
    transition: transform 500ms ease;
    margin: 10px 5px;
}

.faq .plus-minus-toggle:after {
    transform-origin: center;
}

.faq .plus-minus-toggle.collapsed:after {
    transform: rotate(90deg);
}

.faq .plus-minus-toggle.collapsed:before {
    transform: rotate(180deg);
}

.faq .question {
    /* text-transform: uppercase; */
    text-align: left;
    font: normal normal normal 14px/22px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    position: relative;
    cursor: pointer;
    padding: 20px 0;
    transition: color 0.5s ease;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .faq .question {
        font-size: 13px;
        word-wrap: break-word;
    }

    .faq li {
        padding: 0 20px;
    }

    .faq {
        padding: 20px;
    }

    #sliderSection .spacer-10 {
        display: none;
    }

    #menu-btn:hover:before {
        color: #fff;
    }
}

/*  */
.invalid-feedback {
    display: block !important;
}

.contact-msg-height {
    min-height: 137px;
}

#newsletterForm input#newsletterEmail::placeholder {
    color: #8f8f8f;
}

#newsletterForm input#newsletterEmail,
#blogEmail {
    padding: 25px 25px;
    width: 80%;
    float: left;
    display: table-cell;
    border-right: none;
    background: transparent;
    box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
    height: 26px;
    text-align: left;
    font: normal normal normal 16px/45px Montserrat;
    letter-spacing: 0px;
    color: #8f8f8f;
    opacity: 1;
    border: 1px solid #707070;
    border-radius: 18px 0 0 18px;
}

/* Send button have reversed color effect */

#newsletterForm button#btn-submit {
    background-color: var(--btn-bg-hover);
    text-align: center;
    font-size: 28px;
    float: left;
    width: 20%;
    color: var(--btn-txt-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 5px 0;
    border-radius: 0 60px 60px 0;
    border: 1px solid #707070;
    font: normal normal normal 16px/40px Montserrat;
}

#newsletterForm button#btn-submit:hover {
    box-shadow: -300px 0 0 0 var(--btn-bg) inset;
    color: var(--btn-txt);
    border: 1px solid var(--btn-border);
}

#blogs button.waves-button-input,
#sidebar button.waves-button-input {
    background-color: var(--btn-bg);
    text-align: center;
    font-size: 28px;
    float: left;
    width: 20%;
    color: var(--btn-txt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 5px 0;
    border-radius: 0 60px 60px 0;
    -moz-border-radius: 0 60px 60px 0;
    -webkit-border-radius: 0 18px 18px 0;
    border: 1px solid var(--btn-border);
    font: normal normal normal 16px/40px Montserrat;
}


#blogs button.waves-button-input,
#sidebar button.waves-button-input {
    line-height: 27px;
    border: 1px solid #3E5460;
    float: unset;
}

#blogs .pagination li span.page-link {
    padding: 15px 20px 15px 20px;
    font-size: 12px;
}

#newsletterForm #newsletterEmail-error {
    display: block;
    width: 100%;
}

#blognewsletterForm #blognewsletterEmail-error {
    display: block;
    width: 100%;
}

#blognewsletterForm input#blognewsletterEmail,
#blogEmail {
    padding: 7px 12px 7px 12px;
    width: 80%;
    float: left;
    height: auto;
    display: table-cell;
    border-radius: 60px 0 0 60px;
    -moz-border-radius: 60px 0 0 60px;
    -webkit-border-radius: 60px 0 0 60px;
    border: solid 1px #333333;
    border-right: none;
    background: rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
    -moz-box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
    box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
}

#blognewsletterForm button#btn-submit,
#blogs button.waves-button-input,
#sidebar button.waves-button-input {
    background-color: #741b8b;
    text-align: center;
    font-size: 28px;
    float: left;
    width: 20%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 5px 0;
    border-radius: 0 60px 60px 0;
    -moz-border-radius: 0 60px 60px 0;
    -webkit-border-radius: 0 60px 60px 0;
    border: 1px solid #741b8b;
}

form#newsletterForm,
form#blognewsletterForm {
    height: 70px;
}

#blognewsletterForm .spinner-border,
form#newsletterForm .spinner-border {
    width: 0.9rem;
    height: 0.9rem;
    vertical-align: top;
    border-width: 2px;
}

form .input-group-merge.form-password-toggle {
    position: relative;
}

#form span.username-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000000;
    opacity: 1;
}

#form span.password-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000000;
    opacity: 1;
}

form span.field_icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000000;
    opacity: 1;
}

form .input-group-merge.form-password-toggle input {
    padding: 0.375rem 2.2rem 0.375rem 0.75rem;
}

.plan_quantity input[type="number"]::-webkit-inner-spin-button,
.plan_quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.price-page .pricing-s1 .bottom ul {
    padding: 20px 10px;
    list-style: disc;
    list-style-type: disc;
    overflow: visible;
    margin-left: 20px;
    margin-bottom: 50px;
}

.price-page .pricing-s1 .bottom ul li {
    padding: 0px 5px;
    text-align: left;
    font: normal normal 300 12px/40px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
}

.price-page .pricing-s1 .bottom p {
    padding: 10px 15px;
    text-align: left;
    font: normal normal 300 12px/32px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
}

.price-page .pricing-s1 .bottom ul li::marker {
    color: #1b8b78;
    font-size: 15px;
    line-height: 20px;
}

/* blog page */
.blog_card {
    position: relative;
    width: 100%;
    background-color: #fff;
}

.blog_card a {
    color: inherit;
    text-decoration: none;
}

.blog_card.bl_grid {
    max-width: 600px;
}

.blog_card .bl_inner {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog_card .image_thumb {
    position: relative;
    background-color: #f2f2f2;
    background-position: center top;
    background-size: cover;
    background-image: url(../images/no-preview.jpg);
}

.blog_card.bl_grid .image_thumb {
    width: 100%;
    padding-bottom: 60%;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
}

.blog_card.bl_list .image_thumb {
    width: 150px;
    height: 100%;
    padding-bottom: 80%;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
}

.blog_card.bl_grid .bl_flex {
    display: flex;
    flex-direction: column;
}

.blog_card.bl_list .bl_flex {
    display: flex;
    flex-direction: row;
}

.blog_card .content_col>.inner {
    padding: 1.2rem;
}

.blog_card .content_col .title {
    transition: all 0.3s ease;
}

.blog_card .content_col .excerpt {
    margin-bottom: 5px;
}

aside.sticky-top.sb-top-position {
    z-index: 0;
}

.b-sidebar .color-gradient {
    color: rgba(var(--primary-color), 1);
    color: var(--primary-color);
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    z-index: 0;
    position: relative;
}

.font-700 {
    font-weight: 700;
}

.b-sidebar button#ebookGetNow {
    background-color: #741b8b;
    color: #ffffff;
}

img.ebookImg.mt-4 {
    width: 100%;
}

aside.sticky-top.sb-top-position {
    z-index: 0;
}

.blog_card .btn-link-ol {
    background: 0 0;
    color: #741b8b;
    font-weight: 600;
    border: 0 !important;
    padding: 0.5rem 0;
}

.blog_card.bl_list .content_col .title {
    font-size: 0.95rem;
}

.blog_card.bl_list .content_col .excerpt {
    font-size: 0.75rem;
}

.blog_card .content_col .excerpt,
.blog_card .content_col .title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog_card:hover .content_col .title {
    color: rgba(var(--color-primary), 1);
}

.blogs-links-list {
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.blogs-links-list li {
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.blogs-links-list li>a {
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.blogs-links-list li>a>.title_link {
    color: #3b3b3b;
    margin-bottom: 0;
    font-size: 14px;
}

.blogs-links-list li>a>.short-text {
    font-size: 11px;
    color: inherit;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 0;
}

.blogs-links-list li>a:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.blogs-links-list li>a:hover>.title_link {
    color: var(--color-primary);

}

.sb-top-position {
    top: 90px;
}

.b-sidebar {
    position: relative;
}

.b-sidebar::after,
.b-sidebar::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    opacity: 0.5;
    background: url(../images/e-book/blogside-dots.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.b-sidebar::before {
    top: 0;
    right: 0;
}

.b-sidebar::after {
    bottom: 246px;
    left: 0;
    z-index: -1;
}

.b-sidebar .b-amo {
    font-size: 1.8rem;
}

#CheckoutForm input[type="number"]::-webkit-inner-spin-button,
#CheckoutForm input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

#CheckoutForm input[type="number"] {
    -moz-appearance: textfield;
}

header a.btn-custom {
    text-align: center;
}

header a.btn-custom svg {
    margin-right: 5px;
}

#mainmenu {
    padding: 30px 0;
}

.header-light #mainmenu>li>a {
    font: normal normal 300 13px/40px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: capitalize;
}

.header-light #mainmenu>li.current-menu-item a,
.footer-light li.current-menu-item a {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

header.header-light #mainmenu ul a span,
header.scroll-light #mainmenu ul a span {
    display: none;
}

#blogs ul.post-categories {
    padding: 0;
    list-style: none;
}

#blogs ul.post-categories li {
    display: inline-block;
    margin-right: 7px;
}

#blogs ul.post-categories li i {
    margin-right: 6px;
}

.iti__flag {
    display: none;
}

.iti {
    display: block;
}

input#mobile {
    padding-left: 72px !important;
}

.iti__flag-box,
.iti__country-name {
    display: none;
}

.iti__selected-flag {
    height: auto;
    padding: 5px 6px 5px 8px;
}

.iti__country-list::-webkit-scrollbar {
    width: 6px;
    border-radius: 5px;
}

.iti__country-list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.iti__country-list::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.form-group.btn-group-box .btn {
    color: #fff;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    outline: 0;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 20px;
    min-width: 120px;
    text-transform: capitalize;
    font-size: 12px;
    letter-spacing: 2px;
}

.iti__flag-container {
    max-height: 37px;
}

.error-red {
    color: #e7505a;
}

.pricing-s1 {
    background: var(--color-primary) 0% 0% no-repeat padding-box;
    border-radius: 29px 29px 0px 0px;
    margin-top: 2.5em;
}

.pricing-s1 .top h2,
h3.plan-tagline {
    text-align: center;
    font: normal normal bold 16px/20px Montserrat;
    letter-spacing: 0px;
    color: var(--txt-dark);
}

.pricing-s1 .mid {
    min-height: 150px;
}

.tabBox .nav.btn-group {
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-s1 .bottom {
    border-top: 0px;
    text-align: center;
    padding-bottom: 30px;
    background: transparent linear-gradient(180deg, var(--color-five) 0%, var(--color-five) 100%) 0% 0% no-repeat padding-box;
}

.pricing-s1 .bottom>a {
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 30px;
    transition: all 0.6s;
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) 0% 0% no-repeat padding-box;
    color: var(--txt-dark);
    font: normal normal bold 12px / 19px Montserrat;
    width: 160px;
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.pricing-s1 .bottom>a:hover {
    transform: translateX(0.5rem);
}

.price-page .equal-height-col {
    position: relative;
}

/* ----------------- Finance Section ------------------- */

#lockSec {
    padding-bottom: 20px !important;
}

#error-prone {
    padding-top: 20px !important;
}

#lockSec p {
    margin: 0 0 0 29px;
    font: normal normal 300 20px/30px Poppins;
}

#lockSec .row {
    align-items: center;
}

#lockSec h2 {
    font-size: 26px;
}

.lockImgBox {
    margin: 20px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lockImgBox img {
    margin: 0 auto;
    display: block;
    height: 350px;
    width: auto;
}

.lockImage {
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    border: none;
}

.lockImage.show {
    display: block;
}

.lockImage.hide {
    display: none;
}

.lock-close-img {
    margin-bottom: 55px !important;
}

.coludSec,
.securitySec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 1s ease-in-out;
}

.coludSec img,
.securitySec img {
    /* width: 40%;  */
}

.coludSec p,
.securitySec p {
    flex: 1;
    padding-left: 15px;
    font-size: 19px;
    line-height: 26px;
}

.coludSec.left-slide,
.securitySec.left-slide {
    transform: translateX(-100vw);
}

.securitySec.right-slide,
.coludSec.right-slide {
    transform: translateX(100vw);
}

.text-white {
    color: #fff;
}


#noRoom h2,
#error-prone h2 {
    font: normal normal 800 50px/41px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 1;
}

#noRoom p.section-first-para,
#error-prone p.section-first-para {
    font: normal normal normal 35px/40px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
}

#noRoom .roomfeature,
#error-prone .roomfeature {
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-around;
}

#noRoom .roomBox p {
    margin: 34px 34px 0;
}

#noRoom .roomBox {
    padding: 70px 60px 30px;
}

#error-prone .roomfeature p {
    margin: 30px 20px 0;
}

#error-prone .roomBox {
    padding: 70px 40px 30px;
}

#RenewalSec {
    padding: 50px 0;
}

#RenewalSec img {
    border-radius: 50%;
}

#RenewalSec .leftImg img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

#RenewalSec .container:hover .leftImg img {
    opacity: 1;
}

#RenewalSec .container:hover .rightImg img {
    opacity: 0;
}

#RenewalSec .rightImg img {
    position: absolute;
    bottom: 0;
    width: 36%;
    margin-left: 50px;
    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

#RenewalSec .rightImg {
    position: relative;
}

#RenewalSec .contentBox {
    padding: 40px 0 30px 10px;
    margin: 7em 0;
}

#error-prone img {
    width: 30%;
}

/* -------------- Contact Us Page --------------- */
.grecaptcha-badge {
    display: none !important;
}

#inline-badge .grecaptcha-badge {
    display: block !important;
}

.grecaptcha-badge {
    width: 304px;
    height: 78px;
    max-width: none;
    padding: 0;
    box-shadow: none;
    margin-bottom: 20px;
}

.grecaptcha-badge iframe {
    width: 304px;
    height: 78px;
    text-align: center;
}

.rc-anchor-normal .rc-anchor-pt {
    margin: 2px 0px 0 0;
    right: -16px;
}

/* Contact Us Page CSS */

#contactPage {
    background: transparent radial-gradient(closest-side at 50% 50%,
            #3D4250 0%,
            #070D20 100%) 0% 0% no-repeat padding-box;
}

.contactUsForm .btn.btn-contact-us {
    font: normal normal bold 12px/19px Montserrat;
    letter-spacing: 0px;
    border-radius: 4px;
    box-shadow: -5.56px 18px 32px #201c1d63;
    padding: 10px 30px;

    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.6s;
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) 0% 0% no-repeat padding-box;
    color: var(--txt-dark);
    width: 160px;
    margin-top: 10px;
}

#contactPage h6.work-hours-section {
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 0px;
    border-radius: 4px;
    box-shadow: -5.56px 18px 32px #201c1d63;
    /* background: transparent ;
    color:var(--txt-light); */
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) 0% 0% no-repeat padding-box;
    color: var(--txt-dark);
}

.formBox {
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 13px;
    padding: 35px;
}

.formBox h3 {
    font: normal normal normal 21px/27px Montserrat;
    letter-spacing: 0px;
    color: #070d20;
}

.formBox input[type="text"],
.formBox textarea,
.form-underline input[type="email"],
.formBox input[type="password"],
.formBox select {
    background: #f8f8f8 0% 0% no-repeat padding-box;
    border: 1px solid #828282;
    border-radius: 13px;
    padding: 12px 20px;
    color: #555555;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.formBox label.form-label {
    font: normal normal 600 12px/33px Montserrat;
    letter-spacing: 0px;
    color: #391a47;
    margin: 0;
}

fieldset .form-group.btn-group-box .btn {
    padding: 11px 16px;
    font-size: 12px;
    letter-spacing: 2px;
    background: var(--color-four) 0% 0% no-repeat padding-box;
    font-family: "Open Sans";
    border-radius: 13px;
    font-weight: 500;
}

fieldset .passwordbg {
    border: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 5px;
    margin-top: 10px;
}

fieldset .pswd_info .invalid {
    padding-left: 30px;
    background: url(https://img.icons8.com/ios-glyphs/15/D42E2E/multiply.png) no-repeat 0 50%;
    color: #d42e2e;
    font-size: 14px;
    line-height: 25px;
}

fieldset .pswd_info .valid {
    padding-left: 30px;
    background: url(https://img.icons8.com/metro/16/701488/checkmark.png) no-repeat 0 50%;
    color: #701488;
    font-size: 14px;
    line-height: 25px;
}

#msform button.next.action-button.btn {
    text-align: left;
    background: #0f0d28 0% 0% no-repeat padding-box;
    font: normal normal 800 12px/23px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    padding: 9px 50px;
    border-radius: 3px;
}

#msform fieldset#account_details button.next.action-button.btn {
    margin-left: 45px !important;
    float: left;
    background: var(--color-four) 0% 0% no-repeat padding-box;
}

#msform fieldset#personal_info button.next.action-button.btn {
    background: var(--color-four) 0% 0% no-repeat padding-box;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: var(--color-four);
    color: #fff;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: var(--color-four);
    border-radius: 13px 0px 0px 13px;
    color: #fff;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.iti__selected-flag {
    padding: 7px 11px 7px 11px;
}

.iti__arrow {
    border-top: 4px solid #fff;
}

.formBox button.btn.btn-custom {
    font: normal normal 800 12px/23px Montserrat;
    letter-spacing: 0px;
    color: #1C1C1C;
    border-radius: 3px;
    background: #E0E0E0 0% 0% no-repeat padding-box;
    box-shadow: -5.56px 18px 32px #201c1d63;
    padding: 8px 60px;
}

#contactPage address span {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}

#contactPage address span svg {
    margin-right: 24px;
}

#contactPage address span:first-child svg {
    width: 60px;
}


/* -------------- Login Page --------------- */

.divider-wrapper {
    flex-direction: row;
    display: flex;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
    font-weight: 400;
    margin: 0 auto 30px;
    padding: 24px 0 34px 0;
    align-items: center;
    justify-content: center;
    width: 320px;
    vertical-align: baseline;
}

.divider-wrapper:before,
.divider-wrapper:after {
    content: "";
    border-bottom: 1px solid #c2c8d0;
    flex: 1 0 auto;
    height: .5em;
    margin: 0;
}

.divider {
    text-align: center;
    flex: .2 0 auto;
    margin: 0;
    height: 12px;
}

.signLogin {
    background-color: #f5f5f5;
    padding: 15px 75px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(169, 169, 169, 0.3);
}

.loginPage {
    background: transparent radial-gradient(closest-side at 50% 50%,
            #3C414F 0%,
            #070D20 100%) 0% 0% no-repeat padding-box;

}

.loginPage .h1 {
    letter-spacing: 0px;
    color: #ffffff;
    font: normal normal 800 48px/60px Montserrat;
}

.loginPage p.lead {
    font: normal normal 300 20px/30px Poppins;
    letter-spacing: 0px;
    color: #ffffff;
}

.loginPage a.btn-border,
.loginPage a.btn-custom {
    font: normal normal bold 16px/30px Montserrat;
    letter-spacing: 0px;
    background: var(--btn-bg) 0% 0% no-repeat padding-box;
    color: var(--btn-txt);
    padding: 12px 25px;
    text-transform: capitalize;
    border-color: var(--btn-border);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.8s, color 0.3s 0.3s;
    box-shadow: 0px 15px 30px var(--btn-border) inherit;
}

.loginPage a.btn-border:hover,
.loginPage a.btn-custom:hover {
    box-shadow: -300px 0 0 0 var(--btn-bg-hover) inset;
    color: var(--btn-txt-hover);
    border: 1px solid var(--btn-border-hover);
}

.loginPage .box-rounded {
    background: #E0E0E0 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 60px 40px;
}

.loginPage .box-rounded p {
    font: normal normal normal 16px/22px Montserrat;
    margin-bottom: 20px;
    color: var(--txt-deep);
}

.loginPage input[type="text"],
.loginPage input[type="password"] {
    background: #ffffff1a 0% 0% no-repeat padding-box;
    border: 1px solid #b4b4b466;
    border-radius: 10px;
    font: normal normal normal 16px/28px "Open Sans", sans-serif;
    letter-spacing: 0px;
    color: #555555;
    margin: 0 0 14px;
}

.loginPage .field-set {
    margin: 30px 0;
}

.loginPage .field-set a {
    font-size: 14px;
    float: right;
    /* color: var(--txt-deep); */
    font-weight: 500;
}

/* .loginPage .field-set a b , .box-rounded p a b{
    color: var(--link-txt);
} */

.loginPage button.btn.btn-fullwidth {
    font: normal normal normal 20px/30px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    background: var(--color-four) 0% 0% no-repeat padding-box;
    border-radius: 10px;
}

/* ------------------ Reset Page ----------------------- */
.reset-pass-page .passwordbg {
    border: 0;
    padding: 0px 0;
    background-color: transparent;
    border-radius: 5px;
    margin-top: 10px;
}

.reset-pass-page .pswd_info .invalid {
    padding-left: 30px;
    background: url(https://img.icons8.com/ios-glyphs/15/D42E2E/multiply.png) no-repeat 0 50%;
    color: #d42e2e;
    font-size: 14px;
    line-height: 25px;
}

.reset-pass-page .pswd_info .valid {
    padding-left: 30px;
    background: url(https://img.icons8.com/metro/16/701488/checkmark.png) no-repeat 0 50%;
    color: #701488;
    font-size: 14px;
    line-height: 25px;
}

.field-set button.btn.btn-custom.btn-fullwidth {
    font: normal normal normal 20px/30px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    background: var(--color-four) 0% 0% no-repeat padding-box;
    border-radius: 10px;
}

.reset-pass-page a.btn-border,
.reset-pass-page a.btn-custom {
    font: normal normal bold 16px/30px Montserrat;
    letter-spacing: 0px;
    background: var(--btn-bg) 0% 0% no-repeat padding-box;
    color: var(--btn-txt);
    /* padding: 12px 25px; */
    text-transform: capitalize;
    border-color: var(--btn-border);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.8s, color 0.3s 0.3s;
    box-shadow: 0px 15px 30px var(--btn-border) inherit;
}

.reset-pass-page a.btn-border:hover,
.reset-pass-page a.btn-custom:hover {
    box-shadow: -300px 0 0 0 var(--btn-bg-hover) inset;
    border: 1px solid var(--btn-border-hover);
}

.resetOtpFiled {
    position: relative;
}

.resetOtpFiled button#otpgenerate {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 8px 12px;
}

#CheckoutForm .form-check input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: none;
    appearance: auto;
    cursor: pointer;
}

#CheckoutForm .form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
}

/* ----------- Comman btn css ------------- */
.bg-color,
section.bg-color,
section.call-to-action,
#mainmenu li li a:hover,
#mainmenu ul li:hover>a,
.price-row,
.slider-info .text1,
.btn-primary,
.bg-id-color,
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus,
.dropcap,
.fullwidthbanner-container a.btn,
.feature-box-big-icon i,
#testimonial-full,
.icon-deco i,
.feature-box-small-icon .border,
#jpreBar,
.date-post,
.team-list .small-border,
.de-team-list .small-border,
.btn-line:hover,
a.btn-line:hover,
.btn-line.hover,
a.btn-line.hover,
.owl-arrow span,
.de-progress .progress-bar,
#btn-close-x:hover,
.box-fx .info,
.btn-more,
.widget .small-border,
.product img:hover,
#btn-search,
.de_tab.timeline li.active .dot,
.btn-id,
.tiny-border,
#subheader .small-border-deco span,
#services-list li a:hover,
.timeline .tl-block .tl-line,
.de_tab.tab_style_2 .de_nav li.active span,
.de_tab.tab_steps.style-2 .de_nav li.active span,
.feature-box-small-icon.style-2 .number.bg-color,
a.btn-custom,
.btn-custom,
.owl-custom-nav .btn-next:before,
.owl-custom-nav .btn-prev:before,
.timeline>li>.timeline-badge,
.de_light .de_tab.tab_style_3 .de_nav li.active span,
.de_tab.tab_style_4 .de_nav li.active span,
.circle,
.social-icons-sm i:hover,
.social-icons-sm svg:hover,
.btn-rsvp,
.btn-close,
.pricing-s1 .ribbon,
.de_tab.tab_style_4 .de_nav li.active,
#preloader .s1 span,
#filters a.selected,
.custom-show:after,
.custom-close:after,
.widget-post .date,
.style-2 .date-box,
.feature-box-type-1 i,
.owl-item.active>div blockquote:before,
.accordion-section-title:before,
#form_subscribe #btn-submit i,
.owl-dot.active,
.bg-gradient-to-right-2,
.feature-box-type-1.hover i,
.feature-box-type-1:hover i,
.ribbon,
.box-icon-simple .num,
.box-highlight.s2,
.feature-box.f-boxed:hover,
.fpw-overlay-btm,
.fp-wrap .fpwow-icons,
.social-icons i,
.social-icons svg,
.owl-item.active.center .feature-box-type-2,
.testimonial-color .item:nth-child(1n) blockquote:before,
.spinner>div,
.d-gallery-item .dgi-1,
a.btn-border:hover,
.dih-overlay,
.widget_tags li a,
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
#selector .sc-opt {
    background: #263238 0% 0% no-repeat padding-box;
    color: #fff;
}

/* -------------- Button loader --------------- */
#CheckoutForm .btn-loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #f3f3f3;
    border-bottom: 3px solid #21252900;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: none;
    margin: 0 auto -4px 3px;
    position: unset;
}

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

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

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

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

/* ------------------------ Sucess Page ------------------------------ */
.Scriptcontent {
    line-height: 28px;
}

.Scriptcontent #card {
    position: relative;
    width: 800px;
    display: block;
    margin: 0px auto;
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
}

.Scriptcontent #upper-side {
    padding: 2em;
    /* background: transparent radial-gradient(closest-side at 50% 50%, rgb(112 20 136 / 95%) 0%, rgb(88 28 104 / 97%) 8%, rgb(112 20 136 / 95%) 100%) 0% 0% no-repeat padding-box; */
    display: block;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.Scriptcontent #upper-side {
    padding: 2em;
    /* background-color: #741b8b; */
    display: block;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.Scriptcontent #status {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
    margin: 10px;
    font-size: 20px;
}

.Scriptcontent #lower-side {
    padding: 2em 2em 5em 2em;
    /* background: #fff; */
    display: block;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.success-animation {
    margin: 20px auto;
}

.counternum {
    border: 2px solid white;
    border-radius: 5px;
    padding: 2px 20px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: white;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #741b8b;
    animation: fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
    position: relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 126;
    stroke-dashoffset: 156;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: white;
    fill: #42ba96;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.cancel-page .cancel-box {
    display: flex;
    align-items: center;
}

.cancel-page .content-box {
    padding-left: 4em;
}

.header-light.scroll-light #logo svg .cls-1 {
    fill: #ffff;
}

.header-light.scroll-light #logo svg .cls-2 {
    fill: #7a3f89;
}

.header-light.scroll-light.smaller #logo svg .cls-1 {
    fill: #7a3f89;
}

.header-light.scroll-light.smaller #logo svg .cls-2 {
    fill: #ffff;
}

.iti__preferred {
    display: none;
}

#CheckoutForm input#telecallerQty {
    display: block;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #741b8b;
    background-color: #741b8b;
}

.subfooter .social-icons {
    margin-right: 20px;
}

.has-error input {
    border: 1px solid #fb483a;
}

/* ------------------- Release Vesion ----------------------- */
#release-version .card {
    border-radius: 0;
    box-shadow: 0px 0px 1px 3px #ccc;
    width: 65%;
    margin: 0 auto;
}

#release-version .boxData {
    border: 1.5px solid #e5e5e5;
}

#release-version .boxData p {
    padding: 2px 10px;
    margin: 0;
}

#release-version .boxData p:nth-child(odd) {
    background-color: #f5f5f5;
}

#release-version .boxData p:nth-child(even) {
    background-color: #e6e6e6;
}

.contactUsForm .spinner-border {
    width: 1rem;
    height: 1rem;
}

#release-version .card .card-body:last-child {
    margin-bottom: 25px;
}

/* ----------------- Feature Page ------------------------- */

.switch-wrapper [type="radio"]:checked+label.feat-tabs,
.grad-feat-btn {
    border-radius: 7px;
    opacity: 1;
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) 0% 0% no-repeat padding-box;
    color: var(--txt-dark);
    font: normal normal bold 12px / 19px Montserrat;
    font-weight: bold;
}

.feat-grad-line {
    width: 1124px;
    height: 2px;
    background: transparent radial-gradient(closest-side at 50% 50%, #547485 0%, #0D152A 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
}

.feature-heading {
    margin-bottom: 50px !important;
}

.attendance_tab .attendtab {
    width: 75%;
    margin: 0 auto;
}

.featureintab {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featureTab {
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 20px;
    width: 451px;
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.imgBGdark {
    display: flex;
}

.imgBGdark img {
    align-self: center;
    width: 100px;
}

.featureTab p {
    font: normal normal 300 18px/30px Poppins;
    letter-spacing: 0px;
    color: #070d20;
    margin: 0;
    padding: 0 10px 0 30px;
    text-align: left;
}

p.tabTitleHead {
    font: normal normal 500 35px/40px Montserrat;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 35px 0;
}

.feature-box img {
    width: 100%;
}

.feature-box .imgBGdark {
    width: 136px;
    height: 136px;
    margin: 0;
    display: inline-block;
    position: relative;
    text-align: center;
}

.feature-box .imgBGdark img {
    vertical-align: middle;
}

h5.tabTitleHead {
    font: normal normal 500 35px/40px Montserrat;
    letter-spacing: 0px;
    color: #f4f6f9;
    text-align: left;
    margin: 0 0 40px;
}

.feature-box {
    display: flex;
    align-items: center;
}

.feature-box p {
    text-align: left;
    font: normal normal 300 20px/30px Poppins;
    letter-spacing: 0px;
    color: #ffffff;
    padding: 0 10px 0 30px;
    width: 360px;
}

.fiend_agent_tab .featureintab {
    position: relative;
    text-align: center;
}

.fiend_agent_tab .featureTab:nth-child(1) {
    position: absolute;
    left: 130px;
    top: 50px;
}

.fiend_agent_tab .featureTab:last-child {
    position: absolute;
    right: 120px;
    bottom: 100px;
}

.fiend_agent_tab .featureintab {
    display: block;
}

.requiredbox {
    color: #e7505a;
}

.mobiledesktop {
    display: none;
}

.attendenctab {
    position: relative;
}

.attendenctab .featureTab {
    position: absolute;
    box-shadow: 25px 25px 30px #0000002B;
}

.attendenctab .featureTab:first-of-type {
    top: 23px;
    left: 20px;
}

.attendenctab .featureTab:last-of-type {
    right: 22px;
    bottom: 63px;
    width: 339px;
}

.innerPara {
    text-align: left;
    font: normal normal 300 20px / 30px Poppins;
    letter-spacing: 0px;
    color: #ffffff;
    padding: 0 10px 0 0px;
    width: 360px
}

.attendenctab .imgBGdark {
    background: #3E5460 0% 0% no-repeat padding-box;
    border-radius: 15px;
    width: 75px;
    height: 75px;
    padding: 10px;
    display: flex;
}

.attendance_tab .feature-box img {
    width: auto;
}

/* --------------Automotive industry -------------------- */

.schedule-visit-page {
    position: relative;
    background: #070d20 radial-gradient(closest-side at 50% 50%, #70148830 0%, #7014883d 8%, #070d20 100%) 0% 0% no-repeat;
}

.schedule-visit-page .content-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.schedule-visit-page .content-img p {
    text-align: left;
    width: 200px;
    margin: 0 auto !important;
}

.schedule-visit-page .content-img>div {
    width: 44%;
    line-height: 1;
    text-align: center;
}

.schedule-visit-page .img-block {
    position: relative;

}

.schedule-visit-page .img-block:before {
    content: "";
    background: url(../images/automotive/white-color-car.png);
    position: absolute;
    height: 100%;
    right: 0;
    width: 100%;
    bottom: -15px;
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 1;
    transition: .2s linear;
}

.schedule-visit-page .img-block:hover:before {
    background: url(../images/automotive/blue-color-car.png);
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.schedule-visit-page .glass-effect {
    backdrop-filter: blur(11px);
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.1); */
    background: radial-gradient(circle at center, rgba(0, 0, 139, 0.1) 0%, rgba(255, 255, 255, 0.1));
    position: relative;
    z-index: 2;
    margin-right: 90px;
    margin-left: 90px;
}

.schedule-visit-page .track-history .trck-hstry-content {
    position: relative;
    margin: 0 auto 100px;
    border-radius: 12px;
    overflow: visible;
}

.schedule-visit-page .track-history .tr-bell {
    position: absolute;
    top: -20px;
    right: -20px;
    height: 70px;
    z-index: 3;
    margin-right: 90px;
}

.schedule-visit-page .track-history .bl-bell {
    position: absolute;
    bottom: -20px;
    left: -20px;
    height: 70px;
    z-index: 1;
    margin-left: 90px;
}

.schedule-visit-page .track-history .trck-hstry-content>div {
    color: #ffffff;
}


.schedule-visit-page .never-miss {
    background: #5C7280;
}

/* ------------------ Real estate ------------------------ */

.real-estate-page .bg-color-dark {
    background-color: #070d20;
}

.real-estate-page .section {
    position: relative;
}

.real-estate-page .building-img-div {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.real-estate-page .building-img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.real-estate-page .nmd-sec {
    background: url("../images/realEstate/never-miss-girl.png");
    overflow: visible;
    padding: 150px !important;
}

.real-estate-page .nmd-sec .container {
    padding-top: 0;
    margin-top: 0;
}

.real-estate-page .nmd-sec .row {
    padding-top: 0;
    margin-top: 0;
}

.real-estate-page .nmd-section {
    background-image: url(../images/realEstate/never-miss-girl.png);
    min-height: 600px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.real-estate-page .nmd-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.real-estate-page .comm-img-div {
    text-align: center;
    position: relative;
}

.real-estate-page img.communicate-img {
    object-fit: fill;
}

.real-estate-page .manage-tasks {
    background: #5C7280;
}

.real-estate-page .text-custom {
    color: #5C7280;
}

.real-estate-page .re-footer-sec {
    color: #E0E0E0;
}

/* ---------------- Blog page ------------------ */


.switch-wrapper [type="radio"]:checked#popular_article~label[for="popular_article"],
.switch-wrapper [type="radio"]:checked#latest_article~label[for="latest_article"] {
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) !important;
    color: #1C1C1C;
    font-weight: bold;
    border-radius: 7px;
    opacity: 1;
}

.blogs-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 87%;
    width: 100%;
    background: url(../images/blog-bg.png);
    background-size: 100% !important;
    background-position: top center;
    background-repeat: no-repeat;
}

.blogs-section .searchForm {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.blogs-section .searchForm input {
    height: 50px;
    width: 100%;
    color: #fff;
    background: #252D3F 0% 0% no-repeat padding-box;
    border: 1px solid #777676;
    border-radius: 25px;
    padding: 20px 25px;
}

.blogs-section .searchForm input:focus {
    color: #ffffff;
    background: transparent;
    border-color: #5C7280;
    outline: 0;
    box-shadow: 0 0 4px 5px #576065;
}

.blogs-section .searchForm .input-group-btn {
    position: absolute;
    right: 6px;
}

.blogs-section .btn-search {
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    background: #5C7280;
    color: #fff;
    border-radius: 25px;
    min-width: 120px;
    padding: 6px 45px;
}

.blogs-section.bg-color-dark,
.mainBlog.bg-color-dark,
.multiblogs.bg-color-dark {
    background-color: #070D20;
}

.blogs-section .single-blog {
    padding: 0;
    margin: 0 0 20px 0;
    transition: all 0.3s ease-out 0s;
    display: inline-block;
    background: #070D20 0% 0% no-repeat padding-box;
    border: 0.20000000298023224px solid #8c8c8c;
    border-radius: 15px;
}

.single-blog .blog-space-item .blog-space-thumb {
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
}

.single-blog small {
    font: normal italic 400 12px/20px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.single-blog .blog-space-item .blog-space-content h6 {
    margin: 5px 0;
    font: normal normal normal 20px/29px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.single-blog .blog-space-item .blog-space-content p {
    font: normal normal normal 16px/24px Montserrat;
    letter-spacing: 0px;
    color: #ABABB2;
}

.single-blog:hover {
    background: #1A2533;
    border-color: #4A5F6D;
    box-shadow: 0px 18px 0px -10px #2C3E4C;
}

.single-blog:hover h6,
.single-blog:hover small {
    color: #E0E4E8;
}

.single-blog:hover .para-ellipsis {
    color: #B0B8C0;
}

.single-blog:hover p small {
    color: #8A96A3;
}

.single-blog .blog-space-item .blog-space-thumb img {
    width: 100%;
    object-fit: fill;
    object-position: center top;
}

.single-blog .blog-space-item .blog-space-content {
    padding: 5px 20px;
    text-align: left;
    width: 50%;
    min-height: 200px;
}

.mainBlog h2 {
    font: normal normal normal 38px/50px Montserrat;
    letter-spacing: 0.13px;
    color: #FFFFFF;
}

.multiblogs small {
    font: normal italic 400 12px/20px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.multiblogs h5.card-title {
    font: normal normal normal 20px/29px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 12px 0;
}

.multiblogs p.para-ellipsis a.text-white {
    font: normal normal 500 16px/24px Montserrat;
    letter-spacing: 0px;
}

.para-ellipsis {
    display: -webkit-box;
    height: 78px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
}

.single-blog .blog-space-item .blog-space-content .button--effect-1 {
    padding: 5px 20px;
    box-shadow: none;
}

.content-service {
    border-radius: 15px;
    padding: 20px;
    background: linear-gradient(to right, #110d2a9e, #110d2aa3), url(website_assets/images/bg-1.jpg);
    min-height: 380px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: 50% 33%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.squre-effect {
    position: relative;
    z-index: 1;
    background: transparent;
    border: 1px solid #FFFFFF61;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 0 20px 0;
    min-height: 465px;
}

.squre-effect .card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 15px;
}

.squre-effect .context-box {
    min-height: 250px;
    padding: 20px;
    background: transparent;
}

.squre-effect .context-box h5 a {
    font-size: 1.3em;
    color: #fff;
    font-weight: 500;
}

.squre-effect .context-box p {
    font-size: .78rem;
    text-align: justify;
    color: #abacb7;
}

/* Blog Subscription Card CSS */

.blog-sub-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    /* font-family: Arial, sans-serif; */
}

.blog-sub-card-body {
    background: transparent;
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 187, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 187, 0, 0.1);
    overflow: hidden;
}

.blog-sub-card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 15px);
    z-index: 0;
    pointer-events: none;
}

.blog-sub-card-body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            #3E5460 0%,
            #231b0466);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}


.tr-border-gradient,
.bl-border-gradient {
    position: absolute;
    border-radius: 50%;
    background: none;
}

.tr-border-gradient::before,
.bl-border-gradient::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 30px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(238, 195, 79, 1),
            rgba(224, 175, 39, 0.5),
            rgba(173, 128, 2, 0.5) 50%);
    filter: blur(5px);
    z-index: -5;
    pointer-events: none;
}

.tr-border-gradient {
    top: -7px;
    right: 70px;
}

.bl-border-gradient {
    bottom: -7px;
    left: 70px;
}

.premium-box {
    background: linear-gradient(145deg, #1a1a1a, #232323);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    border: 2px solid rgba(236, 178, 17, 1);
    z-index: 2;
}

.premium-inner-box {
    background: linear-gradient(145deg, #232323, #2a2a2a);
    border-radius: 10px;
    margin: 2px;
    padding: 10px;
}

.premium-text {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.subscription-wrapper {
    display: inline-block;
    background: transparent linear-gradient(90deg,
            #b07515 0%,
            #e0ba60 9%,
            #f5d77f 14%,
            #f5d77f 36%,
            #b07515 49%,
            #e0ba60 57%,
            #f5d77f 61%,
            #f5d77f 84%,
            #b07515 100%) 0% 0% no-repeat padding-box;
    padding: 3px;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.subscription-text {
    color: #ffffff;
    /* font-size: 1.2rem; */
    font-weight: bold;
    /* letter-spacing: 3px; */
    margin: 0;
    text-transform: uppercase;
    padding: 0 0.5rem;
}

.blog-sub-card-body .blog-subs-logo {
    width: 120px;
    /* margin: 1rem 0; */
}

.blog-sub-card-body h2 {
    color: white;
    font-size: 1.5rem;
    /* margin: 1.5rem 0; */
    margin-bottom: 5px !important;
    position: relative;
    z-index: 2;
}

.blog-sub-card-body .premium-description {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px !important;
    position: relative;
    z-index: 2;
}

.blog-sub-card-body .description {
    color: #888;
    font-size: 0.9rem;
    /* margin-bottom: 2rem; */
    position: relative;
    z-index: 2;
}

.blog-sub-card-body .button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 0.8rem 0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.blog-sub-card-body .register-btn {
    /* background: linear-gradient(145deg, #2a2a2a, #333); */
    background: #3E5460;
    border: 1px solid #ffffff;
    color: white;
}

.blog-sub-card-body .register-btn:hover {
    background: linear-gradient(145deg, #333, #2a2a2a);
    transform: translateY(-2px);
}

.blog-sub-card-body .contact-btn {
    background: #E0E0E0;
    border: none;
    color: #1a1a1a;
}

.blog-sub-card-body .contact-btn:hover {
    background: #f5f5f5;
    border: none;
    transform: translateY(-2px);
}


/* ----------------- Blog details page -------------------- */
.blog-img {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    max-width: 100%;
}

.blog-details-content p {
    font: normal normal normal 18px/26px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.blog-details-content h1,
.blog-details-content h2,
.blog-details-content h3 {
    font: italic normal 600 35px/40px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}

/* ---------------- B2B sales management ------------------- */
.leftBoxText {
    padding: 50px 100px 50px 50px;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
}

#highEnd h2 {
    letter-spacing: 0px;
    /* text-transform: uppercase; */
    font: normal normal 800 29px / 45px Montserrat;
}

#highEnd .rightImgBox {
    position: absolute;
    bottom: -60px;
    padding: 50px 50px 0;
    text-align: center;
}

#highEnd a.startToday {
    background: var(--color-four) 0% 0% no-repeat padding-box;
    border-radius: 6px;
    padding: 10px 35px 10px 14px;
    font: normal normal 600 16px / 20px Poppins;
    letter-spacing: 0px;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
    color: #FFFFFF;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    display: inline-block;
    margin-bottom: 50px;
    position: relative;
    bottom: 100px;
    width: 180px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#features-section .bg-dot-img {
    background-image: url(../images/b-to-b/b2b-dot-img.svg);
    background-repeat: no-repeat !important;
    background-position: center;
    background-size: 60% 84% !important;
    width: 1000px;
    height: 700px;
}

/* .b2b-logo {
    background-color: var(--color-four);
    border: 1px,solid, var(--color-primary);
    border-radius: 10%;
    display: inline-block;
    position: relative;
    margin-top: 11.7rem;
    padding: 5px;
} */

/* .bg-dot-img img.logoBoxImg {
    width: 100px;
    position: relative;
    z-index: 2;
} */

#features-section.featuresection h2 {
    font: normal normal 800 22px/30px Montserrat;
}

#features-section.featuresection p {
    font: normal normal 300 16px/25px Poppins;
}

#features-section.featuresection {
    /* background: transparent radial-gradient(closest-side at 50% 50%, #3C414F 0%, #070D20 100%) 0% 0% no-repeat padding-box; */
    padding-bottom: 0;
    margin-bottom: -10rem;
}

#features-section.featuresection p,
#features-section.featuresection ul {
    margin: 0;
    padding-left: 10px;
}

.first-feature {
    top: -42rem;
    position: relative;
}

.second-feature {
    position: relative;
    top: -34rem;
    padding-left: 5rem;
}

.third-feature {
    position: relative;
    top: -23rem;
    width: 325px;
}

.fourth-feature {
    position: relative;
    top: -17rem;
}

/* --------------------------------- Healthcare Section ----------------------------------- */

.dark-gradient {
    background: transparent radial-gradient(closest-side at 50% 50%, #3C414F 0%, #070D20 100%) 0% 0% no-repeat padding-box;
}

#smart-tracking-sec {
    background-image: url('../images/healthcare/bg-map.png');
}

#medical-invest {
    background-image: url('../images/healthcare/woman-with-briefcase-bg.png');
    background-size: 100% 100% !important;
}

#smart-tracking-sec .section-title,
#healthcareFeature .section-title {
    font: normal normal 800 36px/55px Montserrat;
}

#medical-invest .section-title {
    font: normal normal 800 32px/55px Montserrat;
    text-transform: capitalize;
}

#medical-invest .rotted-box {
    /* transform: rotate(-4deg); */
    margin-bottom: 16px;
}

#medical-invest span.heighlighttext {
    background: #070D20 0% 0% no-repeat padding-box;
    padding: 6px 12px;
    border-radius: 7px;
    font: normal normal 300 20px / 30px Poppins;
    color: #fff;
    position: relative;

}

#medical-invest a.startToday {
    font: normal normal 600 16px / 20px Poppins;
    background: #070D20 0% 0% no-repeat padding-box;
    border-radius: 8px;
    color: #fff;
    padding: 12px 28px;
}

.imp-details,
.multi-client,
.hassle-free,
.manage-connection-sec {
    margin-bottom: 50px;
}

.manage-conn-div {}

.manage-conn-img {}

/* --------------------- FAQ Page ---------------------------- */

.switch-wrapper [type="radio"]:checked+label.faq-type,
.grad-faq-btn {
    border-radius: 7px;
    opacity: 1;
    background: transparent linear-gradient(175deg, var(--color-three) 0%, var(--color-one) 100%) 0% 0% no-repeat padding-box;
    color: var(--txt-dark);
    font: normal normal bold 12px / 19px Montserrat;
    font-weight: bold;
}

.web_faq_blog .card {
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.web_faq_blog h2 button {
    color: #202020;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 10px 0 10px;
}

.web_faq_blog h2 button i {
    margin-right: 20px;
}

.web_faq_blog p {
    color: #202020;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    padding: 10px 0 10px 30px;
    margin: 0;
}

.btn-link:hover,
.btn-link:focus {
    color: #202020;
    text-decoration: none;
}

/* ------------ Password ----------------- */
.password-meter {
    display: flex;
    height: 5px;
    margin-top: 10px;
}

.meter-section {
    flex: 1;
    background-color: #ddd;
    margin: 0 5px;
}

.weak {
    background-color: #ff4d4d;
}

.medium {
    background-color: #ffd633;
}

.strong {
    background-color: #00b300;
}

.very-strong {
    background-color: #009900;
}

/* ---------------------------------End sucess ----------------------------------- */
@media (max-width: 450px) {
    a.btn-custom {
        min-width: 116px;
        font-size: 9px;
    }

    header a.btn-custom {
        min-width: 80px;
        padding: 6px 0 !important;
    }

    #menu-btn {
        margin-left: 5px;
    }

    .flex-wrap-custom {
        flex-wrap: wrap;
    }

    header.header-mobile.header-light .sm-pt10 {
        padding-top: 0;
    }

    header.header-mobile.header-light .logo-box {
        margin: 0 auto;
    }

    .de-flex {
        display: block;
        text-align: center;
    }

    .d-flex {
        display: block !important;
    }

    .plan_quantity {
        justify-content: start !important;
    }

    .footer-light .widget {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    #progressbar {
        padding: 0;
    }

    .blog_card.bl_list .bl_flex {
        display: block;
    }

    .blog_card.bl_list .image_thumb {
        width: 100%;
    }

    #form .field-set a {
        float: left;
    }

    .faq .plus-minus-toggle {
        left: -30px;
    }
}

@media (max-width: 556px) {

    .loginPage .lefttext,
    .reset-pass-page .lefttext {
        order: 2;
    }

    .loginPage {
        padding: 0;
    }

    .loginPage .overlay-gradient {
        padding-top: 20px;
    }

    .loginPage a.btn-border,
    .loginPage a.btn-custom {
        font-size: 12px;
        padding: 12px 6px;
    }

    #cookieConsent a.cookieConsentOK {
        padding: 0 6px;
        font-size: 12px;
    }

    .accordion a.text-dark {
        font-size: 13px;
        padding-right: 1.4rem;
    }

    .accordion .collapsible-link::before {
        right: 0;
    }

    .accordion .collapsible-link::after {
        right: calc(0rem + 6px);
    }

    .accordion .card-header {
        padding: 20px 16px;
    }

    #blogs {
        padding: 0;
    }

    #blogs .widget.widget_recent_posts {
        margin-top: 6rem;
    }

    .sucess-page {
        padding: 0;
    }

    .Scriptcontent #card {
        width: 100%;
    }

    section.cancel-page {
        padding: 20px 0;
    }

    .cancel-page .content-box {
        padding: 0;
    }

    .header-light.scroll-light #logo svg .cls-1 {
        fill: #7a3f89;
    }

    .header-light.scroll-light #logo svg .cls-2 {
        fill: #ffff;
    }

    .header-light.scroll-light.smaller #logo svg .cls-1 {
        fill: #ffff;
    }

    .header-light.scroll-light.smaller #logo svg .cls-2 {
        fill: #7a3f89;
    }

    section.content.invoice-content {
        padding-top: 0;
    }

    #release-version .card {
        width: 100%;
    }

    .pricing-s1 {
        height: auto;
    }

    .pricing-s1 .bottom {
        height: auto;
        min-height: auto;
    }

    #intuitive-app,
    #dataSecurity,
    #singleWindow {
        text-align: center;
    }

    #subheader h1,
    #noRoom h2,
    #error-prone h2,
    #RenewalSec h2 {
        font-size: 20px;
        line-height: 40px;
    }

    #noRoom .roomfeature,
    #error-prone .roomfeature {
        display: block;
        padding: 0;
    }

    #error-prone .roomfeature p {
        margin: 30px 0px 20px;
    }

    #error-prone .roomBox {
        padding: 10px;
    }

    #noRoom .roomBox p {
        margin: 15px 0;
    }

    #noRoom .roomBox {
        padding: 10px;
    }

    .formBox {
        padding: 15px;
    }

    #contactPage address.s1 span svg {
        width: 80px;
    }

    .loginPage .h1 {
        font-size: 38px;
    }

    .loginPage .lefttext a,
    .loginPage .lefttext a.btn-custom {
        padding: 10px 12px;
    }

    .switch-wrapper label {
        font-size: 12px;
        padding: 10px 12px;
    }

    .featureintab,
    .feature-box {
        display: block;
    }

    .featureTab {
        width: 100%;
        margin: 10px 0;
        display: block;
    }

    .imgBGdark {
        display: block;
        margin: 10px auto;
    }

    h5.tabTitleHead {
        text-align: center;
    }

    .feature-box p {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .fiend_agent_tab .featureTab {
        position: unset !important;
    }

    img.windoImg {
        display: none;
    }

    .videoBanner {
        width: 100%;
        height: 300px;
        background-size: 100% 100% !important;
    }

    #intuitive-app,
    #dataSecurity {
        padding: 20px 0;
    }

    .groupImg {
        width: 100px;
        height: 100px;
    }

    .desktop {
        position: absolute;
        top: 80%;
        bottom: 0;
    }

    .subfooter .social-icons {
        margin-bottom: 36px !important;
    }

    .subfooter .social-icons {
        margin-bottom: 0em;
        margin-right: 0;
    }

    .subfooter .widgetLogo {
        margin-bottom: 20px;
    }

    .priceFaqHead h2 {
        font-size: 28px;
    }

    .priceFaqHead p {
        font-size: 28px;
        margin: 0;
    }

    footer {
        padding: 20px 0 0 0;
    }

    .attendance_tab .container {
        padding: 0 15px;
    }

    .feature-box .imgBGdark img {
        width: 100px;
    }

    h5.tabTitleHead {
        font-size: 20px;
    }

    small.priceSmall {
        font: normal normal 500 12px/20px Montserrat;
        padding: 17px 6px;
    }

    section {
        padding: 20px 0;
    }

    video {
        width: 250px;
        min-width: 100%;
    }

    .cover #play-pause-button {
        left: -15%;
    }

    .real-estate {
        background-position: 80% 90%;
        height: 60vh;
    }

    .schedule-visit .glass-effect .section-title {
        font-size: 1rem;
    }

    .schedule-visit .img-block:before {
        bottom: 2px;
    }

    .blogs-section .searchForm .input-group-btn {
        position: unset;
    }

    .blogs-section .btn-search {
        margin: 10px 0;
        width: 100%;
    }

    .mainBlog h2 {
        word-break: break-all;
    }

    #noRoom p.section-first-para,
    #error-prone p.section-first-para {
        font-size: 20px;
        line-height: 25px;
    }

    .section-para,
    #singleWindow p {
        font-size: 15px;
        line-height: 25px;
    }

    .schedule-visit-page .content-img p {
        width: auto;
    }

    .schedule-visit-page .track-history .trck-hstry-content {
        height: auto;
    }

    .schedule-visit-page .track-history .trck-hstry-content>div {
        position: unset;
        background: unset;
    }

    .section-title,
    #singleWindow h4,
    #highEnd h2,
    #smart-tracking-sec .section-title,
    #healthcareFeature .section-title,
    #medical-invest .section-title {
        font: normal normal 800 22px/30px Montserrat;
        margin: 0;
    }

    #healthcareFeature {
        text-align: center;
    }

    #healthcareFeature div {
        padding: 5px 10px;
    }

    .section-small-title,
    #singleWindow h6 {
        font: normal normal normal 22px/30px Montserrat;
    }

    #sliderSection .h1 {
        font-size: 25px;
        line-height: 40px;
        text-align: center;
    }

    #sliderSection p.lead,
    #sliderSection {
        text-align: center;
    }

    .attendance_tab .attendtab {
        width: 100%;
    }

    .feature-switch {
        display: block;
    }

    .attendenctab .featureTab {
        position: unset;
    }

    .attendenctab .featureTab:last-of-type {
        width: auto;
    }

    .innerPara {
        width: auto;
        text-align: center;
        padding: 0;
        font-size: 16px;
    }

    .telecaller_tab .row,
    .attendance_tab .row,
    .fiend_agent_tab .row {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .attendenctab img.windoImg {
        display: block;
        margin: 0 auto;
    }

    .attendance_tab img.locationmap {
        width: 100%;
    }

    .perfect-sales {
        padding: 72px 0 0;
    }

    #sliderSection .h1 svg {
        width: 20px;
        margin-left: -7px;
        margin-top: -5px;
    }

    #sliderSection {
        padding: 0;
    }

    .rc-anchor-logo-portrait {
        margin: 10px 0 0 0;
        width: 43px;
    }

    .rc-anchor-normal .rc-anchor-pt {
        margin: 2px 39px 0 0;
    }

    .rc-anchor-normal {
        height: 74px;
        width: 223px;
    }

    .grecaptcha-badge {
        width: 223px !important;
    }

    .paddingzero {
        padding: 0 !important;
    }

    .divider-wrapper {
        width: auto;
    }

    .signLogin {
        padding: 15px 0px;
        font-size: 12px;
    }

    .h1 br {
        display: none;
    }

    #intuitive-app {
        background: none !important;
    }

    .spacer-20,
    .spacer-10 {
        display: none;
    }

    #singleWindow a {
        font: normal normal bold 12px / 30px Montserrat;
        padding: 10px 15px;
    }

    #features-section .bg-dot-img {
        background-image: none;
        width: auto;
        height: auto;
    }

    .first-feature,
    .second-feature,
    .third-feature,
    .fourth-feature {
        position: relative;
        top: auto;
        width: auto;
        padding: 20px 0;
    }

    .bg-dot-img img.logoBoxImg {
        margin: 10px 0;
    }

    #features-section.featuresection {
        margin-bottom: 0;
    }

    #highEnd .rightImgBox {
        position: unset;
        padding: 20px 0 5px;
    }

    .leftBoxText {
        padding: 30px;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }

    .imp-details,
    .multi-client,
    .hassle-free,
    .manage-connection-sec {
        margin-bottom: 0;
    }

    #medical-invest {
        background-size: cover !important;
    }

    #back-to-top {
        bottom: 67px;
        opacity: 1;
        right: 5px;
        width: 35px;
        height: 35px;
        padding: 2px 10px;
    }

    #back-to-top.show {
        bottom: 67px;
    }

    .schedule-visit h1,
    #contactPage h1 {
        font-size: 23px;
        line-height: 36px;
    }

    .schedule-visit br,
    .schedule-visit-page .track-history .trck-hstry-content img {
        display: none;
    }

    #RenewalSec .contentBox {
        padding: 30px 0 30px 10px;
        margin: 0 0 7em;
    }

    #RenewalSec .leftImg img {
        display: none;
    }

    #contactPage .container {
        padding: 0 15px !important;
    }
}

@media (min-width: 556px) and (max-width: 768px) {

    .loginPage .lefttext,
    .reset-pass-page .lefttext {
        order: 2;
    }

    header a.btn-custom {
        padding: 5px 4px !important;
    }

    .desktop {
        position: absolute;
        bottom: 0;
    }

    .subfooter .social-icons {
        margin-bottom: 2em;
    }

    .subfooter .de-flex {
        display: block;
    }

    .section-title {
        font: normal normal 800 26px/46px Montserrat;
    }

    .section-small-title {
        font: normal normal normal 25px/34px Montserrat;
    }

    .attendance_tab .attendtab {
        width: 100%;
    }

    .attendenctab .featureTab {
        position: unset;
    }

    .attendenctab .featureTab:last-of-type {
        width: auto;
    }

    .innerPara {
        width: auto;
        text-align: center;
        padding: 0;
    }

    .attendenctab img.windoImg {
        display: block;
        margin: 0 auto;
    }

    .attendance_tab img.locationmap {
        width: 100%;
    }

    #sliderSection .h1 {
        font-size: 30px;
        line-height: 55px;
    }

    #sliderSection .h1 svg {
        width: 33px;
        margin-top: -6px;
    }

    #sliderSection {
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-light img.logo {
        width: 120px;
        margin-right: 15px;
    }

    footer {
        font-size: 12px;
    }

    .subfooter .social-icons {
        margin-right: 0;
    }

    .social-icons i,
    .social-icons svg {
        padding: 12px 10px 8px 10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin: 0 0px 0 0px;
    }

    #sliderSection .spacer-10 {
        display: none;
    }

    #menu-btn:hover:before {
        color: #fff;
    }

    #singleWindow h3.section-title {
        margin-top: 78px;
    }
}

@media (min-width: 557px) and (max-width: 991px) {
    .accordion a.text-dark {
        font-size: 13px;
    }

    .accordion .collapsible-link::before {
        right: 0;
    }

    .accordion .collapsible-link::after {
        right: calc(0rem + 6px);
    }

    .accordion .card-header {
        padding: 20px 16px;
    }

    .blog_card.bl_list .bl_flex {
        display: block;
    }

    .blog_card.bl_list .image_thumb {
        width: 100%;
    }

    .sucess-page {
        padding: 0;
    }

    .Scriptcontent #card {
        width: 100%;
    }

    .header-light.scroll-light #logo svg .cls-1 {
        fill: #7a3f89;
    }

    .header-light.scroll-light #logo svg .cls-2 {
        fill: #ffff;
    }

    .header-light.scroll-light.smaller #logo svg .cls-1 {
        fill: #ffff;
    }

    .header-light.scroll-light.smaller #logo svg .cls-2 {
        fill: #7a3f89;
    }

    section.content.invoice-content {
        padding-top: 0;
    }

    #release-version .card {
        width: 100%;
    }

    .pricing-s1 {
        height: auto;
    }

    .pricing-s1 .bottom {
        height: auto;
        min-height: auto;
    }

    #RenewalSec .rightImg img {
        position: unset;
    }

    #error-prone .roomBox {
        padding: 70px 10px 30px;
    }

    #error-prone .roomfeature p {
        font-size: 14px;
        margin: 30px 0px 0;
    }

    #noRoom .roomBox {
        padding: 70px 10px 30px;
    }

    #noRoom .roomBox p {
        margin: 34px 4px 0;
    }

    .featureintab,
    .feature-box {
        display: block;
    }

    .featureTab {
        width: 100%;
        margin: 10px 0;
        display: block;
    }

    .imgBGdark {
        display: block;
        margin: 10px auto;
    }

    h5.tabTitleHead {
        text-align: center;
    }

    .feature-box p {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .fiend_agent_tab .featureTab {
        position: unset !important;
    }

    img.windoImg {
        display: none;
    }

    #sliderSection {
        padding: 20px 0 0;
    }

    .attendenctab .featureTab {
        position: unset;
    }

    .attendenctab .featureTab:last-of-type {
        width: auto;
    }

    .innerPara {
        width: auto;
        text-align: center;
        padding: 0;
    }

    .attendenctab img.windoImg {
        display: block;
        margin: 0 auto;
    }

    .attendance_tab img.locationmap {
        width: 100%;
    }

    #sliderSection .h1 {
        font-size: 40px;
        line-height: 65px;
    }

    #sliderSection .h1 svg {
        width: 33px;
        margin-top: -6px;
    }

    .section-title {
        font: normal normal 800 35px/45px Montserrat;
    }

    .section-small-title {
        font: normal normal normal 25px / 35px Montserrat;
    }

    .section-para {
        font: normal normal 300 15px / 25px Poppins;
    }

    .h1 br {
        display: none;
    }

    #intuitive-app {
        background: none !important;
    }

    .spacer-20,
    .spacer-10 {
        display: none;
    }

    #singleWindow a {
        font: normal normal bold 12px / 30px Montserrat;
        padding: 10px 15px;
    }

    #features-section .bg-dot-img {
        background-image: none;
        width: auto;
        height: auto;
    }

    .first-feature,
    .second-feature,
    .third-feature,
    .fourth-feature {
        position: relative;
        top: auto;
        padding: 20px 0;
    }

    .bg-dot-img img.logoBoxImg {
        margin: 10px 0;
    }

    #features-section.featuresection {
        margin-bottom: 0;
    }

    #highEnd .rightImgBox {
        position: unset;
        padding: 20px 0;
    }

    .leftBoxText {
        padding: 30px;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
}

@media (min-width: 991px) and (max-width: 1100px) {
    #mainmenu a {
        padding: 0px 9px;
        font-size: 12px;
    }

    #intuitive-app {
        background-position: -54% 50% !important;
        background-size: 80% !important;
    }

    #sliderSection a {
        padding: 12px;
    }

    header,
    header * {
        -o-transition: 0.2s;
        -ms-transition: 0.2s;
        -moz-transition: 0.2s;
        -webkit-transition: 0.2s;
        transition: 0.2s;
    }

    header a.btn-custom {
        padding: 8px 5px !important;
        min-width: 100px;
        font-size: 12px;
    }

    header.header-light .logo-2 {
        width: 130px;
    }

    .pricing-s1 {
        height: auto;
    }

    .pricing-s1 .bottom {
        height: auto;
        min-height: auto;
    }

    #mainmenu a {
        padding: 00px 00px;
    }

    #dataSecurity .bottomImage {
        top: 0;
    }

    .loading {
        left: 41%;
    }

    #sliderSection .h1 {
        font-size: 36px;
        line-height: 42px;
        margin-top: 0;
    }

    #features-section .bg-dot-img {
        background-image: none;
    }

    #features-section .bg-dot-img {
        display: none;
    }

    #features-section.featuresection {
        margin-bottom: 0;
    }

    .first-feature,
    .second-feature,
    .third-feature,
    .fourth-feature {
        position: relative;
        top: auto;
        padding: 20px 0;
    }
}

@media (min-width: 1100px) and (max-width: 1400px) {
    header a.btn-custom {
        padding: 8px 12px !important;
    }

    #mainmenu a {
        padding: 00px 00px;
    }
}

@media screen and (max-width: 992px) and (min-width: 320px) {
    .single-blog .blog-space-item .blog-space-thumb {
        width: 100%;
    }

    .single-blog .blog-space-item .blog-space-content {
        width: 100%;
    }

    #dataSecurity .bottomImage {
        top: 0;
    }

    .loading {
        display: none;
    }
}

@media (min-width: 1400px) and (max-width: 2000px) {
    header a.btn-custom {
        padding: 8px 12px !important;
    }

    #mainmenu a {
        padding: 00px 00px;
    }

    header.header-light .logo-2 {
        width: 130px;
    }

    #mainmenu a {
        padding: 0px 6px;
    }
}

@media (max-width: 480px) {
    small.priceSmall {
        font: normal normal 500 8px/16px Montserrat;
    }
}

@media (min-width: 557px) and (max-width: 769px) {
    video {
        width: 300px;
        min-width: 100%;
    }
}