/*common-css*/
    @font-face {
      font-family: "Circular Book";
      src: url("../fonts/CircularStd-Book.ttf");
    }
    @font-face {
      font-family: "Circular Black";
      src: url("../fonts/CircularStd-Black.ttf");
    }
    @font-face {
      font-family: "Circular-b";
      src: url("../fonts/CircularStd-Bold.ttf");
    }
    @font-face {
      font-family: "Circular-m";
      src: url("../fonts/CircularStd-Medium.ttf");
    }
    :root{
        --color-black:#000000;
        --dark-blue: #DAEFFF;
        --light-blue:#F1F9FF;
    }
    section{
        position: relative;
    }
    .sub-heading h2{
        color: #000;
        font-family: "Circular-b";
        font-size: 36px;
        font-style: normal;
        line-height: normal;
        margin-bottom: 32px;
    }
    .sub-heading h3 {
        color: #000;
        font-family: "Circular-b";
        font-size: 28px;
        font-style: normal;
        line-height: normal;
        margin-bottom: 12px;
    }
    p{
        color: #717171;
        font-family: "Circular Book";
        font-size: 18px;
        font-style: normal;
        line-height: 32px; 
        font-weight: 400;
        margin-bottom: 0;
    }
    ul,ol{
        padding: 0;
        margin-bottom: 0;
        list-style: none;
    }
    html.myClass {
        
        overflow: hidden;
    }
    label.error {
        color: #CC0000 !important;
        text-transform: math-auto !important;
    }
    .section-header {
        text-align: center;
        padding-bottom: 40px;
    }
    .section-header h2 {
        color: #000;
        font-family: "Circular-b";
        font-size: 36px;
        font-style: normal;
        line-height: normal;
        margin-bottom: 32px;
        text-transform: capitalize;
    }
    .w-40{
        width: 40%;
    }
/*common-css*/

    body{
    	font-family: "Circular Book" !important;
        overflow-x: hidden;
    }

    header{
    	position: relative;
    }

    .header-top {
        background: #161616;
        position: relative;
        padding: 2px 0;
    }

    .header-top .announcement p{
    	color: #FFF;
    	font-family: "Circular Book";
    	font-size: 14px;
    	font-style: normal;
    	font-weight: 400;
    	line-height: 32px;
    	margin-bottom: 0;
    }

    header nav.navbar {
         background: #DAEFFF; 
        padding: 0;
        position: absolute;
        z-index: 99;
        width: 100%;
        margin: 0;
    }

    header nav.navbar ul.navbar-nav li{
    	margin: 0 10px;
    }

    header nav.navbar ul.navbar-nav li a {
        color: #222;
        font-family: "Circular Book";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        padding: 0;
        position: relative;
        transition: 0.5s all;
    }
    header nav.navbar ul.navbar-nav li a:after {
        content: '';
        background: #4D0989;
        width: 6px;
        height: 6px;
        opacity: 0;
        border-radius: 50%;
        left: 0;
        right: 0;
        bottom: -2px;
        position: absolute;
        margin: 0 auto;
        transition: 0.5s all;
    }
    header nav.navbar ul.navbar-nav li a:hover{
    	color: #4D0989;
    	transition: 0.5s all;
    }
    header nav.navbar ul.navbar-nav a:hover::after{
    	opacity: 1;
    	transition: 0.5s all;
    }
    a.navbar-btn {
        border-radius: 100px;
        border: 2px solid #222;
        padding: 8px 30px;
        color: #222;
        font-family: "Circular Black";
    	font-size: 15px;
    	font-style: normal;
    	font-weight: 500;
    	line-height: 32px;
        text-decoration: none;
        transition: 0.5s all;
        text-transform: capitalize;
        display: inline-block;
    }
    a.navbar-btn:hover{
    	background: #222;
    	color: #fff;
    	transition: 0.5s all;
    }
    a.navbar-cart-btn {
        position: relative;
        margin-left: 15px;
        text-decoration: none;
    }
    a.navbar-cart-btn i {
        font-size: 28px;
        color: #222;
        position: relative;
    }
    a.navbar-cart-btn span {
        position: absolute;
        background: #222222;
        border-radius: 50%;
        height: 24px;
        width: 24px;
        text-align: center;
        color: #FFF;
        right: -16px;
        top: -5px;
    }
    .breadcrumbs {
        padding: 4rem 0;
        background: rgb(110,87,255);
        background: linear-gradient(130deg, rgba(110,87,255,1) 0%, rgba(245,141,255,1) 65%);
        margin-top: 90px;
        color: #fff;
    }

    @media (max-width: 992px) {
      .breadcrumbs {
        margin-top: 60px;
      }
    }

    .breadcrumbs h2 {
      font-size: 42px;
      font-weight: 700;
    }

    .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      padding: 0 0 10px 0;
      margin: 0;
      font-size: 14px;
    }

    .breadcrumbs ol a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    .breadcrumbs ol a:hover {
      text-decoration: underline;
    }

    .breadcrumbs ol li+li {
      padding-left: 10px;
    }

    .breadcrumbs ol li+li::before {
      display: inline-block;
      padding-right: 10px;
      color: #fff;
      content: "/";
    }
    #hero {
        background: var(--dark-blue);
        position: relative;
        margin-top: 0;
        padding-top: 80px;
    }
    .hero-carousel-item-content h1 {
        color: #000;
        font-size: 56px;
        font-style: normal;
        font-weight: 700;
        line-height: 74px;
        margin-bottom: 18px;
    }
    .hero-carousel-item-content p{
        color: #222;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px; 
        max-width: 400px;
        margin-bottom: 24px;
    }
    .hero-carousel-item-content a.hero-btn {
        border: 2px solid #4D0989;
        border-radius: 100px;
        background: #4D0989;
        color: #FFF;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 16px 32px;
        gap: 10px;
        text-decoration: none;
        transition: 0.5s all;
    }
    .hero-carousel-item-content a.hero-btn i{
        margin-top:3px;
    }
    .hero-carousel-item-content a.hero-btn:hover{
        background: #fff;
        color: #4D0989;
        transition: 0.5s all;
    }
    .hero-carousel .owl-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 35%;
        width: 100%;
    }
    .hero-carousel .owl-nav button {
        border-radius: 100px !important;
        background: rgba(255, 255, 255, 0.54) !important;
        padding: 10px 14px !important;
        width: 34px;
        height: 22px;
        transition: 0.5s all;
    }
    .hero-carousel .owl-nav button:hover{
        background: #4D0989 !important;
        transition: 0.5s all;
    }
    .hero-carousel .owl-nav button.owl-prev{
        margin-left: -60px;
    }
    .hero-carousel .owl-nav button.owl-next{
        margin-right: -60px;
    }
    header a.navbar-brand, footer figure.footer-logo {
        width: 160px;
        height: 90px;
    }
    header a.navbar-brand img, footer figure.footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
/*about-app-css*/
    section#about_app {
        padding: 118px 0;
    }
    .about-app-content p, .find-your-content p{
        margin-bottom: 32px;
    }
    section#about_app a.navbar-btn, section#find_id a.navbar-btn{
        height: 53px;
    }
    section#about_app .about-app-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
/*about-app-css*/

/*find-your-css*/
    section#find_id {
        padding: 80px 0 0 0;
        border-radius: 82px 82px 0px 0px;
        background: linear-gradient(180deg, #EFF8FF 0%, rgba(239, 248, 255, 0.62) 35.25%, rgba(239, 248, 255, 0.52) 68.38%, rgba(255, 255, 255, 0.00) 106.73%);
    }
    section#find_id img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
        object-position: center;
    }
    section#find_id .find-your-img {
        width: 100%;
        height: 480px;
        position: relative;
    }
    section#find_id .find-your-img figure.extra-first {
        position: absolute;
        width: 275px;
        height: 275px;
        bottom: -28%;
        margin: 0;
        right: -36%;
    }
    section#find_id .extra-image {
        height: 403px;
    }
    section#find_id .extra-image figure.extra-second {
        margin: 0;
        position: absolute;
        width: 220px;
        height: 220px;
        left: 50%;
        bottom: -6rem;
        transform: translateX(-50%);
    }
    section#find_id span.color-span {
        color: #4D0989;
        font-family: 'Circular-b';
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: capitalize;
        margin-bottom: 25px;
        display: block;
    }
    section#find_id .row {
        margin-bottom: 180px;
    }
    section#find_id .arrow {
        position: absolute;
        width: 50px;
        height: 80px;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
/*find-your-css*/

/*poster-css-*/
.poster:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 380px;
    background-image: url('../images/poster.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.poster ul.product-list,ul.social-link {
    display:flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}
.poster ul.product-list{
    margin-bottom: 30px;
}
.poster ul.product-list li {
    display: inline-flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 100px !important;
    border: 1.54px solid #FFFFFF;
     transition: .5s all;
}
.poster ul.product-list li a {
    color: #FFFFFF;
    font-size: 15px;
    font-style: normal;
    line-height: 32px;
    font-family: "Circular-m";
    text-decoration: none;
    transition: .5s all;
}
.poster ul.product-list li:hover{
    background-color: #ffffff;
    transition: .5s all;
}
 ul.social-link li a{
    font-size: 20px;
    color: #ffffff;
    transition: .5s all;
}
.poster ul.product-list li:hover a, .poster ul.social-link li a:hover{
    color: #000000;
    transition: .5s all;
}
.poster .poster-img {
    width: 100%;
    height: 480px;
}
.poster .poster-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin-top: -35px;
}
.poster .poster-content {
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
/*poster-css-*/

/*testimonial-css-start*/
.testimonial{
    padding: 118px 0;
}
.testimonial .sub-heading{
    margin-bottom: 60px;
}
.testimonial-item .testimonial-img {
    width: 55px !important;
    height: 55px !important;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonial-item h6.testi-heading {
    color: #4D0989;
    font-family: 'Circular-m';
    font-size: 18px;
    font-style: normal;
    /* font-weight: 500; */
    line-height: 101.2%; /* 18.216px */
    margin-bottom: 0;
}
.testimonial-item .name-text p {
    color: #AE74E1;
    font-family: 'Circular Book';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    text-transform: capitalize;
}
.testimonial-item p.star {
    color: #ffb545;
    font-size: 15px;
}
.testimonial-item .name-rate {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.testimonial-item .testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #cccccc;
}
.testimonial-item .testimonial-item {
    background-color: #f4f4f4;
    padding: 35px;
}
.testimonial-item p.italic-para {
    color: #4E4E4E;
    font-size: 16px;
    font-style: italic;
    line-height: 25.6px;
    margin-top: 15px;
}
.testimonial .testimonial-item {
    background-color: #f6f6f6;
    padding: 35px;
    min-height: 340px;
}
.testimonial .testimonial-item .italic-para p {
    margin-top: 10px;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.testimonial .owl-nav {
    position: absolute;
    top: 32%;
    left: -4rem;
}
.testimonial .owl-nav button {
    width: 35px;
    height: 35px;
    border: 1px solid #000000 !important;
    border-radius: 100% !important;
    font-size: 24px !important;
    color: #000000 !important;
    background: #ffffff !important;
}
.testimonial .owl-nav button.owl-next {
    display: none !important;
}
.testimonial .owl-dots {
    position: absolute;
    width: 100%;
    border: -2rem;
    bottom: -4rem;
}
.testimonial .owl-dots .owl-dot span {
    margin: 3px !important;
}
.testimonial .owl-dots .owl-dot.active span {
    background-color: #646464 !important;
}
/*testimonial-css-end*/

/*subscription-css*/
.subscribe-after {
    position: relative;
}
.subscribe-after:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 250px;
    background-image: url('../images/subscribe-after.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
}
.subscribe-content h5.subs-heading {
    color: #000000;
    font-family: 'Circular-b';
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42.84px;
    margin-bottom: 25px;
}
.subscribe-content a.navbar-btn {
    background: #4D0989;
    color: #ffffff;
    border-color: transparent;
}

.subscribe-content a.navbar-btn i {
    margin-left: 10px;
    border: 1px solid #ffffff;
    border-radius: 100%;
}
.subscribe-content {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.subscribe-img-second {
    display: flex;
    justify-content: center;
}
.subscribe-img-second img{
    margin-bottom: 2rem;
}
section.subscribe-section {
    margin-bottom: -8rem;
    z-index: 1;
}
/*subscription-css*/

.download {
    position: relative;
    padding: 80px 0;
}
.download .img-box {
    position: relative;
    --tw-shadow: 0px 0px 56px rgba(69, 69, 69, .2);
    --tw-shadow-colored: 0px 0px 56px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: 22px;
    padding: 3rem;
    text-align: center;
}
.download-content{
    position: relative;
    padding-right: 1rem;
}
.download-content .sub-heading h2 {
    margin-bottom: 0;
}
.download-content .sub-heading p {
    margin-bottom: 24px;
}
form.message-form {
    position: relative;
    margin-bottom: 1.6rem;
}
form.message-form .form-group {
    position: relative;
    display: flex;
    gap: 20px;
}
form.message-form input[type="tel"] {
    height: 50px;
    box-shadow: none !important;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    color: #000000 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.2px;
    transition: .5s all;
}
form.message-form input[type="submit"] {
    background-color: #4d0989;
    border-radius: 50px;
    border-color: #4d0989;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 500;
    flex: 0 0 40%;
}
form.message-form input[type="tel"]:hover, form.message-form input[type="tel"]:focus {
    border-color: #4d0989;
    transition: .5s all;
}
.about {
    position: relative;
    padding: 80px 0;
}
.about .img-box {
    position: relative;
    --tw-shadow: 0px 0px 56px rgba(69, 69, 69, .2);
    --tw-shadow-colored: 0px 0px 56px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: 22px;
    padding: 3rem;
    text-align: center;
}
.library{
    position: relative;
    padding-bottom: 80px;
}
.library .library-col {
    --tw-shadow: 0px 0px 56px rgba(69, 69, 69, .2);
    --tw-shadow-colored: 0px 0px 56px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    position: relative;
    border-radius: 22px;
    padding: 0 0 15px;
    margin-bottom: 30px;
    transition: 0.9s all;
}
.library .library-col:hover {
    background: #DAEFFF;
    transition: 0.9s all;
}
.library .library-col .img-box img {
    position: relative;
    border-radius: 22px 22px 0 0;
    height: 235px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.library .library-col .library-info{
    position: relative;
    padding: 15px;
}
.library .library-col h3 {
    color: #000;
    font-family: "Circular-b";
    font-size: 28px;
    font-style: normal;
    line-height: normal;
    margin-bottom: 15px;
}
.library .library-col h5 {
    color: #000;
    font-family: "Circular-b";
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    margin-bottom: 2px;
}
.news{
    position: relative;
    padding: 80px 0;
}
.news .section-header h2 {
    margin-bottom: 0;
}
.news .section-header p {
    font-size: 24px;
}
.news .news-col {
    --tw-shadow: 0px 0px 56px rgba(69, 69, 69, .2);
    --tw-shadow-colored: 0px 0px 56px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    position: relative;
    border-radius: 22px;
    padding: 0 0 15px;
    margin-bottom: 30px;
    transition: 0.9s all;
}
.news .news-col:hover {
    background: #DAEFFF;
    transition: 0.9s all;
}
.news .news-col .img-box img {
    position: relative;
    border-radius: 22px 22px 0 0;
    height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.news .news-col .news-info{
    position: relative;
    padding: 15px;
}
.news .news-col h3 {
    color: #000;
    font-family: "Circular-b";
    font-size: 28px;
    font-style: normal;
    line-height: normal;
    margin-bottom: 15px;
}
.news .news-col h5 {
    color: #000;
    font-family: "Circular-b";
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    margin-bottom: 2px;
}
.submission{
    position: relative;
    padding: 80px 0;
}
.submission .card {
    background: linear-gradient(180deg, #EFF8FF 0%, rgba(239, 248, 255, 0.62) 35.25%, rgba(239, 248, 255, 0.52) 68.38%, rgba(255, 255, 255, 0.00) 106.73%);
    --tw-shadow: 0px 0px 56px rgba(69, 69, 69, .2);
    --tw-shadow-colored: 0px 0px 56px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: 22px;
    padding: 30px;
    border: 0;
}
.submission .card {
    position: sticky;
    top: 0;
}
.submission .card .card-header {
    background: transparent;
    border: 0;
    position: sticky;
    top: 100px;
}
.submission .card .card-header .nav-tabs {
    justify-content: space-evenly;
    border: 0;
    border-right: 0;
    padding: 0 0 24px 0;
    gap: 24px;
}
.submission .card .card-header .nav-tabs li {
    width: 200px;
    text-align: center;
}
.submission .card .card-header .nav-tabs li a {
    background: #fff;
    border-radius: 22px;
    padding: 8px 24px;
    color: #000;
    border: 1px solid #000;
    transition: 0.9s all;
}
.submission .card .card-header .nav-tabs li a:hover {
    background: #000;
    color: #fff;
}
.submission .card .card-header .nav-tabs li a.active {
    background: #6e57ff;
    border: 1px solid #6e57ff;
    color: #fff;
}
.submission .card .card-body .tab-pane .tab-header h2 {
    color: #000;
    font-family: "Circular-b";
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    margin-bottom: 32px;
    text-transform: capitalize;
    text-align: center;
}
.submission .card .card-body .tab-pane .tab-content-body h4{
    color: #4D0989;
    font-family: 'Circular-b';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 6px;
    display: block;
}
.submission .card .card-body .tab-pane .tab-content-body .tab-col{
    margin-bottom: 24px;
}
/*footer-css*/
footer{
    position: relative;
    width: 100%;
    background-color: var(--light-blue);
    padding-top: 180px;
}
.footer-link .link-list a, .footer-content p {
    color: #646464;
    font-family: 'Circular Book';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    line-height: 31.76px;
    transition: .5s all;
}
.footer-link .link-list a{
    text-transform: capitalize;
}
.footer-link .link-list a:hover{
    color: #000000;
    transition: .5s all;
}
.footer-content p{
    line-height: 24px;
}
footer ul.link-list {
    column-count: 3;
    column-gap: 90px;
    width: 95%;
    margin-left: auto;
}
footer ul.link-list li {
    break-inside: avoid;
}
footer ul.social-link {
    justify-content: flex-start;
    margin: 20px 0 22px 0;
}

footer ul.social-link li a {
    color: #4d0989;
}
footer h6.footer-heading {
    color: #4D0989;
    font-family: 'Circular-b';
    font-size: 20px;
    font-style: normal;
    line-height: 20.24px;
    text-transform: capitalize;
    width: 95%;
    margin-left: auto;
}
footer .footer-content {
    width: 70%;
    padding-bottom: 60px;
}
footer .footer-bottom-content {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: #F1F9FF;
    padding: 12px 0;
    text-align: center;
}
footer .footer-link {
    position: relative;
}

.footer-link:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 190px;
    background: #c4c4c4;
    top: 0;
    left: -4rem;
}
/*footer-css*/

/*header-css*/
header button.navbar-toggler span.navbar-toggler-icon {
    background-image: none;
    width: 35px;
    height: 4px;
    background-color: #4d0989;
    display: block;
    margin: 5px;
    transition: .5s all;
}
header button.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transition: .5s all;
}
header button.navbar-closed span:nth-child(2){
    display: none;
    transition: .5s all;
}
header button.navbar-closed span:nth-child(1){
    transition: .5s all;
    transform: rotate(45deg);
    margin-bottom: -8px;
}
header button.navbar-closed span:nth-child(3){
   transition: .5s all;
   transform: rotate(-45deg);
}
.sticky-header{
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99;
    box-shadow: 0px 0px 30px -5px #9698a6;
    animation: goDown 0.5s ease-in-out forwards;
}
@keyframes goDown {
    0%{
        top: -60px;
    }
    100% {
        transform: translateY(0px);
    }
}
header.sticky-header .header-top {
    display: none;
}
header.sticky-header nav.navbar {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
header.sticky-header div#navbarNav.show ul#menu-main-menu {
    top: 100px;
}
a.app-store svg {
    height: 35px;
    width: 115px;
}
.hero-carousel-item .img-box {
    height: 570px;
}
.hero-carousel-item .img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


/*header-css*/
.tab-col i {
    color: #717171;
    font-family: "Circular Book";
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 15px;
}
.tab-col ul li {
    color: #646464;
    font-family: 'Circular Book';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    margin: 10px 0;
}
.tab-col ul li storng, .tab-col ul li storng i {
    color: #000;
    font-size: 16px;
}
.tab-col ul {
    list-style: auto;
    padding: 0 0 0 50px;
}
.tab-col p b {
    color: #000;
}
ul.finished-ul {
    list-style: disc;
}
ul.finished-ul li >  ul {
    list-style: outside;
}
ul.finished-ul p {
    margin-top: 15px;
}
.tab-col h3 {
    color: #000;
    font-family: "Circular-b";
    font-size: 23px;
    font-style: normal;
    line-height: normal;
    margin: 30px 0;
    text-transform: capitalize;
    text-align: center;
}
.devotional-here-btn  {
    padding: 32px 0 60px;
    border-bottom: 1px solid rgba(0,0,0,.15);
    margin-bottom: 50px;
}
.submit-here-btn{
    padding: 32px 0 60px;
    margin-bottom: 50px;
}
.Day-ul ul {
    list-style: disc;
}
.submit-para p {
    margin: 15px 0;
}
.publishing_policy-content strong {
    margin: 30px 0 10px;
    display: block;
}
.publishing_policy-content p {
    margin: 15px 0;
}
ul.author_agreement-ul {
    padding: 0 20px;
    list-style: auto;
}
ul.author_agreement-ul li {
    margin: 15px;
}

/*varun-new css-start (04-10-2024)*/
    .subscribe-banner {
        height: 100vh;
        display: flex;
        align-items: center;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .subscribe-banner-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }
    .subscribe-banner-content h1 {
        color: var(--color-black);
        font-size: 56px;
        font-style: normal;
        font-weight: 700;
        line-height: 74px;
        margin-bottom: 18px;
    }
    .subscribe-banner-content h1 span {
        color: #4D0989;
    }
    .subscribe-banner-content .subs-head p {
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: var(--color-black);
    }
    .subscribe-banner-content .subs-head {
        width: 60%;
        margin: 0 auto 30px auto;
    }
    .subscribe-banner-content .subscribe-box {
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
        background: linear-gradient(140deg, #4d0989 0%, #680989 100%);
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 35px;
    }
    .subscribe-banner-content .subscribe-box .subs-heading {
        text-align: left;
        font-family: 'Circular Book';
        font-weight: 500;
        font-size: 18px;
        line-height: 120%;
        text-transform: capitalize;
        color: #ffffff;
        margin-bottom: 5px;
    }
    .subscribe-banner-content .subscribe-box .subscribe-box-text p {
        font-family: 'Circular Book';
        font-weight: 500;
        font-size: 13px;
        line-height: 120%;
        text-transform: capitalize;
        color: #ffffff;
        text-align: left;
    }
    .subscribe-banner-content .subscribe-box .plan-price {
        width: 185px;
        height: 80px;
        background-color: #ffffff;
        border-radius: 6px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        backdrop-filter: blur(20px);
        border: 1px dashed #4d0989;
        flex: 0 0 auto;
    }
    .subscribe-box .plan-price .amount {
        font-family: 'Circular-b';
        font-weight: 500;
        font-size: 20px;
        color: #4d0989;
    }
    .subscribe-box .plan-price .time {
        font-family: 'Circular-b';
        font-weight: 500;
        font-size: 15px;
        color: #000000;
    }
    .subscribe-banner .subscribe-img {
        width: 100%;
        height: 570px;
    }
    .subscribe-banner .subscribe-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    .subscribe-banner-content .other-option {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
    }
    .wp-block-woocommerce-cart .wc-block-components-button {
        border-radius: 100px;
        border: 2px solid #222;
        padding: 8px 30px;
        color: #222;
        font-family: "Circular Black";
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        text-decoration: none;
        transition: 0.5s all;
        text-transform: capitalize;
        display: block;
        margin: 15px 0;
    }

    .wp-block-woocommerce-cart .wc-block-components-button:hover{
        background: #222;
        color: #fff;
        transition: 0.5s all;
    }
/*varun-new css-end (04-10-2024)*/