@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --space-grotesk: "Space Grotesk", sans-serif;
    --inter: "Inter", sans-serif;
    --primaryColor: #FF9900;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #595B61;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    font-family: var(--space-grotesk);
    color: #141F39;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 20px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/
.header-area {
    background-color: var(--secondaryBg);
}

.header-nav {
    background: #fff;
    border-bottom: 1px solid var(--secondaryBg);
    padding: 28px 0;
    width: 100%;
    z-index: 99;
    transition: 0.4s;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff !important;
}

.header-nav.menu-sticky {
    padding-block: 12px;
    box-shadow: rgba(99, 99, 99, 0.096) 0px 2px 8px 0px;
}

.menu-spacer {
    min-height: 120px;
}

.main-menu ul {
    display: flex;
    gap: 32px;
}

.main-menu ul li a {
    position: relative;
    color: #141F39;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.main-menu ul li a:hover {
    color: var(--primaryColor);
}

.main-menu .button {
  display:inline-block;
  height:30px;
  line-height:30px;
  overflow:hidden;
  position:relative;
  text-align:center;
  border-radius:2px;
  transition:0.3s;
}

/* BUTTON UP */
.main-menu .label-up {
  display:block;
  height:100%;
  position:relative;
  top:0%;
  transition:0.3s;
}

.main-menu .button:hover .label-up {
  top:-100%;
}

/* BUTTON DOWN */
.main-menu .label-down {
  display:block;
  height:100%;
  position:relative;
  top:-100%;
  transition:0.3s;
}

.main-menu .button:hover .label-down {
  top:0%;
}

.main-menu .duel-buttons-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* primary button design */
.btn-primary {
    display: inline-block;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--primaryColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-wrap: nowrap;
    background-color: var(--primaryColor);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: 0.4s;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primaryColor);
}

/* primary button design */


/* Offcanas design */
.offcanvas {
    width: 320px !important;
    z-index: 9999;
}

.offcanvas .offcanvas-header {
    padding-top: 3px;
    padding-bottom: 6px;
    box-shadow: rgba(99, 99, 99, 0.116) 0px 2px 8px 0px;
    padding-left: 0;
}

.offcanvas-header a {
    padding: 10px 16px;
}

.offcanvas-header a img {
    width: 153px;
}

.offcanvas .offcanvas-body {
    padding: 0;
    padding-top: 22px;
    padding-bottom: 20px;
}

.offcanvas ul li {
    transform: translateY(18px);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.offcanvas ul li:nth-child(2) {
    transition-delay: 0.1s;
}

.offcanvas ul li:nth-child(3) {
    transition-delay: 0.2s;
}

.offcanvas ul li:nth-child(4) {
    transition-delay: 0.3s;
}

.offcanvas.show ul li {
   transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
.offcanvas-backdrop.show {
	opacity: 0.7;
}

.offcanvas ul li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 9px 18px;
    position: relative;
    font-weight: 500;
    border-left: 3px solid transparent;
    font-size: 22px;
    position: relative;
    transition: 0.3s;
    text-align: center;
    justify-content: center;
}

.offcanvas ul li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #e0e0e0;
    opacity: 0;
    visibility: hidden;
    transition: 0.8s;
}

.offcanvas ul li:nth-child(2) a:after {
    transition-delay: 0.2s;
}

.offcanvas ul li:nth-child(3) a:after {
    transition-delay: 0.3s;
}

.offcanvas ul li:nth-child(4) a:after {
    transition-delay: 0.4s;
}

.offcanvas.show ul li a:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.offcanvas ul li a:hover {
    border-left-color: #292929;
    padding-left: 21px;
}

.offcanvas ul li small {
    font-size: 12px;
}

.offcanvas-header .btn-close {
    margin-right: 0px;
    box-shadow: none;
}

.offcanvas-footer a {
    transform: translateY(25px);
    transition: 0.6s all cubic-bezier(0,-0.62,.2,1.58);
}

.offcanvas.show .offcanvas-footer a {
    transform: translateY(0px);
}

.humberger-menu {
    height: 19px;
    width: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.humberger-menu span {
    height: 3px;
    width: 100%;
    display: block;
    background-color: #000;
}

/* ============ Hero area deisgn ============ */
.section-spacer {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-spacer-b {
    padding-bottom: 40px;
}

.section-spacer-t {
    padding-top: 40px;
}

.row-gap-85 {
 --bs-gutter-x: 85px;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.button-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #343433;
    background: #FFFCF8;
    border-radius: 40px;
    /*! cursor: pointer; */
    overflow: hidden;
    z-index: 1;
    border: none;
    }

    .button-secondary[animated-border]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(-45deg,
        #F8991C40 40%,
        #F8991C 45%,
        #F8991C 50%,
        #F8991C 55%,
        #F8991C40 60%
    );
    background-size: 200% 200%;
    animation: border-animation 5s linear infinite;
    z-index: -1;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    }

    @keyframes border-animation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
    }

.hero-left-col h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -3.1px;
    margin-right: -13px;
}

.hero-left-col p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #7a7a7a;
}

.hero-duel-buttons ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.arrow-button {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #141F39;
    font-weight: 600;
}

.arrow-button svg {
    transition: 0.2s;
}

.arrow-button:hover svg {
    transform: translateX(4px);
}

.hero-icon-list ul {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
}

.hero-icon-list ul li {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #45556C;
    font-size: 16px;
}

.hero-right-col img {
    background-color: #fff;
  /*! box-shadow: rgba(0, 0, 0, 0.055) 0px 5px 25px; */
}

.mt-minus-40 {
    margin-top: -40px;
}

/* ============ brand logo slider deisgn ============ */
.brand-icons-slider h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding-bottom: 34px;
    color: var(--primaryColor);
}

.brand-icons-slider .animate-bar {
    padding-block: 18px;
    background-color: #FAFAFA;
    border-radius: 8px;
    display: flex;
    align-items: center;
   -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
    mask: linear-gradient(
        90deg,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
}

.animate-bar img {
    height: 38px;
    display: block;
    margin-inline: auto;
    filter: blur(0) !important;
}


/* ============ Fiverr desc deisgn ============ */
.fiverr-sell-inner a {
    padding: 26px 35px 26px 25px;
    background: #F9FEFE;
    border: 1px solid #DEDEDE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #141F39;
}

.fiverr-profile-box {
    position: relative;
}

.fiverr-profile-box img {
    width: 100%;
    border-radius: 50%;
}

.fiverr-profile-box:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-color: #00E95D;
    position: absolute;
    right: 17px;
    top: 12px;
    border-radius: 50%;
}

.fiverr-pro-desc {
    margin-left: -5%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fiverr-pro-desc p {
    max-width: 389px;
    font-size: 14px;
}

.fiverr-pro-desc h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -2%;
}

.fiverr-desc3rd p {
    font-size: 17px;
}

.fiverr-desc4rth p {
    font-size: 17px;
    padding-top: 12px;
}

.fiverr-desc4rth p span {
    font-weight: 700;
    font-size: 22px;
}

/* ============ Explore portfolio deisgn ============ */

.explore-port-inner {
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.04) 0%, rgba(248, 153, 28, 0.04) 100%);
}

.relative {
    position: relative;
}

.explore-port-left {
    padding: 35px;
    margin-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-heading {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
}

.explore-port-left p {
    font-weight: 400;
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #575960;
}

.ex-portfolio-buttons ul {
    display: flex;
    gap: 12px;
    padding-top: 15px;
}

.ex-portfolio-buttons ul img {
    box-shadow: 0px 4px 16px 0px #0000001A;
    height: 47px;
}

.ex-portfolio-buttons ul a:hover {
    transform: translateY(-2px);
}

.explore-port-right a:hover {
    transform: scale(0.9);
}

/* ============ reason-area deisgn ============ */
.section-main {
    overflow: hidden;
}

.reason-area {
    position: relative;
    z-index: 1;
}

.reason-area:after {
    content: "";
    display: block;
    width: 40%;
    height: 80%;
    background-color: #0088ff28;
    position: absolute;
    right: 9%;
    top: 3%;
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
}

.arrow-title{
    position: relative;
}

.arrow-title img {
    position: absolute;
    right: -40px;
    top: 0;
    max-width: 110px;
}

.animeted-arrow {
    display: inline-block;
    animation: arrowUpDown 1.4s ease-in-out infinite;
}

@keyframes arrowUpDown {
    0% {
        transform: translateY(0) rotateX(0deg) rotateZ(0deg);
    }
    20% {
        transform: translateY(-8px) rotateX(3deg) rotateZ(-2deg);
    }
    50% {
        transform: translateY(2px) rotateX(-2deg) rotateZ(1deg);
    }
    80% {
        transform: translateY(-4px) rotateX(2deg) rotateZ(-1deg);
    }
    100% {
        transform: translateY(0) rotateX(0deg) rotateZ(0deg);
    }
}



.section-head-wrap h2 {
    padding-bottom: 25px;
}

.reason-left ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding-top: 26px;
    border-top: 1px solid #D4D4D8;
    margin-top: 30px;
}

.reason-left ul li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 20px;
    color: #45556C;
}

.reason-left {
    padding-right: 80px;
}

.reason-right {
    max-width: 507px;
    background-color: #fff;
    padding: 38px 32px 58px 40px;
    margin-left: auto;
}

.reason-right .card-wrap {
    border: 1px solid #0000001F;
    box-shadow: 0px 4px 20px 0px #0000001F;
    padding: 19px 20px 19px 12px;
    border-radius: 16px;
    max-width: 310px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.reason-right .card-wrap span {
	font-size: 14px;
	font-weight: 500;
	color: #0F172B;
}

.reason-right .card-wrap .card-left {
    display: flex;
    gap: 6px;
    align-items: center;
}

.reason-right .card-wrap .card-left .icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3E8FF;
}

.reason-right .card-wrap p {
    font-size: 14px;
    font-weight: 500;
    color: #0F172B;
    display: block;
}

.reason-right .card-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.crd-progress-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.crd-progress-wrap .progress-wp {
    width: 32px;
    height: 6px;
    border-radius: 30px;
    background-color: #F1F1F1;
    position: relative;
}

.crd-progress-wrap .progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background-color: #FB2C36;
    border-radius: 25px;
}

.reason-right .card-wrap.card02 .card-left .icon {
    background-color: #DBEAFE;
} 

.reason-right .card-wrap.card02 {
    position: relative;
    z-index: 1;
    margin-top: -23px;
    margin-left: 52px;
}

.reason-right .card-wrap.card02 .progress-fill{
    width: 24%;
}

.reason-right h3 {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -2%;
    font-family: var(--inter);
    padding-bottom: 45px;
    padding-top: 41px;
}

.reason-right h3 span {
    font-weight: 600;
    color: #0088FF;
}

.card-wp-bottom .card-wrap {
    margin-left: auto;
}

.bg-blue {
    background-color: #0088FF !important;
}

.reason-right{
    position: relative;
}

.reason-blue-box {
    position: absolute;
    bottom: 96px;
    left: -34%;
    background-color: #0088FF;
    padding: 16px 20px;
    font-weight: 500;
    color: #fff;
    min-width: 370px;
}

.reason-area {
    padding-bottom: 85px;
}

.max-w-634 {
    max-width: 674px;
}

/* ============ amazon creative deisgn ============ */
.pb-50 {
    padding-bottom: 50px;
}

.ac-single-fea-card {
    box-shadow: 0px 4.32px 64.87px 0px #00000014;
    background-color: #fff;
    padding: 40px 30px 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    border: 1px solid transparent;
}

.amazon-creative .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.acsing-card-hov {
    position: relative;
    z-index: 1;
}

.acsing-card-hov:after {
    content: "";
    display: block;
    width: 94px;
    height: 94px;
    opacity: 1;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #0088FF;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.acsing-card-hov:hover:after {
    opacity: 1;
    visibility: visible;
    left: -18px;
    bottom: -18px;
}

.acsing-card-hov:hover {
    box-shadow: 0px 4px 16px 0px #0088FF40;
}

.card-hover,
.card-hover02 {
    position: relative;
    z-index: 1;
}

.ac-single-fea-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background-color: #F5E7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.ac-single-fea-card h3 {
    font-weight: 700;
    font-size: 21px;
    line-height: 125%;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 34px;
    padding-bottom: 20px;
    transition: 0.2s;
}

.ac-single-fea-card p {
    font-size: 18px;
    line-height: 130%;
    color: #848484;
    transition: 0.2s;
}

.ac-single-fea-card.card02 .icon {
    background-color: #ECF7FF;
} 

.ac-single-fea-card.card03 .icon {
    background-color: #FEF7E6;
} 

.ac-single-fea-card.card04 .icon {
    background-color: #DCFCE7;
} 

.ac-single-fea-card.card05 .icon {
    background-color: #FCE7F3;
} 

.ac-single-fea-card.card06 .icon {
    background-color: #E0E7FF;
} 

/* ============ amazon-listing deisgn ============ */
.amazon-listing-inner .row {
    --bs-gutter-x: 47px;
}

.amazon-listing-inner .ac-single-fea-card {
    padding: 74px 50px 35px 50px;
}

.amazon-listing-inner {
    max-width: 999px;   
    margin-left: auto;
    margin-right: auto;
}

.amazon-listing-inner h2 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 32px;
    text-align: left;
}

.amazon-listing-inner .ac-single-fea-card ul {
    display: flex;
    flex-direction: column;
}

.amazon-listing-inner .ac-single-fea-card ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid #D4D4D8;
    color: #141F39;
    font-size: 19px;
    font-family: var(--space-grotesk);
    transition: 0.3s;
}

.amazon-listing-inner .ac-single-fea-card ul li:hover {
    color: var(--primaryColor);
}

.amazon-listing-button a {
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #000000 !important;
    margin-inline: auto;
}

.amazon-listing-button a .link-text {
    color: #000000 !important;
}

.amazon-listing-button a img {
    position: relative;
    z-index: 5;
}

.amazon-listing-inner {
    position: relative;
    z-index: 1;
}

.amazon-listing-inner .am-list-shape {
    position: absolute;
    left: auto;
    right: -117px;
    top: 41%;
    transform: translateY(-50%);
    text-align: right;
    z-index: -1;
}



/* ============ amazon-designer area deisgn ============ */
.am-designer-main {
    padding-top: 15px;
    border: 1px solid #CEE8FF;
    margin-top: 25px;
    background: linear-gradient(360deg, rgba(0, 136, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding-bottom: 25px;
}

.max-w-780 {
	max-width: 780px;
}

.amazon-designer .section-head-wrap p {
    max-width: 606px;
    margin-inline: auto;
}

.amazon-designer .amd-single-card p {
    color: #848484;
    line-height: 168%;
}

.amd-single-card {
    box-shadow: 0px 4.32px 64.87px 0px #00000014;
    background-color: #fff;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.amd-single-card-inner {
    background-color: #fff;
    padding: 55px 30px 45px 30px;
     position: relative;
    z-index: 1;
    height: 100%;
}

.amd-single-card:after {
    content: "";
    display: block;
    width: 94px;
    height: 94px;
    opacity: 1;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #0088FF;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.ad-card-wrap .row {
    --bs-gutter-x: 35px;
}

.amd-single-card:hover:after {
    opacity: 1;
    visibility: visible;
    left: -18px;
    bottom: -18px;
}

.amd-single-card:hover {
    box-shadow: 0px 4px 16px 0px #0088FF40;
}

.amd-single-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background-color: #ECF7FF;;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.amd-single-card h3 {
    font-weight: 700;
    font-size: 21px;
    line-height: 125%;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 34px;
    padding-bottom: 20px;
}

.amd-single-card p {
    font-size: 18px;
    color: #848484;
}

.ad-hightlight-bt ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding-top: 35px;
}

.ad-hightlight-bt ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 29px;
    background-color: #0088FF;
    border: 0.91px solid #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.ad-hightlight-bt ul li:after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background-color: var(--primaryColor);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.ad-hightlight-bt ul li:hover:after {
    width: 100%;
}


/* ============ portfolio area deisgn ============ */
#vertical-tab {
  padding-top: 20px;
}

.vertical-tab .each-tab {
  padding: 20px 22px;
  background-color: #fff;
  border: 1px solid #0000001F;
  position: relative;
  cursor: pointer;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vertical-tab .each-tab h4 {
    font-weight: 700;
    font-size: 21px;
    line-height: 150%;
    letter-spacing: -2%;
}

.vertical-tab .each-tab p {
    font-size: 14px;
    line-height: 160%;
    color: #4F4F4F;
}

.tab-left-col {
    margin-right: -25px;
}

.tab-contents-wrap{
    padding-left: 110px;
}


#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active {
  background-color: #FFFAF4;
  border: 2px solid var(--primaryColor);
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
  display: none;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
  display: block;
}

#vertical-tab .mobile-vertical-tab {
  display: none;
  position: relative;
  box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
}

.slider-container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 402px;
  overflow: hidden;
}

.slider-container img {
    min-height: 420px;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.before-text,
.after-text {
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  z-index: 4;
  border: 1px solid #FFFFFF1F;
  backdrop-filter: blur(10.899999618530273px);
  background: #4F4F4F3B;
  padding: 5px;
  border-radius: 50px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.before-text span,
.after-text span {
    font-size: 14px;
    font-weight: 600;
    color: #141F39;
    padding: 9px 20px;
    background-color: #fff;
    border-radius: 50px;
    border-top: 1px solid #0000001F;
}

.before-text {
  left: 32px; 
  top: 43px;
  transform: translateY(-50%);
  z-index: 5;
}

.after-text {
  right: 32px; 
  top: 43px;
  transform: translateY(-50%);
  z-index: 3;
}

.after-image .after-text {
  visibility: visible;
  z-index: 3;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border: 1px solid #F8991C;

}
.pulse-container {
  position: relative;
  display: inline-block;
}

.pulse-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff; 
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.slider-line svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}

.slider-container,
.before-image img,
.after-image img {
  user-select: none; 
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none;
}

.slider-handle,
.slider-line {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.tab-bottom-conts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background-color: #FFFAF4;
    border-left: 3px solid var(--primaryColor);
    margin-top: 20px;
    text-align: center;
}

/* ============ testimonial-area deisgn ============ */
.testimonial-left h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--inter);
    color: var(--primaryColor);
}

.testimonial-left h2 {
    padding-top: 14px;
}

.testimonial-right {
    padding-left: 105px;
    padding-right: 60px;
}

.testimonial-right .swiper-slide {
    background-color: #fff;
    border: 2px solid var(--primaryColor);
    padding: 28px 36px;
    border-radius: 12px;
    position: relative;
    opacity: 1 !important;
}

.testimonial-right .swiper-slide.swiper-slide-active {
    border-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 0;
}

.testimonial-right .testimonial-slider {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
}

.testimonial-right .testimonial-slider p {
    font-size: 16px;
    line-height: 170%;
    font-style: italic;
}

.client-info-box {
    display: flex;
    /*! align-items: center; */
    gap: 12px;
    /*! justify-content: center; */
}

.client-info-box .client-profile img {
    max-width: 55px;
    border-radius: 50%;
}

.client-info-box h4 {
    font-size: 17px;
    padding-bottom: 2px;
}

.client-info-box span {
    font-size: 14px;
}

.client-info-box span:last-child {
    font-size: 12px;
}

.testimonial-right .swiper {
  max-width: 573px;
  height: 230px;
}

.testimonial-right .swiper-button-prev {
  left: auto;
  right: -60px;
  color: black;
  transform: scale(0.7);
  top: 65%;
}

.testimonial-right .swiper-button-next {
    right: -60px;
    color: black;
    top: 35%;
    transform: scale(0.7) rotate(180deg);
}

.testimonial-right .swiper-button-next:after,
.testimonial-right .swiper-button-prev:after {
    display: none;
}

/* Infinite slider deisgn  */
.brand-icons-slider .animate-bar02 {
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 6%,
        white 94%,
        transparent
    );
    mask: linear-gradient(
        90deg,
        transparent,
        white 6%,
        white 94%,
        transparent
    );
}

.animate-bar02 .slick-slide {
    margin: 0 10px;   /* 12.5px left + 12.5px right = 25px total */
}

.animate-bar02 .slick-list {
    margin: 0 -10px;  /* Fix container alignment */
}

.animate-bar02 .slide img {
    height: 446px;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    border: 1px solid #eee;
}

.animate-bar02 .slide a {
    width: 100%;
    height: 100%;
}


.infinine-slider-card {
    box-shadow: rgba(99, 99, 99, 0.116) 0px 2px 8px 0px;
}

.infinine-slider-card .client-info-box {
    justify-content: flex-start;
}


.infinite-testi-wp .infinite-sld-content {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.infinite-testi-wp .slick-track {
    padding-bottom: 20px;
}

.infinite-testi-wp .infinite-sld-content p {
    font-style: italic;
    font-size: 15px;
}

.infinite-testi-wp .video-box a img {
    max-width: 50px;
    transition: 0.3s;
}

.infinine-slider-card:hover .video-box a img {
    transform: scale(1.1);
}


/* ============ pricing-area deisgn ============ */
.pricing-area {
    background-color: #FAFAFA;
    margin-top: 54px;
}

.pricing-cond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 34px;
}

.pricing-cond p {
    color: #111827;
}

.pricing-cond span {
    color: #6B7280;
}

.pricing-card-wrap {
    padding-top: 50px;
    padding-bottom: 30px;
}

/* Toggle Wrapper */
.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #D1D5DB;
    border-radius: 14px;
    width: 48px;    
    height: 26px;   
    position: relative;
    vertical-align: middle;
    transition: 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 20px;  
    height: 20px;   
    position: absolute;
    top: 3px;        
    left: 3px;       
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked + .toggle-switch {
    background: var(--primaryColor);
}

.toggle-checkbox:checked + .toggle-switch:before {
    left: 25px;     
}
.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 1px;       
}

.pricing-card-wp {
    box-shadow: 0px 4px 16px 0px #0000001A;
    /*! border-radius: 30px; */
}

.pricing-card-wp .card-top {
    padding: 18px 15px;
    box-shadow: 0px 4px 16px 0px #00000029;
    /*! border-radius: 30px; */
}

.pricing-card-wp .card-top a {
    /*! border-radius: 10px; */
    margin-top: 15px;
}

.pricing-card-wp .card-top a .link-text {
    font-weight: 500;
}

.pricing-card-wp .card-top-bg {
    background: #F8991C1A;
    padding: 20px 21px;
    /*! border-radius: 16px; */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card-wp .card-top-bg .card-title {
    /*! border-radius: 55px; */
    padding: 10px 25px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    color: #181818;
    max-width: fit-content;
} 

.pricing-card-wp .card-top-bg h4 {
    font-size: 15px;
}

.pricing-card-wp .pricing span {
    font-weight: 600;
    color: #181818;
    font-size: 40.8px;
}

.pricing-card-wp .pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 25px 33px;
    min-height: 315px;
}

.pricing-card-wp .pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
}

.pricing-card-wp .pricing-features ul li svg,
.pricing-card-wp .pricing-features ul li img {
    flex: 0 0 20px;
}

.pricing-card-wp {
    transition: 0.3s;
}

.pricing-card-wp:hover {
    transform: translateY(-5px);
}

.pricing-card02 .card-top-bg {
    background-color: #E5F3FF;
}

.pricing-card02 .btn-primary {
    background-color: #0088FF;
    border: 1px solid #0088FF;
}

.pricing-card02 .btn-primary:hover {
    color: #0088FF;
    background-color: transparent;
}

.pricing-card03 .card-top-bg {
    background-color: #01c21b17;
}

.pricing-card03 .btn-primary {
    background-color: #01c21aea;
    border: 1px solid #01c21aea;
}

.pricing-card03 .btn-primary:hover {
    color: #01c21aea;
    background-color: transparent;
}

/* ============ faq area deisgn ============ */
.faq-area {
    padding-top: 50px;
}

.faq-area .accordion {
    max-width: 1050px;
    margin-inline: auto;
    padding-top: 42px;
}

.faq-area .accordion li {
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.accordion .link {
    cursor: pointer;
    position: relative;
    padding: 25px 32px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    border-radius: 12px;
}

.accordion .link:hover,
.faq-area .accordion li.open .link {
    background: #F8991C1A;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion .link {
    font-size: 20px;
    color: #141F39;
    font-weight: 500;
    font-family: var(--space-grotesk);
}

.accordion li i {
    position: absolute;
    top: 30px;
    font-size: 18px;
    color: #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
    right: 25px;
    left: auto;
    font-size: 16px;
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion .submenu {
    display: none;
    padding: 25px 32px;
    padding-top: 20px;
}

.accordion .submenu p {
    color: #747C8F;
    line-height: 1.6;
    font-size: 18px;
}


/* ============ ready area deisgn ============ */

.ready-innter {
    background-image: url(images/ready-bg.png);
    padding: 100px 149px 65px 149px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.ready-innter h2 {
    font-weight: 700;
    font-size: 49px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
}

.ready-innter p {
    max-width: 776px;
    margin-inline: auto;
}

.ready-innter .hero-duel-buttons {
    justify-content: center;
    padding-top: 15px;
}



/* ============ footer brand area deisgn ============ */

.footer-brand-inner ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 718px;
    gap: 30px;
    margin-inline: auto;
}

.footer-brand-inner ul li {
    text-align: center;
    background: linear-gradient(90deg, rgba(66, 167, 254, 0.03) 0%, rgba(248, 153, 28, 0.03) 100%);
    box-shadow: 0px 4px 16px 0px #0000000F;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 135px;
    transition: 0.3s;
}

.footer-brand-inner ul li a img {
    max-width: 118px;
}

.footer-brand-inner ul li:hover {
    box-shadow: 0px 4px 16px 0px #0000001a;
    transform: translateY(-4px);
}

/* ============ footer area deisgn ============ */
.footer-area {
    /* background: linear-gradient(
        0deg,
        rgba(0, 136, 255, 0) 0%,
        rgba(0, 136, 255, 0.116) 50%,
        rgba(0, 136, 255, 0) 100%
    ); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 15.93%, rgba(0, 136, 255, 0.1) 91.07%);
    border-top: 1px solid #d2e6f863;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 26px;
}

.footer-logo {
    padding-bottom: 15px;
    margin-top: -5px;
}
.footer-inner h3 {
    font-size: 20px;
    padding-bottom: 14px;
    margin-bottom: 27px;
}

.footer-col-2nd ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-2nd ul li a:hover {
    color: var(--primaryColor);
}

.footer-col-3rd ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-3rd ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    /*! font-weight: 600; */
}

.footer-col-4rth ul {
    display: flex;
    gap: 23px;
    align-items: flex-start;
}

.footer-middle-col-1st {
    display: flex;
    align-items: center;
}

.footer-middle-col-1st .single {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-right: 40px;
    position: relative;
}

.footer-middle-col-1st .single:after {
    content: "";
    display: block;
    width: 2px;
    height: 80%;
    right: 17px;
    top: 55%;
    transform: translateY(-50%);
    background-color: #0f172b23;
    border-radius: 16px;
    position: absolute;
}

.footer-middle-col-1st .single.last:after {
    display: none;
}

.footer-middle-col-1st .single #counter-box span {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -2%;
    color: #0F172B;
}

.footer-middle-col-1st .single span {
    font-size: 14px;
}

.footer-inner .row {
    --bs-gutter-y: 25px;
}

.footer-middle-col-2nd ul {
    display: flex;
    align-items: center;
    gap:8px;
}

.footer-middle-col-2nd ul li img {
    height: 32px;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid #cee4f8;
    margin-top: 38px;
}

.footer-copy p {
    font-size: 15px;
}

.footer-terms ul {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.footer-terms ul li a:hover {
    color: var(--primaryColor);
}

html:not(.no-js) [data-aos="fade-up"] {
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

html:not(.no-js) [data-aos="fade-down"] {
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

html:not(.no-js) [data-aos="fade-left"] {
	-webkit-transform: translate3d(20px,0,0);
	transform: translate3d(20px,0,0);
}

html:not(.no-js) [data-aos="fade-right"] {
	-webkit-transform: translate3d(-20px,0,0);
	transform: translate3d(-20px,0,0);
}

.infinite-testi-wp .testimonial-left{
    padding-right: 50px;
}

.pricing-dfts .pricing-cond p {
    color: #6B7280;
} 

.pricing-dfts .pricing-cond span {
    color: #111827;
}

.without-off {
    display: block;
}

.with-off {
    display: none;
}

.pricing-dfts .without-off  {
    display: none;
}

.pricing-dfts .with-off  {
    display: block;
}

.tab-bottom-conts{
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.062) 0px 1px 4px;
}

.tab-bottom-conts .right-icon{
    position: absolute;
    right: 14%;
    top: 14px;
}

.tab-bottom-conts svg {
    width: 40px;
}

.tab-bottom-conts .left-icon {
    position: absolute;
    left: 14%;
    top: 14px;
    transform: rotateY(180deg);
}

.tab-bottom-conts p {
    font-size: 18px;
    transition: 0.2s;
}

.testimonial-right .swiper-slide {
    position: relative;
    z-index: 1;
}

.testimonial-right .swiper-slide .quate-icon svg {
    max-width: 70px;
    position: absolute;
    left: 30px;
    top: -3px;
    z-index: -1;
    opacity: 0.5;
}

.slider-ratting {
    display: flex;
    align-items: center;
    position: absolute;
    right: 30px;
    bottom: 52px;
    gap: 3px;
    color: var(--primaryColor);
}

.tab-bottom-conts.card-hover:before {
    display: none;
}

.tab-bottom-conts.card-hover:after {
    background-color: #fff7eb;
}

.tab-bottom-conts.card-hover:hover:after {
    width: 100%;
}

.animeted-shape {
    display: inline-block;
    animation: shapeUpDown 1.4s ease-in-out infinite;
}

@keyframes shapeUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px); /* move up */
    }
    100% {
        transform: translateY(0); /* back to original */
 }

}

.footer-col-4rth img {
    max-width: 110px;
}

.footer-middle-col-2nd h3 {
    font-size: 16px;
    padding-top: 24px;
}

.footer-inner ul li a {
    position: relative;
}

.footer-inner ul li a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--primaryColor);
    left: 0;
    bottom: 2px;
    position: absolute;
    transition: 0.3s;
}

.footer-inner ul li a:hover:after {
    width: 100%;
}

.footer-middle-col-1st {
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-col-3rd span {
    font-size: 14px;
}


 /*line-progress css start hare*/

.line-progress .skill-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.line-progress .skill-title p,
.line-progress .skill-title span {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #37517e;
	text-transform: uppercase;
	font-style: normal;
	font-size: 14px;
}

.skillbar {
	width: 32px;
	height: 6px;
	border-radius: 30px;
	background-color: #F1F1F1;
	position: relative;
	-webkit-transition:0.4s linear;
	-moz-transition:0.4s linear;
	-ms-transition:0.4s linear;
	-o-transition:0.4s linear;
	transition:0.4s linear;
	-webkit-transition-property:width, background-color;
	-moz-transition-property:width, background-color;
	-ms-transition-property:width, background-color;
	-o-transition-property:width, background-color;
	transition-property:width, background-color;
    transform: translateY(-9px);
}

.skillbar-bar {
    height: 100%;
	width: 0px;
    background-color: #FB2C36;
    border-radius: 25px;
}

.reason-right .line-progress .skill-title {
    opacity: 0;
}

.footer-title-aft {
    position: relative;
}

.footer-title-aft:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primaryColor);
    left: 0;
    bottom: 0px;
    position: absolute;
    border-radius: 100px;
}

.hero-card01 {
    box-shadow: 0px 4.32px 64.87px 0px #00000014;
    border: 0.86px solid;
    border-image-source: linear-gradient(129.66deg, rgba(255, 255, 255, 0.15) 1.55%, rgba(255, 255, 255, 0) 97.13%);
    padding: 20px 29px 22px 29px;
}

.hero-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-card-head .icon {
    width: 46px;
    height: 56px;
    flex: 0 0 46px;
    background-color: var(--primaryColor);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-head span.desc {
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    display: block;
}

.hero-card01 img {
    width: 100%;
}

.hero-card-head #counter-box {
    font-size: 18px;
    font-weight: 700;
    color: #141F39;
    padding-top: 3px;
}

.hero-card02 {
    box-shadow: 0px 0px 8.24px 0px #7373731A;
}

.header-card-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

.header-card-foot .icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 312.13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FB2C36;
    outline: 5px solid #FB2C3640;
}

.header-card-foot span {
   color: #FB2C36;
   font-size: 14px;
   font-weight: 500;
   display: block;
   line-height: 150%;
}

.hero-card02 .head-card-img {
    position: relative;
}

.hero-card02 .head-card-img .badge {
    border-radius: 312.13px;
    padding: 7px 14px;
    font-size: 13px;
    background-color: #F1322C;
    font-weight: 600;
    outline: 4px solid #f0f0f0c0;
    position: absolute;
    right: 22px;
    top: 18px;
}

.herocard03 {
    margin-top: -35px;
    padding: 18px;
}

.herocard03 .head-card-img .badge {
    background-color: #00C950;
}

.herocard03 .icon {
    background-color: #00C950;
    outline-color: #BFF1D3;
}

.herocard03 span {
    color: #008236;
}

.chart-container {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 120px; 
  margin-top: 20px;
  justify-content: center;
}

.bar {
  width: 22px;
  background: #F8991C;
  border-radius: 8px 8px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0;
  animation: grow 1s ease-out forwards;
}

@keyframes grow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.herocard04{
    margin-top: 30px;
}

.main-menu {
    margin-right: 30px;
}

.btn-primary {
    position: relative;
    overflow: visible;
}

.btn-primary .hover-glow {
    position: absolute;
    left: 50%;
    top: -58px;
    padding: 10px 8px;
    box-shadow: rgba(99, 99, 99, 0.349) 0px 2px 8px 0px;
    width: 202px;
    font-size: 10px;
    color: #fff;
    text-wrap: wrap;
    background-color: var(--primaryColor);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translateX(-50%);
    z-index: 1;
    font-weight: 500;
}

.btn-primary .hover-glow:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--primaryColor);
    z-index: -1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -7px;
}

.btn-primary:hover .hover-glow {
    opacity: 1;
    visibility: visible;
    top: -63px;
}

.btn-primary.headerbutton .hover-glow {
    top: auto;
    bottom: -58px;
}

.btn-primary.headerbutton:hover .hover-glow {
    bottom: -63px;
}

.btn-primary.headerbutton .hover-glow:after {
    bottom: 0;
    top: -7px;
}

.brand-icons-slider h3 {
    padding-bottom: 14px;
}

.brand-icons-slider .heading {
    padding-bottom: 35px;
}

.fiverr-prod-title {
    position: relative;
}

.fiverr-prod-title h3 {
    display: inline-block;
}

.fiverr-prod-title span {
    background-color: #fff;
    color: #0F172B;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 10px;
    position: absolute;
    right: 61px;
    top: -15px;
    display: block;
    max-width: fit-content;
    font-weight: 500;
    border: 1px solid #00B12E;
}

.footer-scdt-badge {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 8px;
    margin-top: 25px;
    gap: 8px;
}
.footer-scdt-badge img {
    max-width: 30px;
}

.footer-scdt-badge span {
    font-size: 12px;
}

.fiverr-desc3rd .footer-scdt-badge {
    margin-top: 10px;
    display: flex !important;
}

.fiverr-desc3rd .footer-scdt-badge {
    max-width: fit-content;
}

.tab-slider-conts {
    overflow: hidden;
    height: fit-content;
}

.animate-bar02{
    height: 446px;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 0px;
}
.fancybox-show-thumbs .fancybox-thumbs {
	display: none;
}

/*
====================================
consectetur section start here
====================================
*/
.rt-consect-section {
    padding: 75px 0;
    background: #f6f8fa96;
}

.rt-consect-area {
    padding: 55px 40px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.062);
}

.rt-consect-inner1 h4 {
    font-size: 34px;
    font-weight: 600;
    color: #090b0e;
    margin-bottom: -4px;
}

.rt-consect-inner1 p {
    padding-top: 16px;
    color: #3d4c5e;
}

.rt-consect-inner1 h6 {
    padding-top: 40px;
    font-size: 24px;
    font-weight: 600;
    color: #090b0e;
}

.rt-consect-inner2 h4 {
    padding-top: 40px;
    padding-bottom: 18px;
    font-size: 24px;
    font-weight: 600;
    color: #090b0e;
}

.rt-consect-inner2-itms {
    padding-bottom: 34px;
}

.rt-consect-inner2-itms img {
    max-width: 12px;
}

.rt-consect-inner2-itms span {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 20px;
    border-radius: 50%;
    background: var(--primaryColor);
    display: flex;
    justify-content: center;
}

.rt-consect-inner2-itms h6 {
    padding-bottom: 3px;
    font-size: 16px;
    font-weight: 700;
    color: #090b0e;
}

.rt-consect-inner2 p {
    font-size: 16px;
    color: #3d4c5e;
}

.rt-consect-inner3 h4 {
    padding-top: 42px;
    font-size: 24px;
    font-weight: 600;
    color: #090b0e;
}

.rt-consect-inner3 p {
    padding-top: 25px;
    font-size: 16px;
    color: #3d4c5e;
}

.rt-consect-inner3 a {
    margin-top: 25px;
    font-size: 16px;
    text-decoration: underline;
    color: var(--primaryColor);
}

.listing-content-sh {
    padding-top: 35px;
}

.listing-content-sh .rt-consect-inner2-itms {
    padding-bottom: 18px;
}

.listing-content-sh h6 {
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #090b0e;
}

.listing-content-sh .listing-conts {
    padding-top: 25px;
}

.rt-consect-area {
    max-width: 1080px;
    margin-inline: auto;
}