
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* clash display font link  */

@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Extralight.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Extralight.woff') format('woff'),
       url('../fonts/ClashDisplay-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Light.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Light.woff') format('woff'),
       url('../fonts/ClashDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Regular.woff') format('woff'),
       url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Medium.woff') format('woff'),
       url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Semibold.woff') format('woff'),
       url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Bold.woff') format('woff'),
       url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Variable';
  src: url('../fonts/ClashDisplay-Variable.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Variable.woff') format('woff'),
       url('../fonts/ClashDisplay-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}





:root {
    --font-railway: "Raleway", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-clashDisplay: 'ClashDisplay';
    --font-clash-variable: 'ClashDisplay-Variable';
    --primaryColor: #3856FF;
    --Accent: #3F55F6;
    --whiteColor: #fff;
    --blackColor: #000;
    --blueDark-color: #0F123F
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #0F123F;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

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);
}


.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: 99;    
}

.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 {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #F2F4FF;
    transition: all 0.3s;
}
.header-hidden {
    transform: translateY(-100px);
}
.header-nav-wp {
    padding-block: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo a {
    display: flex;
    width: 154px;
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 25px;
}
.navbar-list a {
    display: flex;
    font-weight: 700;
    font-family: var(--font-railway);
    color: var(--blueDark-color);
}
.navbar-list a:hover,
.navbar-list a.active {
    color: var(--primaryColor);
}
.header-action {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-action a {
    display: inline-flex;
    height: 45px;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--primaryColor);
    text-align: center;
    font-family: var(--font-railway);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 500px;
    transition: 0.3s;
}
.header-action a:hover {
    color: var(--blueDark-color);
}
.header-action a.signup-btn {
    background: #EAEDFF;
    color: var(--blueDark-color);
}
.header-action a.signup-btn:hover {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.humberger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.humberger-menu span {
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 16px;
    background: var(--blueDark-color);
}

/* mobile menu  */

.offcanvas-title img {
    max-width: 150px;
}

.moibleMenuSide {
    background: #F2F4FF;
}

.mobileMenuList {
    flex-direction: column;
    align-items: start;
}

.header-area.menu-hidden {
	transform: translateY(-100px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}


/* header area end  */

/* hero area style  */

.hero-area {
    background: #F2F4FF;
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 75px);
    justify-content: center;
}

.hero-grid {
    display: flex;
    gap: 57px;
    align-items: start;
    justify-content: space-between;
}
.hero-content-block {
    flex: 1;
    max-width: 767px;
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.hero-content-block h2 {
    color: var(--blueDark-color);
    font-family: var(--font-clashDisplay);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; 
    text-transform: uppercase;
}
.hero-content-block p {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}
.hero-list {
    display: flex;
    gap: 20px;
}
.hero-list li {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero-list li .icon {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
}
.hero-list li span {
    flex: 1;
    color: var(--Accent);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 500px;
    border: 1px solid var(--primaryColor);
    color: var(--primaryColor);
    text-align: center;
    font-family: var(--font-railway);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.action-btn:hover {
    background: var(--blueDark-color);
    color: var(--whiteColor);
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 20px;
    padding-top: 27px;
	flex-wrap: wrap;
}
.btn-primery {
    background: var(--primaryColor);
    color: var(--whiteColor);
}
.btn-primery:hover {
    background: var(--blueDark-color);
}

.header-right {
    flex: 1;
    max-width: 460px;
    display: flex;
    padding: 44px 32px;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    border-radius: 20px;
    background: #FFF;
}
.header-right ul {
    display: flex;
    flex-direction: column;
}
.header-right ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-block: 28px;
    border-bottom: 1px solid #B4BFFF;
}
.header-right ul li:first-child {
    padding-top: 0;
}
.header-right ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.header-right h4 {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; 
}
.header-right h2 {
    color: #0026F9;
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.header-right p {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; 
}
.hero-ractangle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 877px;
    z-index: -1;
}
.hero-actions a {
	min-width: 214px;
}

/*==== hero area style end  ====*/
/*===== why fail area ====== */

.why-fail-area {
    padding-block: 110px;
}
.why-fail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 86px;
}
.section-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.section-top h2 {
    color: var(--blueDark-color);
    font-family: var(--font-clashDisplay);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    flex: 1;
}
.section-top p {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; 
    flex: 1;
    max-width: 419px;
}
.apporch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.typical-approch-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    gap: 28px;
    border-radius: 20px;
    border: 1px solid #DBDDEC;
    background: #F7FAFF;
}
.typical-approch-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.typical-approch-card h5 {
    color: var(--Accent);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
}
.single-typical-approch-item {
    display: flex;
    min-height: 74px;
    padding: 12px 16px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #EEF0F3;
    background: var(--whiteColor);
    position: relative;
    z-index: 2;
}
.approch-icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
    color: var(--Accent);
}
.single-typical-approch-item p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
}
.structure-approach {
    position: relative;
    z-index: 2;
}
.structure-approach::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 4px 24px -6px rgba(59, 130, 246, 0.12), 0 1px 4px -2px rgba(15, 23, 42, 0.04);
    z-index: -1;
    width: 100%;
    height: 100%;
}
.single-typical-approch-item::before {
    content: '';
    display: block;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 2px 16px -4px rgba(15, 23, 42, 0.06), 0 1px 4px -2px rgba(15, 23, 42, 0.04);
    position: absolute;
    bottom: -0.38px;
    width: 100%;
    left: 0;
    height: 100%;
}

/* why fail end hare  */
/* for area start hare  */

.for-area {
    padding-block: 110px;
}
.for-wrapper {
    display: flex;
    flex-direction: column;
    gap: 86px;
}
.section-title {
    color: var(--blueDark-color);
    font-family: var(--font-clashDisplay);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.for-grid-item {
    display: flex;
    padding: 36px 24px 33px 24px;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    border: 1px solid #3F55F6;
    background: #FFF;
}
.for-cardTitle {
    color: #3F55F6;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
    letter-spacing: 0.1px;
}
.for-grid-item h4 {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.for-devider {
    width: 100%;
    height: 1px;
    background: #CACAFC;
    margin-top: auto;
}
.for-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.for-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.for-card-list li .icon {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
    font-size: 14px;
    color: var(--Accent);
}
.for-card-list li span {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; 
    flex: 1;
}

/* for area end hare  */
/* tokenisation area starrt  */

.tokenisation-area {
    padding-block: 140px;
}
.tokenisation-wrapper .section-top p {
	max-width: 492px;
}
.tokenisation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 86px;
}

.tokenisation-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tokenisation-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 20px 36px 20px;
    border-right: 1px solid #CACAFC;
    border-bottom: 1px solid #CACAFC;
}
.tokenisation-left {
    display: flex;
    align-items: start;
    gap: 20px;
}
.tokenisation-left-content {
    flex: 1;
    max-width: 548px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tokenisation-serial {
    color: var(--Accent);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
}
.tokenisation-left-content h4 {
    color: var(--blueDark-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
}
.tokenisation-left-content p {
    color: #000;
}
.tokenisation-category {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 444px;
    flex-wrap: wrap;
}
.cate-item {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 500px;
    background: #F2F4FF;
    color: #3856FF;
    font-family: var(--font-clashDisplay);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.tokenisation-action {
	margin-left: auto;
}
.tokenisation-action a {
	white-space: nowrap;
}

/* tokenisation area end hare  */
/* why choose area  */

.whyChoose-area {
    padding-block: 120px;
}

.whyChoose-wrapper {
    display: flex;
    flex-direction: column;
    gap: 86px;
}
.whyChoose-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.singleChoose-item {
    display: flex;
    padding: 28px 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.10);
}
.singleChoose-item .icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
}
.singleChoose-item h4 {
    color: #0026F9;
    text-align: center;
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/* why choose area end  */
/* principles area start  */

.principles-area {
    padding-block: 140px;
    background: #F2F4FF;
}
.principles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 86px;
}

.principles-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.singlePrinciples {
    display: flex;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid var(--Accent);
    background: #FFF;
    min-height: 326px;
}
.singlePrinciples .serial {
    color: var(--Accent);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
}
.singlePrinciples h4 {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 75px;
}

/* priciples area end  */
/* requited area start  */

.requested-area {
    padding-block: 70px;
    background-color: var(--blueDark-color);
    background-image: url(/../../images/requist-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: var(--whiteColor);
}

.requisted-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.requisted-left {
    flex: 1;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.requisted-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.requisted-block h2 {
    color: #fff;
}

.requisted-left-btm form {
    display: flex;
    gap: 12px;
}
.requisted-left-btm form input {
    padding: 24px 16px;
    border-radius: 12px;
    background: #EEF1F4;
    color: #667080;
    font-family: var(--font-railway);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; 
    flex: 1;
}
.requisted-left-btm form button {
    display: flex;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    max-width: 208px;
    border-radius: 12px;
    border: 1px solid #3856FF;
    background: #3856FF;
    color: var(--whiteColor);
    text-align: center;
    font-family: var(--font-railway);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: 0.3s;
}
.requisted-left-btm form button:hover {
    opacity: 0.8;
}
.requisted-left-btm {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.requisted-left-btm p {
    color: #667080;
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; 
}

.requisted-right {
    display: flex;
    padding: 44px 36px 44px 40px;
    flex-direction: column;
    gap: 28px;
    border-radius: 20px;
    background: #FFF;
    flex: 1;
    max-width: 471px;
    color: var(--blueDark-color);
}
.requisted-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.requisted-item p {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; 
}
.requisted-item h4 {
    color: #0026F9;
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.phases-divider {
    height: 1px;
    background: #B4BFFF;
    width: 100%;
}

/* requisted area end  */
/* footer area start  */

/*.footer-area {
    padding-block: 43px;
    background: #00072D;
    color: var(--whiteColor);
}
.footer-logo img {
    max-width: 138px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-logo p {
    color: var(--whiteColor);
    font-family: var(--font-railway);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}*/

/*.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}
.footer-nav a {
    font-weight: 500;
    color: var(--font-railway);
}
.footer-nav a:hover {
    color: var(--primaryColor);
}*/
/*.footer-social-links {
	display: flex;
	gap: 20px;
}

.copyright-text {
     color: var(--whiteColor);
    font-family: var(--font-railway);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
*/
/* Page 02  */

.access-req-main {
    display: flex;
}

.access-left {
    width: 53.125%;
    background: #F2F4FF;
    padding-left: calc((100vw - 1300px)/2);
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    padding-block: 50px;
}
.access-block {
    display: flex;
    flex-direction: column;
    gap: 29px;
}
.access-block p {
    font-size: 18px;
}
.req-phase-info {
    padding: 20px;
    display: flex;
    align-items: start;
    gap: 20px;
    border-right: 1px solid #CACAFC;
    border-bottom: 1px solid #CACAFC;
    background: #FFF;
}
.req-phase-info .serial {
    color: var(--Accent);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
}
.req-phase-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.req-phase-details h4 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.34px;
}
.req-phase-details p {
    color: #000;
}

.req-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.single-req-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.single-req-item .icon {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
    color: var(--Accent);
}
.single-req-item p {
    flex: 1;
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; 
}

.access-right {
    width: 46.87%;
    background: #000A43;
    padding-right: calc((100vw - 1300px)/2);
    padding-left: 62px;
    padding-bottom: 33px;
    padding-top: 91px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    color: #fff;
    min-height: 857px;
}

.req-right-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.req-right-top .section-title {
    color: #fff;
}
.req-right-top p {
    font-size: 18px;
}
.access-req-form-wp {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 528px;
	gap: 40px;
	padding-block: 44px;
}

.access-req-form-wp form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.access-req-form-wp form input,
 .access-req-form-wp form select {
    width: 100%;
    padding: 24px 16px;
    border-radius: 12px;
    background-color: #EEF1F4;
    color: #000A43;
}
.access-req-form-wp form select {
    padding-right: 35px;
    color: #000A43;
}

.form-btm {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    gap: 20px;
}
.form-btm button {
    display: flex;
    height: 70px;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #3856FF;
    background: #3856FF;
    color: var(--whiteColor);
    text-align: center;
    font-family: var(--font-railway);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.form-btm p {
    color: #BABEC6;
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

.access-sucess-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.req-success-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.success-check {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 9999px;
    background: #10B981;
}
.req-success-text .section-title {
    color: #fff;
}

.assessment-btn a {
    display: flex;
    height: 70px;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #3856FF;
    background: #3856FF;
    margin-top: 20px;
}
/*.access-req-success-card {
    display: none;
}*/

/* phase 1 page  */

.breadcrumb-container {
  padding-top: 40px;
  padding-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
}

.breadcrumb-link {
  color: #7a8293;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #1a1f2c;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #7a8293;
  border-bottom: 1.5px solid #7a8293;
  transform: rotate(-45deg);
  margin: 0 14px;
  opacity: 0.8;
}

.breadcrumb-item.active {
  color: #1a1f2c;
  font-weight: 500;
  pointer-events: none;
}

.subtitle {
    color: #0026F9;
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.typical-approch-card h3 {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.apporch-card-two {
    display: flex;
    height: 80px;
    padding: 12px 32px;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #DBDDEC;
    background: #F7FAFF;
}

.whyChoose-list-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.singleChoose-item {
    width: fit-content;
    max-width: 326px;
}
.what-wrapper {
    gap: 40px;
}
.what-wrapper .section-top h4 {
    font-size: 23px;
    text-align: center;
    width: 100%;
}

.decision-card-btm {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid #0026F9;
    background: #F7FAFF;
    margin-top: 16px;
}
.decision-card-btm p {
    color: var(--blueDark-color);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.34px;
}

.principles-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.singlePrinciples .action-btn {
    min-width: 174px;
}

/* checkout section  */

.checkout-wrapper {
    padding-block: 120px;
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.checkout-block-top {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.checkout-top-left {
    display: flex;
    flex-direction: column;
    gap: 78px;
    flex: 1;
    max-width: 626px;
}
.checkout-top-left h2 {
    max-width: 487px;
}
.checkout-features-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.checkout-features-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding-right: 25px;
}
.checkout-features-list .icon {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
}
.features-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.features-info h4 {
    color: var(--blueDark-color);
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.checkout-right {
    flex: 1;
    max-width: 530px;
}
.checkout-overvew-card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    border-radius: 20px;
    border: 1px solid #B4BFFF;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.10);
}
.checkout-card-title {
    color: #64748B;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%; 
    letter-spacing: 0.1px;
}
.price-card {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.price-card h2 {
    color: #0026F9;
    font-family: var(--font-clashDisplay);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; 
    letter-spacing: -0.5px;
}
.price-card span {
    color: #475569;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: -0.5px;
}
.single-package-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-package-feature p {
    color: var(--blueDark-color);
    font-family: var(--font-railway);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}
.single-package-feature h4 {
    color: #0026F9;
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.package-feature {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.checkout-overvew-card a {
    min-height: 70px;
}

.checkout-bottom-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.scope-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.scope-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.scope-list li {
    display: flex;
    align-items: start;
    gap: 12px;
}
.scope-list li .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}
.scope-list li p {
    flex: 1;
    max-width: 384px;
}
.checkout-bottom-wp span {
    color: #475569;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.5px;
}
.start-assessment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.assessment-left h2 {
    color: #fff;
}
.assessment-left p {
    color: #fff;
    font-family: var(--font-railway);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}
.assessment-left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.assessment-action a {
    min-height: 105px;
    width: 415px;
}

/* page navigation area  */
.page-navigation-wrapper {
    padding-block: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.back-page {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #475569;
    font-family: var(--font-clashDisplay);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.back-page:hover {
    color: var(--Accent);
}
.next-module {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.next-module p {
    color: #475569;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: -0.5px;
}
.next-module a {
    color: var(--Accent);
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
}

.build-budget-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

/* coverage section  */

.coverage-wrapper {
    padding-block: 120px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.section-top-right {
    display: flex;
    max-width: 528px;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.10);
}
.section-top-right h6 {
    color: #000;
    font-family: var(--font-clashDisplay);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.section-top-right ul {
    list-style: disc;
    padding-left: 20px;
}
.section-top-right ul li {
    font-size: 18px;
}

.coverage-country-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}
.single-coverage-card {
    display: flex;
    padding: 36px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    border-radius: 20px;
    border: 1px solid #DBDDEC;
}

.country-name {
    display: flex;
    align-items: center;
    gap: 28px;
}
.country-name .flag {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
}
.country-name h3 {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.coverage-middle {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.coverage-middle-btm {
    display: flex;
    padding: 20px 32px;
    align-items: center;
    gap: 28px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid #0026F9;
    background: #F7FAFF;
}
.positioning-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.positioning-left .icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
}
.positioning-left p {
    flex: 1;
    color: #000;
    font-family: var(--font-clashDisplay);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.divider-column {
    width: 1px;
    background: #CACAFC;
    height: 100%;
    display: block;
    min-height: 88px;
}

.positioning-right {
    flex: 1;
    max-width: 718px;
}
.coverage-map {
	padding-top: 16px;
}
.section-top-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.whyChooseList-two .singleChoose-item {
    align-items: start;
    max-width: 100%;
}
.flexible-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flexible-content h4 {
    text-align: left;
}
.whyChoose-list.whyChooseList-two {
	grid-template-columns: repeat(3, 1fr);
}
.flexible-card-two {
    display: flex;
    min-height: 197px;
    padding: 28px 32px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    border-radius: 20px;
    border: 1px solid #0026F9;
    background: #F7FAFF;
}
.flexible-card-two h4 {
    color: #000;
    text-align: center;
    font-family: var(--font-clashDisplay);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.flexible-card-two p {
    color: var(--blueDark-color);
    text-align: center;
    font-family: var(--font-railway);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; 
}

/*====== responsibily area ==== */

.responsibility-area {
    padding-block: 120px;
}
.responsibility-wrapper {
    display: flex;
    flex-direction: column;
    gap: 86px;
}
.responsibily-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.res-include-card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    border-radius: 20px;
    border: 1px solid #B4BFFF;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.10);
}
.res-include-title {
    display: flex;
    align-items: center;
    gap: 20px;
}
.include-icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 0 solid #E5E7EB;
    background: #3856FF;
    font-size: 28px;
    color: #fff;
}
.res-include-title h2 {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.res-include-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.res-include-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.res-include-list li .icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 300px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.15);
    color: #3F55F6;
}

.res-notInclude-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    border-radius: 20px;
    border: 1px solid #B4BFFF;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 16, 53, 0.10);
}

.notIncludeIcon {
    background: #E5E7EB;
    color: #4B5563;
}

.not-include-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.not-include-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.not-include-list li i {
    color: #F87171;
}
.not-include-list li p {
    flex: 1;
}

.distribution-list .flexible-content {
    padding-top: 20px;
}
.distribution-list ul li span {
    font-weight: 400;
}
.list-font-normal li span {
    font-weight: 400;
}

.principles-list-two .singlePrinciples h4 {
    margin-top: 030px;
}

/* credential section  */

.credetial-area {
    padding-block: 140px;
}

.credential-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.credential-left {
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.credential-pera {
    display: flex;
    flex-direction: column;
}
.credential-pera {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	max-width: 500px;
}
.frameworks-tags {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.frameworks-tags h4 {
    color: #3F55F6;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 171.429%; 
    letter-spacing: 0.1px;
}
.frameworks-tags ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.frameworks-tags ul li {
    display: inline-flex;
    height: 34px;
    padding: 8px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid #CACAFC;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
}

.credential-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.credential-item {
    display: flex;
    min-height: 108px;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: 20px;
    background: #F2F5FF;
    padding-bottom: 15px;
}

.credential-item h4 {
    color: #0026F9;
    font-family: var(--font-clashDisplay);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.credential-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    max-width: 382px;
}

.tokenisation-item:hover {
    background: #F7F9FE;
}