@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #fb4b57;
    --theme-2: #FF5289;
    --theme-3: #2b2b6b;
    --theme-4: #ece6ff;
    --header: #101828;
    --base: #5c30fd;
    --text: #696969;
    --border: #e6e6e6;
    --border2: #373737;
    --ratting: #f8bc26;
    --bg: #101828;
    --bg2: #0d0d0d;
    --bg3: #121416;
    ---box-shadow: 0px 4px 25px rgba(0,0,0,.06)
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px
}

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px
}
.theme-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none!important;
    background: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 18px 32px;
    transition: all .4s ease-in-out;
    letter-spacing: 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1;
    z-index: 9;
}

.theme-btn i {
    margin-left: 10px
}

.theme-btn:after,.theme-btn:before {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--header);
    border-radius: 50%;
    z-index: -1
}

.theme-btn:before {
    left: -20px;
    transform: translate(-50%,-50%)
}

.theme-btn:after {
    right: -20px;
    transform: translate(50%,-50%)
}

.theme-btn:hover {
    color: var(--white)
}

.theme-btn:hover:before {
    animation: criss-cross-left .8s both;
    animation-direction: alternate
}

.theme-btn:hover:after {
    animation: criss-cross-right .8s both;
    animation-direction: alternate
}

.theme-btn.bg-white {
    background: var(--white);
    color: var(--header)
}

.theme-btn.bg-white:hover {
    color: var(--white)
}

.theme-btn.hover-white {
    transition: all .4s ease-in-out
}

.theme-btn.hover-white:after,.theme-btn.hover-white:before {
    background-color: var(--white)
}

.theme-btn.hover-white:hover {
    color: var(--header)
}

.theme-btn.bg-2 {
    background: var(--theme-2)
}

.theme-btn.bg-2:after,.theme-btn.bg-2:before {
    background: var(--header)
}

.theme-btn.bg-2:hover {
    color: var(--white)
}

.theme-btn.white-border {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white)
}

.theme-btn.white-border:after,.theme-btn.white-border:before {
    background-color: var(--white)
}

.link-btn,.theme-btn.white-border:hover {
    color: var(--header)
}

.link-btn {
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    font-size: 16px
}

.link-btn i {
    margin-left: 8px
}

.arrow-btn,.link-btn:hover {
    color: var(--theme)
}

.arrow-btn {
    font-size: 16px;
    position: relative;
    transform: translateX(0);
    transition: .7s;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    text-decoration: underline
}

.arrow-btn i {
    font-size: 18px;
    transform: rotate(-40deg)
}

.arrow-btn:before {
    position: absolute;
    content: "Read More";
    font-weight: 700;
    color: var(--theme);
    font-size: 16px;
    left: -95px;
    top: -2px;
    transition: all .4s ease-in-out;
    opacity: 0
}

.arrow-btn:hover {
    transform: translateX(95px);
    color: var(--theme)
}

.arrow-btn:hover i {
    transform: rotate(0)
}

.arrow-btn:hover:before {
    opacity: 1
}

body {
    font-family: Rubik,sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden
}

body,ul {
    padding: 0;
    margin: 0
}

ul {
    list-style: none
}

button {
    border: none;
    background-color: transparent;
    padding: 0
}

input:focus {
    outline: none
}

input,input:focus {
    color: var(--white)
}

h1,h2,h3,h4,h5,h6 {
    font-family: Rubik,sans-serif;
    margin: 0;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all .4s ease-in-out
}

h1 {
    font-size: clamp(28px, 3.25vw, 54px);
    line-height: 120%
}

h1,h2 {
    font-weight: 500
}

h2 {
    font-size: 48px;
    line-height: 120%
}

h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%
}

h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 137%
}

h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%
}

h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 145%
}

a {
    text-decoration: none;
    outline: none!important;
    cursor: pointer;
    color: var(--header)
}

a,p {
    transition: all .4s ease-in-out
}

p {
    margin: 0
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999
}

.preloader .animation-preloader {
    z-index: 1000
}

.preloader .animation-preloader .spinner {
    animation: spinner 1s linear infinite;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,.2);
    border-top: 3px solid var(--theme);
    height: 9em;
    margin: 0 auto 3.5em;
    width: 9em
}


.preloader .animation-preloader .txt-loading {
    font: 700 5em Rubik,sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    position: relative
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: .2s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: .4s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: .6s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: .8s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s
}

.preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    color: var(--header);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: Rubik,sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg)
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme)
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none
}

.preloader .loader .row {
    height: 100%
}

.preloader .loader .loader-section {
    padding: 0
}

.preloader .loader .loader-section .bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all .8s cubic-bezier(.77,0,.175,1)
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: .3s ease-out
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: allcubic-bezier(.1,.1,.1,1) .7s .3s
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: hsla(0,0%,100%,.9)
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%)
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp .3s
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--header);
    border-bottom: 2px solid var(--header);
    text-align: center;
    letter-spacing: 2px
}

.search-wrap input.form-control,.search-wrap input.form-control:focus {
    background-color: var(--header)
}

input.main-search-input::placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer
}

.scroll-up {
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px
}

.scroll-up,.scroll-up:after {
    cursor: pointer;
    display: block;
    height: 50px;
    width: 50px;
    transition: all .4s ease-in-out
}

.scroll-up:after {
    position: absolute;
    font-family: Font Awesome\ 5 Pro;
    content: "\f176";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme);
    left: 0;
    top: 0;
    z-index: 1
}

.scroll-up svg path {
    fill: none
}

.scroll-up svg.scroll-circle path {
    stroke: var(--theme);
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all .4s ease-in-out
}

.scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme);
    transition: width .3s ease-in-out,height .3s ease-in-out,margin .3s ease-in-out,opacity .3s ease-in-out
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--theme);
    opacity: .3
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    transition: all .08s ease-out
}

.cursor-outer.cursor-hover {
    opacity: 0
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px
}


.section-title .sub-content {
    color: var(--theme);
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 10px 60px rgba(92,48,253,.2);
    padding: 6px 12px;
    border-radius: 10px
}

.section-title .sub-content img {
    margin-right: 10px;
    animation: icon-animation 1.5s ease-in-out infinite
}

.section-title .sub-content.bg-color-3 {
    background-color: hsla(0,0%,100%,.1)
}

.section-title .sec-sub-text,.section-title .sec-sub-text-2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    margin-bottom: 20px
}

.section-title .sec-sub-text-2 {
    color: var(--theme)
}

.section-title h2 {
    text-transform: capitalize
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.center {
    text-align: center;
    margin: 0 auto
}

.section-bg {
    background-color: var(--bg)!important
}

.home-5-body-color {
    background-color: var(--bg3)
}

.section-padding {
    padding: 90px 0
}

@keyframes rippleOne {
    70% {
        box-shadow: 0 0 0 40px rgba(244,68,56,0)
    }

    to {
        box-shadow: 0 0 0 0 rgba(244,68,56,0)
    }
}

@keyframes cir36 {
    to {
        transform: rotate(1turn)
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg)
    }
}

@keyframes rounded-2 {
    50% {
        transform: rotate(5deg)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.animation__rotate {
    animation: rotate 40s linear infinite
}

@keyframes spinner {
    to {
        transform: rotate(1turn)
    }
}

@keyframes letters-loading {
    0%,75%,to {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%,-50%) rotate(0deg)
    }

    to {
        transform: translate(-50%,-50%) rotate(1turn)
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(1.2)
    }
}

@keyframes top-image-bounce {
    0% {
        transform: translateX(-8px)
    }

    50% {
        transform: translateX(12px)
    }

    to {
        transform: translateX(-8px)
    }
}

@keyframes top-image-bounce-2 {
    0% {
        transform: translatey(-8px)
    }

    50% {
        transform: translatey(12px)
    }

    to {
        transform: translatey(-8px)
    }
}

@keyframes toggle {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes moveCursor1 {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(.8)
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    to {
        transform: scale(1);
        opacity: 0
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px
    }

    to {
        left: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px
    }

    to {
        right: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes tpswing {
    0% {
        transform: rotate(20deg)
    }

    to {
        transform: rotate(0deg)
    }
}

@keyframes width {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes icon-animation {
    0% {
        transform: rotate(0deg)
    }

    20%,32%,44%,56%,68% {
        transform: rotate(0deg)
    }

    23%,35%,47%,59%,71% {
        transform: rotate(15deg)
    }

    26%,38%,50%,62%,74% {
        transform: rotate(0deg)
    }

    29%,41%,53%,65%,77% {
        transform: rotate(-15deg)
    }

    80% {
        transform: rotate(0deg)
    }
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px)
    }

    50% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(-30px)
    }
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes float-bob-x {
    0% {
        transform: translateX(30px)
    }

    50% {
        transform: translateX(10px)
    }

    to {
        transform: translateX(30px)
    }
}

@keyframes bounce-x {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(30px)
    }

    to {
        transform: translateX(0)
    }
}

.bounce-x {
    animation: bounce-x 7s linear infinite
}
.header-main .main-menu ul li a.active {
    color: #fb4b57;
}
.header-main .main-menu ul li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: #fb4b57;
    left: 0;
    bottom: -6px;
    transform: scaleX(0);
    transition: .2s;
}

.header-main .main-menu ul li a.active::after, 
.header-main .main-menu ul li a:hover::after {
    transform: scale(1);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0
}

.header-main .main-menu ul {
    margin-bottom: 0
}
.header-main .main-menu ul li a.theme-btn:hover {
    color: white !important; 
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end:20px;
    padding: 16px 8px;
}

.header-main .main-menu ul li:last-child {
    -webkit-margin-end: 0;
    margin-inline-end:0}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all .4s ease-in-out
}

.header-main .main-menu ul li a i {
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px
}

.header-main .main-menu ul li a:hover {
    color: var(--theme)!important
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    transform: translateY(10px);
    transition: all .4s ease-in-out
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    padding: 16px 20px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0
}

.header-main .main-menu ul li .submenu li:hover>a {
    background: var(--theme);
    color: var(--white)!important
}

.header-main .main-menu ul li .submenu li:hover>a:after {
    color: var(--theme)
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    transform: translateY(1);
    visibility: visible;
    opacity: 1
}

.header-main .main-menu ul li .submenu li.has-dropdown>a:after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    transform: translateY(-50%);
    color: var(--theme)
}

.header-main .main-menu ul li .has-homemenu {
    min-width: 250px;
    opacity: 0;
    left: 0px;
    visibility: hidden;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu,.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
    position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
    margin-top: 20px
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 16px;
    color: var(--white)!important;
    width: auto;
    font-size: 14px;
    text-align: center;
    border-radius: 0
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white)!important
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:before {
    background: linear-gradient(180deg,rgba(99,92,92,0) 0,#292930);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    content: ""
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover:before {
    visibility: visible;
    opacity: 1
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%)
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
    width: 100%
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px
}

.header-main .main-menu ul li:hover>a,.header-main .main-menu ul li:hover>a:after {
    color: var(--theme)
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0)
}

.header-main .header-right .menu-cart {
    position: relative
}

.header-main .header-right .menu-cart .cart-box {
    background: var(--white) none repeat scroll 0 0;
    box-shadow: 0 0 7px .5px rgba(0,0,0,.15);
    padding: 5px 20px 0;
    position: absolute;
    left: -70px;
    top: 150%;
    transform: rotateX(90deg);
    transform-origin: center top 0;
    transition: all .5s ease 0s;
    visibility: hidden;
    width: 340px;
    z-index: 9999
}

.header-main .header-right .menu-cart .cart-box ul li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize
}

.header-main .header-right .menu-cart .cart-box ul li a {
    padding: 0;
    position: relative;
    font-size: 16px;
    text-transform: capitalize
}

.header-main .header-right .menu-cart .cart-box ul li a:after {
    position: absolute;
    content: "\f00d";
    font-family: Font Awesome\ 5 Pro;
    font-weight: 600;
    top: 15px;
    right: -88px;
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 30px;
    background-color: var(--theme);
    text-align: center
}

.header-main .header-right .menu-cart .cart-box ul li span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--header)
}

.header-main .header-right .menu-cart .cart-box ul li img {
    width: 90px
}

.header-main .header-right .menu-cart .cart-box .shopping-items {
    margin-top: 10px
}

.header-main .header-right .menu-cart .cart-box .shopping-items span {
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    text-transform: capitalize
}

.header-main .header-right .menu-cart .cart-box .cart-button {
    margin-top: 20px
}

.header-main .header-right .menu-cart .cart-box .cart-button .theme-btn {
    padding: 16px 28px;
    font-size: 14px
}

.header-main .header-right .menu-cart .cart-icon {
    position: relative;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color: var(--bg);
    display: inline-block;
    border-radius: 50%
}

.header-main .header-right .menu-cart .cart-icon:before {
    position: absolute;
    top: -7px;
    right: -8px;
    content: "1";
    width: 18px;
    line-height: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: var(--theme);
    color: var(--white);
    font-size: 12px;
    text-align: center;
    font-weight: 500
}

.header-main .header-right .menu-cart .cart-icon i {
    color: var(--header)
}

.header-main .header-right .menu-cart:hover .cart-box {
    transform: rotateX(0deg);
    visibility: visible
}

.sidebar__toggle {
    cursor: pointer;
    display: flex;
}

.header-2 .header-main {
    border-bottom: 1px solid var(--border)
}

.header-2 .container-fluid {
    padding: 0 30px
}

.header-2 .header-right {
    display: flex;
    align-items: center;
    gap: 50px
}

.header-2 .header-right .icon-items {
    display: flex;
    align-items: center;
    gap: 20px
}



.header-2 .header-right .icon-items .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: rgba(135,96,253,.1);
    border-radius: 50%;
    color: var(--theme);
    border: 1px solid rgba(16,24,40,.1)
}

.header-2 .header-right .icon-items .content p {
    color: var(--text);
    margin-bottom: 5px
}

.header-2 .header-right .icon-items .content h4 {
    font-size: 18px
}

.header-2 .header-right .icon-items .content h4 a {
    color: var(--black)
}

.sticky {
    position: fixed!important;
    top: 0!important;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
    transition: all .9s;
    animation: fadeInDown .5s ease-in-out 0s 1 normal none running
}

.sticky.header-2 .header-main {
    border: none
}
.header-left {
    flex-grow: 1;
    display: flex;
    justify-content: end;
    padding-right: 16px;
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    transition: transform .45s ease-in-out,opacity .45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none
}

.offcanvas__info::-webkit-scrollbar {
    display: none
}

.offcanvas__info.info-open {
    opacity: 1;
    transform: translateX(0)
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact,.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 500
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 16px 40px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--header);
    border-radius: 50%;
    transition: all .4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white)
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0
}

.offcanvas__overlay.overlay-open {
    opacity: .8;
    visibility: visible
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    z-index: 9;
    text-align: center
}

.breadcrumb-wrapper .page-heading h1 {
    font-size: clamp(54px, 3.25vw, 28px);
    position: relative;
    z-index: 9;
    line-height: 1.2
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: center
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 24px;
    color: var(--theme);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: -.72px;
    text-decoration: none
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--text);
    transition: all .4s ease-in-out
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover,.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--theme)
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2 {
    text-decoration: underline
}

.breadcrumb-wrapper .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0
}

.breadcrumb-wrapper .shape-1 img {
    width: 100%;
    height: 100%
}

.breadcrumb-wrapper .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0
}

.breadcrumb-wrapper .shape-2 img {
    width: 100%;
    height: 100%
}

.error-items .error-image {
    margin-bottom: 50px
}

.error-items .error-image img {
    width: 100%;
    height: 100%
}

.mean-container a.meanmenu-reveal {
    display: none
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block!important
}

.mean-container .mean-nav>ul .homemenu {
    position: relative
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb {
    position: relative;
    width: 280px
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 10px 30px;
    color: var(--white)!important;
    width: auto;
    font-size: 14px;
    text-align: center
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white)!important
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:before {
    background: linear-gradient(180deg,rgba(99,92,92,0) 0,#292930);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    content: ""
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover:before {
    visibility: visible;
    opacity: 1
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%)
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb img {
    width: 100%
}

.mean-container .mean-nav>ul .homemenu .homemenu-content .homemenu-title {
    margin-top: 15px;
    display: inline-block;
    font-size: 16px
}

.mean-container a.meanmenu-reveal {
    display: none!important
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme)
}

.mean-container .mean-nav ul li>a>i {
    display: none
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all .4s ease-in-out
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px
}
.hero-3 {
    padding: 150px 0 90px;
    position: relative;
    overflow-x: hidden;
}



.hero-3 .bottom-shape {
    position: absolute;
    bottom: -70%;
    left: 0
}


.hero-3 .bottom-shape img {
    width: 100%;
    height: 100%
}

.hero-3 .hero-content .sub-content {
    color: var(--theme);
    margin-bottom: 30px;
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 10px 60px rgba(92,48,253,.2);
    padding: 6px 12px;
    border-radius: 10px
}

.hero-3 .hero-content .sub-content img {
    margin-right: 10px;
    animation: icon-animation 1.5s ease-in-out infinite
}

.hero-3 .hero-content h1 {
    letter-spacing: -2.6px;
    margin-bottom: 20px
}


.hero-3 .hero-content h1 span {
    color: var(--theme);
    font-style: italic
}

.hero-3 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px
}

.hero-3 .hero-content .hero-button .btn-link {
    color: var(--header);
    font-weight: 600;
    text-transform: capitalize;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    transition: all .4s ease-in-out
}

.hero-3 .hero-content .hero-button .btn-link i {
    margin-left: 8px
}

.hero-3 .hero-content .hero-button .btn-link:hover {
    color: var(--theme)
}

.hero-3 .hero-image {
    text-align: center;
    position: relative
}

.hero-3 .hero-image img {
    width: 100%;
    height: 100%
}

.hero-3 .hero-image .frame-shape {
    position: absolute;
    top: 6%;
    left: 8%;
    animation: rounded 5s linear infinite
}
.hero-3 .hero-image .bcleft-shape {
    position: absolute;
    bottom: 30px;
    left: -26%;
    max-width: 380px;
}

.hero-3 .hero-image .bcright-shape {
    position: absolute;
    top: 0;
    right: -20%;
    max-width: 385px;
}

.hero-3 .hero-image .message-shape {
    position: absolute;
    bottom: 10%;
    right: 30px;
    animation: rounded 5s linear infinite
}
.business-boost-section {
    position: relative;
    z-index: 9;
    margin-top: 40px
}
.business-boost-section:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    z-index: -1;
    top: -10%;
    height: 50%
}

.business-boost-wrapper {
    background-color: var(--theme);
    padding: 60px 70px;
    border-radius: 10px;
    position: relative;
    z-index: 9
}

.business-boost-wrapper:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/_next/static/media/border-shape.e4648d35.png);
    width: 100%;
    height: 100%;
    z-index: -1
}

.business-boost-wrapper .business-boost-content h2 {
    color: var(--white);
}
.business-boost-wrapper .business-boost-content p {
    font-size: 20px;
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 40px;
    line-height: 170%
}

.business-boost-wrapper .video-image {
    margin-top: -160px;
    position: relative;
    z-index: 9
}

.business-boost-wrapper .video-image .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.business-boost-wrapper .video-image .video-box .video-buttton {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--theme);
    display: inline-block;
    font-size: 18px
}

.business-boost-wrapper .video-image .video-box .ripple:after,.business-boost-wrapper .video-image .video-box .ripple:before {
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 0 hsla(0,0%,100%,.7)
}

.business-boost-wrapper .video-image img {
    width: 100%;
    height: 100%
}
.about-wrapper-2 .about-image-items {
    position: relative
}

.about-wrapper-2 .about-image-items .about-image-1 {
    max-width: 500px;
    position: relative
}
.about-wrapper-2 .about-image-items .about-image-1 img {
    width: 100%;
    height: 100%;
    border-radius: 10px
}
.about-wrapper-2 .about-image-items .experience-items {
    background-color: #efeaff;
    text-align: center;
    z-index: 9;
    position: absolute;
    left: 0;
    padding: 40px;
    border-radius: 0 0 127px 127px;
    bottom: -28%;
    left: -13%;
    border-top: 5px solid var(--theme)
}

.about-wrapper-2 .about-image-items .experience-items h6 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px
}

.about-wrapper-2 .about-image-items .experience-items h2 {
    color: var(--theme);
    margin-top: 25px;
    margin-bottom: 5px;
    border-top: 1px solid rgba(92,48,253,.1);
    padding-top: 20px
}

.about-wrapper-3 {
    position: relative
}
.service-offer-items {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    border: 1.2px solid rgba(16,24,40,.1);
    background: hsla(0,0%,100%,.1);
    box-shadow: 0 10px 60px 0 rgba(92,48,253,.1);
    padding: 10px 40px;
    min-height: 125px;
}
.service-offer-items.service-offer-items2 {
    padding: 24px 36px;
}
.ready-section .offer-content p {
    color: rgb(255 255 255 / 75%);
}
.service-offer-items2 .offer-content h5 {
    font-size: 18px;
    color: #fb4b57;
    font-weight: 500;
    margin: 16px 0;
}
.about-content-2 {
    position: relative;
    z-index: 9
}

.about-content-2 p {
    max-width: 490px;
    color: hsla(0,0%,100%,.55);
    margin: 0 auto 50px
}
.text-orange {
	color: #fb4b57;
}

.fix {
    overflow: hidden
}

.array-button {
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 20px
}
.mt-10 {
    margin-top: 10px
}
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 50%
}

.head-color {
    color: var(--header)
}

.footer-bg {
    background-color: var(--header)
}

.footer-bg-2 {
    background-color: #1a1d20
}

.background-black {
    background-color: var(--black)!important
}

.bg-white {
    background-color: var(--white)!important
}

.theme-bg {
    background-color: var(--theme)
}

.theme-bg-2 {
    background-color: var(--theme-2)!important
}

.box-shadow {
    box-shadow: var(---box-shadow)
}

.mt-50 {
    margin-top: 50px
}

.pt-80 {
    padding-top: 80px
}

.pb-80 {
    padding-bottom: 80px
}
.border-none {
    border-top: none!important
}
.about-image {
    margin-top: 30px
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px
}
.faq-content .accordion-item {
    border: 0;
    margin-top: 30px;
    border-radius: 10px;
    background-color: #f9fafb;
    border-radius: 12px
}

.faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 500;
    color: var(--header);
    letter-spacing: -.2px;
    border-radius: 0;
    box-shadow: none;
    background: #f9fafb;
    padding: 25px 30px 0;
    text-transform: capitalize;
    font-size: 20px;
    border: none;
}
.faq-content .accordion-item .accordion-header .accordion-button:after {
    content: "\f054";
    background: var(--white);
    font-family: Font Awesome\ 5 Pro;
    font-weight: 500;
    transition: all .3s ease-in-out!important;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 60px rgba(92,48,253,.2);
    text-align: center;
    color: var(--theme);
    font-size: 14px
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    content: "\f077";
    background: transparent;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 500;
    background-color: var(--theme);
    color: var(--white);
    font-size: 14px
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    padding: 20px 30px;
    color: var(--header);
    border-radius: 12px;
    border: 1px solid rgba(16,24,40,.1);
    background: #f9fafb
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
    color: var(--text);
    background: #f9fafb;
    padding: 15px 80px 25px 30px
}

.social-share a {
    margin-left: 10px;
    transition: all .4s ease-in-out
}

.social-share a:hover {
    color: var(--theme)
}
.service-offer-items img {
    width: 82px;
}
.service-offer-items2 img {
    width: 124px;
}
.accordion-body ul li a {
	color: black;
	font-weight: 700;
}
.faq-section .accordion {
	width: 100%;
	border: 1px solid #e2e5e9 ;
	border-radius: 12px;
	overflow: hidden;
}

.accordion-button:not(.collapsed) {
	background-color: var(--secondary-text);
}

.accordion-button:not(.collapsed)::after {
	background-image: none;
	transform: none;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:before {
	content: "";
	position: absolute;
	right: 0.75rem;
	top: 1.25rem;
	height: 2px;
	width: 1rem;
	background-color: var(--bg);
}
.accordion-button.collapsed:after {
	content: "";
	position: absolute;
	right: 1.1875rem;
	top: 0.8125rem;
	height: 1.0625rem;
	width: 0.125rem;
	border-style: none;
	background-color: var(--bg);
}

.faq-section .accordion-button h5 {
	color: var(--bg);
	margin-right: 13px;
}
.accordion-body ol {
	counter-reset: step-counter;
	list-style-type: none;
	padding-left: 0;
}

.accordion-body ol > li {
	counter-increment: step-counter;
	margin-bottom: 10px;
}

.accordion-body ol > li::before {
	content: "Steps " counter(step-counter) ": ";
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.accordion-button:before {
		right: 0.75rem;
	}

	.accordion-button.collapsed:after {
		right: 1.1875rem;
	}

	.faq-section .accordion-button h5 {
		margin-right: 0px;
	}
}



.tc-section {
    background-image: url(../images/t&c-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 75px;
}
.service-list li b {
    font-weight: 500;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-btmWrap {
    border-radius: 16px;
    padding: 36px 48px;
    margin-bottom: 75px;
}
.service-btmWrap p {
    color: rgb(255 255 255 / 75%);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.about-section-2, .about-section-4 {
    background-color: #fff8f8;
}
.service-offer-section {
    padding-bottom: 75px;
}

.footer-bg.grow-business-section .grow-business-wrapper.style-2 .grow-content .grow-percent-items {
    background-color: hsla(0,0%,100%,.05);
    border: 1.2px hsla(0,0%,100%,.1);
    box-shadow: none
}

.footer-bg.grow-business-section .grow-business-wrapper.style-2 .grow-content .grow-percent-items h2,.footer-bg.grow-business-section .grow-business-wrapper.style-2 .grow-content .grow-percent-items h3 {
    color: var(--white)
}
.footer-bg.grow-business-section .grow-business-wrapper.style-2 .grow-content p {
    color: hsla(0,0%,100%,.65)
}

/* ============ FOOTER WIDGETS WRAPPER ============ */
.footer-widgets-wrapper {
    padding: 70px 0 80px;
    position: relative;
    z-index: 9;
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
    color: hsla(0, 0%, 100%, .55);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    gap: 10px;
    margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2b3852;
    color: var(--white);
    line-height: 40px;
    display: flex;
    transition: all .4s ease-in-out;
    align-items: center;
    justify-content: center;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
    background: var(--white);
    border-radius: 5px;
    border: none;
    padding: 18px 20px;
    width: 100%;
    color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
    color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 60px;
    height: 55px;
    border-radius: 5px;
    background-color: var(--theme);
    color: var(--white);
    line-height: 55px;
    text-align: center;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
    transform: rotate(-40deg);
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area {
    margin-top: 25px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items {
    display: flex;
    gap: 20px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items:not(:last-child) {
    margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items .icon {
    font-size: 18px;
    color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items.color-style-2 .icon {
    color: var(--theme-2);
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items .content a,
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items .content p {
    color: hsla(0,0%,100%,.55);
    font-size: 16px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: all .4s ease-in-out;
    position: relative;
    display: table;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:before {
    content: "\f061";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    transition: all .4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
    color: hsla(0, 0%, 100%, .55);
    font-size: 16px;
    transition: all .4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
    background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover:before {
    opacity: 1;
    visibility: visible;
    color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
    padding-left: 25px;
    color: var(--theme);
}
/* ========== FOOTER BOTTOM ========= */
.footer-bottom {
    position: relative;
    z-index: 9;
}

.footer-bottom .footer-wrapper {
    padding-bottom: 80px;
}

.footer-bottom .footer-wrapper p,
.footer-bottom .footer-wrapper p a {
    color: hsla(0,0%,100%,.702);
}
.footer-bottom .footer-wrapper .footer-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-bottom .footer-wrapper .footer-menu li a {
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-size: 0 2px;
    transition: all .4s ease-in-out;
    color: hsla(0,0%,100%,.702);
}
.footer-bottom .footer-wrapper .footer-menu li a:hover {
    color: var(--theme);
}
.footer-bottom .footer-wrapper .scroll-icon {
    width: 60px;
    height: 60px;
    background-color: var(--theme);
    border-radius: 5px;
    text-align: center;
    line-height: 60px;
    color: var(--white);
    font-size: 24px;
    transition: all .4s ease-in-out;
}
.footer-bottom .footer-wrapper .scroll-icon:hover {
    background-color: var(--white);
    color: var(--header);
}
/* Style-2 */
.footer-bottom.style-2 {
    border-top: 1.2px solid hsla(0,0%,100%,.07);
    margin-top: 35px;
    padding: 20px 0;
}
.footer-bottom.style-2 .scroll-icon {
    background-color: var(--theme-2);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
/* =============  MERGED MEDIA QUERIES =============== */
@media (max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 70px 0 85px;
    }
}
@media (max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 35px;
    }

    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center !important;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }

    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }

    .footer-bottom .footer-wrapper .footer-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}


.privacy-policy-a:hover {
    color: #fb4b57;
    text-decoration: underline;
}

.plans-section {
    padding: 170px 0 100px;
    background: #f6424f0d;
}
.plans-title {
    font-size: 62px;
    font-weight: 500;
    color: rgba(28, 37, 46, 0.9);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
}

.plans-subtitle {
    font-size: 20px;
    color: #1C252E;
    letter-spacing: -0.32px;
    text-align: center;
}
.plan-cardWrap {
    display: grid;
    grid-template-columns: calc(50% - 12px) calc(50% - 12px);
    gap: 24px;
    margin: 90px auto;
    max-width: 950px;
}
.plan-card {
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    border: 3px solid rgb(246 66 79 / 25%);
}
.plan-card:hover {
    border: 3px solid rgb(246 66 79 / 100%);
}
.plan-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 36px 36px 24px;
    border-bottom: 2px solid rgb(246 66 79 / 25%);
    margin-bottom: 36px;
}
.plan-card:hover .plan-header {
    border-bottom: 2px solid rgb(246 66 79 / 100%);
}
.plan-header-content {
  flex: 1;
}
.plan-badge {
  font-size: 20px;
  font-weight: 500;
  color: #f6424f;
}
.plan-price {
  font-size: 62px;
  font-weight: 700;
  font-style: italic;
  color: rgba(28, 37, 46, 0.85);
  line-height: 1.1;
  margin: 8px 0;
}
.plan-price span {
  font-size: 16px;
  color: #3e454d;
  font-weight: 500;
}
.plan-desc {
  font-size: 16px;
  color: #1C252E;
  margin-bottom: 4px;
}
.plan-yearly {
  font-size: 16px;
  color: #6b7280;
}
.plan-image {
  max-width: 125px;
}
.plan-body {
  padding: 0 36px 32px;
}

.plan-btn {
    width: 100%;
    min-height: 52px;
    background: #F6424F;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-btn:hover {
  box-shadow: 0 5px 15px rgba(94, 59, 183, 0.1);
}
.plan-section {
  margin-top: 36px;
}
.plan-section h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1C252E;
  margin-bottom: 16px;
}
ul.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    list-style: none;
}   
.features-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: #637381;
}
.trial-section {
  padding: 0px 0 75px;
}

.trial-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 48px;
  background: #f6424f;
  border-radius: 24px;
  border: 3px solid #ffedee;
  overflow: hidden;
  padding-top: 48px;
}
.trial-content {
  padding-left: 72px;
  padding-bottom: 36px;
}
.trial-content h3 {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.24;
  margin: 0;
}
.trial-btn {
  margin-top: 28px;
  padding: 12px 20px;
  min-height: 52px;
  background: #ffffff;
  color: #1C252E;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.trial-btn:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.trial-image {
  max-width: 100%;
  display: block;
}
.service-offer-items .icon-abs {
    position: relative;
}

.service-offer-items .icon-abs::after {
    position: absolute;
    width: 42px;
    height: 80px;
    background: linear-gradient(0deg, rgb(251 75 87 / 18%), #ffffff);
    content: "";
    transform: rotate(-35deg);
    top: -5px;
    right: 6px;
    z-index: -1;
    border-radius: 24px;
}
.service-offer-items img.pointing-hand {
    width: 72px;
    margin-bottom: 20px;
}
.theme-btn-rev {
    background: #fff;
    color: #f6424f;
    margin-top: 24px;
}