@charset "UTF-8";  

/* 1.1 Root Code Variables */
body {
    /* Main color */
    --primary: #f27223;
    --primary-hover: #e4600f;   
    /* text color */
    --white-color: #ffffff; 
    --rgb-white-09: rgba(255, 255, 255, 0.09);
    --rgb-white-08: rgba(255, 255, 255, 0.08);
    --rgb-white-07: rgba(255, 255, 255, 0.07);
    --rgb-white-06: rgba(255, 255, 255, 0.06);
    --rgb-white-05: rgba(255, 255, 255, 0.05);
    --rgb-white-04: rgba(255, 255, 255, 0.04);
    --rgb-white-03: rgba(255, 255, 255, 0.03);
    --rgb-white-02: rgba(255, 255, 255, 0.02);
    --rgb-white-01: rgba(255, 255, 255, 0.01);
    --black-color: #000000;
    --rgb-black-09: rgba(0, 0, 0, 0.09);
    --rgb-black-08: rgba(0, 0, 0, 0.08);
    --rgb-black-07: rgba(0, 0, 0, 0.07);
    --rgb-black-06: rgba(0, 0, 0, 0.06);
    --rgb-black-05: rgba(0, 0, 0, 0.05);
    --rgb-black-04: rgba(0, 0, 0, 0.04);
    --rgb-black-03: rgba(0, 0, 0, 0.03);
    --rgb-black-02: rgba(0, 0, 0, 0.02);
    --rgb-black-01: rgba(0, 0, 0, 0.01); 
    --text-color: #646464;
    /* background Color */  
    --body-bg: #f2f2f2;
    --border-color: #ced4da;
    /* Fonts */  
    --title-font-family: "Public Sans", sans-serif;
    --body-font-family: "Public Sans", sans-serif; 
    /* transition and transform */
    --transition: all 300ms ease; 
    /* extra color */  
    --color-one: #ececec;
    --color-two: #f2f2f2;
    --color-three: #cfcfcf;
}  
/* 1.2 Theme Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}
/* 1.3 Global Elements */
body {
    font-family: var(--body-font-family);
    font-size: 14px; 
    letter-spacing: 0.5px;
    color: var(--black-color);
    background: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}
 
a {
    color: var(--primary);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
a:hover {
    color: var(--primary);
}

p {
    color: var(--black-color);
    margin: 0;
    font-size: 14px;
}

button {
    outline: none !important;
    cursor: pointer;
}

button:focus,
button:active {
    outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none !important; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: var(--title-font-family);
    font-weight: 400;
    margin-top: 0; 
    margin-bottom: 15px;
    line-height: initial;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit !important;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
  
ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
} 
input,
select,
button {
    font-family: var(--body-font-family);
}
textarea {
    overflow: hidden;
    resize: none;
}

iframe {
    border: none !important;
    display: block;
    width: 100%;
}  

section {
    position: relative;
}

main {
    position: relative;
    width: 100%;
    display: block;
} 
 
.modal-backdrop.show {
    opacity: .8;
}

/* :: Font h1 */
h1 {
    font-size: 62px;
}

/* :: Font h2 */
h2 {
    font-size: 52px;
} 
/* :: Font h3 */
h3 {
    font-size: 32px;
}
/* :: Font h4 */
h4 {
    font-size: 28px;
}
/* :: Font h5 */
h5 {
    font-size: 22px;
}
/* :: Font h6 */
h6 {
    font-size: 18px;
} 

/* :: button style */
.button-style-one {
    display: inline-block;
    padding: 5px 20px;
    position: relative;
    text-decoration: none;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white-color);
    font-size: 16px;
    font-family: var(--body-font-family);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    border-radius: 50px;
}
.button-style-one:hover {
    background: var(--primary-hover);
    color: var(--white-color); 
} 
 
 
/* >> Helper Class */
/* # color */
.primary-color {
    color: var(--primary) !important;
} 
.secondary-color {
    color: var(--secondary) !important;
} 
.white-color {
    color: var(--white-color) !important;
} 
.black-color {
    color: var(--black-color) !important;
}   
.text-color{
    color: var(--text-color) !important;
} 

/* grid */
.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}  

/* >> OWL Nav & Dots */
/* # owl nav */
.owl-prev,
.owl-next {
    width: 45px;
    height: 45px;
    background: var(--rgb-white-05) !important;
    border: 1px solid var(--white-color) !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    z-index: 99997;
    -webkit-transform: translateY(-30px) !important;
    -moz-transform: translateY(-30px) !important;
    -ms-transform: translateY(-30px) !important;
    -o-transform: translateY(-30px) !important;
    transform: translateY(-30px) !important;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--white-color) !important;
    border-color: var(--white-color) !important;
}

.owl-prev i,
.owl-next i {
    font-size: 24px;
    line-height: 30px;
    color: var(--white-color);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
}

.owl-prev:hover i,
.owl-next:hover i {
    color: var(--black-color);
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}
/* # owl dot */
.owl-dots {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-dots button.owl-dot {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--white-color);
    margin: 0 5px;
}

.owl-dots button.owl-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black-color);
}

.owl-dots button.owl-dot.active::before {
    background-color: var(--primary);
} 

/* -----------------------------------------
        keyframes 
------------------------------------------*/
@keyframes lqd-outline-glow {
    0% {
        transform: translate(-88%,-50%) rotate(0deg)
    }

    33% {
        transform: translate(-12%,-50%) rotate(0deg)
    }

    50% {
        transform: translate(-12%,-50%) rotate(180deg)
    }

    83% {
        transform: translate(-88%,-50%) rotate(180deg)
    }

    to {
        transform: translate(-88%,-50%) rotate(360deg)
    }
}
/*--------------------------------------------------
. home page
----------------------------------------------------*/ 

/* banner */
.banner-area {
    margin: 100px 30px 50px 30px;
}
.banner-content h1{
    font-size: 180px;
    line-height: 180px;
    font-weight: 600;
    margin-bottom: 40px;
}
.banner-content p.text-color{
    max-width: 76%;
    font-size: 32px;
    margin-bottom: 20px;
    margin-left: 10px;
    line-height: normal;
}
.app-box{
    padding-top: 50px;
    margin-bottom: 50px;
}
.app-box .icons{
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 114, 35, 0.21);
    border-radius: 50px;
}
.app-box .icons svg{
    height: 30px;
    width: 30px;
    fill: var(--primary);
}
.app-box .button-style-one{
    padding: 22px 60px;
    font-size: 22px;
    line-height: normal;
}

.counter ul li{
    text-align: end;
}
.counter ul li h6{
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 600;
}
.counter ul li p{
    margin-bottom: 0;
    font-size: 24px;
    color: var(--text-color);
}

.bannerswiper{
    gap: 10px !important;
}
.bannerswiper .swiper-pagination{
    position: relative;
    display: flex;
    gap: 10px;
}
.bannerswiper .swiper-pagination span{
    height: 70px;
    width: 70px;
    border-radius: 500px;
    overflow: hidden;
    background: var(--color-one);
    border: 1px solid #d3d3d3;
}
.bannerswiper .swiper-pagination span img{
    height: 70px;
    width: 70px;
}

.bannerswiper .swiper-button-prev i,
.bannerswiper .swiper-button-next i {
    width: 40px;
    display: inline-block;
    text-align: center;
}

.banner-image-content{
    padding: 30px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    margin-top: 40px;
    width: calc(100% - 80px);
    height: 865px;
}

.banner-image-content .banner-icon {
    position: absolute;
    background-color: var(--primary);
    width: 120px;
    height: 120px;
    border-radius: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: var(--transition);
    top: 0px;
    right: 10px;
    display: none;
}

.banner-image-content .banner-icon svg {
    width: 70px;
    fill: var(--white-color);
}


.banner-image-content .banner-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 92%;
    min-width: 390px;
}
 
/* About Us */

.about-area{
    margin: 0 30px;
}

.page-title{
    background-color: rgba(242, 114, 35, 0.05);
    color: var(--primary);
    padding: 5px 20px;
    display: inline-block;
    border-radius: 50px;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.about-content h2{
    font-size: 120px;
    margin-bottom: 50px;
    line-height: 110px;
    max-width: 80%;
}
.members-connect{
    max-width: 80%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.members-connect ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex: 0 0 auto;
}
.members-connect ul li:not(:nth-child(1)) {
    margin-left: -20px;
}
.members-connect ul li img {
    width: 100px;
    border: 2px solid var(--white-color); 
    border-radius: 500px;
}
.members-content{
    font-size: 26px;
    color: var(--text-color);
    margin-left: 30px;
}
.about-content .text{
    text-align: right;
    margin-right: 80px; 
}

.about-content .text p{
    font-size: 33px;
    margin-bottom: 50px;
    line-height: 33px;
    color: var(--text-color);
}

.about-content .text a.button-style-one {
    padding: 22px 60px;
    font-size: 22px;
    line-height: normal;
}



.class-content {
    padding: 50px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    width: calc(100% - 80px);
    position: relative;
    height: 690px;
}
.class-icon{
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-self: center;
}
.class-icon svg{
    width: 30px;
    fill: var(--white-color);
}
.class-content h2{
    font-size: 68px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 30px;
}
.class-content p{
    color: var(--text-color);
    max-width: 60%;
    font-size: 26px;
    line-height: normal;
}
.class-image{
    position: absolute;
    right: -23px;
    bottom: 0;
    max-width: 520px;
}

.effect-text {
    position: absolute;
    right: -200px;
    transform: rotate(90deg);
    font-size: 52px;
    font-weight: bold;
    opacity: 0.1;
    line-height: 0;
    top: 157px;
}


/* .marque area */
.marque-area{
    margin: 0 30px;
}
.marque-area .marque-wapper{
    background-color: var(--black-color);
    padding: 20px 0;
    border-radius: 20px;
}

.promo-carousel { 
    padding-bottom: 0;
    overflow: hidden;
    margin: 20px 0;
}

.promo-carousel .item-wrap {
    transform: translateX(0px);
    width: 400%;
    position: relative;
    white-space: nowrap;
    display: flex;
}

.promo-carousel .item { 
    text-align: center;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    border-radius: 50px;
    padding-right: 100px;
    position: relative;
}
.promo-carousel .item::after{ 
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    right: 0;
    background: url(../../assets/images/icon/logo-patten-1.png) no-repeat;
    background-size: 20px;
    background-position: center center;
}

.promo-carousel .item a {
    color: var(--white-color);
    font-size: 62px;
    font-weight: 600;
    line-height: normal;
} 

@media (min-width: 768px) {
    .promo-carousel .item-wrap {
        width: 200%;
    }
}


/* swiper */
.swiper-actions {
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    margin-bottom: 20px;
    gap: 20px;
}

.swiper-actions .swiper-counter{
    font-size: 62px;
    font-weight: 500;
    line-height: normal;
}
.swiper-actions .swiper-counter .total{
    opacity: 0.5;
}
.swiper-actions .swiper-button-next, 
.swiper-actions .swiper-button-prev {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 0; 
    background-image: none;
    font-size: 11px;
    color: var(--primary);
}


.video-area .video-part {
    height: 991px;
    overflow: hidden;
    -webkit-border-radius: var(--border-radius-2);
    -moz-border-radius: var(--border-radius-2);
    -ms-border-radius: var(--border-radius-2);
    -o-border-radius: var(--border-radius-2);
    border-radius: var(--border-radius-2);
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}

.video-area .video-part .play-btn .video-play {
    width: 100px;
    height: 100px;
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 24px;
    line-height: 100px;
    position: relative;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.video-area .video-part .play-btn .video-play::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: gloPulse 3s infinite;
    -moz-animation: gloPulse 3s infinite;
    -o-animation: gloPulse 3s infinite;
    animation: gloPulse 3s infinite;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.video-area .video-part .play-btn .video-play::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: gloPulse 3s infinite;
    -moz-animation: gloPulse 3s infinite;
    -o-animation: gloPulse 3s infinite;
    animation: gloPulse 3s infinite;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}

.video-area {
    position: relative;
    margin: 0 0;
    overflow: hidden;
}

.background-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes gloPulse {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0)
    }
} 


/* testimonial-area */

.testimonial-area{
    margin: 0 30px;
}

.testimonial-content{
    padding: 50px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    position: relative;
    width: calc(100% - 20px);
    height: 905px;
}
.testimonial-content h2{
    font-size: 62px;
    font-weight: bold;
    line-height: 62px;
    margin-bottom: 30px;
}
.testimonial-text{
    color: var(--text-color);
    max-width: 45%;
    font-size: 26px;
    line-height: normal;
}

.testimonial-author{
    margin-top: 50px;
    margin-bottom: 50px;
}
.testimonial-author h6{
    font-size: 34px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 10px;
}
.testimonial-author p{
    color: var(--text-color);
    max-width: 200px;
    font-size: 22px;
    line-height: normal; 
}
.testimonial-start{
    display: flex;
    gap: 20px;    
}
.testimonial-start i.active{
    color: var(--primary);
}
.testimonial-start i{
    font-size: 24px;
    color: var(--color-three);
}

.pricing-titles{
    text-align: end;
}
.pricing-titles h2{
    font-size: 120px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 110px; 
}
.pricing-plan{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pricing-plan-list{
    display: flex;
    justify-content: space-between;
    padding: 50px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid transparent;
}
.pricing-plan-list.active,
.pricing-plan-list:hover{
    border-color: var(--white-color);
}
.pricing-plan-content {
    text-align: end;
}
.pricing-plan-list .pricing-plan-price p{
    background-color: transparent;
    color: var(--primary);
    border-radius: 50px;
    display: inline-block;
    padding: 5px 20px;
    min-width: 230px;
    text-align: center;
    font-size: 24px;
}

.pricing-plan-list.active .pricing-plan-price p{
    background-color: var(--primary);
    color: var(--white-color); 
    
}
.pricing-plan-content h3{
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}
.pricing-plan-content p {
    font-size: 28px;
    line-height: 28px;
    color: var(--text-color);
}


.feature-area {
    padding: 50px 50px 0 50px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    position: relative;
    margin: 0 30px;
}
.feature-content h2 {
    line-height: 110px;
    font-size: 120px;
    margin-bottom: 60px;
}
.download-content h2{
    font-size: 160px;
    line-height: 150px;
    margin-bottom: 60px;
}

/* footer */
.footer {
    padding: 100px 0;
    background-color: var(--black-color);
}
.footer-start{
    text-align: center;
    margin-bottom: 80px;
}
.footer-start h2 {
    font-size: 120px;
    color: var(--white-color);
    font-weight: 600;
}
.footer-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px; 
}
.footer-info a{
    font-size: 52px;
    color: var(--white-color);
    font-weight: 600;
    text-decoration: underline;
}
.footer-info a:hover{
    text-decoration: none;
}

.getaquote a {
    font-size: 24px;
    border: 1px solid var(--white-color);
    padding: 20px 60px;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
}
.getaquote a:hover{
    background-color: var(--primary);
    color: var(--white-color);
    border-color: var(--primary);
}


.bottom-footer {
    margin-top: 100px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding-top: 100px;
}

.footer-socialmedia ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}
.footer-socialmedia ul li a {
    height: 55px;
    width: 55px;
    border-radius: 100px;
    background: rgb(255 255 255 / 11%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 18px;
}
.footer-socialmedia ul li a:hover { 
    background: var(--primary); 
    color: var(--white-color); 
}

.copyright p {
    font-size: 18px;
    color: var(--white-color);
    text-align: center;
}


/* ------------------------------------------------
choose-expert-area 
-------------------------------------------------*/
.choose-expert-area{
    margin: 0 30px;
}
.choose-expert-wapper{
    display: none;
}
.choose-expert-wapper-active{
    display: block;
}

.choose-expert-title h2{
    font-size: 32px;
    font-weight: 500;
}

.choose-expert-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.choose-expert-left {
    width: 100%;
}

.choose-expert-ul{
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}
 
.choose-expert-ul li {
    display: inline-block;
    position: relative;
}

.choose-expert-ul li a {
    display: inline-block;
    border-radius: 500px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    color: var(--text-color);
    padding: 5px;
    text-align: center;
    line-height: normal;
    font-size: 14px;
    align-items: center;
}
.choose-expert-ul li a img{    
    border-radius: 500px;
    width: 50px;
}
.choose-expert-ul li a.choose-expert-active{
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white-color);
}
.choose-expert-ul li a span { 
    margin-right: 10px;
    margin-left: 5px;
} 

.choose-expert-right{
    position: relative;
}
.choose-expert-right::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--border-color); 
    left: -40px;
    top: 0;
}
.choose-expert-right a {
    border: 1px solid var(--border-color);
    padding: 16px 30px;
    border-radius: 500px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-color);
    font-size: 16px;
}

.choose-expert-item{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 24px;
}

.choose-expert-list {
    margin-bottom: 50px;
    border-radius: 10px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    color: var(--text-color);
    padding: 10px;
}
.choose-expert-list:hover {
    border-color: var(--primary);
}

.choose-expert-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.choose-expert-content{
    position: relative;
}

.choose-expert-content h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--black-color);
}

.choose-expert-content p {
    display: flex;
    align-items: center;  
    margin: 5px 0 10px 0;
}

.choose-expert-content span { 
    margin-right: 20px;
    padding-right: 20px;
    position: relative;
}

.choose-expert-content span:not(:last-child)::after { 
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--text-color);
}

.choose-expert-content p.desc{
    font-size: 13px;
    line-height: normal;
}
 
.find-expert-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.find-expert-item {
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--color-one);
    border-radius: 20px;
}

.find-expert-icon img {
    width: 80px;
    height: 80px;
}

.find-expert-content h6 {
    font-size: 22px;
    text-transform: capitalize;
}
.find-expert-content p{
    font-size: 16px;
}

.email-submission {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.submission-form-area{
    max-width: 620px;
    margin: 0 auto;
    padding: 150px 30px;
}

.submission-form-area h6 {
    font-size: 42px;
    color: var(--white-color);
    margin-bottom: 40px;
}
.background-image.background-after:after {
    content: "";
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    bottom: 0;
}
form.submission-from {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}
form.submission-from input{
    padding: 15px 20px;
}
form.submission-from button {
    background: var(--primary);
    color: var(--white-color);
    width: 250px;
    font-size: 18px;
    text-transform: capitalize;
    border-radius: 5px;
}

.choose-expert-item .choose-expert-list {
    margin-bottom: 0;
}

.more-experts-wapper{
    text-align: center; 
    margin-bottom: 50px;   
    margin-top: 50px;
}
.more-experts-wapper a {
    padding: 12px 30px; 
} 
.choose-expert-filter ul{
    display: flex;
    gap: 10px;
    white-space: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 10px;
}
.choose-expert-filter li {
    display: inline-block;
    position: relative;
}
.choose-expert-filter ul a{
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--text-color);
    display: block;
    color: var(--text-color);
    border-radius: 500px;
}
.choose-expert-filter ul a.active{    
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white-color);
}

/* .custome-scroll ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
    box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
    background-color: #f5f3f1;
} */

.custome-scroll ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: var(--color-two);
    opacity: 0;
    margin-top: 10px;
} 
.custome-scroll ::-webkit-scrollbar-button {
    background-color: var(--color-three); 
}
.custome-scroll ::-webkit-scrollbar-thumb {
    background-color: var(--color-three); 
}
 

.choose-expert-list-style-2 {
    position: relative;
    overflow: hidden;
    border-radius: 15px; 
}
.choose-expert-list-style-2 .choose-expert-image {
    margin-bottom: 0;
}
.choose-expert-list-style-2 .choose-expert-content {
    position: absolute;
    bottom: -54px;
    left: 20px;
    transition: var(--transition);
    z-index: 2;
}

.choose-expert-list-style-2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0; 
    background-image: linear-gradient(180deg, var(--rgb-black-01), var(--black-color));
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    pointer-events: none;
}
.choose-expert-list-style-2:hover::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.choose-expert-list-style-2:hover .choose-expert-content { 
    bottom: 10px; 
}
.choose-expert-list-style-2 .choose-expert-content h5,
.choose-expert-list-style-2 .choose-expert-content p{
    color: var(--white-color);
}
.choose-expert-list-style-2 .choose-expert-content p span:after{
    background-color: var(--white-color);
}

.input-container {
    position: relative;
    border-radius: 5px !important;
    margin-bottom: 10px;
}
.with-icon img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 13px;
    width: 19px;
} 

.with-icon .input {
    padding: 12px 50px 12px 40px;
}

.input {
    box-sizing: border-box;
    color: #000;
    font-size: 15px;
    height: 50px !important;
    outline: 0;
    padding: 10px;
    width: 100%;
    border: 1px solid rgba(5, 8, 178, 0.10);
    border-radius: 15px !important;
    background: #fff;
    font-weight: 500;
}
/*09-05-2024*/

.inner-banner-area {
    height: calc(100vh - 86px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.inner-banner-area::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--black-color);
    opacity: 0.8;
    top: 0;
}

.inner-banner-content{
    max-width: 991px;
    z-index: 1;
    position: relative;
}
.inner-banner-content h1{
    font-size: 120px;
    line-height: 120px;
    font-weight: 600; 
    margin-left: 10%; 
    color: var(--white-color);
}

.journey-area{ 
    margin: 100px 50px;
}

.journey-content{ 
    text-align: center;
    z-index: 1;
    position: relative;
}
.journey-content h1, .free-trial-content h1{
    font-size: 120px;
    line-height: 120px;
    font-weight: 600;   
}

.free-trial-content h1, .free-trial-content p{
    color: var(--white-color);
}
.free-trial-content p, .expect-title p, .trusted-title p{
    font-size: 24px;
}
.free-trial-area{
    padding: 100px;
    border-radius: 20px;
    background-color: var(--black-color); 
    position: relative;
    margin: 100px 50px;
}

.how-works-area,.expect-area{
    padding-bottom: 80px;
}
.how-works-title h1{
    font-size: 120px;
    line-height: 120px;
    font-weight: 600; 
}
.expect-title h1, .trusted-title h1, .habits-title h1,.faq-title h1{
    font-size: 82px;
    line-height: 82px;
    font-weight: 600; 
}

.trusted-area{
    padding: 100px;
    border-radius: 20px;
    background-color: var(--black-color);
    position: relative;
    margin: 0 50px 100px 50px;
}

.trusted-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px; 
}
.trusted-item .trusted-image {
    margin-bottom: 0;
}
.trusted-item .trusted-content {
    position: absolute;
    bottom: -37px; 
    transition: var(--transition);
    z-index: 2;
}
.inner-content {
    margin: 0 30px;
}
.inner-content p {
    font-size: 18px;
    font-weight: 600;
}
.inner-content .meta-data{
    margin-bottom: 10px;
    display: flex;
    align-items: center; 
    gap: 10px;
}
.inner-content .meta-data li{
    border: 1px solid var(--white-color);
    padding: 4px 15px;
    display: inline-block;
    border-radius: 50px;
    color: var(--white-color);
}
.trusted-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0; 
    background-image: linear-gradient(180deg, var(--rgb-black-01), var(--black-color));
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    pointer-events: none;
}
.trusted-item:hover::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}
.trusted-item:hover .trusted-content { 
    bottom: 10px; 
}
.trusted-item .trusted-content h5,
.trusted-item .trusted-content p{
    color: var(--white-color);
}
.trusted-item .trusted-content p span:after{
    background-color: var(--white-color);
}

.habits-area {
    padding-bottom: 80px;
}


.faq-area{
    margin-bottom: 100px;
}
.accordion-item {
    padding: 10px;
    border-radius: 20px !important;
    background-color: var(--color-one);
    border: 1px solid var(--white-color) !important;
    margin-bottom: 20px;
}
.accordion-button, .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow:  none;
    font-weight: 600;
    font-size: 22px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-body p{
    font-size: 18px;
}


.expect-image img, .habits-image img {
    border-radius: 20px;
}


.services__item {
    padding: 30px; 
    margin-bottom: 30px;
    border-radius: 20px; 
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
}
.services__item.active {
    background-color: var(--color-three);
}

.services__content h4 {
    font-size: 24px;
    font-weight: 600;
}


.services__images {
    margin: 0 0 30px 36px;
    position: relative;
    height: calc(100% - 30px);
    border-radius: 20px;
    overflow: hidden;
}

.services__images-item {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.1s ease-in-out;
    z-index: 1;
}

.services__images-item img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    clip-path: inset(0 100% 0 0);
    -webkit-animation: defaultInset 0.8s forwards ease;
    animation: defaultInset 0.8s forwards ease;
}

.services__images-item.active img {
    -webkit-animation: activeInset 0.8s forwards ease;
    animation: activeInset 0.8s forwards ease;
}

.services__images-item.active {
    z-index: 2;
}

img,
.img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@-webkit-keyframes activeInset {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes activeInset {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

.product-area {
    padding: 50px 50px 20px 50px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    position: relative;
    margin: 0 30px;
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 4px 12px;
}
.product-item{
    margin-bottom: 30px;
}
.product-item, .product-image {
    position: relative;
}
.product-content{
    padding: 20px 0;
}
.product-content .product-text .product-content-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
span.cut-price {
    color: var(--text-color);
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 10px;
}
span.main-price {
    color: var(--primary);
    font-weight: 600;
}
.product-rating{
    margin-top: 10px;
}
.product-rating ul {
    display: flex; 
    margin-bottom: 10px;
    gap:2px;
}
.product-rating ul li span{
    margin-right: 10px;
}
.product-rating ul li i{
    color: #FFB03B;
}

.plan-area{
    margin-bottom: 100px;
}


.plan-item {
    padding: 50px 50px 30px 50px;
    margin-bottom: 30px;
    border-radius: 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color);
    height: 350px;
    position: relative;
}
.plan-item:hover{
    background-color: var(--color-three);
}
.plan-lists {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
span.plan-tag {
    position: absolute;
    top: -10px;
    background-color: var(--primary);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
}
.free-plan span.plan-tag{
    background-color: var(--black-color);
}
.plan-amount h4 {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 10px;
}
.plan-amount p { 
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.plan-content h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.plan-content p { 
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 200;
}