@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size:14px;
    line-height:24px;
}
b, strong {
    font-weight:500  !important;
}
:root {
    --primary: #146c93;
    --secondary: #002130;
    --light: #F0F6FF;
    --dark: #262B47;
}
p{
    line-height:26px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 400 !important;
}
h3,
h4,
.fw-semi-bold {
    font-weight: 400 !important;
}
h5,
h6,
.fw-medium {
    font-weight: 400 !important;
}
/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}
.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}
/*** Button ***/
.btn {
    transition: .5s;
}
.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}
.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}
.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, #35c1ff, #005b85);
}
.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, #35c1ff, #005b85);
}
.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 0.8;
}
.btn:hover {
    opacity:0.8;
}
.rounded-pill {
    border-radius: 0 !important;
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 35px;
    padding: 25px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}
.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}
    .sticky-top.navbar-light .navbar-nav .nav-link:last-child {
        margin: 0;
    }
.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}
.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}
.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}
.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
    display:none;
}
.sticky-top.navbar-light .navbar-brand img.floting-logo.d-none {
    display:block !important;
}
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }
    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }
    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }
    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }
    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 14rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}
/*** Feature ***/
.feature-item {
    transition: .5s;
}
.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}
/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}
.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}
.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}
.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}
.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}
/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}
.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}
.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}
.screenshot-carousel .owl-dots, .screenshot-carousel2 .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.screenshot-carousel .owl-dot, .screenshot-carousel2 .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}
.screenshot-carousel .owl-dot::after, .screenshot-carousel2 .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}
.screenshot-carousel .owl-dot.active, .screenshot-carousel2 .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
    background:#35c1ff;
}
/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}
.testimonial-carousel .owl-item .testimonial-item h5{
    font-size:15px;
}
.testimonial-carousel .owl-item .testimonial-item p.mb-1 {
    font-size: 13px;
}
.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}
.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}
/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}
.footer .btn.btn-social:hover {
    color: var(--primary);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
    color: var(--light);
}
.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}
.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/*--- price table css start here ---*/


/* pricing table */
.pricing-table {
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
}

    .pricing-table td {
        padding: 0px;
        border-left: 1px solid transparent;
    }

    .pricing-table .pricing-table-list td {
        padding: 3px 8px;
        font-weight: 500;
        text-align: center;
        font-size: 12px;
        background: #F9F9F9;
    }

    .pricing-table .pricing-table-list .glyphicon-ok {
        color: #68AF27;
    }

    .pricing-table .pricing-table-list .glyphicon-remove {
        color: #C22439;
    }

    .pricing-table .pricing-table-list td:first-child {
        font-weight: 400;
        text-align: left;
        border-left: 0px;
        font-size: 11px;
        color: #333;
        text-transform: uppercase;
    }

    .pricing-table .pricing-table-list:nth-child(2n) td {
        background: #F2F2F2;
    }

    .pricing-table .pricing-table-text h2 {
        font-size: 24px;
        font-weight: 300;
        line-height: 33px;
        margin: 0px;
        padding: 0px;
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .pricing-table .pricing-table-text p {
        font-size: 12px;
        font-weight: 400;
        text-align: center;
        color: #666;
        margin-top: 10px;
    }

    .pricing-table .pricing-table-item {
        color: #FFF;
    }

        .pricing-table .pricing-table-item .pricing-table-item-head {
            padding: 10px;
            text-align: left;
            background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        }
.table-head {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    margin: 3px 0;
    display: block;
}
span.tab-td {
    padding-left: 20px;
}
.pricing-table .pricing-table-item .pricing-table-item-head p {
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight:500;
}
span.bi.bi-check {
    font-size: 18px;
    color: #116403;
}
span.bi.bi-x {
    font-size: 18px;
    color: #ff0000;
}

.pricing-table .pricing-table-item .pricing-table-item-head span {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    display: block;
    margin: 4px 0 0 0;
    height: 33px;
}
.pricing-table .pricing-table-item .pricing-table-item-price {
    padding: 10px 10px;
    text-align: left;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-table .pricing-table-item .pricing-table-item-price p {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 0px;
    font-weight:500;
}
.pricing-table .pricing-table-item .pricing-table-item-price p span {
    font-size: 12px;
    font-weight: 300;
}
.pricing-table .pricing-table-item .pricing-table-item-price > span {
    font-size: 12px;
    font-weight: 400;
    color: #009AD7
}
.pricing-table .pricing-table-item .pricing-table-item-purchase {
    padding: 10px 5px;
    background: #FFF;
}
.pricing-table .pricing-table-item .pricing-table-item-purchase .btn {
    text-transform: uppercase;
    margin-bottom: 0px;
}


/*--- step from css start here ---*/


#heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 0px
}
    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        position: relative
    }
.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}
#msform input,
#msform textarea {
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px
}

    #msform input:focus,
    #msform textarea:focus {
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        border: 1px solid #005c86;
        outline-width: 0
    }

#msform .action-button {
    width: 100px;
    cursor: pointer;
    margin: 10px 0px 10px 5px;
    float: right
}
    #msform .action-button:hover,
    #msform .action-button:focus {
        background-color: #311B92
    }

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    margin: 10px 5px 10px 0px;
    float: right
}
#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}
.card {
    z-index: 0;
    border: none;
    position: relative
}
.fs-title {
    font-size: 25px;
    color: #673AB7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}
.purple-text {
    color: #673AB7;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

    #progressbar .active {
        color: #673AB7
    }

    #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400
    }

    #progressbar #account:before {
        font-family: FontAwesome;
        content: "\f13e"
    }

    #progressbar #personal:before {
        font-family: FontAwesome;
        content: "\f007"
    }

    #progressbar #payment:before {
        font-family: FontAwesome;
        content: "\f030"
    }

    #progressbar #confirm:before {
        font-family: FontAwesome;
        content: "\f00c"
    }

    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #673AB7
    }

.progress {
    height: 20px
}

.progress-bar {
    background-color: #005b85;
}

.fit-image {
    width: 100%;
    object-fit: cover
}

/*--- redio btn css start here ---*/

.radio-compont {
    display: flex;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.radio-text {
    padding: 0px 10px;
}

.radio-compont:hover {
    box-shadow: inset 4px 4px 12px #afaeae,inset -4px -4px 12px #ffffffc9;
    border-radius: 100px;
}

.radiostyle:checked ~ .radio-text {
    color: #E41C23;
}

.radiostyle {
    width: 20px;
    height: 20px;
}

.radio-input {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 100%;
}
.radiostyle {
    width: 30px !important;
    margin:0 !important;
}

/*--- inner page css start here ---*/
.inner-page {
    padding: 8rem 0 1rem 0;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-repeat: no-repeat;
    text-align:center;
}
.inner-page h1{
    color:#ffffff;
    font-size:32px;
}
.ragister-page{
    padding:50px 0;
}
.ragister-page #msform input {
    margin: 0;
}

a.blantershow-chat {
    /* background: #009688; */
    background: #fff;
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 25px;
    left: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}
span.header-subTitle {
    display: block;
    font-size: 11px;
    text-align: center;
    color: #c8dae1;
    margin: -10px 0 0 0;
}
.sticky-top span.header-subTitle {
    color:#4f8aa5;
}