/*
========================
GLOBAL CSS START HERE 
========================
*/

/* google fonts setup */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&display=swap');

body {	
    font-family: "Poppins", sans-serif;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #000;	
}
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

select {
    cursor: pointer;
}

::selection {
    color: white;
    background: #B56BFF;
}

::-webkit-selection {
    color: white;
    background: #B56BFF;
}

::-moz-selection {
    color: white;
    background: #B56BFF;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #B56BFF;
    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:hover {
    color: #fff;
}
.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #B56BFF;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.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);
    }
}

/* custom container */
.container1360 {
    max-width: 1360px;
}


/* primary button hover */

.primaryHover {
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.primaryHover::after {
    content: "";
    display: block;
    width: 15%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: -80px;
    transform: skew(-30deg);
    z-index: -1;
}
.primaryHover:hover:after {
    left: 115%;
    transition: 0.9s;
} 




/*
========================
HEADER START HERE 
========================
*/
.header_area {
    padding: 12px 0;
    padding-top: 30px;
}
.header_logo > a img {
    width: 100%;
    max-width: 230px;
}
.header_menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}
.header_menu > ul > li > a {
    color: #323232;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    transition: 0.3s;
}
.header_menu > ul > li > a:hover,
.header_menu > ul > li .dropdown > button:hover {
    color: #B56BFF;
}
.header_menu > ul > li .dropdown > button {
    background-color: transparent;
    color: #323232;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    border: 0;
    transition: 0.3s;
    text-transform: capitalize;
}
.header_menu > ul > li .dropdown > button.show i {
    transform: rotate(180deg);
    transition: 0.3s;
}
.header_menu > ul > li .dropdown > button i {
    font-size: 20px;
}
.header_menu .dropdown .dropdown-menu .dropdown-item {
    color: #323232;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
    border: 0;
    transition: 0.3s;
    display: block;
    padding: 8px 20px;
    text-transform: capitalize;
}
.header_menu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: rgba(181, 107, 255,0.05);
}
.header_menu .dropdown .dropdown-menu .dropdown-item:active {
    background-color: rgba(181, 107, 255,0.2);
}
.header_menu .dropdown .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}


/* hamburger css */
.hamburger .line{
    width: 40px;
    height: 3px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }
  

  #hamburger-6.is-active{
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.4s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #hamburger-6.is-active .line:nth-child(2){
    width: 0px;
  }
  
  #hamburger-6.is-active .line:nth-child(1),
  #hamburger-6.is-active .line:nth-child(3){
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  
  #hamburger-6.is-active .line:nth-child(1){
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    -o-transform: translateY(12px);
    transform: translateY(12px);
  }
  
  #hamburger-6.is-active .line:nth-child(3){
    -webkit-transform: translateY(-10px) rotate(90deg);
    -ms-transform: translateY(-10px) rotate(90deg);
    -o-transform: translateY(-10px) rotate(90deg);
    transform: translateY(-10px) rotate(90deg);
  }
  
  #hamburger-6 {
    width: fit-content;
  }
  #hamburger-6 .line {
    background-color: #000;
  }

  .offcanvas {
    max-width: 300px;
    transition: transform 0.3s ease-in-out !important; /* Default close speed */
  }
  
  .offcanvas.show {
    transition: transform 0.7s ease-in-out !important; /* Slower open speed */
  }






/*
========================
HERO START HERE 
========================
*/
.heroHome_content {
    border-radius: 50px;
    border: 1px solid #CCC;
    background: #F4EAFF;
    padding: 0 40px;
}
.heroHome_content img.hero_img {
    width: 100%;
    max-width: 695px;
    display: block;
    margin: 0 auto;
}
.heroHome_content_inner > span {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    padding: 17px 32px;
    border-radius: 50px;
    background: linear-gradient(0deg, rgba(212, 170, 254, 0.40) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.heroHome_content_inner > h1 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 134%;
    background: linear-gradient(90deg, #000 0%, #A06BD6 49.5%, #000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.heroHome_content_inner > p {
    width: 100%;
    max-width: 967px;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 134.588%;
    margin-bottom: 18px;
}
.heroHome_content_inner > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    min-height: 68px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    border-radius: 10px;
    background: #C081FF;
    margin: 0 auto;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.heroHome_content_inner > a::after {
    content: "";
    display: block;
    width: 15%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: -80px;
    transform: skew(-30deg);
    z-index: -1;
}
.heroHome_content_inner > a:hover:after {
    left: 115%;
    transition: 0.9s;
} 
.heroHome_content_inner {
    margin-top: -195px;
    z-index: 55;
    position: relative;
}



/*
========================
OUR APPROACH START HERE 
========================
*/
.ourApproachHome_area {
    margin-top: 100px;
}
.ourApproachHome_right > span {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    display: block;
    width: fit-content;
    padding: 6px 22px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(127, 0, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 125.51%);
    margin-bottom: 10px;
}
.ourApproachHome_right > p {
    color: #5F5F5F;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 30px;
}
.ourApproachHome_right a.discoverMore_btn {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    width: 100%;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #7F00FF;
}
.ourApproachHome_right a::after {
    left: -90px;
    width: 10%;
}
.ourApproachHome_right a:hover:after {
    transition: 1.2s;
}
.ourApproachHome_right a.contactUs_btn {
    color: #7F00FF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    width: 100%;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #F3E8FF;
    margin-top: 15px;
}
.ourApproachHome_right a.contactUs_btn::after {
    background: rgba(127, 0, 255,0.2);
}
.ourApproachHome_left .oahl_lef > img.thumb1 {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
}
.oahl_right_wrapper > img.thumb2 {
    width: 100%;
    display: block;
    margin-bottom: 14px;
}
.oahl_right_wrapper .oahl_rightMiddle > img.thumb3 {
    width: 100%;
}
.oahl_right_wrapper .oahl_rightcontact > span {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 134%;
    margin-bottom: 5px;
}
.oahl_right_wrapper .oahl_rightcontact > a {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 134%;
    display: block;
    text-align: center;
    width: fit-content;
}
.oahl_right_wrapper .oahl_rightcontact > a i {
    font-size: 40px;
    text-align: center;
    margin-top: 5px;
}
.oahl_right_wrapper .oahl_rightcontact {
    width: fit-content;
    margin: 0 auto;
    margin-top: 35px;
}

.oahl_right_wrapper .oahl_rightcontact > a:hover {
    color: #7F00FF;
}
.oahlBottom_left > h4 {
    color: #1E2389;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
}
.oahlBottom_left > p {
    font-family: "Poppins", sans-serif;
    color: #1E2389;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 134%;
}
.oahlBottom_left {
    border-radius: 20px;
    background: rgba(211, 229, 241, 0.40);
    padding: 25px 0;
}
.oahlBottom_right_content ul.experience li h4 {
    font-family: "Poppins", sans-serif;
    color: #BF3AFE;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
}
.oahlBottom_right_content ul.experience li span {
    font-family: "Poppins", sans-serif;
    color: #BF3AFE;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 134%;
    display: block;
}
.oahlBottom_right_content ul.expertTeam li span {
    font-family: "Poppins", sans-serif;
    color: #1E2389;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 134.588%;
    display: block;
}
.oahlBottom_right_content ul.expertTeam li h5 {
    font-family: "Poppins", sans-serif;
    color: #1E2389;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134.588%;
}
.oahlBottom_right_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px 0;
    padding-bottom: 25px;
}
.oahlBottom_right_content ul.experience  {
    align-self: flex-end;
    padding-right: 22px;
}
.oahlBottom_row {
    margin-top: -110px;
}



/*
========================
Achievements START HERE 
========================
*/
.achievements_area {
    background: url(images/banner/banner1.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin-top: 100px;
}
.achievements_content > h3 {
    font-family: "Poppins", sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 134%;
}
.achievements_content > p {
    font-family: "Poppins", sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
}


/*
==========================
ABOUT US HOME START HERE 
==========================
*/
.aboutUsHome_area {
    margin-top: 100px;
}
.aboutUsHome_content > span {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    display: block;
    width: fit-content;
    padding: 6px 22px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(127, 0, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 125.51%);
    margin-bottom: 10px;
}
.aboutUsHome_content > p {
    color: #5F5F5F;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 15px;
}
.aboutUsHome_content > a {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    width: 100%;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #7F00FF;

}

.aboutUsHome_content > a::after {
    left: -90px;
    width: 10%;
}
.aboutUsHome_content > a:hover:after {
    transition: 1.2s;
}
.aboutUsHome_thumb > img {
    width: 100%;
    max-width: 640px;
    display: block;
    margin-left: auto;
}


/*
===========================
workProcessHome START HERE 
===========================
*/
.workProcessHome_area {
    margin-top: 100px;
}
.workProcessHome_left img.vector3 {
    width: 100%;
    display: block;
}
.workProcessHome_left > p {
    font-family: "Poppins", sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
    position: absolute;
    bottom: 140px;
    left: 0;
    width: 100%;
}
.workProcessHome_right {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
}
.workProcessHome_right > span.title {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    display: block;
    width: fit-content;
    padding: 6px 22px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(127, 0, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 125.51%);
    margin: 0 auto;
}
.workProcessHomeRight_card {
    border-radius: 20px;
    border: 1px solid #D8D8D8;
    background: #F4F4F4;
    padding: 30px;
    transition: 0.3s;
    position: relative;
    z-index: 5;
    overflow: hidden;
    margin-top: 15px;
}
.workProcessHomeRight_card::after {
    content: "";
    display: block;
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    background: linear-gradient(255deg, #3F215C 1.24%, #121D38 98.76%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.6s;
    
}
.workProcessHomeRight_card:hover:after {
    transform: translate(-50%, -50%) scale(1);
}
.workProcessHomeRight_card > h6 {
    font-family: "Poppins", sans-serif;
    color: #8749C5;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 134.588%;
    margin-bottom: 8px;
    transition: 0.4s;
}
.workProcessHomeRight_card > p {
    color: #505050;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 134%;
    transition: 0.4s;
}
.workProcessHomeRight_card:hover {
    border-radius: 20px;
    border: 1px solid #D8D8D8;
}
.workProcessHomeRight_card:hover > h6 {
    color: #fff;
    transition: 0.3s color;
}
.workProcessHomeRight_card:hover > p {
    color: #DFDFDF;
    transition: 0.3s color;
}


/*
============================
recoverAssetStep START HERE 
============================
*/
.recoverAssetStep_area {
    margin-top: 100px;
}
.recoverAssetStep_header > h6 {
    font-family: "Poppins", sans-serif;
    color: #717171;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 134%;
    margin-bottom: 10px;
}
.recoverAssetStep_header > h2 {
    font-family: "Poppins", sans-serif;
    color: #000;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 134%;
    margin-bottom: 55px;
}
.recoverAssetStep_header > h2 span {
    color: #B56BFF;
}
.recoverAssetStep_content > span.number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #B56BFF;
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    position: absolute;
    top: -37px;
    left: -37px;
}
.recoverAssetStep_content > h4 {
    font-family: "Poppins", sans-serif;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 134%;
    margin-bottom: 13px;
}
.recoverAssetStep_content > p {
    font-family: "Poppins", sans-serif;
    color: #464646;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 134.588%;
    margin-bottom: 13px;
}
.recoverAssetStep_content > a {
    width: 158px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 134%;
    border-radius: 10px;
    background: #FFF;
    margin: 0 auto;
}
.recoverAssetStep_content > a:hover {
    background: #B56BFF;
    color: #fff;
}
.recoverAssetStep_content_wrapper {
    width: 100%;
    max-width: 1045px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.recoverAssetStep_content {
    width: 100%;
    max-width: 485px;
    border-radius: 30px;
    background: #F5ECFF;
    padding: 30px 45px;
}
.recoverAssetStep_content_wrapper {
    margin-bottom: 70px;
}




/*
=====================
FOOTER START HERE 
=====================
*/
.footer_area {
    background: #15171A;
    padding-top: 100px;
}
.footer_link > h4 {
    font-family: "Poppins", sans-serif;
    color: #FFF;
    font-size: 32px;
    font-weight: 600;
    line-height: 134%;
    margin-bottom: 32px;
}
.footer_link > ul li a {
    font-family: "Poppins", sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    transition: 0.3s;
}

.footer_link > ul li a:hover {
    color: #B56BFF;
}
.footer_link > ul li {
    display: block;
    margin-bottom: 30px;
}
.footer_para p {
    font-family: "Poppins", sans-serif;
    color: #7B7C9C;
    font-size: 18px;
    font-weight: 300;
    line-height: 148%;
    /*text-align: justify;*/
}
.footer_bottom {
    padding: 30px 0;
    border-top: 1px solid #33393F;
    margin-top: 65px;
}
.footer_bottom p {
    font-family: "Poppins", sans-serif;
    color: #C2CCD7;
    font-size: 18px;
    font-weight: 300;
    line-height: 148%;
    text-align: center;
}

.footer_area > .container > .row > .col-lg-3:nth-child(1) {
    width: 20%;
}
.footer_area > .container > .row > .col-lg-3:nth-child(2) {
    width: 25%;
}
.footer_area > .container > .row > .col-lg-6:nth-child(3) {
    width: 55%;
}



/*********************** About Us page start  ************************/

/*
=======================
ABOUT HERO START HERE 
=======================
*/
.aboutHero_area {
    background: linear-gradient(90deg, #8C79EC 40%, #D2A5FF 85%);
    padding: 100px 0;
}
.aboutHero_content {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}
.aboutHero_content > h2 {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 8px;
}
.aboutHero_content > p {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 134%;
}
.aboutHero_content_wrapper > img.vector {
    width: 100%;
    max-width: 520px;
}
.aboutHero_content_wrapper {
    display: flex;
    align-items: center;

}


/*
========================
ourExpertise START HERE 
========================
*/
.ourExpertise_area {
    margin-top: 100px;
    background: url(images/banner/banner2.png);
    background-repeat: no-repeat;
    background-size: 1375px;
    background-position: 50% 50%;

}
.ourExpertise_content > h4 {
    font-family: "Poppins", sans-serif;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 134%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.ourExpertise_content p {
    font-family: "Poppins", sans-serif;
    color: #464646;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 134%;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.ourExpertise_content {
    width: 100%;
    min-height: 310px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(242, 243, 246, 0.50);
    backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.ourExpertise_content.mt_32 {
    margin-top: 32px;
}
.ourExpertise_content.mt_80 {
    margin-top: 80px;
}


/*
============================
whyChooseUsAbout START HERE 
============================
*/
.whyChooseUsAbout_area {
    margin-top: 100px;
    margin-bottom: 100px;
}
.whyChooseUsAbout_content > h6 {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 134.588%; /* 21.534px */
    width: fit-content;
    margin: 0 auto;
    padding: 6px 15px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(127, 0, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 125.51%);
    margin-bottom: 15px;
}
.whyChooseUsAbout_content > h2 {
    font-family: "Poppins", sans-serif;
    color: #000;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 15px;
}
.whyChooseUsAbout_content > h2 span {
    color: #B56BFF;
}
.whyChooseUsAbout_content > p {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 134.588%;
}
.whyChooseUsAbout_content > img.banner {
    width: 100%;
    margin-top: -65px;
    z-index: -1;
    position: relative;
}


/*************** about_us(officeLocation) Page start here ***************/

/*
============================
officeLocation START HERE 
============================
*/
.officeLocation_area {
    background: #E1E7EF;
    padding: 100px 0;
}
.officeLocation_header > h2 {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}
.officeLocation_header > h2 img {
    width: 48px;
}
.officeLocation_header > ul li a {
    width: 365px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 134%;
    border-radius: 10px;
    border: 1px solid #B56BFF;
    background: #FFF;
}
.officeLocation_header > ul li a:last-child:hover {
    background: #B56BFF;
    color: #fff;
}
.officeLocation_header > ul li a.active {
    background: #B56BFF;
    color: #fff;
}
.officeLocation_header > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}
.officeLocation_area img.map_img {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}
.officeLocation_mapContent > h3 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 15px;
}
.officeLocation_mapContent > p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 134%;
}

.officeMap_location > iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    margin: 35px 0;
}

.officeMap_location {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.officeMap_location.active {
    display: block;
    opacity: 1;
}


/********** about_us(setupConsultation)  **********/

/*
===============================
scheduleConsultation START HERE 
===============================
*/
.scheduleConsultation_banner > img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    object-position: top center;
}
.scheduleConsultation_banner {
    position: relative;
    display: block;
}
.scheduleConsultation_banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 210px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 5;
}
.scheduleConsultation_content > h2 {
    color: #7F00FF;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
}
.scheduleConsultation_content > p {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 134%;
}
.scheduleConsultation_content {
    margin-top: -125px;
    position: relative;
    z-index: 8;
}


/*
========================
aboutUsForm START HERE 
========================
*/
.aboutUsForm_area {
    margin-top: 55px;
    padding-bottom: 100px;
}
.aboutUsForm_header > h2 {
    color: #7F00FF;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
}
.aboutUsForm_header > p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 134%;
    margin-bottom: 12px;
}

.aboutUsForm_content .form_input input,
.aboutUsForm_content .form_input select,
.aboutUsForm_content .form_input textarea {
    width: 100%;
    min-height: 75px;
    border: 0;
    outline: none;
    border-radius: 10px;
    border: 1px solid #DEDEDE;
    background-color: #F0F0F0;
    display: block;
    padding: 25px;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    transition: 0.3s;
}
.aboutUsForm_content .form_input textarea {
    resize: none;
    min-height: 195px;
}

.aboutUsForm_content .form_input input:focus,
.aboutUsForm_content .form_input select:focus,
.aboutUsForm_content .form_input textarea:focus {
    box-shadow: 0 0 0 4px rgba(127, 0, 255,0.2);
    background-color: #fff;
}

.aboutUsForm_content .form_input select {
    appearance: none;
    background-image: url(images/icon/icon5.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: calc(100% - 20px) 50%;
}
.aboutUsForm_content .form_btn > button {
    width: 100%;
    max-width: 290px;
    min-height: 70px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    border: 0;
    border-radius: 10px;
    background: #B56BFF;
}
 #mySelect {
    color: gray;
  }
  #mySelect.valid {
    color: black;
  }


  /*************** Contact us Page start here ***************/
  .contactUsForm_area {
    padding-bottom: 100px;
  }
  .contactUsForm_row {
    border-radius: 20px;
    background: linear-gradient(59deg, rgba(238, 221, 255, 0.40) 0.02%, rgba(198, 210, 255, 0.40) 99.98%);
    backdrop-filter: blur(250px);
    padding: 130px 80px;
  }
  .contactUsForm_left > h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 10px;
  }
  .contactUsForm_left > p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 134%;
    margin-bottom: 35px;
  }
  .contactUsForm_left > ul li h4 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 5px;
    margin-top: 6px;
  }
  .contactUsForm_left > ul li span {
    color: #464646;
    font-size: 22px;
    font-weight: 400;
    line-height: 134%; 
  }
  .contactUsForm_left > ul {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    margin-left: 20px;
  }
.contactUsForm_right .form_input input,
.contactUsForm_right .form_input textarea,
.contactUsForm_right .form_input select {
  background: #FFF;
  min-height: 70px !important;
  padding: 0 22px;
  font-size: 20px;
  border: 0;
}
.aboutUsForm_content.contactUsForm_right .form_input textarea {
    min-height: 160px !important;
    padding: 22px;
}
.aboutUsForm_content.contactUsForm_right .form_btn button {
    width: 100%;
    max-width: 100%;
    min-height: 60px;
    border-radius: 10px;
    background: linear-gradient(89deg, #B56BFF 0.14%, #5200FF 99.86%);
    font-size: 24px;
}
.aboutUsForm_content.contactUsForm_right .form_btn button:hover {
    background: linear-gradient(-89deg, #B56BFF 0.14%, #5200FF 99.86%);
    font-size: 24px;
}

  /*************** all services Page start here ***************/


  .allServiceHero_title > h2 {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
}
.allServiceHero_title > h2 span {
    color: #3E66F3;
}
.allServiceHero_title {
    width: 100%;
    max-width: 688px;
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid #3E66F3;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
}
.allServiceHero_content img.banner {
    width: 100%;
}
.allServiceHero_content {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
}
.allServiceHero_content > a.speakExperet_btn {
    width: 100%;
    max-width: 394px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    border-radius: 10px;
    background: #1E2389;
    margin: 0 auto;
    margin-top: 25px;
    transition: 0.3s;
}
.allServiceHero_content > a.speakExperet_btn:hover {
    background-color: #7F00FF;
}

.serviceProvide_area {
    margin-top: 100px;
}
.serviceProvide_title > h2 {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 25px;
}

.serviceProvide_card {
    padding: 18px;
    border-radius: 10px;
    background: #F3F3F3;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 5;
}
.serviceProvide_card::after {
    content: "";
    display: block;
    width: 500px;
    height: 500px;
    background: linear-gradient(59deg, #B56BFF 0.45%, #6A8BFF 99.55%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    transition: 0.4s;
    border-radius: 50%;
}
.serviceProvide_card:hover:after {
    transform: translate(-50%, -50%) scale(1);

}
.serviceProvide_card:hover > h4,
.serviceProvide_card:hover > p {
    color: #fff;
}
.serviceProvide_card > h4 {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 5px;
    transition: 0.4s;
}
.serviceProvide_card > p {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    text-align: center;
    transition: 0.4s;
    margin-bottom: 10px;
}
.serviceProvide_card > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 134%;
    border-radius: 7px;
    background: #7F00FF;
    margin-top: auto;
    transition: 0.4s;
}
.serviceProvide_card > a:hover {
    color: #fff !important;
    background-color: #000 !important;
}
.serviceProvide_card:hover > a {
    background-color: #fff;
    color: #000;
}


.ourClientService_area {
    background: url(images/banner/banner6.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px 0;
    margin-top: 100px;
    margin-bottom: 100px;
}
.ourClientService_content > span {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 134%;
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 6px 20px;
    border-radius: 10px;
    background: linear-gradient(0deg, #7F00FF 0%, rgba(255, 255, 255, 0.80) 125.51%);
}
.ourClientService_content > h2 {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 134%;
}
.ourClientService_content > p {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    margin-bottom: 20px;
}
.ourClientService_card {
    width: 100%;
    min-height: 140px;
    padding: 15px 10px;
    border-radius: 20px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    transition: 0.3s;
}
.ourClientService_card:hover {
    transform: scale(1.05);
}
.ourClientService_card > h6 {
    color: #1E2389;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 134%;
}
.ourClientService_content {
    padding: 0 60px;
}


/********* crypto_asset_tracing_services page start *********/

.cryptocurrencyTracing_area {
    background: #F6EDFF;
    padding: 85px 0;
}
.cryptocurrencyTracing_content > img {
    width: 100%;
    max-width: 550px;
}
.cryptocurrencyTracing_content_inner > span {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 134%;
    display: block;
    margin: 0 auto;
    padding: 6px 25px;
    border-radius: 10px;
    background: linear-gradient(0deg, #7F00FF 0%, rgba(255, 255, 255, 0.80) 125.51%);
    width: fit-content;
}

.cryptocurrencyTracing_content_inner > h2 {
    color: #000;
    font-size: 48px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 3px;
    text-align: center;
}
.cryptocurrencyTracing_content_inner > h2 span {
    color: #3E66F3;
}
.cryptocurrencyTracing_content_inner > p {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
}
.cryptocurrencyTracing_content_inner > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 370px;
    min-height: 60px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 134%;
    border-radius: 10px;
    background: #1E2389;
    margin: 0 auto;
    margin-top: 17px;
}
.cryptocurrencyTracing_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cryptocurrencyTracing_content_inner {
    width: 100%;
    max-width: 590px;
}



.tracingProcess_area {
    padding-top: 80px;
}
.tracingProcess_header > span {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 134%;
    display: block;
    margin: 0 auto;
    padding: 6px 25px;
    border-radius: 10px;
    background: linear-gradient(0deg, #7F00FF 0%, rgba(255, 255, 255, 0.80) 125.51%);
    width: fit-content;
    margin-bottom: 20px;
}
.tracingProcess_header > p {
    color: #000;
    text-align: center;
    font-size: 20px;;
    font-weight: 400;
    margin-bottom: 60px;
}

.tracingProcess_content > h5 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 11px;
}
.tracingProcess_content > span {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
}


.collabLaw_area {
    margin-top: 100px;
}
.collabLaw_content h2 {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 134%;
    position: absolute;
    left: 0;
    width: 100%;
}
.collabLaw_content h2 span {
    color: #B56BFF;
}

.collabLaw_content > img.banner {
    width: 100%;
    border-radius: 25px;
}
.collabLaw_content > p {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    margin-top: -135px;
}

.reasonsScam_area {
    margin-top: 100px;
}
.reasonsScam_header > h2 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 13px;
}
.reasonsScam_header > h2 span {
    color: #B56BFF;
}
.reasonsScam_header > p {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    margin-bottom: 35px;
}

.reasonsScam_content > h4 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 10px;
}
.reasonsScam_content > h4 img {
    display: inline-block;
    margin-right: 10px;
}
.reasonsScam_content > p {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 134%;
    margin-left: 55px;
}
.reasonsScam_content {
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid #DADADA;
    background: #F8F8F8;
}

.conclusion_area {
    margin-top: 50px;
    padding-top: 75px;
    padding-left: 12.5px;
    padding-right: 12.5px;
    border-top: 5px solid #E7E7E7;
}
.conclusion_content > h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 10px;
}
.conclusion_content > p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 134%;
}

.conclusion_area .conclusion_row {
    border-radius: 20px;
    border: 1px solid #DADADA;
    background: linear-gradient(90deg, #CD9BFF 0%, #9A4AFF 100%);
    padding: 35px;
    margin-bottom: 75px;
}
.conclusion_btn > a {
    width: 100%;
    max-width: 230px;
    min-height: 65px;
    color: #B56BFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 134%;
    border-radius: 10px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.conclusion_area .conclusion_btn > a:hover {
    color: #fff;
    background: #15171A;
}

.cryptoForensics_area {
    position: relative;
    padding-top: 60px;
}
.cryptoForensics_area::after {
    content: "";
    display: block;
    width: 100%;
    height: 310px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #E8D0FF 0%, #FFF 100%);
    z-index: -1;
}
.cryptoForensics_content > h1 {
    color: #000;
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 25px;
}
.cryptoForensics_content > p {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
    margin-bottom: 30px;
}
.cryptoForensics_list ul li {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 134%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cryptoForensics_list ul {
    margin-top: 50px;
}


.understanding_Landscape_area {
    padding-top: 100px;
    background: url(images/vector/vector17.png) no-repeat;
    background-size: 2000px;
    background-position: 50% -50px;
}
.understanding_Landscape_content {
    width: 100%;
    max-width: 575px;
}
.understanding_Landscape_content > h4 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 10px;
}
.understanding_Landscape_content > p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
}
.understanding_Landscape_thumb > img {
    width: 100%;
    max-width: 284px;
    display: block;
    margin-left: auto;
}
.understanding_Landscape_row.mt_100 {   
    margin-top: 100px;
}
.understanding_Landscape_thumb.three > img {
    width: 100%;
    max-width: 575px;
}

.inConclusion_area {
    margin-top: 100px;
    background-image: url(images/banner/banner8.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right;
}
.inConclusion_content > h3 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 10px;
}
.inConclusion_content > p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
}
.inConclusion_content {
    padding-bottom: 60px;
}
.overflowX_hidden {
    overflow-x: hidden;
}




/********* wire-transfer-recalls page start *********/
.wireTransfer_banner_area {
    background: linear-gradient(0deg, #E8D0FF 0%, #FFF 100%);
    padding: 150px 0;
}
.wireTransfer_banner_content > h1 {
    text-align: center;
    color: #000;
    font-size: 64px;
    font-weight: 700;
    line-height: 134%;
}
.wireTransfer_blog_content {
    width: 100%;
    max-width: 600px;
}
.wireTransfer_blog_content > h3 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 23px;
}
.wireTransfer_blog_content > p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
}
.wireTransfer_blog_thumb > img {
    width: 100%;
    border-radius: 20px;
}
.wireTransferBlog_row {
    margin-top: 150px;
}


.challengesWireRecall_area {
    margin-top: 150px;
    margin-bottom: 100px;
}
.challengesWireRecall_content > h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 10px;
}
.challengesWireRecall_content > p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
}
.challengesWireRecall_content > p b {
    font-weight: 700;
}


.wireTransfer_inConclusion > h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 22px;
}
.wireTransfer_inConclusion > p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 134%;
}
.wireTransfer_inConclusion {
    margin-top: 150px;
}


