html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: 'Manrope';
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #fff;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #7f53ac;
    background-image: linear-gradient(315deg, #e84a79 0%, #5c5ae5 74%);
}


/* Font Setup */

p,
li {
    font-family: 'Manrope', sans-serif;
    line-height: 30px;
    font-size: 18px;
}

p {
    font-weight: 300;
    color: #425466;
    font-size: 20px;
    line-height: 30px;
}

h1 {
    font-family: 'Manrope', sans-serif;
    line-height: 86px;
    font-size: 84px;
    font-weight: bold;
    color: #3A3A3A;
    margin-top: 30px;
    margin-bottom: 45px;
}
h2 {
    font-size: 28px;
    color: #00D4FF;
    font-weight: 700;
    line-height: 60px;
}

h4 {
    color: #000;
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
}

h5 {
    font-family: 'Manrope', sans-serif;
    line-height: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}

.main-page {
    margin: 0 auto;
}

.row {
    max-width: 100%;
}


/* Header */

header {
    z-index: 2;
    position: absolute;
    width: 100%;
    color: #FFF;
}

.header-inner {
    align-items: center;
}

header.active {
    background: #F6FAFC;
    color: #000;
}

header.active .header-logo path {
    fill: #425466 !important;
}

header.active .header-menu a {
    color: #425466 !important;
}

.sub-menu-menu {
    margin: 20px 0 20px 10px;
}

.header {
    padding: 15px 5%;
}

.header-logo svg {
    max-width: 200px;
}

.header-content h4 {
    width: 90%;
}

.header-menu ul {
    list-style-type: none;
    display: flex;
}

.header-menu li {
    padding: 0px 20px;
    font-weight: bold;
    cursor: default;
}

.header-menu li.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.header-background {
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 170px;
    position: relative;
    padding-bottom: 10%;
}

.header-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #40e0d0, #8360c3, #ff0080);
    background-size: 300% 600%;
    -webkit-animation: Gradient 30s ease infinite;
    -moz-animation: Gradient 30s ease infinite;
    animation: Gradient 30s ease infinite;
    clip-path: polygon(0 0, 100% 0, 100% 700px, 0 700px);
    z-index: -1;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

.header-cutout {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.header-content {
    transform: translateY(-4%);
    height: 100%;
}

.header-content img {
    margin-top: 40px;
    width: 100%;
}

.header-content h1 {
    color: #FFF;
}

.header-content,
.header-content * {
    z-index: 1;
}

.header-asset {
    text-align: right;
    margin-top: 2rem;
}

.header-content p {
    margin: 0;
    width: 70%;
    color: #FFF;
    position: relative;
}


/* Sub Menu */

.sub-menu {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    background: #F6FAFC;
    padding: 25px 5%;
    z-index: 3;
}

.sub-menu-menu ul {
    margin: 0;
    list-style-type: none;
    padding: 5px 0;
}

.mainbtn {
    padding: 20px 40px;
    background: #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-size: 18px;
    background-color: #7f53ac;
    background-image: linear-gradient(315deg, #7f53ac 0%, #647dee 74%);
}

.mainbtn:hover {
    background: #fff;
    color: #d84c86;
    transition: .5s ease-in-out;
}

.mainlink {
    color: #fff;
    font-size: 19px;
    padding: 25px;
}

.mainlink:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 17px;
    margin-left: 8px;
}

.headernav {
    display: block;
    position: relative;
    margin-top: 2em;
    padding: 25px 0px;
}

.headernav a i {
    font-size: 16px;
    margin-left: 11px;
}

a.signinbtn {
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 15px;
    background-color: #f977ce;
    background-image: linear-gradient(315deg, #f977ce 0%, #c373f2 74%);
}

.fa-sign-in-alt {
    font-size: 14px;
    margin-left: 8px;
}

.social-icons {
    position: absolute;
    display: flex;
    bottom: 5px;
    left: 15px;
}

.social-icons i {
    margin-right: 12px;
    font-size: 30px;
}

.social-icons a {
    color: #425466;
}


/*=====================================
Logo Slider Section
======================================*/

section {
    padding: 0px 5%;
}

.logslider img {
    margin: auto;
    display: block;
    width: 200px;
}

section#logoslider {
    padding: 0 30px;
    display: none;
}

.container-fluid.logoslider-p {
    padding: 0 !important;
}

.slick-slider {
    height: fit-content;
}


/*=====================================
Text image Section
======================================*/

#textbanner {
    padding: 4em 5%;
}

.textcontent h2 {
    font-family: 'Manrope';
    font-weight: 700;
    color: #00D4FF;
    font-size: 28px;
    line-height: 60px;
}

.image img {
    display: block;
    margin: auto;
    width: 100%;
}

.textcontent h4 {
    font-family: 'Manrope';
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.content-section:not(.blue) .textcontent h4 {
    color: #000;
}
.content-section.blue .textcontent h4 {
    color: #FFF;
}

.textcontent p {
    color: #425466;
    font-family: 'Manrope';
    width: 75%;
    font-size: 18px;
}


/*=====================================
Specs Section
======================================*/

.content-section.blue {
    padding: 11em 5% 9em 5%;
    background: #0A2540;
    clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
    z-index: 9;
    position: relative;
}

h2.specheading {
    font-size: 28px;
    color: #00D4FF;
    font-weight: 700;
    line-height: 60px;
}

h4.specsubhead {
    color: #fff;
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
}

.specsarea {
    margin-top: 2em;
}

.cardy {
    margin: 2rem 2rem 2rem 0;
}

.cardy i {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
}

h2.cardheading {
    font-size: 15px;
    color: #05d4fe;
    font-weight: 700;
    line-height: 30px;
}

p.carddesc {
    color: #fff;
    width: 80%;
    font-size: 15px;
}


/*=====================================
Fraud Section
======================================*/

.fullheightimg {
    float: right;
    height: 100%;
}

#fraud {
    margin-top: -9%;
    padding: 0 0 0 5%;
}

#fraud .row {
    --bs-gutter-x: 0 !important;
}

.clientsimg {
    padding: 3% 0;
}

.clientsimg img {
    margin-right: 1rem;
}

.clientsimg img:nth-child(2) {
    width: 100px;
}

#fraud .textcontent {
    padding-top: 10em;
}


/*=====================================
Api Section
======================================*/

section.blue p {
    color: #FFF;
}

.textcontent2 h4 {
    font-size: 28px;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 1rem;
}

.textcontent2 h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 1rem;
}

.textcontent2 p {
    width: 70%;
    font-size: 18px;
}

.minicard i {
    font-size: 25px;
    color: #fff;
    margin-bottom: 1rem;
}

.minicard h2 {
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
}

.minicard p {
    width: 75%;
    font-size: 15px;
    margin: 5px 0px;
    margin-bottom: 8px;
}

.minicard a {
    color: #00D4FF;
    font-size: 15px;
}

.minicard a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 12px;
    margin-left: 8px;
}

.codeimg {
    margin: auto;
    display: block;
    width: 80%;
}


/*=====================================
Get Started Section
======================================*/

section#getstarted {
    padding: 4% 5%;
}

.maincontent h2 {
    font-size: 36px;
    line-height: 48px;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.maincontent p {
    color: #425466;
    width: 70%;
    font-size: 18px;
}

.mainbts {
    display: block;
    position: relative;
    padding: 25px 0;
}

a.btns,
.custom-button {
    padding: 10px 25px;
    background: #425EF8;
    border-radius: 30px;
    font-size: 14px;
}

a.btns:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 11px;
    margin-left: 8px;
}

a.linky:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 13px;
    margin-left: 8px;
}

a.linky {
    font-size: 15px;
    line-height: 30px;
    font-weight: 700;
    color: #00D4FF;
    margin-left: 2rem;
}

.maincard h2 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.maincard p {
    width: 75%;
    font-size: 15px;
}

.maincard i {
    font-size: 25px;
    margin-bottom: 1rem;
    color: #000;
}

.maincard a {
    color: #00D4FF;
    font-size: 15px;
    font-family: 'Manrope';
    font-weight: 700;
}

.maincard a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 14px;
    margin-left: 8px;
}

.mainbts .btns {
    font-weight: 400;
}

footer {
    padding: 3% 6% 0;
    background: #F6FAFC;
}

.contact img {
    width: 220px;
    margin-bottom: 1rem;
}

.contact ul li {
    font-size: 14px;
    line-height: 30px;
    color: #425466;
    font-weight: 300;
    font-family: 'Manrope';
}

.footermenu h3 {
    color: #425466;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
}

.footermenu ul li a {
    color: #425466;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Manrope';
}

.copyright {
    padding: 3% 0;
}

.copyright p {
    color: #707070;
    font-size: 14px;
}

svg.dark_logo {
    max-width: 200px;
    margin-bottom: 12px;
}

svg.dark_logo path {
    fill: #425466 !important;
}

#logoslider {
    margin-top: 25px;
}

.m-menu__checkbox {
    display: none;
}

label.m-menu__toggle {
    cursor: pointer;
    display: none;
}

.m-menu {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 450px;
    width: calc(100vw - 30px);
    height: 100vh;
    -moz-transform: translate3d(-450px, 0, 0);
    -o-transform: translate3d(-450px, 0, 0);
    -ms-transform: translate3d(-450px, 0, 0);
    -webkit-transform: translate3d(-450px, 0, 0);
    transform: translate3d(-450px, 0, 0);
    -moz-transition: transform 0.35s;
    -o-transition: transform 0.35s;
    -webkit-transition: transform 0.35s;
    transition: transform 0.35s;
    z-index: 1;
    overflow: hidden;
    background-color: #fff;
    pointer-events: none;
}

.m-menu__overlay {
    background-color: rgba(103, 103, 103, 0.5);
    position: absolute;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
    display: none;
    height: 100vh;
}

.m-menu__header {
    padding: 0 16px;
    height: 50px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    align-items: center;
}

.m-menu__header span {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.m-menu .m-menu {
    -moz-transform: translate3d(480px, 0, 0);
    -o-transform: translate3d(480px, 0, 0);
    -ms-transform: translate3d(480px, 0, 0);
    -webkit-transform: translate3d(480px, 0, 0);
    transform: translate3d(480px, 0, 0);
}

.m-menu ul {
    height: 100%;
    overflow-y: auto;
    color: #000;
    margin-top: 1em;
}

.m-menu .social-icons {
    position: relative;
}

.login-menu {
    display: block;
    color: #fff;
    padding: 15px 30px;
    background: #425EF8;
    border-radius: 30px;
    font-size: 18px;
    margin-bottom: 1em;
}

.menufooter {
    position: absolute;
    display: flex;
    bottom: 3em;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
}

.m-menu ul li {
    margin: 0 2em;
}

.ultitle {
    padding: 10px;
    margin: 1em 2em 0px 2em;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
}

.m-menu ul li a,
.m-menu ul li label {
    display: block;
    text-align: left;
    padding: 0 15px;
    line-height: 47px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    font-size: 18px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    font-family: Manrope;
}

.m-menu ul li label.a-label__chevron::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-color: #333;
    border-style: solid;
    border-width: 1px 1px 0 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    margin-top: -5px;
    right: 16px;
}

.menu-logo path {
    fill: #425466 !important;
}

.m-menu ul li .-invisible {
    border-bottom: 0;
}

.menu-logo svg {
    width: 200px;
    margin: auto;
    display: block;
    margin-top: 1em;
    margin-bottom: 2em;
}

.m-menu .m-menu label.m-menu__toggle {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-bottom: 0;
    padding: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.m-menu__checkbox:checked~.m-menu__overlay {
    display: block;
}

.m-menu__checkbox:checked~.m-menu {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}


/* Pricing page */

.pricing-card {
    background-color: #F6FAFC;
    padding: 25px 30px;
}

.pricing-card h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
}

.blue-round_btn {
    background-color: #425EF8;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 50px;
    margin-bottom: 15px;
    margin-top: 70px;
    display: inline-block;
}

.pricing-divider {
    height: 10px;
    width: 100px;
    background: #00D4FF;
    margin: 0 auto;
    margin-bottom: 50px;
    display: inline-block;
    margin-bottom: 50px;
}

.pricing-card div.d-flex {
    margin-bottom: 20px;
}

#pricing-section .col-md-6:first-child .pricing-card {
    margin-right: 6%;
}

#pricing-section .col-md-6:nth-child(2) .pricing-card {
    margin-left: 6%;
}

#pricing-section {
    height: fit-content;
    max-height: fit-content;
    margin-bottom: 28px;
}

.header .sub-menu-menu a {
    color: #000 !important;
    text-decoration: none !important;
}

#pricing-section .row {
    max-width: 1200px;
    margin: auto;
    justify-content: center;
}

#pricing-section .check-icon,
#pricing-section .cancel-icon {
    width: 20px !important;
    margin-top: 0px !important;
}

@media (max-width: 767px) {
    #pricing-section .col-md-6:first-child .pricing-card {
        margin-right: 0px;
        margin-bottom: 40px;
    }
    #pricing-section .col-md-6:nth-child(2) .pricing-card {
        margin-left: 0px;
    }
    #pricing-section .header-content {
        transform: translateY(0px);
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 25%;
    }
    #pricing-section .col-md-6 {
        padding: 0px;
    }
}

@media (min-width: 768px) and (max-width: 1440px) {
    .header-background h1 {
        font-size: 5vw;
    }
    .header-background .video-content {
        display: flex;
        align-items: center;
        margin-top: 50px;
    }
    .video-wrap {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 25px;
        height: 0;
        max-width: 1920px;
        margin: 0 auto;
        width: 100%;
    }
    .video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 1080px;
    }
    .header-background {
        padding-bottom: 50px;
    }
}

@media (min-width: 768px) {
    .header-background h4 {
        position: absolute;
        top: 325px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-background h1 {
        line-height: 1.4;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .header-background:after {
        clip-path: polygon(0 0, 100% 0, 100% 150px, 0 43vw);
    }
    .header-background h4 {
        position: relative;
        top: 0px;
    }
    .header-background .video-content {
        margin-top: 0px;
    }
}


/* Contact page */

#contact-section .form-body {
    background: #F6FAFC;
    padding: 30px 40px 60px 40px;
    max-width: 1200px;
    margin: auto;
}

#contact-section h2 {
    font-size: 28px;
    line-height: 60px;
    font-weight: 700;
}

#contact-section .featured-divider {
    width: 100px;
    height: 10px;
    background-color: #00D4FF;
    display: block;
    margin-left: 0.75rem;
    margin-bottom: 32px;
}

#contact-section .header-content p {
    width: 100%;
}

#contact-section .form-subheading {
    margin-bottom: 50px;
}

#contact-section .header-content {
    transform: none;
}

#contact-section .header-content>div:first-child {
    padding-right: 50px;
}

#contact-section .header-content>div:last-child {
    padding-left: 50px;
    border-left: 10px solid #00D4FF;
}

#contact-section form>div {
    padding: 0 0;
    margin-bottom: 30px;
}

#contact-section form .form-control {
    border: none;
    border-radius: 0px;
}

#contact-section form input.form-control {
    padding: 15px 15px;
}

#contact-section form>div input:first-child {
    margin-right: 30px;
}

#contact-section form>div input:last-child {
    margin-left: 30px;
}

#contact-section form>div .form-control::placeholder {
    color: #000;
    font-size: 18px;
    font-weight: 300;
}

#contact-section #message {
    height: 160px;
}

#contact-section h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 23px;
}

#contact-section .support-heading {
    margin-top: 23px;
    margin-bottom: 18px;
}

#contact-section .blue-round_btn {
    margin-top: 18px;
}

#contact-section .submit_btn {
    margin-top: 0px;
    border: none;
    color: #fff;
}

@media (max-width: 767px) {
    #contact-section .form-body {
        padding: 30px 20px 50px 20px;
    }
    #contact-section .header-content>div:first-child {
        padding-right: 0px;
    }
    #contact-section .header-content>div:last-child {
        border: none;
        padding-left: 0px;
        margin-top: 50px;
    }
    #contact-section form>div input:first-child {
        margin-right: 5px;
    }
    #contact-section form>div input:last-child {
        margin-left: 5px;
    }
}


/*=======================================
Responsive style
======================================*/

@media screen and (max-width: 480px) {
    p {
      font-size: 14px;
    }
    .header-menu {
        display: none;
    }
    .header-content p {
      width: 100%;
    }
    .header-inner .custom-button {
        display: none;
    }
    .video-content {
      height: 250px;
    }
    .header-content h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .header-content h4 {
        width: 90%;
        font-size: 20px;
    }
    .header-asset iframe {
        width: 100%;
        height: 200px;
        max-width: 100% !important;
        margin-top: 0px !important;
    }
    #textbanner {
        padding: 0em 1em 0em 1em;
    }
    .header-background:after {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 95%);
    }
    #specs {
        padding: 8em 5% 9em 5%;
        clip-path: polygon(0 0%, 100% 5%, 100% 85%, 0% 100%);
    }
    .cardy {
        margin: 2rem;
        margin: 2rem 0;
        pointer-events: none;
    }
    p.carddesc {
        width: 100%;
    }
    #specs {
        padding: 3em 5% 3em 5%;
        clip-path: polygon(0 0%, 100% 5%, 100% 100%, 0% 96%);
    }
    #fraud .textcontent {
        padding-top: 4em;
        padding-right: 5%;
    }
    .clientsimg {
        padding: 10% 0;
    }
    .minicard {
        margin-bottom: 2em;
    }
    .minicard p {
        width: 100%;
    }
    .codeimg {
        width: 100%;
    }
    #getstarted {
        padding: 4% 5% 18% 5%!important;
    }
    .maincontent {
        margin-bottom: 2em;
    }
    .maincard {
        text-align: left;
    }
    .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }
    .maincard p {
        width: 100%;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .contact ul li {
        text-align: center;
    }
    svg.dark_logo {
        margin: auto;
        display: block;
        margin-bottom: 10px;
    }
    .footermenu h3 {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        text-decoration: underline;
    }
    .footermenu {
        text-align: center;
        margin: 10px 0em;
        display: none;
    }
    footer {
        padding-top: 3em;
    }
    .m-menu__header {
        justify-content: end;
        -webkit-justify-content: end;
    }
    .m-menu__overlay {
        position: fixed;
        ` height: 100%;
    }
    .m-menu {
        position: fixed;
    }
    header {
        z-index: 10;
    }
    .copyright p {
        color: #707070;
        font-size: 14px;
        text-align: center;
    }
    .header-inner {
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .header-logo {
        float: right;
    }
    label.m-menu__toggle {
        display: block;
        margin-top: 8px;
    }
    .m-menu__header span {
        text-indent: -40px;
    }
    .m-menu ul li a,
    .m-menu ul li label {
        line-height: 40px;
        font-size: 16px;
    }
    .ultitle {
        font-size: 18px;
    }
    .header-content h4 {
        font-size: 16px;
        width: auto;
    }
    .textcontent h2 {
        font-size: 24px;
    }
    .textcontent h4 {
        font-size: 22px;
        line-height: 30px;
    }
    h2.specheading {
        font-size: 24px;
    }
    h4.specsubhead {
        font-size: 22px;
        line-height: 30px;
    }
    .textcontent p {
        font-size: 16px;
        width: auto;
    }
    h2.cardheading {
        font-size: 18px;
    }
    p.carddesc {
        font-size: 16px;
    }
    .textcontent2 h4 {
        font-size: 24px;
    }
    .textcontent2 h2 {
        font-size: 22px;
        line-height: 30px;
    }
    .textcontent2 p {
        font-size: 16px;
        width: auto;
    }
    .maincontent h2 {
        font-size: 24px;
    }
    .maincontent p {
        font-size: 16px;
        width: auto;
    }
    #fraud .textcontent h4 br {
        display: none;
    }
    .header-asset {
        margin-top: 1rem;
    }
    .header-background {
        margin-bottom: 0;
        height: auto;
        padding-top: 110px;
    }
    #api .minicard {
        display: flex;
        align-items: start;
        column-gap: 30px;
        flex-direction: column;
    }
    .cardyslider.slick-slider .slick-slide {
        padding-left: 0;
        padding-right: 0;
        pointer-events: none;
    }
    .cardyslider .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cardyslider .slick-dots button {
        border: 0;
        margin: 0 5px;
        font-size: 0;
        height: 12px;
        width: 12px;
        border-radius: 50px;
        background-color: #c3c0c0;
    }
    .cardyslider .slick-dots .slick-active button {
        background-color: #fff;
    }
    .clientsimg img {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
         transform: scale(0.5);
    }
    .content-section.blue {
        padding: 5em 5% 5em 5%;
        background: #0A2540;
        clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
        z-index: 9;
        position: relative;
    }
    .menufooter .social-icons {
        left: 0px;
        justify-content: center;
    }
    #pricing-section:after {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 88%) !important;
    }
    #pricing-section .header-content > div:first-child {
        margin-bottom: 30px;
    }

    #pricing-section .blue-round_btn {
        margin-top: 30px;
    }
    #contact-section:after {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 95%);
    }
    .contact ul li:nth-child(2) {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .sub-menu-menu li:hover,
    .footermenu a:hover {
        text-decoration: underline;
        cursor: pointer;
        text-underline-offset: 3px;
    }
}

.slick-dots li {
    line-height: 13px;
}

.pricing-card p {
    color: #000;
}

.content-section h4 {
    max-width: 600px;
}
#contact-section p {
    color: #000;
}

@media screen and (min-width: 768px) {
  .raise_section {
    margin-top: -55px;
  }
  .blog-post {
    padding: 5%;
  }
}

@media screen and (max-width: 768px) {
  .raise_section {
      margin-top: -60px;
  }
  .phone_img_column {
    display: none;
  }
  .clientsimg {
    margin-bottom: 30px;
  }
}
