/**
 * Table of Contents
 * 1.0 - Global Component
 * 2.0 - Breadcrumb - Header - Footer
 * 3.0 - Homepage
 * 4.0 - About Page
 * 5.0 - Pricing Page
 * 6.0 - Blog Page
 * 7.0 - Blog Detauil Page
 * 8.0 - Contact page
 * 9.0 - Media Query
*/

/**
* 1.0 Global Css
*/

/* Global css start here */
:root {
    --body-font: 'Mukta Vaani', sans-serif;
    --title-font: 'Noto Sans', sans-serif;
    --content-font: 'Mukta Vaani', sans-serif;
    --meta-font: 'Mukta Vaani', sans-serif;
    --primary:#3D246C;
    --secondary: #FA00FF;
    --title-color:#000000;
    --meta-color:#000000;
    --border-color: #FA00FF;
    --content-color: #656565;
    --button-color: #3D246C;
    --white-color: #ffffff;
    --black-color: #000000;
    --footer-color: #180045;
    --footer-copyright-color: #180045;
}

*, *::after, *::before {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
}
html {
    font-family: var(--body-font);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--body-font);
    color: var(--content-color);
    background: var(--white-color);
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
input, optgroup, select, textarea {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--content-color);
    outline: none;
    box-shadow: none;
    width: 100%;
    margin-bottom: 10px;
}
::-webkit-input-placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
:-ms-input-placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
::-ms-input-placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
::placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, footer .copyright-footer .copyright p a, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, em, strong, button, blockquote, small, strike, sub, sup, tt, time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    font-family: var(--body-font);
    color: var(--content-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0;
    background-color: transparent;
    text-decoration: none;
    transition: all .3s;
}
a:hover, a:focus, a:active {
    text-decoration: none;
    outline: 0 none;
    color: var(--content-color);
}
b {
    font-weight: bolder;
}
img {
	max-width: 100%;
}
strong {
    font-weight: bolder;
}
.container {
	max-width: 1164px;
}
.section-wrapper {
    position: relative;
	padding: 100px 0;
    overflow: hidden;
}
h1 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 62px;
    line-height: 72px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
h2 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 52px;
    line-height: 62px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
h3 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
h4 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
h5 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    margin: 0 0 15px 0;
}
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    font-style: normal;
    margin: 0 0 15px 0;
}
p {
    font-family: var(--body-font);
    color: var(--content-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;
}
/* Section Title */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}
.section-title h2 {
    margin: 0;
}
.banner .banner-content h1 span,
.section-title h2 span,
.section-title h4 span {
    color: var(--secondary);
}
.theme-button {
    display: inline-block;
}
.theme-button .btn {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: var(--white-color);
    padding: 8px 36px;
    background: var(--button-color);
    border-radius: 30px;
    box-shadow: none;
    outline: none;
    text-shadow: none;
    transition: all .3s;
}
.theme-button .btn:hover {
    color: var(--white-color);
    background: var(--secondary);   
}
#button-scroll-top {
    display: inline-block;
    background: var(--primary);
    border: 1px solid var(--primary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}
#button-scroll-top.show {
    opacity: 1;
    visibility: visible;
}
#button-scroll-top:after {
    display: block;
    content: "";
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    height: 12px;
    width: 12px;
    transform: rotate(225deg);
    margin: 14px auto;
}
/* Global css start end */

/**
* 2.0 Header - Footer - Breadcrumb
*/

/* Header */
header .navbar {
    padding: 30px 0;
}
.header .container {
    justify-content: center;
    display: block;
    overflow: hidden;
}
header .header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
header .header-wrapper .logo img {
    display: block;
}
header .menu .header-menu ul li {
    margin: 0 15px;
}
header .menu .header-menu ul li a.nav-link {
    color: var(--black-color);
    font-family: var(--body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 7px 10px;
    position: relative;
}
header .menu .header-menu ul li a.nav-link:before {
    display: block;
    content: '';
    width: 0px;
    height: 2px;
    background: var(--secondary);
    transition: width .3s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    margin: 0;
}
header .menu .header-menu ul li.active a.nav-link:before,
header .menu .header-menu ul li a.nav-link:hover:before {
    display: block;
    content: '';
    width: 100%;
    transition: width .3s;
}
header .menu .header-menu ul li.dropdown {
    position: relative;
}
header .menu .header-menu ul li.dropdown a.nav-link {
    padding-right: 20px;
}
header .menu .header-menu ul li.dropdown a.nav-link:after {
    display: inline-block;
    content: "";
    margin-left: 10px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
header .menu-button ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
header .menu-button ul li {
    display: inline-block;
}
header .menu-button ul li a {
    padding: 8px 32px;
    text-align: center;
    border-radius: 20px;
    background: var(--primary);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary);
}
header .menu-button ul li a.login {
    background: transparent;
    color: var(--primary);
}
header .menu-button ul li a.login:hover {
    background: var(--primary);
    color: var(--white-color);
}
header .menu-button ul li a.tryfree {
    color: var(--white-color);
}
header .menu-button ul li a.tryfree:hover {
    background: var(--white-color);
    color: var(--primary);
}
header .menu-button ul li a.tryfree img {
    filter: brightness(0) invert(1);
}
header .menu-button ul li a.tryfree:hover img {
    filter: brightness(1) invert(0);
}
/* breadcrumb */
.breadcrumb {
    background: url('../image/breadcrumb-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0;
    margin: 0;
}
.breadcrumb .breadcrumb-title h1 {
    margin: 0;
    text-align: center;
    color: var(--white-color);
}
.blogpage .breadcrumb {
    background: url('../image/blog-breadcrumb.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.singlepage .breadcrumb {
    background: url('../image/blog-breadcrumb.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact .breadcrumb {
    background: url('../image/contact-breadcrumb.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pricing .breadcrumb {
    background: url('../image/pricing-breadcrumb.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* Footer */
.footer .footer-top {
    background: url(../image/footer-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.footer .footer-logo {
    text-align: center;
    margin-bottom: 50px;
}
.footer .footer-logo img {
    display: block;
    margin: 0 auto;
}
.footer .footer-menu {
    margin: 0 0 50px 0;
}
.footer .footer-menu h6 {
    text-align: center;
    color: var(--secondary);
    margin: 0 0 20px 0;
}
.footer .footer-menu ul {
    text-align: center;
}
.footer .footer-menu ul li {
    display: inline-block;
    margin: 0 25px;
}
.footer .footer-menu ul li a {
    color: var(--white-color);
}
.footer .footer-menu ul li a:hover,
.footer .footer-menu ul li a.active {
    color: var(--secondary);
}
.footer .social-media ul {
    text-align: center;
}
.footer .social-media ul li {
    display: inline-block;
    margin: 0 10px;
}
.footer .social-media ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background: var(--secondary);
    position: relative;
    padding: 5px;
}
.footer .social-media ul li a:hover {
    background: #533b81;
}
.footer .social-media ul li a img {
    width: 20px;
    height: 20px;
    position: relative;
}
.footer .copyright-footer {
    background: var(--footer-copyright-color);
    padding: 26px 0;
}
.footer .copyright-footer .copyright p {
    margin: 0;
    text-align: center;
    color: var(--white-color);
}

/**
* 3.0 Homepage
*/

/* Banner */
.banner {
    background: linear-gradient(102deg, #37247C 0%, #050631 99.46%);
}
.banner .banner-image {
    text-align: right;
}
.banner .banner-content {
    color: var(--white-color);
}
.banner .banner-content h1 {
    color: var(--white-color);
    margin-bottom: 30px;
}
.banner .banner-content p {
    color: #D6D6D6;
    margin-bottom: 30px;
}
.banner .banner-content .theme-button .btn {
    padding: 8px 32px;
    border-radius: 20px;
    background: var(--White-Color, #FFF);
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.banner .banner-content .theme-button .btn:hover,
.banner .banner-content .theme-button .btn:focus {
    background: var(--primary);
    color: var(--white-color);
}
.banner .banner-content .theme-button .btn:hover img,
.banner .banner-content .theme-button .btn:focus img {
    filter: brightness(0) invert(1);
}
/* Efficiency */
.efficiency {
    background: linear-gradient(180deg, #FFF 9.76%, #37247C 100%);
}
.efficiency .efficiency-box {
    border-radius: 10px;
    background: var(--White-Color, #FFF);
    box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.50);
    padding: 80px 15px;
    text-align: center;
    position: relative;
    margin-top: 100px;
}
.efficiency .efficiency-box .efficiency-icon {
    width: 160px;
    height: 160px;
    border-radius: 100px;
    padding: 10px;
    display: block;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.10);
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.efficiency .efficiency-box .efficiency-icon h2 {
    width: 140px;
    height: 140px;
    line-height: 120px;
    padding: 10px;
    border-radius: 100px;
    background: var(--Primary-Color, #3D246C);
    color: var(--white-color);
    margin: 0 auto;
}
.efficiency .efficiency-box h5 {
    margin: 0;
}
/* Video */
.video {
    padding-bottom: 0;
}
.video-container {
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}
.video-container .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-height: 500px;
    object-fit: cover;
}
.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}
.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: #fff;
    cursor: pointer;
    opacity: 0.9;
}
/* Advantage */
.advantage .section-title h2 {
    color: #000000;
}
.advantage .advantage-content ul {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;  
    gap: 30px;
}
.advantage .advantage-content ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex: 0 0 calc(50% - 15px);
    border-radius: 10px;
    background: var(--White-Color, #FFF);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18);
    padding: 20px 16px;
}
.advantage .advantage-content ul li:last-of-type {
    margin-bottom: 0;
}
.advantage .advantage-content ul li img {
    margin-top: 0;
    margin-right: 20px;
    background: rgba(92, 75, 153, 0.10);
    padding: 10px;
    border-radius: 6px;
}
.advantage .advantage-content ul li h6 {
    color: #000000;
    margin: 0;
}
/* Feature */
.feature {
    background: var(--primary);
}
.feature .section-title h2 {
    color: var(--white-color);
}
.feature .feature-box {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 20px solid #46307A;
    background: #513E89;
}
.feature .feature-box .feature-icon img {
    display: block;
    margin: 0 auto 20px auto;
}
.feature .feature-box h6 {
    color: var(--white-color);
    margin: 0 0 20px 0;
}
.feature .feature-box p {
    color: var(--white-color);
    margin: 0;
}
/* Benefits */
.benefits .benefits-image {
    padding-right: 26px;
}
.benefits .benefits-content ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 30px;
}
.benefits .benefits-content ul li:last-of-type {
    margin: 0;
}
.benefits .benefits-content ul li img {
    margin: 20px 20px 0 0;
}
.benefits .benefits-content ul li h6 {
    margin: 0;
}
/* Testimonial */
.testimonial {
    background: radial-gradient(50% 50% at 50% 50%, #37247C 0%, #050631 100%);
}
.testimonial .section-title h2 {
    color: var(--white-color);
}
.testimonial .testimonial-slider {
    margin: 0;
    padding-bottom: 60px;
}
.testimonial .testimonial-slider .slick-list {
    margin: 0 -8px;
}
.testimonial .testimonial-slider .slide {
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    padding: 30px;
    margin: 0 8px;
}
.testimonial .testimonial-slider .slide p {
    color: #D6D6D6;
    margin-bottom: 10px;
}
.testimonial  .slide .author {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.testimonial  .slide .author .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 25px 0px #FFFFFF80;
    margin-right: 16px;
}
.testimonial  .slide .author .icon img {
    border-radius: 50%;
}
.testimonial  .slide .author .profile h6 {
    color: var(--secondary);
    margin-bottom: 2px;
}
.testimonial  .slide .author .profile p {
    margin: 0;
}
.testimonial .testimonial-slider .slick-dots {
    bottom: 0;
}
.testimonial .testimonial-slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}
.testimonial .testimonial-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    background: var(--white-color);
    border-radius: 10px;
    margin: 0 6px;
}
.testimonial .testimonial-slider .slick-dots li button:before {
    display: none;
}
.testimonial .testimonial-slider .slick-dots li.slick-active button {
    background: var(--secondary);
}
.blog .blog-box {
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 16px 0px #0000003D;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.blog .blog-box .blog-img {
    flex: 0 0 40%;
    margin-right: 14px;
}
.blog .blog-box .blog-img img {
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: block;
}
.blog .blog-box .blog-content {
    flex: 0 0 calc(60% - 14px);
}
.blog .blog-box .blog-content h5 {
    margin-bottom: 10px;
    transition: all .3s;
}
.blog .blog-box .blog-content a:hover h5 {
    color: var(--secondary);
}
.blog .blog-box .blog-content .date {
    display: inline-block;
    width: 100%;
    color: var(--black-color);
    margin-bottom: 10px;
}
.blog .blog-box .blog-content .theme-button a {
    background: none;
    color: var(--primary);
    padding: 0;
}
.blog .blog-box .blog-content .theme-button a:hover {
    color: var(--secondary);
}
.blog .blog-box .blog-content .theme-button a img {
    margin-left: 10px;
}

/* Homepage 2 */
.home2 .banner {
    background: url(../image/version-2-banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.home2 .efficiency .efficiency-box {
    margin-top: 0;
    padding: 40px 15px;
}
.home2 .efficiency .efficiency-box .efficiency-icon {
    width: auto;
    height: auto;
    border-radius: inherit;
    padding: 0;
    display: inline-block;
    background: transparent;
    position: relative;
    top: 0;
}
.home2 .efficiency .efficiency-box .efficiency-icon h2 {
    width: auto;
    height: auto;
    line-height: normal;
    padding: 0;
    border-radius: inherit;
    background: transparent;
    color: var(--secondary);
    margin: 0 auto;
}
.home2 .video {
    padding-top: 0;
    margin-top: -50px;
}
.home2 .video .video-container video {
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px #FFFFFF66;
}
.home2 .advantage .advantage-content ul li {
    border: 1px solid var(--border-color);
    border-bottom-width: 5px;
    border-left-width: 5px;
}
.home2 .advantage .advantage-content ul li {
    flex-wrap: wrap;
}
.home2 .advantage .advantage-content ul li img {
    margin: 0 0 20px 0;
}
.home2 .advantage .advantage-content ul li h6 {
    flex: 0 0 100%;
}
.home2 .feature {
    padding: 0;
    background: #ffffff;
}
.home2 .feature .section-title h2 {
    color: #000000;
}
.home2 .benefits .benefits-content ul li {
    border: 1px solid var(--primary);
    border-top-width: 5px;
    border-right-width: 5px;
    padding: 20px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.home2 .benefits .benefits-content ul li:last-of-type {
    margin-bottom: 0;
}
.home2 .testimonial .testimonial-slider .slide {
    border-bottom-width: 5px;
    border-left-width: 5px;
}
.home2 .testimonial .slide .author {
    justify-content: center;
}

/*
4.0 About Page
*/

.generate {
    background: linear-gradient(102deg, #37247C 0%, #050631 99.46%);
    padding-bottom: 70px;
}
.generate .section-title h2 {
    color: var(--white-color);
}
.generate .generate-box {
    padding: 50px 15px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #FFF;
    margin-bottom: 30px;
}
.generate .generate-box .generate-icon img {
    display: block;
    margin: 0 auto 20px auto;
}
.generate .generate-box h6 {
    color: var(--white-color);
    margin: 0 0 20px 0;
}
.generate .generate-box p {
    color: #D6D6D6;
    margin: 0;
}
.chat .chat-item {
    border-radius: 20px;
    border: 1px solid #D6D6D6;
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.20);
    padding: 50px;
    margin-bottom: 100px;
}
.chat .chat-box .section-title h2 {
    color: #000000;
}
.chat .chat-item .chat-logo {
    text-align: center;
    margin-bottom: 50px;
}
.chat .chat-item .chat-lists {
    margin-bottom: 30px;
}
.chat .chat-item .chat-lists ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}
.chat .chat-item .chat-lists ul li {
   background: #F3EFFF; 
   border-radius: 10px;
   padding: 10px 20px;
   box-shadow: 0px 4px 10px 0px #0000001A;
   flex: 0 0 calc(50% - 20px);
}
.chat .chat-item .chat-lists ul li h6 {
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 2px;
}
.chat .chat-item .chat-lists ul li p {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
}
.chat .chat-item:last-of-type {
    margin: 0;
}
.chat .chat-item .item-question {
    text-align: right;
    margin-bottom: 50px;
}
.chat .chat-item .item-question .qustion {
    border-radius: 10px;
    border: 1px solid #D6D6D6;
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    display: inline-block;
    padding: 10px 20px;
}
.chat .chat-item .item-question .qustion p {
    margin: 0;
    display: inline-block;
    color: #000000;
}
.chat .chat-item .item-question .question-icon img {
    display: block;
    margin-top: 6px;
    margin-left: auto;
}
.chat .chat-item .item-answer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 50px;
}
.chat .chat-item .item-answer .answer-icon {
    margin-right: 20px;
    flex: 0 0 20px;
}
.chat .chat-item .item-answer .answer-content {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #D6D6D6;
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}
.chat .chat-item .item-answer .answer-content .list ul li {
    text-align: center;
    margin-bottom: 8px;
    list-style-type: decimal;
    list-style-position: inside;
    color: #000000;
}
.chat .chat-item .item-answer .answer-content .meta ul {
    text-align: right;
}
.chat .chat-item .item-answer .answer-content .meta ul li {
    display: inline-block;
    margin: 0 11px;
}
.chat .chat-item .item-answer .answer-content .meta ul li img {
    display: block;
}
.chat .chat-item .send-msg {
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #D6D6D6;
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.chat .chat-item .send-msg p {
    margin: 0;
}

/*
5.0 Pricing Page
*/

.plan {
    background: linear-gradient(102deg, #37247C 0%, #050631 99.46%);
}
.pricing .plan-box {
    border-radius: 20px;
    border: 1px solid transparent;
    background: #5C4B99;
    padding: 40px 30px;
    text-align: center;
}
.pricing .plan-box:hover {
    border: 1px solid #FFF;
}
.pricing .plan-box h3 {
    color: var(--white-color);
    margin-bottom: 15px;
}
.pricing .plan-box p {
    color: #D8D7D7;
    margin: 0;
}
.pricing .plan-box h2 {
    color: var(--secondary);
    margin: 30px 0;
}
.pricing .plan-box h2 small {
    font-size: 40%;
}
.pricing .plan-box ul {
    margin-bottom: 50px;
}
.pricing .plan-box ul li {
    color: var(--white-color);
    margin-bottom: 28px;
}
.pricing .plan-box ul li:last-of-type {
    margin: 0;
}
.pricing .plan-box .theme-button a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 35px;
}
.faq .faq-image .section-title {
    text-align: left;
    margin-bottom: 30px;
}
.faq .faq-image p {
    margin-bottom: 30px;
}
.faq .faq-content .accordion-wrapper {
    margin-bottom: 30px;
}
.faq .faq-content .accordion-wrapper:last-of-type {
    margin-bottom: 0;
}
.faq .faq-content .accordion-wrapper .btn-wrapper .button {
    padding: 12px 20px;
    padding-right: 40px;
    border-radius: 10px;
    background: #D6D6D6;
    border: none;
    box-shadow: none;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.faq .faq-content .accordion-wrapper .btn-wrapper .button h6 {
    margin: 0;
    text-align: left;
}
.faq .faq-content .accordion-wrapper .btn-wrapper .button img {
    position: absolute;
    top: 18px;
    left: auto;
    right: 20px;
    max-width: 20px;
}
.faq .faq-content .accordion-wrapper.active .btn-wrapper .button img {
    transform: rotate(-180deg);
}
.faq .faq-content .accordion-wrapper .collepsing-div p {
    margin: 20px 0 0 0;
}

/*
6.0 Blog Page
*/

.article .article-item {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    margin-bottom: 30px;
    transition: all 0.3s;
}
.article .article-item:hover {
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.24);
}
.article .col-lg-6:nth-child(5) .article-item,
.article .col-lg-6:nth-child(6) .article-item {
    margin: 0;
}
.article .post-image {
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #3D246C;
}
.article .post-image img {
    display: block;
    width: 100%;
    border-radius: 20px;
}
.article .post-content h5 {
    margin-bottom: 20px;
}
.article .post-content span {
    color: #000000;
    display: inline-block;
    margin-bottom: 20px;
}
.article .post-content p {
    margin-bottom: 20px;
}
.article .post-content .theme-button a {
    background: none;
    color: var(--primary);
    padding: 0;
}
.article .post-content .theme-button a:hover {
    color: var(--secondary);
}

/*
7.0 Blog Page
*/

.single .post-box .single-img {
    margin-bottom: 20px;
}
.single .post-box .single-img img {
    display: block;
    width: 100%;
    border-radius: 20px;
    border: 3px solid #3D246C;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.30);
}
.single .post-box .date {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}
.single .post-box .date li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    color: #000000;
}
.single .post-box h5 {
    margin-bottom: 20px;
}
.single .post-box p {
    margin-bottom: 20px;
}
.single .post-box p:last-of-type {
    margin-bottom: 0;
}
.single .sidebar .widget h5 {
    margin-bottom: 30px;
}
.sidebar .widget-content ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-items: stretch;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #3D246C;
    background: #ffffff;
    margin-bottom: 20px;
}
.sidebar .widget-content ul li:last-of-type {
    margin: 0;
}
.sidebar .widget-content ul li a {
    flex: 0 0 33.3333%;
    margin-right: 24px;
}
.sidebar .widget-content ul li a img {
    display: block;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.sidebar .widget-content ul li .post-text {
    flex: 0 0 calc(66.6666% - 24px);
    text-align: left;
}
.sidebar .widget-content ul li .post-text a {
    margin: 0;
    display: block;
}
.sidebar .widget-content ul li .post-text h6 {
    margin: 0 0 10px 0;
}
.sidebar .widget-content ul li .post-text a:hover {
    color: var(--secondary);
}
.sidebar .widget-content ul li .post-text .date {
    color: #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/*
8.0 Contact Page
*/

.support .support-image img {
    display: block;
    width: 100%;
}
.support .support-content h2 {
    color: #000000;
    margin-bottom: 30px;
}
.support .support-content h2 span {
    color: var(--secondary);
}
.support .support-content p {
    color: #000000;
    margin-bottom: 30px;
}
.support .support-content .theme-button a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.support .support-content .theme-button a img {
    filter: brightness(0) invert(1);
}
.form .section-title h2 {
    text-align: left;
}
.form .form-conetnt ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.form .form-conetnt ul li {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
.form .form-conetnt ul li .icon {
    flex: 0 0 50px;
}
.form .form-conetnt ul li .content {
    flex: 0 0 calc(100% - 50px);
    text-align: left;
}
.form .form-conetnt ul li .content h6 {
    margin-bottom: 6px;
    word-break: break-word;
}
.form .form-conetnt ul li .content p {
    margin: 0;
}
.form .contact-form {
    max-width: 500px;
    margin-left: auto;
}
.form .contact-form .field label {
    display: none;
}
.form .contact-form .field input,
.form .contact-form .field textarea {
    padding: 10px 20px;
    border-radius: 6px;
    background: #D6D6D6;
    border: none;
    margin-bottom: 34px;
}
.form .contact-form .theme-button,
.form .contact-form .theme-button button {
    width: 100%;
}
.google-map iframe {
    display: block;
    min-height: 250px;
    width: 100%;
    height: 100%;
}

/* 
12.0 Media Query
*/

@media screen and (min-width: 1200px) {  
    .feature .row {
        justify-content: space-between;
        column-gap: 40px;
    }
    .feature .row .col-md-4 {
        flex: 0 0 calc(33.33333333% - 27px);
    }
    .testimonial .testimonial-slider .slick-list {
        margin: 0 -20px;
    }
    .testimonial .testimonial-slider .slide {
        margin: 0 20px;
    }
    .google-map iframe {
        min-height: 450px;
    }
    .chat .chat-item .item-question .qustion {
        margin-left: 100px;
    }
    .chat .chat-item .item-answer .answer-content {
        margin-right: 100px;
    }
}
@media screen and (min-width: 992px) {
    .header .container {
        overflow: visible;
    }
    header .menu .header-menu ul li .dropdown-menu {
        background: #ffffff;
        border-radius: 0;
        border: none;
        padding: 0;
        margin: 0;
    }
    header .menu .header-menu ul li .dropdown-menu li {
        padding: 0;
        margin: 0;
    }
    header .menu .header-menu ul li .dropdown-menu .dropdown-item {
        color: var(--primary);
        background: #ffffff;
        padding: 10px 15px;
    }
    header .menu .header-menu ul li .dropdown-menu .dropdown-item:hover,
    header .menu .header-menu ul li .dropdown-menu .dropdown-item:focus {
        background: var(--primary);
        color: #ffffff;
        padding: 10px 15px;
    }
    header .menu .header-menu ul li .dropdown-menu li.active .dropdown-item {
        background: var(--primary);
        color: #ffffff;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .section-wrapper {
        padding: 80px 0;
    }
    h1 {
        font-size: 54px;
        line-height: 66px;  
    }
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
    h3 {
        font-size: 34px;
        line-height: 44px;
    }
    h4 {
        font-size: 30px;
        line-height: 36px;
    }
    h5 {
        font-size: 22px;
        line-height: 26px;
    }
    h6 {
        font-size: 20px;
        line-height: 24px;
    }
    header .menu .header-menu ul li {
        margin: 0 10px;
    }
    .video {
        padding-bottom: 0;
    }
    .testimonial .testimonial-slider {
        padding-bottom: 40px;
    }
    .chat .chat-item {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 991px) {
    header .navbar {
        padding: 10px 0;
    }
    header .header-wrapper {
        flex-wrap: wrap;
    }
    header .menu {
        display: flex;
        flex-direction: column;
    }
    header .menu .navbar-toggler {
        padding: 0;
        border: none;
        box-shadow: none;
        outline: none;
        font-size: 0;
        line-height: 0;
    }
    header .menu .navbar-toggler img {
        width: 30px;
        height: 30px;
    }
    header .menu-button {
        flex: 0 0 100%;
        margin-top: 10px;
    }
    header .menu-button ul {
        justify-content: center;
    }
    header .menu .header-menu {
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background: #ffffff;
    }
    header .menu .header-menu ul li.active a.nav-link,
    header .menu .header-menu ul li a.nav-link:hover {
        color: var(--secondary);
    }
    header .menu .header-menu ul li a.nav-link:before,
    header .menu .header-menu ul li.active a.nav-link:before,
    header .menu .header-menu ul li a.nav-link:hover:before {
        display: none;
    }
    header .menu .header-menu ul li.dropdown .dropdown-menu {
        border: none;
        padding: 0;
        margin: 0;
    }
    header .menu .header-menu ul li.dropdown .dropdown-menu li {
        margin: 0;
        margin-left: 20px;
    }
    .section-wrapper {
        padding: 50px 0;
    }
    .video {
        padding-bottom: 0;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .efficiency .efficiency-box {
        padding: 40px 10px;
        margin: 0 auto;
        margin-top: 100px;
    }
    .efficiency .efficiency-box .efficiency-icon {
        width: 100px;
        height: 100px;
        top: -80px;
    }
    .efficiency .efficiency-box .efficiency-icon h2 {
        width: 80px;
        height: 80px;
        line-height: 60px;
        font-size: 28px;
    }
    .video-container, .video-container video {
        border-radius: 10px;
    }
    .feature .feature-box {
        padding: 20px 10px;
        border-radius: 5px;
        border: 10px solid #46307A;
        height: 100%;
    }
    .testimonial .testimonial-slider {
        padding-bottom: 30px;
    }
    .footer .footer-top {
        padding: 50px 0;
    }
    .footer .footer-logo,
    .footer .footer-menu {
        margin-bottom: 30px;
    }
    .footer .footer-menu ul li,
    .footer .social-media ul li {
        margin: 0 10px;
    }
    .footer .copyright-footer {
        padding: 20px 0;
    }
    .sidebar {
        margin-top: 40px;
    }
    .sidebar .widget-content ul li,
    .single .post-box .single-img img {
        border-radius: 10px;
    }
    .pricing .plan-box {
        padding: 30px 15px;
    }
    .pricing .plan-box h2 {
        margin: 15px 0;
    }
    .pricing .plan-box ul {
        margin-bottom: 30px;
    }
    .pricing .plan-box ul li {
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 44px;
        line-height: 56px;
    }
    h2 {
        font-size: 34px;
        line-height: 42px;
    }
    h3 {
        font-size: 30px;
        line-height: 36px;
    }
    h4 {
        font-size: 22px;
        line-height: 28px;
    }
    h5 {
        font-size: 20px;
        line-height: 26px;
    }
    h6 {
        font-size: 20px;
        line-height: 26px;
    }
    .form .form-conetnt ul {
        gap: 20px;
    }
    .form .form-conetnt ul li {
        flex: 0 0 100%;
    }
    .chat .chat-item .chat-logo {
        margin-bottom: 30px;
    }
    .chat .chat-item {
        margin-bottom: 40px;
        padding: 30px;
    }
    .home2 .efficiency {
        padding-bottom: 80px;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 34px;
        line-height: 42px;
    }
    h2 {
        font-size: 30px;
        line-height: 38px;
    }
    h3 {
        font-size: 26px;
        line-height: 32px;
    }
    h4 {
        font-size: 22px;
        line-height: 26px;
    }
    h5 {
        font-size: 20px;
        line-height: 24px;
    }
    h6 {
        font-size: 18px;
        line-height: 22px;
    }
    a, p{
        font-size: 16px;
    }
    .banner .banner-image {
        text-align: center;
        margin-bottom: 30px;
    }
    .advantage .advantage-content ul {
        gap: 20px;
    }
    .advantage .advantage-content ul li {
        flex: 0 0 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .advantage .advantage-content ul li img {
        margin-top: 0;
        margin-right: 20px;
    }
    .feature {
        padding-bottom: 20px;
    }
    .feature .feature-box {
        height: auto;
        max-width: 480px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .benefits .benefits-image {
        padding: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    .benefits .benefits-content ul li img {
        margin-top: 0;
    }
    .blog .col-12:nth-child(2) .blog-box {
        margin-bottom: 30px;
    }
    /* Blog Page */
    .article .post-image,
    .article .post-image img {
        border-radius: 10px;
    }
    .article .article-item {
        border-radius: 10px;
        padding: 20px 15px;
        margin: 0 0 20px 0;
    }
    .article .col-lg-6:nth-child(5) .article-item{
        margin: 0 0 20px 0;
    }
    .article .col-lg-6:nth-child(6) .article-item {
        margin: 0;
    }
    /* About Us page */
    .support .support-content {
        text-align: center;
    }
    .support .support-image {
        margin-bottom: 30px;
    }
    .form .contact-form {
        max-width: 100%;
        margin-top: 30px;
    }
    .form .contact-form .field input,
    .form .contact-form .field textarea {
        margin-bottom: 20px;
    }
    .pricing .plan-box {
        max-width: 380px;
        margin: 0 auto 20px auto;
    }
    .pricing .col-md-4:nth-child(3) .plan-box {
        margin-bottom: 0;
    }
    .faq .faq-image {
        margin-bottom: 30px;
    }
    .faq .faq-content .accordion-wrapper {
        margin-bottom: 20px;
    }
    .generate .generate-box {
        max-width: 480px;
        padding: 30px 15px;
        margin: 0 auto 20px auto;
    }
    .chat .chat-item {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    .chat .chat-item .chat-logo {
        margin-bottom: 20px;
    }
    .chat .chat-item .item-answer {
        margin-bottom: 30px;
    }
    .chat .chat-item .chat-lists ul li {
        flex: 0 0 100%;
    }
    .home2 .video {
        padding-top: 20px;
    }
    .home2 .efficiency .efficiency-box {
        margin: 10px 0;
    }
    .home2 .benefits .benefits-image {
        margin: 30px 0 0 0;
    }
}
@media screen and (max-width: 575px) {
    .blog .blog-box {
        flex-direction: column;
    }
    .blog .blog-box .blog-img {
        margin: 0 0 15px 0;
        width: 100%;
    }
    .blog .blog-box .blog-img img {
        width: 100%;
        display: block;
    }
    .form .form-conetnt ul {
        gap: 20px;
    }
    .form .form-conetnt ul li {
        flex: 0 0 100%;
    }
}