/* ------------------------------------------------
  Project:   Dashty - Software Landing Page
  Author:    Theme-Media
------------------------------------------------ */


/* ------------------------
    Table of Contents

    1. General
    2. Header
    3. Banner
    4. Stats section
    5. About-home-section
    6. Dashboard Short
    7. Integration-section
    8. Pricing-section
    9. Parallax-section
    10.Testimonial-section
    11.Contact-section
    12.FAQ-section
    13.Footer

----------------------------- */


/* ------------------------
    General 
------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --themeht-primary-color: #5e20ce;
    --bg-purple-gradiunt: linear-gradient(313deg, #7f23e9 0%, #3f169a 100%);
    --themeht-secondary-color: #a684e7;
    --themeht-primary2-color: #5024ff;
    --themeht-secondary2-color: #ff5455;
    --themeht-text-color: #191919;
    --themeht-body-color: #606060;
    --themeht-white-color: #FFFFFF;
    --themeht-bg-dark-color: #000229;
    --themeht-bg-light-color: #F7F9FE;
    --themeht-border-light-color: #E1E1E1;
    --themeht-body-font-family: "Hanken Grotesk", sans-serif;
    --themeht-secondary-font-family: "Archivo", sans-serif;
    --themeht-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


/* #f2f3f7 */

body {
    font-family: var(--themeht-body-font-family);
    font-weight: normal;
    font-style: normal;
    font-size: 17px;
    line-height: 30px;
    color: var(--themeht-body-color);
}

.page-wrapper {
    overflow-x: hidden;
}


/* ------------------------
    Typography
------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 20px;
    font-style: normal;
    font-family: var(--themeht-secondary-font-family);
    color: var(--themeht-text-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

.h1,
h1 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 600;
}

.h2,
h2 {
    font-size: 54px;
    line-height: 64px;
    font-weight: 600;
}

.h3,
h3 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
}

.h4,
h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
}

.h5,
h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

.h6,
h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

ul {
    margin: 0px;
    padding: 0px;
}

u {
    -webkit-text-decoration-style: wavy;
    text-decoration-style: wavy;
}

a {
    text-decoration: none;
}

a:focus {
    text-decoration: none !important;
}

a:focus,
a:hover {
    color: var(--themeht-primary-color);
    text-decoration: none !important;
}

a,
button,
input {
    outline: medium none !important;
    color: var(--themeht-primary-color);
}

*::-moz-selection {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    text-shadow: none;
}

::selection {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    text-shadow: none;
}

.themeht-btn {
    position: relative;
    overflow: hidden;
    z-index: 9;
    padding: 10px 10px 10px 30px;
    display: inline-block;
    border-radius: 100px;
    border: none;
    color: var(--themeht-white-color);
    font-family: var(--themeht-secondary-font-family);
    font-weight: 500;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.themeht-btn.primary-btn {
    background: -o-linear-gradient(335deg, var(--themeht-primary-color), var(--themeht-secondary-color));
    background: linear-gradient(115deg, var(--themeht-primary-color), var(--themeht-secondary-color));
    color: var(--themeht-white-color);
}

.themeht-btn i {
    margin-left: 12px;
    color: var(--themeht-text-color);
    font-size: 18px;
    width: 35px;
    height: 35px;
    background: var(--themeht-white-color);
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    line-height: 35px;
}

.themeht-btn:before {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 100px;
    background: -o-linear-gradient(335deg, var(--themeht-primary2-color), var(--themeht-secondary2-color));
    background: linear-gradient(115deg, var(--themeht-primary2-color), var(--themeht-secondary2-color));
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.themeht-btn:hover:before {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.section-padding {
    padding: 50px 0;
}

.heading-wrap {
    position: relative;
}

.heading-wrap h5 {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: var(--themeht-primary-color);
    margin-bottom: 6px;
    padding-left: 20px;
}

.heading-wrap h5:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--themeht-primary-color);
    top: 12px;
    left: 0;
    -webkit-filter: opacity(0.5);
    filter: opacity(0.5);
}

.heading-wrap h5.text-light:before {
    background: var(--themeht-white-color);
}

.heading-wrap h3.heading-title {
    font-weight: 600;
    text-transform: capitalize;
}

.heading-wrap.text-center h5 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden
}


/* ------------------------
    Header 
------------------------*/

#header-wrap.fixed-header .logo img {
    height: 55px;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1200;
}

#header-wrap {
    position: relative;
}

#header-wrap.fixed-header {
    padding: 15px 0;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    background: var(--themeht-white-color) !important;
}

#header-wrap.fixed-header .navbar-nav {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--themeht-text-color);
    font-weight: 400;
}

.logo img {
    max-height: 45px;
}

.navbar {
    padding: 0;
}

.navbar-nav {
    background: white;
    padding: 35px 30px 25px;
    position: relative;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.navbar-nav:before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    height: 40px;
    width: 20px;
    left: -20px;
    border-top-right-radius: 20px;
    -webkit-box-shadow: 0 -20px 0 0 var(--themeht-white-color);
    box-shadow: 0 -20px 0 0 var(--themeht-white-color);
}

.navbar-nav:after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    height: 40px;
    width: 20px;
    right: -20px;
    border-top-left-radius: 20px;
    -webkit-box-shadow: 0 -20px 0 0 var(--themeht-white-color);
    box-shadow: 0 -20px 0 0 var(--themeht-white-color);
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    padding: 20px;
    background: var(--themeht-white-color);
    top: 100%;
    border: none;
    border-radius: 20px;
    margin-top: 0;
    left: 0;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
    background: var(--themeht-white-color);
    left: 100%;
    margin: 0;
    right: auto;
    top: 0;
}

.navbar-nav .dropdown-submenu {
    display: block;
    position: relative;
}

.navbar-nav .nav-link {
    font-family: var(--themeht-secondary-font-family);
    color: var(--themeht-text-color);
    font-weight: 500;
    padding: 0 !important;
    border-radius: 0;
    text-transform: capitalize;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--themeht-primary-color);
}

.nav-item.dropdown .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.nav-item.dropdown .dropdown-menu a {
    display: block;
    padding: 10px 0;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    background: none;
    color: var(--themeht-text-color);
    font-size: 15px;
    font-weight: 400;
}

.nav-item.dropdown .dropdown-menu a:hover {
    color: var(--themeht-primary-color);
    padding-left: 10px;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-toggle.show,
.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-toggle:focus {
    color: var(--themeht-primary-color);
    padding-left: 10px;
}

.nav-link.dropdown-toggle::after,
.navbar-nav .dropdown-submenu .dropdown-toggle::after {
    border: none;
    content: '\F282';
    font-family: bootstrap-icons !important;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
    width: 10px;
    font-weight: 700;
}

.navbar-nav .dropdown-submenu .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 10px;
    content: '\F285';
}

.navbar button.navbar-toggler.ht-toggler {
    padding: 0px 5px;
    border-radius: 4px;
    background: #5e20ce;
    border: none;
}

.navbar button.navbar-toggler.ht-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width:992px) {
    .navbar-nav .dropdown-menu {
        min-width: 12em !important;
        max-width: 20em !important;
    }
    .navbar-nav .dropdown>.dropdown-menu {
        opacity: 0;
        position: absolute;
        display: block;
        pointer-events: none;
        background: var(--themeht-white-color);
    }
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        -webkit-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }
    .navbar-nav .dropdown-submenu:hover .dropdown-menu {
        top: 0;
    }
    .navbar-nav.ms-auto .nav-item.dropdown .dropdown-menu {
        right: 0;
    }
    .navbar-nav.ms-auto .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: auto;
        right: 100%;
    }
}

@media (max-width:991.98px) {
    .navbar-nav .dropdown-submenu .dropdown-menu {
        padding: 0;
        top: 0;
    }
}


/* ------------------------
    Banner
------------------------*/

.banner {
    padding: 200px 0 180px;
    position: relative;
}

.banner .container {
    position: relative;
}

.anim_line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.anim_line span {
    position: absolute;
    z-index: 99999;
    top: -275px;
    -webkit-animation: star_down_one 6s infinite linear;
    animation: star_down_one 6s infinite linear;
    opacity: 0;
}

.anim_line span:first-child {
    left: -17%;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.anim_line span:nth-child(2) {
    left: 0%;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.anim_line span:nth-child(3) {
    left: 17%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.anim_line span:nth-child(4) {
    left: 34%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.anim_line span:nth-child(5) {
    left: 51%;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.anim_line span:nth-child(6) {
    left: 68%;
}

.anim_line span:nth-child(7) {
    left: 85%;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.anim_line span:nth-child(8) {
    left: 99%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.anim_line span:nth-child(9) {
    left: 117%;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

@-webkit-keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}


/* hero slider images */

.banner .banner_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
}

.banner .banner_slider .left_icon {
    position: absolute;
    left: -50px;
    bottom: 50px;
    z-index: 9999;
}

.banner .banner_slider .right_icon {
    position: absolute;
    right: -70px;
    top: -70px;
}

.banner .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 999;
    width: 100%;
}

.banner .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    background-color: #fff;
    width: calc(100% - 10px);
    height: 80%;
}

.banner .banner_slider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background-color: var(--themeht-primary-color);
    z-index: 0;
    -webkit-filter: opacity(0.15);
    filter: opacity(0.15);
}

.banner .banner_slider #frmae_slider {
    width: 440px;
    margin: 0 auto;
}

.banner .banner_slider #frmae_slider .item {
    position: relative;
    top: 20px;
    overflow: hidden;
    height: 300px;
}

.banner .banner_slider #frmae_slider .item .slider_img img {
    border-radius: 10px;
}


/* hero slider control dots */

.banner .owl-dots {
    margin-top: 40px;
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}

.banner h1 {
    font-size: 42px;
    line-height: 52px;
}

.banner h1 span {
    color: var(--themeht-primary-color);
    background: -o-linear-gradient(335deg, var(--themeht-primary-color), var(--themeht-secondary-color));
    background: linear-gradient(115deg, var(--themeht-primary-color), var(--themeht-secondary-color));
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 0;
}

@media (min-width:1800px) {
    .banner .banner-img {
        margin-right: -200px;
    }
}

.banner-1 .banner-img {
    padding-left: 80px;
}

.banner-1:before {
    position: absolute;
    width: 110%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    top: -20%;
    left: 0;
    content: "";
    background-image: -o-radial-gradient(40% 90%, circle, rgba(25, 98, 241, .11), rgba(25, 98, 241, 0) 10%), -o-radial-gradient(30% 70%, circle, rgba(255, 176, 132, .32), rgba(255, 176, 132, 0) 15%), -o-radial-gradient(80%, circle, rgba(255, 176, 132, .32), rgba(255, 176, 132, 0) 11%), -o-radial-gradient(70% 30%, circle, rgba(252, 230, 183, .7), rgba(252, 230, 183, 0) 33%), -o-radial-gradient(52% 37%, circle, rgba(197, 222, 255, .6), rgba(197, 222, 255, 0) 30%), -o-radial-gradient(65% 10%, circle, rgba(197, 222, 255, .89), rgba(197, 222, 255, 0) 17%), -o-radial-gradient(40% 30%, circle, rgba(242, 204, 255, .89), rgba(242, 204, 255, 0) 29%);
    background-image: radial-gradient(circle at 40% 90%, rgba(25, 98, 241, .11), rgba(25, 98, 241, 0) 10%), radial-gradient(circle at 30% 70%, rgba(255, 176, 132, .32), rgba(255, 176, 132, 0) 15%), radial-gradient(circle at 80%, rgba(255, 176, 132, .32), rgba(255, 176, 132, 0) 11%), radial-gradient(circle at 70% 30%, rgba(252, 230, 183, .7), rgba(252, 230, 183, 0) 33%), radial-gradient(circle at 52% 37%, rgba(197, 222, 255, .6), rgba(197, 222, 255, 0) 30%), radial-gradient(circle at 65% 10%, rgba(197, 222, 255, .89), rgba(197, 222, 255, 0) 17%), radial-gradient(circle at 40% 30%, rgba(242, 204, 255, .89), rgba(242, 204, 255, 0) 29%);
    -webkit-filter: drop-shadow(0px 10px 40px rgba(165, 165, 165, 0.1));
    filter: drop-shadow(0px 10px 40px rgba(165, 165, 165, 0.1));
    background-color: white;
}

.banner-1 .banner-img3 {
    position: absolute;
    left: auto;
    top: 20%;
    right: -5%;
    bottom: auto;
    z-index: 3;
    overflow: hidden;
    width: 180px;
    border-radius: 8px;
    -webkit-box-shadow: 0 9px 42px 0 rgba(64, 69, 79, 0.1);
    box-shadow: 0 9px 42px 0 rgba(64, 69, 79, 0.1);
}

.banner-1 .banner-img2 {
    position: absolute;
    left: 200px;
    top: auto;
    bottom: -10%;
    z-index: 3;
    width: 260px;
    -webkit-box-shadow: 0 16px 71px 0 rgba(64, 69, 79, 0.1);
    box-shadow: 0 16px 71px 0 rgba(64, 69, 79, 0.1);
}

.banner-img {
    position: relative;
    z-index: 1;
}

.macbook-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    -webkit-box-shadow: 0 16px 71px 0 rgba(64, 69, 79, 0.1);
    box-shadow: 0 16px 71px 0 rgba(64, 69, 79, 0.1);
}

.img-box {
    background: var(--themeht-white-color);
    position: relative;
    border-radius: 20px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 15px
}

.img-box img {
    border-radius: 20px;
}

.img-box::before {
    content: "";
    height: 20px;
    width: 110%;
    position: absolute;
    bottom: 0;
    background: var(--themeht-white-color);
    left: -5%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
}

.img-box img {
    width: 100%;
}

.banner h6 {
    display: inline-block;
    border: 1px solid var(--themeht-primary2-color);
    padding: 10px 20px;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
    margin: 3px;
    position: relative;
    line-height: 1;
}

.banner h6 span {
    width: 6px;
    height: 6px;
    background: var(--themeht-primary-color);
    display: inline-block;
    position: absolute;
    top: -3px;
    left: -3px;
}

.banner h6 span:nth-child(2) {
    left: inherit;
    right: -3px;
    background: var(--themeht-secondary2-color);
}

.banner h6 span:nth-child(3) {
    top: inherit;
    bottom: -3px;
    background: var(--themeht-primary2-color);
}

.banner h6 span:nth-child(4) {
    top: inherit;
    bottom: -3px;
    left: inherit;
    right: -3px;
    background: var(--themeht-secondary-color);
}


/* ------------------------
    Stats section
------------------------*/

.stats_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 25px 30px;
}

.stat_icon {
    background: -o-linear-gradient(335deg, var(--themeht-primary-color), var(--themeht-secondary-color));
    background: linear-gradient(115deg, var(--themeht-primary-color), var(--themeht-secondary-color));
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

.stats_count {
    font-size: 30px;
    font-weight: 700;
    color: var(--themeht-primary-color);
}

.stats_item h3 {
    margin-bottom: 0;
    font-size: 30px;
}


/* ------------------------
    About-home-section
------------------------*/

.about-home-section {
    background: var(--themeht-bg-light-color);
    position: relative;
    overflow: hidden;
}

.img-wrap-01 {
    position: relative;
}

.img-wrap-01:before {
    content: '';
    background: url('../images/shapes/shape-01.png');
}

.img-wrap-01 img:nth-child(1),
.img-wrap-01 img:nth-child(3) {
    position: absolute;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 2;
}

.img-wrap-01 img:nth-child(1) {
    top: -40px;
    right: 0px;
    max-width: 230px;
    -webkit-animation: up_down_motion 6s infinite linear;
    animation: up_down_motion 6s infinite linear;
}

.img-wrap-01 img:nth-child(2) {
    position: relative;
    z-index: 1;
    top: 20px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.img-wrap-01 img:nth-child(3) {
    bottom: -40px;
    left: -40px;
    max-width: 150px;
    -webkit-animation: up_down_motion_two 6s infinite linear;
    animation: up_down_motion_two 6s infinite linear;
}

.img-wrap-01 img:nth-child(4) {
    position: absolute;
    top: -100px;
    left: -30px;
    z-index: 0;
}

.bullet-style-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.bullet-style-01 i {
    background-color: var(--themeht-primary-color);
    position: relative;
    top: 0px;
    color: var(--themeht-white-color);
    padding: 4px;
    border-radius: 15px;
}

.bullet-style-01 h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 30px;
}

.bullet-style-01 p {
    line-height: 1.5;
    font-size: 16px;
}

@-webkit-keyframes up_down_motion {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes up_down_motion {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes up_down_motion_two {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes up_down_motion_two {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}


/* ------------------------
Dashboard Short 
------------------------*/

.owl-item.center .item .dash_short_img img {
    border: 2px solid var(--themeht-primary-color);
}

.owl-item .dash_short_img {
    opacity: 0.5;
}

.owl-item.center .dash_short_img {
    opacity: 1;
}

.owl-item .dash_short_img img {
    border: 3px solid transparent;
    border-radius: 20px;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
    margin: 0 auto;
}


/* -----------------------
Integration-section
------------------------*/

.integration-section {
    position: relative;
    background-image: var(--bg-purple-gradiunt);
    color: #fff;
}

.dotes_anim_bloack .dots {
    position: absolute;
    border-radius: 50%;
}

.dotes_anim_bloack .dots::before {
    content: "";
    border-radius: 50%;
    position: absolute;
}

.dotes_anim_bloack .dotes_1 {
    width: 120px;
    height: 120px;
    top: 135px;
    left: 75px;
    -webkit-animation: reverce_anim_round 12s infinite linear;
    animation: reverce_anim_round 12s infinite linear;
}

.dotes_anim_bloack .dotes_1::before {
    width: 12px;
    height: 12px;
    background: #f249c0;
    top: 0;
    left: 0;
}

.dotes_anim_bloack .dotes_2 {
    width: 90px;
    height: 60px;
    top: 47px;
    left: 65%;
    -webkit-animation: anim_round 9s infinite linear;
    animation: anim_round 9s infinite linear;
}

.dotes_anim_bloack .dotes_2::before {
    width: 9px;
    height: 9px;
    background: #f249c0;
    top: 0;
    left: 0;
}

.dotes_anim_bloack .dotes_3 {
    width: 120px;
    height: 120px;
    top: 175px;
    right: 165px;
    -webkit-animation: reverce_anim_round 12s infinite linear;
    animation: reverce_anim_round 12s infinite linear;
}

.dotes_anim_bloack .dotes_3::before {
    width: 14px;
    height: 14px;
    background: #1febcc;
    top: 0;
    right: 0;
}

.dotes_anim_bloack .dotes_4 {
    width: 100px;
    height: 140px;
    top: 33%;
    left: 290px;
    -webkit-animation: anim_round 8s infinite linear;
    animation: anim_round 8s infinite linear;
}

.dotes_anim_bloack .dotes_4::before {
    width: 10px;
    height: 10px;
    background: #f2b049;
    top: 0;
    left: 0;
}

.dotes_anim_bloack .dotes_5 {
    width: 120px;
    height: 120px;
    top: 37%;
    left: 68%;
    -webkit-animation: reverce_anim_round 15s infinite linear;
    animation: reverce_anim_round 15s infinite linear;
}

.dotes_anim_bloack .dotes_5::before {
    width: 10px;
    height: 10px;
    background: #f2b049;
    top: 0;
    left: 0;
}

.dotes_anim_bloack .dotes_6 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 90px;
    -webkit-animation: anim_round 17s infinite linear;
    animation: anim_round 17s infinite linear;
}

.dotes_anim_bloack .dotes_6::before {
    width: 10px;
    height: 10px;
    background: #7da5ff;
    top: 0;
    right: 0;
}

.dotes_anim_bloack .dotes_7 {
    width: 120px;
    height: 120px;
    bottom: 18%;
    left: 200px;
    -webkit-animation: reverce_anim_round 14s infinite linear;
    animation: reverce_anim_round 14s infinite linear;
}

.dotes_anim_bloack .dotes_7::before {
    width: 10px;
    height: 10px;
    background: #7da5ff;
    top: 0;
    left: 0;
}

.dotes_anim_bloack .dotes_8 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 250px;
    -webkit-animation: reverce_anim_round 10s infinite linear;
    animation: reverce_anim_round 10s infinite linear;
}

.dotes_anim_bloack .dotes_8::before {
    width: 14px;
    height: 14px;
    background: #f249c0;
    top: 0;
    left: 0;
}

@-webkit-keyframes reverce_anim_round {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes reverce_anim_round {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes anim_round {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes anim_round {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.bg_pattern img {
    width: 100%;
    opacity: 0.1;
    position: absolute;
    top: 0;
    height: 100%;
}

.integration-section .container {
    position: relative;
}

.integration-card {
    background: var(--themeht-bg-light-color);
    width: 100%;
    height: 100%;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.integration-card span {
    color: var(--themeht-primary-color);
    font-size: 18px;
    font-weight: 600;
    display: block;
}


/* ------------------------
    Pricing-section
------------------------*/

.pricing-section {
    position: relative;
}

.pricing-card {
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    padding: 30px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 100%;
}

.price-card-header {
    border-bottom: 2px solid #dfdfdf;
    padding-bottom: 15px;
}

.price-card-header h5 {
    font-size: 28px;
    margin-bottom: 30px;
}

.plan-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.plan-price .lg-text {
    color: var(--themeht-primary-color);
    font-size: 50px;
    font-weight: 900;
}

.price-card-body {
    padding-top: 20px;
}

.price-card-body ul {
    list-style: none;
}

.price-card-body ul li {
    position: relative;
    padding-left: 25px;
    line-height: 1.25;
    margin-bottom: 15px;
    font-size: 16px;
}

.price-card-body ul li:before {
    content: "\f00c";
    font-family: Font Awesome\ 6 Pro;
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 6px;
    font-size: 12px;
    border: 1px solid var(--themeht-primary-color);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 3px;
}


/* ------------------------
    Parallax-section
------------------------*/

.parallax-section {
    position: relative;
    padding: 100px 0;
    background-color: #230657;
    background-image: url('../images/shapes/pattern.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 98%;
    margin: auto;
    border-radius: 10px;
    color: #fff;
    background-blend-mode: color-dodge;
    overflow: hidden;
}

.parallax-section .heading-wrap h5 {
    border: 1px solid #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 25px;
    padding: 0 30px;
    margin-bottom: 30px;
}

.parallax-section .heading-wrap h5:before {
    left: 15px;
}

.parallax-element {
    position: absolute;
    top: 0;
    right: 0;
}

.parallax-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.parallax-element img {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation: round-spin 12s linear infinite;
    animation: round-spin 12s linear infinite;
}

@-webkit-keyframes round-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ------------------------
    Testimonial-section
------------------------*/

.testi_wrap {
    padding: 50px;
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(#e5d3ff), color-stop(#f9d4ff), to(#e4f2ff));
    background: -o-linear-gradient(left, #e5d3ff, #f9d4ff, #e4f2ff);
    background: linear-gradient(90deg, #e5d3ff, #f9d4ff, #e4f2ff);
    border-radius: 30px;
}

.testi_wrap i {
    font-size: 50px;
    position: relative;
    margin-top: -20px;
    color: #fff;
    text-shadow: -3px -2px 0px #9f9f9f;
}

.testi_wrap p {
    line-height: 25px;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
}

.testi_author {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.testi_author img {
    width: 60px !important;
    border-radius: 50%;
    border: 2px solid #f3f3f3
}

.testi_author h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 16px;
    color: var(--themeht-primary-color);
}

.testi_author h5 {
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 0;
    line-height: 16px;
}

#testi_slider {
    position: relative;
}

#testi_slider .owl-prev,
#testi_slider .owl-next {
    position: absolute;
    top: 50%;
    font-size: 50px;
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#testi_slider .owl-prev {
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#testi_slider .owl-next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

#testi_slider .owl-nav button span {
    position: relative;
    top: -4px;
}


/* ------------------------
    Contact-section
------------------------*/

.contact-section {
    position: relative;
    background: var(--themeht-bg-light-color);
}

.form-wrap {
    background: #fff;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
    padding: 30px;
}

.form-wrap label {
    font-weight: 500;
}

.form-wrap input {
    font-size: 15px;
}

.form-wrap select {
    min-height: 34px;
    color: #585c74;
    font-weight: 400;
    font-size: 15px;
}

.contact_banner {
    border-radius: 8px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #fff;
    margin-top: 20px;
}


/* ------------------------
    FAQ-section
------------------------*/

.faq-section .accordion-item {
    margin-bottom: 15px;
    border: none;
}

.faq-section button.accordion-button {
    line-height: 1.75;
    background: #e7e0f8;
    border-radius: 5px;
}

.faq-section button.accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-section .accordion-body {
    font-size: 16px;
    line-height: 1.5;
}


/* ------------------------
    Footer
------------------------*/

.footer-top-shape {
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: -2px;
    left: 0;
}

.footer-top-shape>svg {
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    width: 100%;
    height: auto;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}

footer {
    background: var(--themeht-primary-color);
    padding: 50px 0 0 0;
}

footer p {
    color: var(--themeht-bg-light-color);
    text-align: center;
    font-weight: 500;
}

footer p span {
    color: #f46700;
    font-weight: 700;
    font-size: 28px;
}

.copyright {
    margin-top: 50px;
    background: #4a109f;
    padding: 10px 0;
}

.copyright p {
    text-align: left;
    margin-bottom: 0;
}

.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.social-icons a {
    opacity: 0.5;
    -webkit-transition: 0.2s opacity ease-in-out;
    -o-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.social-icons a:hover {
    opacity: 1;
}

.social-icons a i {
    color: var(--themeht-bg-light-color);
}