:root{
    --primary: #fe5f00;
    --text_light: #F8F2E9;
    --text-white: #ffffff;
}
body {
    background-color: #0D0D0D;
    font-size: 20px;
    color: rgb(255 255 255 / 80%);
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}
.swiper.mySwiper {
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
}
h1, .h1{
    font-size: 80px;
}

h2, .h2{
    font-size: 60px;
    color: var(--text-white);
}

h3, .h3{
    font-size: 50px;
}

h4, .h4{
    font-size: 40px;
}

h5, .h5{
    font-size: 30px;
}

h6, .h6{
    font-size: 20px;
}

h1 span{
    color: var(--primary);
}

h2 span{
    color: var(--primary);
}

.text_primary{
    color: var(--primary);
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-26 {
    font-size: 26px;
}
.fs-30 {
    font-size: 30px;
}
.font-medium {
    font-weight: 500;
}
ul, li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
a {
    text-decoration: none;
}
p {
    margin: 0px;
}
img {
    max-width: 100%;
}
.pt_80{
    padding-top: 80px;
}
.pb_80{
    padding-bottom: 80px;
}
.py_80{
    padding-top: 80px;
    padding-bottom: 80px;
}
.page-wrapper {
    overflow-x: hidden;
}
.p-100 {
    padding: 100px 0px;
}
.page-paddings {
    padding: 80px 0px;
}
.gap-24 {
    gap: 24px;
}
.gap-30 {
    gap: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-30 {
    margin-bottom: 20px;
}
.mt-30 {
    margin-top: 20px;
}
.mb-15 {
    margin-bottom: 15px;
}
.swiper-btn {
    height: 50px;
    width: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 100%;
    background-color: #0d0d0d;
    position: static;
    margin: 0px;
}
.swiper-btn.swiper-button-prev {
    background-image: url(../images/arrow/arrow-left.png);
}
.swiper-btn.swiper-button-next {
    background-image: url(../images/arrow/arrow-right.png);
}
b {
    font-weight: 600;
}
.radius-30 {
    border-radius: 30px;
}
hr {
    background-color: rgb(255 255 255 / 10%);
    opacity: 1;
    margin: 40px 0px;
}
.common-card {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    padding: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 7px 7px 13px rgba(0, 0, 0, 0.5), inset -7px -7px 13px rgba(255, 255, 255, 0.02);
}
.common-card.p-20 {
    padding: 20px;
}
.common-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 31px;
  background: linear-gradient(-20deg,rgb(56, 56, 56) 34%, rgba(0, 0, 0, 1) 52%, #343434 66%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.featured-div {
    font-size: 18px;
    font-weight: 500;
    background-color: #F8F2E9;
    color: var(--primary);
    padding: 6px 20px;
    display: inline-block;
    border-radius: 60px;
}

.modal .modal-dialog {
    max-width: 708px;
}
.modal .modal-content {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}
.modal-content > .modal-body {
    padding: 48px;
    position: relative;
}
.modal-body > .btn-close {
    background-image: none;
    color: #ffffff;
    opacity: 1;
    padding: 0px;
    outline: 0;
    box-shadow: none;
    position: absolute;
    top: 15px;
    right: 15px;
}

a#back-to-top {
    height: 45px;
    width: 45px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 100%;
    color: var(--text-white);
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
a#back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.btn.btn-secondary {
    font-size: 18px;
    color: var(--text-white);
    padding: 15px 40px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 70px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(15px);
}
.btn.btn-primary {
    font-size: 18px;
    color: var(--text-white);
    padding: 15px 40px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 70px;
    font-weight: 500;
    transition: all 0.3s;
}

.page-wrapper.body-bg {
    background-image: url(../images/bradcrumb-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
}
.page-bg {
    position: absolute;
    width: 1780px;
    height: 890px;
    left: 50%;
    transform: translateX(-50%);
    top: -380px;
    background: rgba(254, 95, 0, 0.26);
    filter: blur(300px);
    z-index: -1;
}
.page-bg.image-bg {
    width: 1196px;
    height: 598px;
    top: -292px;
    background: rgba(254, 95, 0, 0.26);
    filter: blur(300px);
}

.sec-title.mb-80 {
    margin-bottom: 80px;
}
.sec-title.mb-50 {
    margin-bottom: 50px;
}
.sec-title > h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 40px;
}
.sec-title > h4 > span {
    color: #FFB71B;
}
.sec-title > h2 {
    margin-bottom: 30px;
}
.sec-title > p {
    max-width: 978px;
    color: rgb(255 255 255 / 80%);
    margin: 0px auto;
}
.sec-title > p.max-100 {
    max-width: 100% !important;
}

/* Header */
header {
    padding-top: 50px;
}
header.fixed-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    animation: slideDown .35s ease-out;
    padding: 0px;
    background: rgb(0 0 0 / 20%);
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
}
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
header.fixed-header .h-main {
    padding: 10px 40px;
    border: 0px;
}
header.fixed-header .h-main .logo img {
    max-height: 40px;
}
.h-main {
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.001);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    overflow: inherit;
    z-index: 999 !important;
}
.h-main.common-card::before {
    border-radius: 51px;
    background: linear-gradient(-3deg,rgb(56, 56, 56) 34%, rgba(0, 0, 0, 1) 52%, #343434 66%);
}
.h-main .navbar-nav .nav-link {
    font-size: 20px;
    padding: 0px;
    color: var(--text-white);
}
.h-main .navbar-nav .nav-item:hover .nav-link,
.h-main .navbar-nav .nav-item.active .nav-link {
    color: var(--primary);
}
.h-menu .navbar-expand-lg .navbar-nav {
    gap: 50px;
}
.h-main .navbar-nav .dropdown-menu {
    background: #3b1d0b;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5), 0 0 20px 0 rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgb(255 255 255 / 10%);
}
.h-main .navbar-nav .dropdown-menu > li {
    margin-bottom: 8px;
}
.h-main .navbar-nav .dropdown-menu > li:last-child {
    margin-bottom: 0px;
}
.h-main .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0px;
    color: var(--text-white);
    font-size: 15px;
    background-color: transparent;
    transition: all 0.3s;
}
.h-main .navbar-nav .dropdown-menu .dropdown-item:hover,
.h-main .navbar-nav .dropdown-menu .dropdown-item.active {
    color: var(--primary);
}
.h-btn > a {
    font-size: 18px;
    color: var(--text-white);
    padding: 20px 40px;
    border-radius: 70px;
    border: 1px solid transparent;
    display: inline-block;
    transition: all 0.3s;
}
header.fixed-header .h-btn > a {
    padding: 12px 40px;
}
.h-btn > a:hover {
    color: var(--primary);
}
.h-btn > .sign-up-btn {
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 08%);
}
.h-btn > .sign-up-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}
/* Header */
.grid-lines {
    height: 100%;
    width: 100%;
}
.lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255 255 255 / 0.05);
    z-index: -1
}
.lines .line.line-anim:after {
    content: "";
    display: block;
    position: absolute;
    height: 120px;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 217, 0, 0) 0, #FE5F00 75%, #FE5F00);
    animation: run 8s linear 0s infinite;
    animation-fill-mode: forwards
}
.lines .line:nth-child(3n+1):after {
    top: unset;
    animation: run 10s linear 0s infinite
}
.lines .line:first-child {
    left: 6%
}
.lines .line:nth-child(2) {
    left: 12%
}
.lines .line:nth-child(3) {
    left: 18%
}
.lines .line:nth-child(4) {
    left: 24%
}
.lines .line:nth-child(5) {
    left: 30%
}
.lines .line:nth-child(6) {
    left: 36%
}
.lines .line:nth-child(7) {
    left: 42%
}
.lines .line:nth-child(8) {
    left: 48%
}
.lines .line:nth-child(9) {
    left: 54%
}
.lines .line:nth-child(10) {
    left: 60%
}
.lines .line:nth-child(11) {
    left: 66%
}
.lines .line:nth-child(12) {
    left: 72%
}
.lines .line:nth-child(13) {
    left: 78%
}
.lines .line:nth-child(14) {
    left: 84%
}
.lines .line:nth-child(15) {
    left: 90%
}
.lines .line:nth-child(16) {
    left: 96%
}
@media(max-width: 991px) {
    .lines .line:nth-child(2n) {
        display:none
    }
}
.lines .line-vertical {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background: rgb(255 255 255 / 0.05);
    overflow-x: hidden;
    z-index: -1
}
.lines .line-vertical.line-anim:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 120px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 217, 0, 0) 0, #FE5F00 75%, #FE5F00);
    animation: run1 8s linear 0s infinite;
    animation-fill-mode: forwards
}
.lines .line-vertical.line-anim:nth-child(3n+1):after {
    top: unset;
    animation: run1 10s linear 0s infinite
}
.lines .line-vertical:first-child {
    top: 10%
}
.lines .line-vertical:nth-child(2) {
    top: 20%
}
.lines .line-vertical:nth-child(3) {
    top: 30%
}
.lines .line-vertical:nth-child(4) {
    top: 40%
}
.lines .line-vertical:nth-child(5) {
    top: 50%
}
.lines .line-vertical:nth-child(6) {
    top: 60%
}
.lines .line-vertical:nth-child(7) {
    top: 70%
}
.lines .line-vertical:nth-child(8) {
    top: 80%
}
.lines .line-vertical:nth-child(9) {
    top: 90%
}
.lines .line-vertical:nth-child(10) {
    top: 100%
}
@media(max-width: 767px) {
    .lines .line-vertical:nth-child(2n) {
        display:none
    }
}
@keyframes run {
    0% {
        top: 0
    }

    to {
        top: 100%
    }
}
@keyframes run1 {
    0% {
        left: 0
    }

    to {
        left: 100%
    }
}
.hero-tagline {
    font-size: 16px;
    color: var(--text_light);
    padding: 10px 16px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    border: 1px solid rgb(255 255 255 / 8%);
    display: inline-block;
    margin-bottom: 50px;
}
.hero-info > h1 {
    font-size: 80px;
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 50px;
}
.hero-info > h1 > span {
    color: var(--primary);
}
.hero-info > p {
    color: rgb(255 255 255 / 80%);
    max-width: 1050px;
    margin: 0px auto 50px;
}

.stic-main {
    max-width: 1254px;
    margin: 0px auto;
}
.stic-main > .stic-item {
    border-radius: 30px;
    padding: 50px 50px;
    width: calc(33.33% - 16px);
}
.stic-item h3 {
    font-size: 32px;
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    color: var(--text_light);
    margin: 30px 0px;
}
.stic-item p {
    font-size: 20px;
}

.gs-proven-bg {
    background-image: url(../images/gs-proven/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.gs-proven > h2 {
    font-size: 20px;
    margin-bottom: 60px;
}
.gs-proven-media {
    gap: 80px;
}

.solution-item {
    border-radius: 30px;
    padding: 40px;
}
.solution-item > .sm-head {
    gap: 40px;
}
.sm-head > .sm-item {
    font-size: 14px;
    color: var(--text-white);
}
.sm-head > .sm-item > img {
    max-height: 32px;
    margin-bottom: 18px;
}
.sm-head > .sm-item > svg {
    margin-bottom: 20px;
}
.solution-text > h3 {
    font-size: 36px;
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    color: var(--text_light);
    margin-bottom: 20px;
}
.solution-text > p {
    font-size: 20px;
}
.marketplace-media {
    margin-top: 71px;
    margin-bottom: 15px;
}
.growth-media {
    margin-bottom: 24px;
}
.platform-tag > span {
    font-size: 20px;
    font-family: "Mona Sans", sans-serif;
    border-radius: 10px;
    padding: 7px 20px;
    display: block;
    border: 1px solid transparent;
}
.platform-tag > span.tag1 {
    background: #38252B;
    border-color: #77394D;
}
.platform-tag > span.tag2 {
    background: #201E25;
    border-color: #47405C;
}
.platform-tag > span.tag3 {
    background: #292221;
    border-color: #734C46;
}
.add-platform-media > img {
    margin: 20px 0px;
}
.app-pub-media {
    margin-bottom: 30px;
}

.sol-shape {
    height: 150px;
    width: 150px;
    background-color: var(--primary);
    filter: blur(150px);
    position: absolute;
    z-index: -1;
}
.sol-shape.shape-up {
    position: absolute;
    top: 44%;
    right: 38%;
}
.sol-shape.shape-down {
    bottom: 0px;
    left: -70px;
}


.why-chhose .nav-tabs {
    border: 0px;
    position: sticky;
    top: 30px;
}
.why-chhose .nav-tabs > .nav-link {
    font-size: 28px;
    color: var(--text-white);
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    padding: 18px 30px;
    border-radius: 40px;
    border: 1px solid transparent;
    margin-bottom: 42px;
}
.why-chhose .nav-tabs > .nav-link.active {
    background-color: var(--primary);
}
.why-chhose .nav-tabs > .nav-link:last-child {
    margin-bottom: 0px;
}
.why-chhose .tab-content {
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 32px;
    border: 1px solid rgb(255 255 255 / 8%);
}


.end-to-end-sec {
    background-image: url(../images/end-to-end-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.end-to-end-shape {
    width: 482px;
    height: 509px;
    background: var(--primary);
    opacity: 0.26;
    filter: blur(125px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}


.dp-main > .dp-item {
    background: rgba(0, 0, 0, 0.001);
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(20% - 20px);
    padding: 40px;
}


.ab-main {
    gap: 35px;
    margin-bottom: 35px;
}
.ab-main > .ab-item {
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.001);
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 8%);
    display: flex;
    align-items: center;
    justify-content: center;
}


.marqee-main {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    margin-left: 50px;
    overflow: hidden;
    position: relative;
}
.marqee-main::before {
    content: "";
    width: 250px;
    height: 100%;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #0D0D0D 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
.marqee-main::after {
    content: "";
    width: 250px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #0D0D0D 100%);
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
}
.marqee-block {
    grid-column-gap: 56px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
}
.marquee-left {
    animation: marquee-left 30s linear infinite;
}
.marquee-right {
    animation: marquee-right 30s linear infinite;
}
.marqee-item {
    background-color: #0000;
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 25.6px;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    padding: 12px;
    display: flex;
    overflow: hidden;
}
.marqee-item img {
	max-width: 100%;
}
@keyframes marquee-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-30%);
    }
}
@keyframes marquee-right {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(0);
  }
}


.our-client {
    background-image: url(../images/client-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.client-main {
    max-width: 1200px;
    margin: 0px auto;
}
.client-main {
    gap: 26px;
    max-height: 600px;
    overflow: hidden;
}
.client-main > .client-slide {
    width: calc(33.33% - 18px);
}
.client-slide.marqueeTop {
    animation: marqueeTop 80s linear infinite;
}
@keyframes marqueeTop {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-50%);
    }
}
.client-slide.marqueeBottom {
    animation: marqueeBottom 80s linear infinite;
}
@keyframes marqueeBottom {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0px);
    }
}
.client-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 8%);
    overflow: hidden;
    margin-bottom: 30px;
    height: auto !important;
}
.client-item:last-child {
    margin-bottom: 0px;
}
.client-item > .client-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: -15px;
    background: var(--primary);
    filter: blur(125px);
    z-index: -1;
}
.client-item > p {
    font-size: 14px;
    color: var(--text-white);
    margin: 24px 0px;
}
.client-media > img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 100%;
}
.client-foot {
    gap: 12px;
}
.client-info > h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--text-white);
}
.client-info > p {
    font-size: 12px;
    color: var(--text-white);
    font-weight: 500;
}



.blog-item {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    padding: 20px;
    height: 100%;
}
.blog-item > .blog-media {
    margin-bottom: 20px;
}
.blog-media img {
    border-radius: 32px;
}
.blog-info > .blog-date {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-info > h3 {
    font-size: 28px;
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}
.blog-info > h3 > a {
    color: var(--text-white);
}
.blog-info > p {
    font-size: 16px;
}
.blog-info > .client-foot {
    border-top: 1px solid rgb(255 255 255 / 10%);
    margin-top: 10px;
    padding-top: 12px;
}


.partner-main {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    max-width: 1196px;
    margin: 0px auto;
    padding: 70px 15px;
    position: relative;
    overflow: hidden;
}
.partner-main > .pt-shape {
    width: 194px;
    height: 194px;
    background: var(--primary);
    filter: blur(150px);
    position: absolute;
    top: -160px;
    right: -160px;
    z-index: -1;
}
.partner-main > .pb-shape {
    width: 194px;
    height: 194px;
    background: var(--primary);
    filter: blur(150px);
    position: absolute;
    bottom: -160px;
    left: -160px;
    z-index: -1;
}
.partner-main .sec-title {
    margin-bottom: 40px;
}
.partner-main .sec-title > h2 {
    margin-bottom: 22px;
}
.partner-main > .partner-ico {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}



.bradcrumb .sec-title > p {
    max-width: 900px;
}

.about-bg {
    margin-top: -489px;
    margin-bottom: -500px;
    position: relative;
    z-index: -1;
}
.about .sec-title > p {
    max-width: 1220px;
}

.stands-item > h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: "Mona Sans", sans-serif;
}
.stands-info .stands-item {
    margin-bottom: 40px;
}
.stands-info .stands-item:last-child {
    margin-bottom: 0px;
}
.stands-item > p {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 5px;
}
.stands-item > p:last-child {
    margin-bottom: 0px;
}
.stands-item > p > b {
    font-weight: 600;
}
.stands-logo {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.stands-logo::after {
    content: "";
    width: 100px;
    height: 100px;
    background: var(--primary);
    filter: blur(125px);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.us-color-card {
    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 8%);
    padding: 20px;
}
.usc-item .usc-media {
    background-color: var(--primary);
    border-radius: 30px;
    margin-bottom: 20px;
    padding: 244px 20px 20px;
    border: 1px solid transparent;
}
.us-color-head > .usc-media.usc-one {
    background-color: #FF7E01;
}
.us-color-head > .usc-media.usc-two {
    background-color: #FE5200;
}
.us-color-head > .usc-media.usc-three {
    background-color: #010D23;
    border-color: var(--text-white);
}
.us-color-head {
    gap: 17px;
}
.us-color-head > .usc-media {
    width: calc(33.33% - 12px);
    padding-top: 211px;
}
.usc-item .usc-media > h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}
.usc-item .usc-media > p {
    font-size: 20px;
}
.usc-item > h3 {
    font-size: 34px;
    font-weight: 600;
    color: var(--primary);
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 15px;
}
.usc-item > p {
    font-size: 22px;
    color: var(--text-white);
}

.concept-info {
    padding-left: 80px;
}
.concept-info > h3 {
    font-size: 34px;
    font-weight: 600;
    color: var(--primary);
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 20px;
}
.concept-info > p {
    font-size: 22px;
    color: var(--text-white);
}
.concept-info > ul {
    margin: 5px 0px 20px;
    padding-left: 20px;
}
.concept-info > ul > li {
    font-size: 22px;
    list-style: disc;
    color: var(--text-white);
}
.concept-card {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}
.concept-card .concept-shape {
    width: 100px;
    height: 100px;
    background: var(--primary);
    filter: blur(125px);
    position: absolute;
    z-index: -1;
}
.concept-card .concept-shape.ct-shape {
    top: 0px;
    right: 0px;
}
.concept-card .concept-shape.cb-shape {
    bottom: 0px;
    left: 0px;
}
.concept-card > .logo {
    max-width: 550px;
    margin: 0px auto;
}
.concept-card > h4 {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary);
    margin: 75px 0px;
}
.concept-card > .concept-media {
    max-width: 398px;
    margin: 0px auto;
}


.story-card {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
}
.story-card > .story-shape {
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(225px);
    position: absolute;
    bottom: 0px;
    left: 12%;
}
.story-media img {
    border-radius: 30px;
}


.o-value-card {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
.o-value-card:last-child {
    margin-bottom: 0px;
}
.o-value-card > .o-value-shape {
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(225px);
    position: absolute;
    z-index: -1;
}
.o-value-card > .o-value-shape.t-shape {
    top: 50px;
    left: 50px;
}
.o-value-card > .o-value-shape.b-shape {
    height: 150px;
    width: 150px;
    bottom: 0px;
    right: 0px;
}
.o-value-card > div {
    width: 50%;
}
.o-value-media > img {
    border-radius: 30px;
}
.o-value-info > span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    display: block;
}
.o-value-info > h3 {
    font-size: 34px;
    font-weight: 600;
    color: var(--text-white);
    font-family: "Mona Sans", sans-serif;
    margin: 20px 0px;
}
.o-value-info > p {
    font-size: 18px;
    color: rgb(255 255 255 / 50%);
}
.o-value-info > ul {
    margin-top: 50px;
}
.o-value-info > ul > li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 56px;
    position: relative;
}
.o-value-info > ul > li:last-child {
    margin-bottom: 0px;
}
.o-value-info > ul > li > span {
    height: 32px;
    width: 32px;
    background-color: var(--primary);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}


.milestones-main::before {
    content: "";
    height: 92.6%;
    width: 2px;
    background-color: var(--text-white);
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
}
.milestones-main .milestones-card {
    margin-bottom: 50px;
    position: relative;
}
.milestones-main .milestones-card:last-child {
    margin-bottom: 0px;
}
.milestones-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    max-width: 650px;
    position: relative;
    overflow: hidden;
}
.milestones-card.even .milestones-item {
    margin-left: auto;
}
.milestones-card > .mls-point {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: 2px solid #FFFFFF;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mls-point > span {
    height: 30px;
    width: 30px;
    display: block;
    border-radius: 100%;
    background-color: var(--text-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.milestones-shape {
    width: 80px;
    height: 80px;
    background: var(--primary);
    filter: blur(75px);
    position: absolute;
    z-index: -1;
}
.milestones-shape.t-shape {
    top: 0px;
    right: 0px;
}
.milestones-shape.b-shape {
    bottom: 0px;
    left: 0px;
}
.milestones-item > h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-white);
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 15px;
}
.milestones-item > h3 > span {
    color: var(--primary);
}
.milestones-item > p {
    font-size: 20px;
}


.contact-card {
    padding: 30px;
    background: rgba(0, 0, 0, 0.001);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.contact-card::after {
    content: "";
    width: 100px;
    height: 100px;
    background: var(--primary);
    opacity: 0.7;
    filter: blur(100px);
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.contact-card > .cnt-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    border: 1px solid rgb(255 255 255 / 8%);
    margin-bottom: 30px;
}
.contact-card > h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 12px;
}
.contact-card > p {
    font-size: 22px;
    color: var(--text-white);
}
.contact-card > p > a {
    color: var(--text-white);
    transition: all 0.3s;
}
.contact-card > p > a:hover {
    color: var(--primary);
}


.lead-users {
    gap: 50px;
}
.lead-users > .lead-items {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}
.leader-item {
    padding: 0px 30px;
    margin-top: 60px;
}
.leader-card {
    background: rgba(0, 0, 0, 0.001);
    border-radius: 30px;
    padding: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.leader-card::after {
    content: "";
    width: 100px;
    height: 100px;
    background: var(--primary);
    filter: blur(125px);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.leader-card .leader-media {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.leader-card .leader-media > img {
    border-radius: 14px;
    width: 100%;
}
.leader-card .leader-media::before {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, #0D0D0D 100%);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.leader-card:hover .leader-media::before {
    opacity: 1;
    visibility: visible;
}
.leader-card.join-us .leader-media::before {
    opacity: 1;
    visibility: visible;
    background-color: rgb(0 0 0 / 30%);
    background-image: none;
}
.leader-media > a {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.leader-card:hover .leader-media > a {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}
.leader-card.join-us .leader-media > img {
    filter: blur(14px);
}
.leader-text > h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 4px;
}
.leader-text > p {
    font-size: 16px;
}
.leader-card.join-us .next-leader {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    z-index: 1;
}
.leader-media .next-leader > h3 {
    font-size: 22px;
    font-weight: 600;
    max-width: 238px;
    margin: 0px auto 15px;
}
.leader-media .next-leader > .btn.btn-primary {
    padding: 8px 20px;
}


.c-touch-form {
    padding: 100px;
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 8%);
    overflow: hidden;
}
.c-touch-form > .c-touch-shape {
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(250px);
    position: absolute;
    z-index: -1;
}
.c-touch-form > .c-touch-shape.t-shape {
    top: 0px;
    right: 0px;
}
.c-touch-form > .c-touch-shape.b-shape {
    width: 300px;
    height: 300px;
    filter: blur(400px);
    bottom: 0px;
    right: 0px;
}
.c-touch-form .form-label {
    display: block;
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 15px;
}
.c-touch-form .form-control, 
.c-touch-form .form-select {
    font-size: 20px;
    color: var(--text-white);
    border: 1px solid rgb(255 255 255 / 10%);
    background-color: transparent;
    padding: 16px 30px;
    border-radius: 80px;
    outline: 0;
    box-shadow: none;
}
.c-touch-form textarea.form-control {
    border-radius: 30px;
}
.c-touch-form .form-control::placeholder, 
.c-touch-form .form-select::placeholder {
    color: rgb(255 255 255 / 50%);
}
.c-touch-form .form-select {
    color: rgb(255 255 255 / 50%);
}
.c-touch-form .form-select > option {
    color: #212529;
}

.bd-info > span {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
}
.bd-info > h1 {
    color: #F8F2E9;
    margin: 30px 0px;
}
.bd-info > p {
    font-size: 30px;
}
.bd-info .bd-media {
    margin: 60px 0px;
}
.bd-info .bd-text {
    margin-bottom: 60px;
}
.bd-text p {
    margin-bottom: 40px;
    font-size: 28px;
}
.bd-text p:last-child {
    margin-bottom: 0px;
}
.bd-info h3 {
    margin-bottom: 50px;
    color: #F8F2E9;
}
.bd-info ul {
    padding-left: 28px;
}
.bd-info ul > li {
    font-size: 30px;
    margin-bottom: 8px;
    list-style: disc;
}
.bd-info ul > li:last-child {
    margin-bottom: 0px;
}

.artical-card > div {
    width: calc(50% - 4px);
}
.artical-card > .artical-info {
    padding-left: 50px;
}
.artical-info > h3 {
    margin: 20px 0px;
}

.ad_banner{
    position: relative;
    z-index: 9;
}
.left_shape {
    position: absolute;
    left: 0;
    top: -150px;
    z-index: -1;
}
.right_shape {
    position: absolute;
    right: 0;
    top: -110px;
    z-index: -1;
}
.ad_top_wrapper{
    padding: 50px;
}
.ad_top_wrapper .ad_top_img{
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
}
.ad_top_wrapper{
    text-align: center;
}
.benefit_box span{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 8%);
    overflow: hidden;
    margin-bottom: 40px;
}
.key_benefit_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.key_benefit_inner .benefit_box{
    width: calc(33.333% - 16px);
}
.common-card{
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 9;
}
.common-card .box_shadow{
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
}
.key_benefit_inner .benefit_box:nth-child(3n + 2) .box_shadow{
    left: 50%;
    transform: translateX(-50%);
}
.key_benefit_inner .benefit_box:nth-child(3n + 3) .box_shadow{
    right: 0;
    left: inherit;
}
.key_benefit_inner .benefit_box:last-child .box_shadow{
    right: 0;
    left: inherit;
}

.smart-pub-media {
    margin-bottom: -50px;
}

.benefit_box_second h5{
    margin: 15px 0 10px;
    font-size: 24px;
    color: #ffffff;
}
.benefit_box_second ul li{
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    margin: 0 0 10px;
}
.benefit_box_second ul li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 17px;
    height: 17px;
    background: url(../images/ad-platform/check.svg);
    background-size: 17px;
}
.sec-title.opacity_50 p{
    color: rgb(255 255 255 / 50%);
}

.seamless_box{
    text-align: center;
    height: 100%;
    padding: 30px 60px;
}
.seamless_box h4{
    font-size: 24px;
    padding: 30px 0 20px;
}
.seamless_box p{
    font-size: 20px;
}

.faq_accordian_wrapper{
    max-width: 750px;
    margin: 0 auto;
}

.accordion .accordion-item {
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    margin: 0 0 24px;
    padding: 20px 30px;
    box-shadow: inset 7px 7px 13px rgba(0, 0, 0, 0.5), inset -7px -7px 13px rgba(255, 255, 255, 0.02);
    position: relative;
}
.accordion .accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 21px;
  background: linear-gradient(-6deg,rgb(56, 56, 56) 34%, rgba(0, 0, 0, 1) 52%, #343434 66%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

.accordion .accordion-item:last-child{
    margin: 0;
}
.accordion-button {
    padding: 0;
    font-size: 18px;
    color: #fff;
    background-color: transparent;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: transparent;
    box-shadow: none;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: sepia(1) saturate(10) hue-rotate(-30deg);
}
.accordion-body {
    padding: 12px 0 0;
}
.accordion-body p{
    font-size: 16px;
    color: rgb(255 255 255 / 70%);
}
.accordion-body ul li{
    position: relative;
    list-style: disc;
    font-size: 16px;
    list-style-position: inside;
}
.pricing_box{
    height: 100%;
}
.pricing_box h5{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 400;
    opacity: 0.7;
}
.pricing_box h4{
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
}
.pricing_box h4 span{
    font-size: 50px;
    color: #fff;
    font-weight: 600;
}
.pricing_box p{
    font-size: 18px;
}
.pricing_box .btn-primary{
    margin: 40px 0;
    background: rgba(254, 95, 0, 0.40);
    border-color: rgba(254, 95, 0, 0.40);
}
.pricing_box.popular .btn-primary{
    background: var(--primary);
    border-color: var(--primary);
}
.pricing_box ul{
    margin-top: 10px;
}
.pricing_box ul li{
    position: relative;
    padding-left: 28px;
    font-size: 18px;
    opacity: 0.7;
    margin: 0 0 10px;
}
.pricing_box ul li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: url(../images/ad-platform/check-gray.svg);
    background-size: 18px;
}
.why_content{
    padding-left: 50px;
}
.why_content h2{
    margin: 0 0 30px;
}

.app_publish_banner p{
    max-width: inherit;
    margin: 0;
}
.app_publish_img img{
    filter: drop-shadow(0px 0px 20px #fe5d0050);
}

.smart_box_wrap .icon{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 8%);
    overflow: hidden;
    border-radius: 50%;
    margin: 0 0 35px;
}
.why_choose_faq .stands-logo{
    padding: 60px;
}

ul.list_disc li{
    list-style: disc;
    list-style-position: inside;
}
.advantage_box span{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    overflow: hidden;
}
.advantage_box span:before{
    border-radius: 50%;
}
.advantage_box h4{
    margin: 30px 0;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
}
.common-card.pricing_box::before {
    background: linear-gradient(-57deg, rgb(56, 56, 56) 34%, rgba(0, 0, 0, 1) 52%, #343434 66%);
}


.advertising-media > a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.advertising-info .btn.btn-primary {
    font-size: 15px;
    padding: 13px 30px;
}
.ab-right::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: 0px;
    bottom: 0px;
    background: #FE5F00;
    opacity: 0.7;
    filter: blur(100px);
    z-index: -1;
}

.color_wrapper .stands-logo{
    max-height: 280px;
}
.logo_Color_wrapper .stands-info{
    padding-right: 90px;
}
.primary_wrapper .color_box{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #FE5F00;
    border: 2px solid #fff;
}
.primary_wrapper .color_content{
    width: calc(100% - 160px);
    padding-left: 20px;
}
.secondary_color_box .color_box{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #FF7E01;
    border: 2px solid #fff;
    margin: 0 auto 45px;
}
.secondary_color_box .color_box.orange{
    background: #FE5200;
}
.secondary_color_box .color_box.blue{
    background: #010D23;
}

.logo_Color_wrapper {
    position: relative;
}
.logo_Color_wrapper:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(170px);
    border-radius: 50%;
}

.content_banner_inner{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
}

.glossary_filter{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.glossary_filter a{
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 46px;
    font-weight: 500;
        padding: 0 5px;
}
.glossary_filter a.active{
    color: var(--primary);
}
.glossary_result{
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    scroll-margin-top: 250px;
}

 
.glossary_result h2{
    margin: 0 0 30px;
}
.glossary_result h3{
    color: #fff;
    margin: 0 0 15px;
}
.glossary_result_inner h4{
    color: #fff;
}
.glossary_result p{
    font-size: 20px;
}
.glossary_result_inner{
    margin: 0 0 40px;
}
.glossary_result .glossary_result_inner:last-child{
    margin: 0;
}

.policy_navigation{
    padding: 50px;
    position: sticky;
    top: 110px;
}
.policy_navigation ul li {
    margin-bottom: 20px;
}
.policy_navigation ul li:last-child {
    margin-bottom: 0;
}
.policy_navigation ul li a{
    font-size: 28px;
    color: #fff;
    transition: 0.5s ease;
}
.policy_navigation ul li a:hover,.policy_navigation ul li a.active{
    color: var(--primary);
}

.wl-item > .wl-ico {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 100%;
}
.wl-item::after {
    content: "";
    width: 100px;
    height: 100px;
    background: rgb(254 95 0 / 70%);
    filter: blur(100px);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
}
.add-cat > span {
    font-size: 16px;
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 6px;
}

.requst_demo_wrapper .f-newsletter .form-group  .form-control {
    padding: 25px 240px 25px 40px;
    box-shadow: 0 0 20px 0 rgba(254,95,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}
.requst_demo_wrapper .f-newsletter .form-group  .btn.btn-primary {
    font-size: 17px;
    padding: 13px 30px;
    top: 10px;
    right: 10px;
}

.benchmark-main {
    max-width: 1000px;
    margin: 0px auto;
    overflow: hidden;
    position: relative;
}
.benchmark-main::before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #F8F2E910;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.benchmark-main::after {
    content: "";
    height: 100%;
    width: 2px;
    background-color: #F8F2E910;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.benchmark-main > .benchmark-item {
    width: 50%;
    padding: 110px 50px;
}
.benchmark-main > .benchmark-item.anim-ver::before {
    content: "";
    width: 2px;
    height: 50px;
    background-color: #FE5F00;
    border-radius: 30px;
    position: absolute;
    bottom: 15px;
    right: -1px;
    animation: bch-anim 8s linear 0s infinite;
}
.benchmark-main > .benchmark-item.anim-ver.anim-down::before{
    bottom: inherit;
    top: -13px;
    animation: bch-anim-down 8s linear 0s infinite;   
}
.benchmark-item .anim-hor {
    height: 2px;
    width: 50px;
    background-color: #FE5F00;
    border-radius: 30px;
    position: absolute;
    bottom: 13px;
    right: 0px;
    animation: bch-hor 8s linear 0s infinite;
}
.benchmark-item .anim-hor.anim-right {
    right: inherit;
    left: 0px;
    animation: bch-hor-right 8s linear 0s infinite;
}
@keyframes bch-anim {
    0% {
        bottom: 15px;
    }
    100% {
        bottom: 100%;
    }
}
@keyframes bch-anim-down {
    0% {
        top: -13px;
    }
    100% {
        top: 100%;
    }
}
@keyframes bch-hor {
    0% {
        right: 0px;
    }
    100% {
        right: 100%;
    }
}
@keyframes bch-hor-right {
    0% {
        left: 0px;
    }
    100% {
        left: 100%;
    }
}
.benchmark-num {
    height: 70px;
    width: 70px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    border-radius: 100%;
    margin-bottom: 40px;
}
.benchmark-num::before {
    border-radius: 101%;
}
.benchmark-item > h5 {
    font-size: 24px;
    color: #ffffff;
    margin: 0px;
}
.benchmark-main .pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.benchmark-main .pulse::before,
.benchmark-main .pulse::after,
.benchmark-main .pulse span {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.4);
  animation: pulseAnimation 3s ease-out infinite;
}
.benchmark-main .pulse::after {
  animation-delay: 1s;
  background: rgba(255, 102, 0, 0.3);
}
.benchmark-main .pulse span {
  animation-delay: 2s;
  background: rgba(255, 102, 0, 0.2);
}
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.benchmark-main .pulse > .icon {
  color: #fff;
  font-size: 28px;
  z-index: 10;
}


.methodology-sec {
    background-image: url(../images/methodology-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.mst-card {
    padding: 50px;
}
.finding-shape {
    width: 150px;
    height: 150px;
    background: #FE5F00;
    opacity: 0.7;
    filter: blur(140px);
    position: absolute;
    z-index: -1;
}
.finding-shape.t-shape {
    top: 0px;
    right: 0px;
}
.finding-shape.b-shape {
    width: 100px;
    height: 100px;
    filter: blur(100px);
    bottom: 0px;
    left: 0px;
}

.performance-card::after {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #FE5F00;
    opacity: 0.7;
    filter: blur(100px);
}
.performance-card h3 {
    color: var(--primary);
}
.driving-shape {
    position: absolute;
    width: 140px;
    height: 140px;
    background: #FE5F00;
    filter: blur(236.111px);
    z-index: -1;
}
.driving-shape.t-shape {
    right: 0px;
    bottom: 0px;
}
.driving-shape.b-shape {
    height: 70px;
    width: 70px;
    right: 0px;
    top: 0px;
}

.cst-card {
    gap: 15px;
}
.cst-item.common-card {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.33% - 10px);
    padding: 36px 15px;
}
.cst-item.common-card::before {
    border-radius: 21px;
}


.case-item.common-card {
    padding: 20px;
}
.case-item .case-ico {
    height: 50px;
    width: 50px;
    background-color: #FFB71B;
    border-radius: 100%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.case-item > .page-media > img {
    border-radius: 15px;
}
.case-item > p {
    color: rgb(255 255 255 / 80%);
}


.career_img_wrap{
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 2 / 1;
}
.career_img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.career_benefit_box h4{
    font-size: 36px;
}
.career_benefit_box .icon{
    width: 70px;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.career_benefit_box p{
    font-size: 18px;
}

.career_team_img_wrap{
    position: relative;
}
.career_team_img_one{
    aspect-ratio: 1/1;
    border-radius: 30px;
    overflow: hidden;
    max-width: 460px;
}
.career_team_img_two{
    max-width: 430px;
    aspect-ratio: 6 / 4;
    border-radius: 30px;
    overflow: hidden;
    margin-left: auto;
    margin-top: -210px;
    margin-right: 30px;
}
.career_team_img_one img,
.career_team_img_two img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity_img {
    overflow: hidden;
    aspect-ratio: 10 / 8;
}
.activity_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter_tab_wrapper ul{
    display: flex;
    align-items: center;
}
.filter_tab_wrapper ul li{
    position: relative;
    padding: 0 25px;
}
.filter_tab_wrapper ul li:before{
    content: "/";
    font-size: 24px;
    color: #fff;
    position: absolute;
    left: -7px;
    top: 0;
}
.filter_tab_wrapper ul li:first-child{
    padding-left: 0;
}
.filter_tab_wrapper ul li:first-child::before{
    display: none;
}
.filter_tab_wrapper ul li button{
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 24px;
    color: #fff;
}
.filter_tab_wrapper ul li button.active{
    color: var(--primary);
}
.ad_galery_box h6{
    text-transform: uppercase;
    font-weight: 400;
}

.search_wrapper .form-control{
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 70px;
    padding: 17px 20px 17px 60px;
    color: var(--text_light);
    box-shadow: none;
    background: url(../images/search.svg) no-repeat;
    background-size: 24px;
    background-position: left 20px center;
}

.news_box{
    padding: 20px;
    height: 100%;
}
.news_box .news_img a{
    display: block;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9 / 6;
}
.news_box .news_img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.news_box:hover .news_img a img{
    transform: scale(1.07) rotate(2deg);
}
.news_box .news_content{
    padding-top: 20px;
}
.news_box .news_content h6{
    color: var(--text_light);
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 15px;
}
.news_box .news_content h6 a{
    color: var(--text_light);
    transition: 0.5s ease;
}
.news_box .news_content h6 a:hover{
    color: var(--primary);
}
.news_box .news_content h4{
    font-size: 32px;
    margin: 0 0 15px;
}
.news_box .news_content h4 a{
    color: #fff;
    transition: 0.5s ease;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.news_box .news_content h4 a:hover{
    color: var(--primary);
}
.news_box .news_content p{
    font-size: 18px;
    margin: 0 0 15px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.news_box .btn.btn-primary {
    font-size: 15px;
    padding: 13px 40px;
}
.news_detail_img img{
    border-radius: 30px;
}
.news_detail_wrapper p{
    margin: 0 0 20px;
}
.news_detail_wrapper h3{
    margin: 0 0 20px;
}

.tools_banner .sec-title > p{
    max-width: 1200px;
}

.why_tapmind_wrapper h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.policy_content h2:first-child {
    margin-top: 0px;
}
.policy_content h2 {
    font-size: 40px;
    margin: 40px 0px;
}


footer {
    margin: 80px 60px 60px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
footer .f-shape {
    width: 100px;
    height: 100px;
    background: var(--primary);
    filter: blur(125px);
    position: absolute;
    z-index: -1;
}
footer .f-shape.ft-shape {
    top: 0px;
    right: 0px;
}
footer .f-shape.fb-shape {
    bottom: 0px;
    left: 0px;
}
.f-top {
    gap: 50px;
    padding: 80px 0px;
}
.f-top .foot-left {
    width: 390px;
}
.f-top .foot-right {
    width: calc(100% - 440px);
}
.foot-left > p {
    font-size: 16px;
    margin: 30px 0px;
}
.foot-left  .f-newsletter {
    margin-bottom: 30px;
}
.f-newsletter .form-group  .form-control {
    font-size: 14px;
    padding: 16px 140px 16px 20px;
    background: rgba(0, 0, 0, 0.001);
    box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 70px;
    outline: 0;
    color: var(--text-white);
}
.f-newsletter .form-group  .form-control::placeholder {
    color: rgb(255 255 255 / 50%);
}
.f-newsletter .form-group  .btn.btn-primary {
    font-size: 16px;
    padding: 10px 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.f-social {
    gap: 12px;
}
.foot-item > h3 {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-white);
    font-family: "Mona Sans", sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.foot-item > ul > li {
    margin-bottom: 10px;
}
.foot-item > ul > li:last-child {
    margin-bottom: 0px;
}
.foot-item > ul > li > a {
    font-size: 18px;
    color: rgb(255 255 255 / 80%);
    transition: all 0.3s;
}
.foot-item > ul > li > a:hover {
    color: var(--primary);
}
.f-copyright {
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding: 30px 0px;
}
.f-copyright > p {
    font-size: 16px;
}

@media screen and (min-width: 1599px) {
    .container {
        max-width: 1440px;
    }
}