@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Open Sans;
}

:root {
    --hover-color: #673AB7;

    --font-black: #000;
    --font-white: #fff;

    --font-color-rgba: rgba(0, 0, 0, 0.54);

    --hover-two-color: #E1BEE7;
}

/* Scrollbar */
::-webkit-scrollbar{
    width: 0.5rem;
}
::-webkit-scrollbar-track{
    background-color: var(--hover-two-color);
}
::-webkit-scrollbar-thumb{
    background-color: var(--hover-color);
    border-radius: 10px;
    border: 1px solid transparent;
    background-clip: content-box;
}

.navbar {
    background-color: transparent !important;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: 0.3s ease;
}
.navbar.scrolled {
    background-color: #E1BEE7 !important;
}
.navbar-brand img {
    max-width: 68px !important;
    width: 100%;
}
.navbar-nav {
    margin-left: 24px;
    margin-bottom: 12px !important;
}
.navbar .nav-item .nav-link {
    color: rgba(0, 0, 0, 0.87);
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-right: 14px;
    transition: color 0.3s ease;
    position: relative;
}
.navbar .nav-item .nav-link:hover {
    color: var(--hover-color);
}
.navbar .nav-item .nav-link.active {
    color: var(--hover-color);
}
.navbar .nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 44%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--hover-color);
}
.nav-social-link {
    display: flex;
    align-items: center;
}
.nav-social-link a i {
    font-size: 32px;
}
.nav-social-link .nav-link {
    margin-right: 12px;
}
#nav-social-idhover:hover {
    fill: var(--hover-color);
}


@media screen and (max-width:992px) {
    .navbar {
        background-color: var(--hover-two-color) !important;
    }
    .navbar .nav-item .nav-link.active::after {
        bottom: 16px;
        left: 22%;
    }
    .navbar .nav-item .nav-link {
        margin-right: 0;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .nav-social-link {
        margin-top: 8px;
        margin-bottom: 14px;
        justify-content: center;
    }
}
@media screen and (max-width:768px) {
    .navbar-brand img {
        max-width: 48px !important;
    }
}

@media screen and (max-width:576px) {
    .navbar .nav-item .nav-link.active::after {
        bottom: 16px;
        left: 26%;
    }
}

/* Hero Start */
#habitshero {
    background-image: url('/assets/image/hero-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 190px;
    padding-bottom: 260px;
    overflow: hidden;
}
.habits-hero-head h1 {
    color: rgba(0, 0, 0, 0.87);
    font-family: Open Sans;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.habits-hero-head h1 span {
    color: var(--hover-color);
    font-weight: 700;
}
.habits-hero-head p {
    color: rgba(0, 0, 0, 0.54);
    font-family: Open Sans;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    margin-top: 24px;
}
.hero-download-link {
    margin-top: 32px;
}
.hero-download-link a {
    text-decoration: none;
}
.hero-download-link a:first-child img {
    max-width: 150px;
}
.hero-download-link a:last-child img {
    max-width: 150px;
    margin-left: 16px;
}


.hero-mobile-image img {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0% {
        transform: translateY(0);
    }
    50%{
        transform: translateY(-2.4rem);
    }
    100%{
        transform: translateY(0);
    }
}

@media screen and (max-width:992px) {
    #habitshero {
        padding-top: 110px;
        background-size: cover;
        padding-bottom: 90px;
    }
    .hero-mobile-image {
        padding-top: 80px;
    }
    .habits-hero-head h1 {
        font-size: 40px;
    }

    .habits-hero-head-br {
        display: none;
    }
}

@media screen and (max-width:576px) {
    .habits-hero-head h1 {
        font-size: 32px;
    }
    .habits-hero-head p {
        font-size: 18px;
    }
    .hero-download-link a:first-child img {
        max-width: 130px;
    }
    .hero-download-link a:last-child img {
        max-width: 130px;
    }
}



/* Habits Number Counting */
#counters-section {
    overflow: hidden;
}
.habits-number-counting {
    text-align: center;
    position: relative;
}
.habits-number-counting h3 {
    color: var(--hover-color);
    text-align: center;
    font-family: Open Sans;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.habits-number-content span:last-child {
    color: var(--font-color-rgba);
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}
.habits-number-counting .habits-number-border {
    position: absolute;
    top: 20px;
    right: 0;
}

@media screen and (max-width:768px) {
    .habits-number-counting .habits-number-border {
        display: none;
    }
    .habits-number-counting h3 {
        font-size: 32px;
    }
}

@media screen and (min-width: 1024px){
    .img-fluid {
        max-width: 80%;
    }
}

/* Habit Feature Start */
#habitfeature {
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}
.habit-feature-head {
    text-align: center;
}
.habit-feature-head h3 {
    color: var(--font-black);
    text-align: center;
    font-family: Open Sans;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    position: relative;
    display: inline-block;
}
.habit-feature-head h3::before {
    content: '';
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 12px;
    border-radius: 17px;
    background: linear-gradient(169deg, #B2EBF2 -58.33%, #D1C4E9 60.57%);
}
.habit-feature-main {
    margin-top: 10px;
}
.habit-feature-content {
    vertical-align: middle;
    padding-top: 140px;
}
.habit-feature-content h4 {
    color: var(--font-black);
    font-family: Open Sans;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.habit-feature-content h4 svg {
    margin-right: 12px;
}
.habit-feature-content p {
    margin-top: 32px;
    color: var(--font-black);
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
}

@media screen and (max-width:768px) {
    #habitfeature {
        padding-top: 80px;
        padding-bottom: 0;
    }
    .habit-feature-head h3 {
        font-size: 28px;
    }
    .habit-feature-head h3::before {
        width: 60px;
        height: 8px;
        top: 48px;
    }
    .habit-feature-main {
        margin-top: 24px;
    }
    .habit-feature-content {
        padding-top: 10px;
    }
    .habit-feature-content h4 {
        font-size: 22px;
    }
    .habit-feature-content p {
        font-size: 18px;
    }
}


/* Feature Two */
#featuretwo {
    background-image: url('/assets/image/featuretwo-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 40px;
    overflow: hidden;
}
.featuretwo-content {
    padding-bottom: 20px;
}



/* Testimonials Start */
.habit-feature-head p {
    color: var(--font-black);
    text-align: center;
    font-family: Open Sans;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    max-width: 490px;
    margin: 32px auto;
}
.habit-feature-head h5 {
    color: var(--hover-color);
    text-align: center;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
}
.habit-feature-head h5 span {
    font-size: 20px;
    font-family: Open Sans;
}

@media screen and (max-width:768px) {
    .featuretwo-content {
        padding-bottom: 10px;
    }
}




/* Habit Faq Start */
#habitfaq {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
#habitfaq .habit-feature-head h3::before {
    margin: 0 1%;
}
.habitfaq-content {
    padding-top: 24px;
}
.habitfaq-content p {
    color: var(--font-black);
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
}
.habitfaq-content-accordion .accordion-button {
    padding-top: 22px;
    padding-bottom: 22px;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;

}
.habitfaq-content-accordion .accordion-button:focus {
    border-color: var(--hover-two-color) !important;
    box-shadow: none;
}
.habitfaq-content-accordion .accordion-button:not(.collapsed) {
    background-color: var(--hover-color);
    color: var(--font-white);
}
.habitfaq-content-accordion .accordion-item {
    border: 0;
}
.habitfaq-content-accordion .accordion-button::after {
    background-image: url('/assets/image/chevron-down.png');
}
.habitfaq-content-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('/assets/image/chevron-up.png');
}

@media screen and (max-width:768px) {
    #habitfaq {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .habitfaq-content p {
        font-size: 18px;
    }
}




/* Testimonials Slider */
#habit-testimonials {
    margin-top: 120px;
}
.testimonial-pic img {
    max-width: 90px;
    opacity: 0.7;
}
.testimonial-text {
    background: transparent;
    color: #000;
    width: 100%;
    height: 350px;
    position: relative;
    margin-top: 20px;
}
.user-text {
    width: 80%;
    text-align: center;
    line-height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}
.user-text span {
    display: block;
    font-size: 13px;
    margin-top: 70px;
    font-weight: 500;
    text-transform: uppercase;
}
.testimonial-pic {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-pic {
    width: 65px;
    padding: 5px;
    border-radius: 50%;
    margin: 10px;
    cursor: pointer;
}

.user-text.active-text {
    display: block;
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup {
    0%{
        margin-top: 25px;
    }
    100%{
        margin-top: 0;
    }
}
.user-pic.active-pic {
    width: 100px;
    border: 3px solid var(--hover-color);
    padding: 2px;
    opacity: 1;
}

@media screen and (max-width:768px) {
    #habit-testimonials .habit-feature-head {
        margin-bottom: 60px;
    }
    #habit-testimonials {
        margin-top: 60px;
    }

    .user-pic.active-pic {
        width: 50px;
    }
    .testimonial-pic img {
        max-width: 46px;
    }
    .habit-feature-head p {
        font-size: 18px;
       margin-bottom: 14px;
    }
    .user-text span {
        margin-top: 32px;
    }
}

/* Sliding Start */
#habit-sliding {
    padding-top: 120px;
    padding-bottom: 30px;
}
.habit-sliding-head h3 {
    color: var(--font-black);
    text-align: center;
    font-family: Open Sans;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
}
#sliding {
    background-color: var(--hover-color);
}
#sliding .logos {
    overflow: hidden;
    padding: 30px;
    white-space: nowrap;
}
#sliding .logos-slide {
    display: inline-block;
    animation: 15s slide infinite linear;
}
#sliding .logos-slide img {
    height: 34px;
    margin-right: 100px;
}

@keyframes slide {
    from {
        transform: translate(0);
    }
    to {
        transform: translate(-100%);
    }
}

@media screen and (max-width:768px) {
    #habit-sliding {
        padding-top: 60px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width:576px) {
    #sliding .logos-slide img {
        height: 34px;
    }
    .habit-sliding-head h3 {
        font-size: 32px;
    }
}



/* Habit News Start */
#habit-news {
    padding-top: 180px;
    padding-bottom: 120px;
}
.habit-news-main {
    margin-top: 92px;
}
.habit-latestpart-one {
    padding: 14px 14px 64px 14px;
    background-color: var(--font-white);
    border-radius: 32px;
}
.habit-latestpart-one img {
    border-radius: 24px;
    margin-top: -28px;
    max-width: 540px;
    margin: 0 auto;
    display: block;
    width: 100%;
    object-fit: cover;
    margin-bottom: 14px;
    height: 300px;
}
.habit-latestpart-one span {
    padding: 14px;
    display: inline-block;
    font-family: Open Sans;
    color: var(--font-color-rgba);
    font-weight: 500;
}
.habit-latestpart-one p {
    padding-left: 14px;
    padding-right: 14px;
    font-weight: bold;
    color: var(--font-black);
    font-family: Open Sans;
}
.habit-latestpart-one a {
    text-decoration: none;
    color: var(--hover-color);
    padding-left: 14px;
    padding-right: 14px;
    transition: 0.3s ease;
    border-bottom: 2px solid transparent;
    display: inline-block;
    padding-bottom: 6px;
}
.habit-latestpart-one a:hover {
    border-color: var(--hover-two-color);
}
.habit-newspart-two-main {
    padding-left: 64px;
}
.habit-newspart-two {
    padding: 6px 12px 6px 12px;
    border-radius: 32px;
    position: relative;
    padding-left: 118px;
}
.habit-newspart-two img:first-child {
    max-width: 180px;
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    height: 120px;
}
.habit-newspart-two .habit-latestpart-one {
    padding-bottom: 22px;
}
.habit-newspart-two img {
    position: absolute;
    left: -62px;
    top: 38px;
}


@media screen and (max-width:768px) {
    #habit-news {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    .habit-newspart-two {
        padding: 148px 12px 6px 12px;
        border-radius: 32px;
        position: relative;
        padding-left: 12px;
    }
    .habit-newspart-two img:first-child {
        max-width: 180px;
    }
    .habit-newspart-two-main {
        padding-left: 0;
    }
    .habit-newspart-two img {
        position: absolute;
        left: 0;
        top: 30px;
        right: 0;
        display: inline-block;
        text-align: center;
        margin: 0 auto;
    }
}









/* Habit Footer */
#habitfooter {
    background-image: url('/assets/image/habit-footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 320px;
    padding-bottom: 80px;
}
.habit-footer-applink img {
    max-width: 150px;
}
.habit-footer-applink a {
    text-decoration: none;
}
.habit-footer-applink {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.habit-footer-applink a:last-child {
    margin-left: 24px;
}
#habitfooter h5 {
    color: var(--font-white);
    text-align: center;
    font-family: Open Sans;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.habit-footer-content h6 {
    color: var(--font-white);
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}



.habit-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
    grid-template-rows: 1fr;
    column-gap: 70px;
    row-gap: 20px;
    margin-top: 64px;
}
.habit-footer-one {
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: center;
}
.habit-footer-two {
    grid-column: 2/3;
    grid-row: 1/2;
}
.habit-footer-three {
    grid-column: 3/4;
    grid-row: 1/2;
}
.habit-footer-four {
    grid-column: 4/5;
    grid-row: 1/2;
}
.habit-footer-five {
    grid-column: 5/6;
    grid-row: 1/2;
}
.habit-footer-one img {
    max-width: 90px;
}

.habit-footer-one p {
    color: var(--font-white) !important;
    text-align: center;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-top: 24px;
}
.habit-footer-content {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.habit-footer-content a {
    margin-top: 16px;
    text-decoration: none;
    color: var(--font-white);
    font-size: 16px;
    transition: 0.3s ease;
}
.habit-footer-content a:hover {
    color: var(--hover-two-color);
}






.habit-footer-linked a {
    text-decoration: none;
    margin-right: 12px;
    white-space: nowrap;
}

.habit-footer-linked .dropdown .btn {
    border-radius: 6px;
    border: 1px solid var(--hover-two-color);
    box-shadow: 0px 3px 49px 4.5px rgba(0, 0, 0, 0.06);
    background-color: transparent;
    color: #FFF;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 32px;

}
.habit-footer-linked .dropdown-toggle::after {
    display: none;
}


@media screen and (max-width:1400px) {
    .habit-footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1.3fr;
        grid-template-rows: 1fr 1fr;
        column-gap: 70px;
        row-gap: 20px;
        margin-top: 64px;
    }

    .habit-footer-one {
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .habit-footer-two {
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .habit-footer-three {
        grid-column: 3/4;
        grid-row: 1/2;
    }
    .habit-footer-four {
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .habit-footer-five {
        grid-column: 3/5;
        grid-row: 2/3;
    }
}

@media screen and (max-width:768px) {
    .habit-footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr 1fr 0.7fr;
        column-gap: 30px;
        row-gap: 20px;
        margin-top: 64px;
    }

    .habit-footer-one {
        grid-column: 1/3;
        grid-row: 1/2;
    }
    .habit-footer-two {
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .habit-footer-three {
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .habit-footer-four {
        grid-column: 1/2;
        grid-row: 3/4;
    }
    .habit-footer-five {
        grid-column: 1/3;
        grid-row: 4/5;
    }

    .habit-footer-linked a:nth-child(4) svg {
        margin-right: 0;
        margin-top: 12px;
    }

    #habitfooter {
        padding-bottom: 30px;
    }
}
@media screen and (max-width:768px) {
    #habitfooter {
        margin-top: -120px;
    }
    #habitfooter h5 {
        font-size: 32px;
    }
    .habit-footer-applink img {
        max-width: 120px;
    }
}
@media screen and (max-width:576px) {
    .habit-footer-linked a:nth-child(4) svg {
        margin-right: 0;
        margin-top: 0;
    }
    .habit-footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        column-gap: 10px;
        row-gap: 20px;
        margin-top: 64px;
    }
}














/* Habit Video Start */

#habitvideo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 140px;
}
.current-time, .video-duration {
    margin-bottom: 0;
}
.containervideo, .video-controls, .video-timer, .options{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .containervideo{
    width: 98%;
    user-select: none;
    overflow: hidden;
    max-width: 900px;
    border-radius: 5px;
    background: #000;
    aspect-ratio: 16 / 9;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .containervideo.fullscreen{
    max-width: 100%;
    width: 100%;
    height: 100vh;
    border-radius: 0px;
  }
  .wrapper{
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    bottom: -15px;
    transition: all 0.08s ease;
  }
  .containervideo.show-controls .wrapper{
    opacity: 1;
    bottom: 0;
    transition: all 0.13s ease;
  }
  .wrapper::before{
    content: "";
    bottom: 0;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: calc(100% + 35px);
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }
  .video-timeline{
    height: 7px;
    width: 100%;
    cursor: pointer;
  }
  .video-timeline .progress-area{
    height: 3px;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
  }
  .progress-area span{
    position: absolute;
    left: 50%;
    top: -25px;
    font-size: 13px;
    color: #fff;
    pointer-events: none;
    transform: translateX(-50%);
  }
  .progress-area .progress-bar{
    width: 0%;
    height: 100%;
    position: relative;
    background: #2289ff;
  }
  .progress-bar::before{
    content: "";
    right: 0;
    top: 50%;
    height: 13px;
    width: 13px;
    position: absolute;
    border-radius: 50%;
    background: #2289ff;
    transform: translateY(-50%);
  }
  .progress-bar::before, .progress-area span{
    display: none;
  }
  .video-timeline:hover .progress-bar::before,
  .video-timeline:hover .progress-area span{
    display: block;
  }
  .wrapper .video-controls{
    padding: 5px 20px 10px;
  }
  .video-controls .options{
    width: 100%;
  }
  .video-controls .options:first-child{
    justify-content: flex-start;
  }
  .video-controls .options:last-child{
    justify-content: flex-end;
  }
  .options button{
    height: 40px;
    width: 40px;
    font-size: 19px;
    border: none;
    cursor: pointer;
    background: none;
    color: #efefef;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .options button :where(i, span) {
    height: 100%;
    width: 100%;
    line-height: 40px;
  }
  .options button:hover :where(i, span){
    color: #fff;
  }
  .options button:active :where(i, span){
    transform: scale(0.9);
  }
  .options button span{
    font-size: 23px;
  }
  .options input{
    height: 4px;
    margin-left: 3px;
    max-width: 75px;
    accent-color: #0078FF;
  }
  .options .video-timer{
    color: #efefef;
    margin-left: 15px;
    font-size: 14px;
  }
  .video-timer .separator{
    margin: 0 5px;
    font-size: 16px;
    font-family: "Open sans";
  }
  .playback-content{
    display: flex;
    position: relative;
  }
  .playback-content .speed-options{
    position: absolute;
    list-style: none;
    left: -40px;
    bottom: 40px;
    width: 95px;
    overflow: hidden;
    opacity: 0;
    border-radius: 4px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.13s ease;
  }
  .playback-content .speed-options.show{
    opacity: 1;
    pointer-events: auto;
    padding-left: 0;
  }
  .speed-options li{
    cursor: pointer;
    color: #000;
    font-size: 14px;
    margin: 2px 0;
    padding: 5px 0 5px 15px;
    transition: all 0.1s ease;
  }
  .speed-options li:where(:first-child, :last-child){
    margin: 0px;
  }
  .speed-options li:hover{
    background: #dfdfdf;
  }
  .speed-options li.active{
    color: #fff;
    background: #3e97fd;
  }
  .containervideo video{
    width: 100%;
  }

  @media screen and (max-width:768px) {
    #habitvideo {
        padding-bottom: 60px;
    }
    #habitvideo {
        padding-top: 30px;
    }
  }

  @media screen and (max-width: 540px) {
    .wrapper .video-controls{
      padding: 3px 10px 7px;
    }
    .options input, .progress-area span{
      display: none!important;
    }
    .options button{
      height: 30px;
      width: 30px;
      font-size: 17px;
    }
    .options .video-timer{
      margin-left: 5px;
    }
    .video-timer .separator{
      font-size: 14px;
      margin: 0 2px;
    }
    .options button :where(i, span) {
      line-height: 30px;
    }
    .options button span{
      font-size: 21px;
    }
    .options .video-timer, .progress-area span, .speed-options li{
      font-size: 12px;
    }
    .playback-content .speed-options{
      width: 75px;
      left: -30px;
      bottom: 30px;
    }
    .speed-options li{
      margin: 1px 0;
      padding: 3px 0 3px 10px;
    }
    .right .pic-in-pic{
      display: none;
    }
  }



/* Habit AutoPlay Slider */
/* Swiper Slider */
  #habit-slider{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}
.swiper {
    width: 80%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    width: 300px;
    height: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(1px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
  }
  .swiper-slide-active {
    filter: blur(0px);
  }
  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active {
    background: #fff;
  }

  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
  }


/* Contact Start */
.contact-hero .habits-hero-head h1 {
    color: var(--hover-color);
    font-weight: bold;
}
.contact-hero .habits-hero-head p {
    font-size: 18px;
}
.contact-hero .contact-content .form-control:focus {
    border-color: var(--hover-two-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 13, 253, 0.25);
}
.contact-hero .contact-content .form-check-input:checked {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}
.contact-form-btn {
    margin-top: 24px;
}
.contact-form-btn .btn {
    background-color: var(--hover-color);
    color: var(--font-white);
    padding: 10px 22px 10px 22px;
    border: 2px solid var(--hover-color);
    border-radius: 32px;
    transition: 0.3s ease;
}
.contact-form-btn .btn:hover {
    background-color: var(--hover-two-color);
    border-color: var(--hover-two-color);
}
.textarea-resize textarea {
    resize: none;
}


/* Habit Blog Page Start */
#habitbloghero {
    padding-top: 120px;
    padding-bottom: 60px;
}
.habitblog-head {
    text-align: center;
}
.habitblog-head img {
    max-width: 540px;
    width: 100%;
    border-radius: 10px;
}
.habitblog-head h1 {
    color: rgba(0, 0, 0, 0.87);
    font-family: Open Sans;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 14px;
}



@media screen and (max-width:992px) {
    .habitblog-head h1 {
        font-size: 40px;
    }
}

@media screen and (max-width:576px) {
    .habitblog-head h1 {
        font-size: 32px;
    }
}

#habitblogcontent p {
    font-size: 18px;
}
.blogcontent-para {

    padding-top: 18px;
    padding-bottom: 18px;
}

#allhabitblogs {
    padding-top: 34px;
    padding-bottom: 34px;
}
#allhabitblogs .habit-latestpart-one {
    padding-bottom: 24px;
}

/* Habit Privacy Start */
#habitprivacy {
    padding-top: 124px;
    padding-bottom: 124px;
}
#habitprivacy h1 {
    color: var(--hover-color);
}

@media screen and (max-width:992px) {
    #habitprivacy h1 {
        font-size: 40px;
    }
}

@media screen and (max-width:576px) {
    #habitprivacy h1 {
        font-size: 32px;
    }
}





