* {
    margin: 0;
    padding: 0;
}

.contain-width {
    max-width: 85%;
    margin: 0 auto;

}

a {
    text-decoration: none;
}

body {
    font-family: "Inter_Tight" !important;
    background: #f5f5f5;
}

h2,
h3.title-text {
    font-size: 40px !important;
    line-height: 1.2;
}

.primary-color {
    background: linear-gradient(90.31deg, #ff4c00 5.94%, #ffa985 116.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    color: #fff0;
}

p,
ul li {
    font-size: 18px;
}

.fade-in-letter {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    animation: fadeInUp 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(91.14deg, #f15a24 .99%, #ff8357 99.37%);
    border: 3px solid #fff;
    color: #fff;
    gap: 8px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px 0 #f4622e82;
}

.button:hover::before {
    animation: shine 1.5s ease-out;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 95%;
    background-image: linear-gradient(120deg, #fff0 30%, rgb(255 255 255 / .8), #fff0 70%);
    top: 2px;
    left: -100px;
    opacity: .6;
}

.button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%
    }

    to {
        left: 100%
    }
}

.button .svg {
    padding-top: 5px;
    height: 100%;
    width: fit-content;
}

.button .svg svg {
    width: 50px;
    height: 30px;
}

.button:hover .svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, .75, 1);
    }

    50% {
        transform: scale3d(.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, .95, 1);
    }

    75% {
        transform: scale3d(.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.card-bg {
    border: 1px solid #fff;
    border-radius: 20px;
    background: linear-gradient(0deg, rgb(255 255 255 / .5), rgb(255 255 255 / .5)), linear-gradient(180deg, rgb(255 181 154 / .5) -35.33%, rgb(255 232 224 / .5) 46.23%, #fff0 100%);
    box-shadow: rgb(0 0 0 / .1) 0 10px 15px -3px, rgb(0 0 0 / .05) 0 4px 6px -2px;
}

.card-img:hover img {
    transform: scale(1.3);
    transition: 0.5s;
}

.card:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.services .services-option:hover p {
    color: #fff;
}

.services .services-option:hover a {
    background: #f2e7e5;
    border: 1px solid #f2e7e5;
    color: #000;
}

/* section.services {
    background: url(../images/landing/services-bg.webp) no-repeat;
    background-size: 100% 100%;
    padding-bottom: 100px;
} */
section.business-goal {
    background: url(../images/landing/business-goal.png) no-repeat;
    background-size: cover;
}

button.flex.\!text-black.items-center.justify-between.w-full.p-5.font-medium.rtl\:text-right.\!bg-\[\#fff\].gap-3.text-gray-500.dark\:text-gray-400 {
    border-radius: 30px;
}

button.flex.\!text-black.items-center.justify-between.w-full.p-5.font-medium.rtl\:text-right.\!bg-\[\#fff\].gap-3.bg-gray-100.dark\:bg-gray-800.text-gray-900.dark\:text-white {
    border-radius: 30px 30px 0 0;
}

#accordion-collapse svg {
    width: 48px;
}

.insights-card img {
    transition: 0.5s;
}

.insights-card:hover img {
    transform: scale(1.1);
}

.free-btn {
    cursor: pointer;
    position: relative;
    color: #000;
    border: 2px solid #000;
    background-color: #fff0;
    transition: all 0.3s cubic-bezier(.23, 1, .32, 1);
    overflow: hidden;
}

.free-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #f26124;
    transition: all 0.6s cubic-bezier(.23, 1, .32, 1);
}

.free-btn:hover::before {
    scale: 3;
}

.free-btn:hover {
    scale: 1.1;
}

.free-btn:active {
    scale: 1;
}

::-webkit-scrollbar {
    width: 8px;
    height: 0;
}

::-webkit-scrollbar-thumb {
    background-color: #f26124;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

.work-design .kick-card p.kick-para {
    border-top: 1px solid #fff0;
    border-image: linear-gradient(90deg, #fff0 0%, #f15a24 50.48%, #fff0 100%);
    border-image-slice: 1;
}

.cta-box .globe-img {
    animation: spin 10s linear infinite;
}

.globe-img {
    text-align: -webkit-center;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.left-border {
    position: relative;
    padding-right: 10px;
}

.left-border::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #fff0 0%, #e5e5e5 50%, #fff0 100%);
}



.services-option:hover p {
    color: #fff;
}

.services-option:hover img {
    filter: invert(1);
}

.block-bounce {
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

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

.coin-bounce {
    animation: coinFloat 4s ease-in-out infinite;
}

@keyframes coinFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.heart {
    fill: #e0525e;
    opacity: .2;
    border: 2px solid #fff;
    animation: pulseFill 2s infinite ease-in-out;
}

.heart-border {
    opacity: .2;
    border: 2px solid #fff;
    animation: pulseFill 2s infinite ease-in-out;
}

.heart:nth-of-type(1) {
    animation-delay: 0s;
}

.heart:nth-of-type(2) {
    animation-delay: 0.4s;
}

.heart:nth-of-type(3) {
    animation-delay: 0.8s;
}

.heart:nth-of-type(4) {
    animation-delay: 1.2s;
}

@keyframes pulseFill {

    0%,
    100% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }
}

.bounce {
    animation: walkBounce 1s infinite ease-in-out;
}

@keyframes walkBounce {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.1);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1);
    }
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.animate-tilt {
    animation: tilt 4s ease-in-out infinite;
}

@keyframes tilt {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
    }

    75% {
        transform: rotate(-2deg);
    }
}

.p_img {
    animation: zoom-in-out 5s ease-in-out infinite;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(.5);
    }

    50% {
        transform: scale(1);
    }

    80% {
        transform: scale(.5);
    }

    100% {
        transform: scale(1);
    }
}

section.services .services-option:hover img {
    filter: invert(0);
}

@keyframes slideUpGlow {
    0% {
        transform: translateY(60px) scale(.95);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.animate-slide-up-glow {
    animation: slideUpGlow 1s ease-out forwards;
}

@keyframes flipIn {
    0% {
        transform: translateY(-60px) scale(.95);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.animate-flip-in-glow {
    animation: flipIn 1s ease-out forwards;
}

.animate-flip-glow {
    animation: flipGlow 5s ease-in-out infinite;
}

@keyframes flipGlow {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes swap {
    0% {
        transform: translateX(0);
        z-index: 1;
    }

    25% {
        transform: translateX(50px);
        z-index: 1;
    }

    50% {
        transform: translateX(100px);
        z-index: 0;
    }

    75% {
        transform: translateX(50px);
        z-index: 0;
    }

    100% {
        transform: translateX(0);
        z-index: 1;
    }
}

@keyframes swap-reverse {
    0% {
        transform: translateX(100px);
        z-index: 0;
    }

    25% {
        transform: translateX(50px);
        z-index: 0;
    }

    50% {
        transform: translateX(0);
        z-index: 1;
    }

    75% {
        transform: translateX(50px);
        z-index: 1;
    }

    100% {
        transform: translateX(100px);
        z-index: 0;
    }
}

.swap-coin-1 {
    animation: swap 4s ease-in-out infinite;
    transition: z-index 0.2s;
}

.swap-coin-2 {
    animation: swap-reverse 4s ease-in-out infinite;
    transition: z-index 0.2s;
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-6px);
    }
}

.wobble {
    animation: wobble 3s ease-in-out infinite;
}

.glow-bulb {
    animation: bulbGlow 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgb(254 151 106 / .5));
}

@keyframes bulbGlow {
    0% {
        filter: drop-shadow(0 0 5px rgb(254 151 106 / .4));
    }

    50% {
        filter: drop-shadow(0 0 25px rgb(254 151 106 / .9));
    }

    100% {
        filter: drop-shadow(0 0 5px rgb(254 151 106 / .4));
    }
}

@keyframes rightToLeftFill {

    0%,
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }

    50% {
        transform: scaleX(2);
        transform-origin: right;
    }
}

@keyframes leftToRightFill {

    0%,
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }

    50% {
        transform: scaleX(1.2);
        transform-origin: right;
    }
}

.animate-bar {
    animation: rightToLeftFill 3s infinite ease-in-out;
    transform-box: fill-box;
    transform-origin: right;
}

.animate-bar-1 {
    animation: leftToRightFill 2s infinite ease-in-out;
    transform-box: fill-box;
    transform-origin: right;
}

.wheel-move {
    animation: moveRight 3s ease-in-out infinite;
}

@keyframes moveRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-45px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes tiltY {

    0%,
    100% {
        transform: perspective(800px) rotateY(0deg);
    }

    50% {
        transform: perspective(800px) rotateY(5deg);
    }
}

.tilt-laptop {
    display: inline-block;
    animation: tiltY 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.floating-cup {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

.left-border-line {
    position: relative;
}

.left-border-line:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 500px;
    background: #6663;
    top: 0;
    right: -45px;
}

.mobile-app img {
    width: 25px;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.unstick {
    position: static !important;
}

.image-side-icon:after {
    position: absolute;
    content: '';
    background: url(../images//happy-left.svg) no-repeat;
    width: 41px;
    height: 25px;
    top: 13px;

    left: -31px;
}

.image-side-icon:before {
    position: absolute;
    content: '';
    background: url(../images//happy-right.svg) no-repeat;
    width: 41px;
    height: 25px;
    right: -31px;
    top: 13px;
}

.growth-card {
    position: relative;
    min-height: 260px;
}

.growth-card:before {
    position: absolute;
    content: '';
    background: #F2C061;
    width: 156px;
    height: 103px;
    top: 89px;
    left: -12px;
    filter: blur(86px);

    /* z-index: -1; */
    border-radius: 100px;
}

.growth-card:after {
    position: absolute;
    content: '';
    background: #F1A7D0;
    width: 51px;
    height: 160px;
    top: -10px;
    right: 6px;
    filter: blur(48px);
    /* z-index: -1; */
    border-radius: 100px;
}

.swiper-card-part .swiper-button-prev:after,
.swiper-card-part .swiper-button-next:after {
    display: none;
}

.swiper-button-clip-path {
    clip-path: circle(49% at 49% 50%);
}

/* .aria-selected\:text-white[aria-selected="true"]{
    color: #fff !important;
} */
#myTab button[role="tab"][aria-selected="true"]:hover {
    background-color: #FF6A00;
    color: white !important;
}

/* swap image forex page */
.swap-image-container {
    transition: transform 0.5s ease, z-index 0.3s ease;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.b-shadow {
    box-shadow: 0px 4px 56px 0px #F26124;

}
.social-bar {
      transform: translateX(-200%);
      transition: transform 0.3s ease-in-out;
}
.social-bar.show {
    transform: translateX(0);
}
 
.mobile-social-bar {
      transform: translateY(200%);
      transition: transform 0.3s ease-in-out;
}
.mobile-social-bar.show {
    transform: translateY(0);
}
 
/* For modern browsers */
.thin-scroll::-webkit-scrollbar {
  width: 3px;
}
.thin-scroll::-webkit-scrollbar-thumb {
  background-color: #F26124;  border-radius: 10px;
}

/* For Firefox */
.thin-scroll {
      scrollbar-width: thin;
      scrollbar-color: #F26124 transparent;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 
.animate-popup::-webkit-scrollbar{
    width: 0px !important;
}

/* media */
@media (max-width:767.98px) {
    .left-border::after {
        top: 64px;
        right: 109px;
        transform: rotate(89deg);
    }
}
@media (min-width: 1024px) and (max-width: 1278.98px) {
    .left-border-line:after {
        right: -24px !important;

    }

    .submenu {
        height: 400px;
        overflow-y: auto;
    }
}

@media(max-width:1024.98px) {
    .contain-width {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 1199.98px) {

    section p,
    section ul li {
        font-size: 16px;
    }

    section h2,
    section h3.title-text {
        font-size: 36px !important;
    }
}

@media(min-width:320px) and (max-width: 399.98px) {
    .scroll-card {
        width: 260px !important;
    }
}

@media(min-width:400px) and (max-width: 450.98px) {
    .scroll-card {
        width: 340px !important;
    }
}

@media(min-width:320px) and (max-width: 399.98px) {
    .scroll-card {
        width: 260px !important;
        height: 389px !important;
    }

}

@media(min-width:400px) and (max-width: 450.98px) {
    .scroll-card {
        width: 340px !important;
    }
}

@media(max-width: 1440.98px) {
    section p {
        font-size: 16px;
    }
}

