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

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

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

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

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

a,
button {
    border: none;
    outline: 0;
    text-decoration: none;
    background-color: none
}



body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #101010;
}

.simple-btn {
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 15px 25px;
    color: white;
    transition: all .3s;
}

.simple-btn:hover {
    background-color: white;
    color: black;
}

header .batn i {
    font-size: 30px;
    color: #CF1C23;
}


.hero {
    background-image: url(../images/hero-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.hero .content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 84vh;
    justify-content: center;
}

.hero .content img {
    height: 75px;
}

.hero .content h1 {
    font-size: 76px;
    font-family: 'EingrantchMono';
    color: white;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 50px;
}

.hero .content h1 span {
    background: linear-gradient(to left, #CF1C23, #4B65E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .content p {
    font-size: 18px;
    color: white;
    margin: 50px 0 70px;
}

.hero .content .batn {
    display: flex;
    gap: 20px;
}

.hero .content .batn .first {
    background-color: white;
    color: black;
}

.hero .content .batn .first:hover {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.offcanvas {
    background-color: rgb(7, 7, 7);
}

.offcanvas ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    gap: 50px;
    font-size: 20px;
}

.offcanvas ul a {
    color: white;
}


.offcanvas ul a::before{
    content: '';
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: -10px;
    left: 0;
    background-color: #4B65E0;
    transition: all .3s;
}
.offcanvas ul a:hover::before{
    width: 50%;
}
.offcanvas ul a:hover::after{
    width: 50%;
}
.offcanvas ul a::after{
    content: '';
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: -10px;
    right: 0;
    background-color: #CF1C23;
    transition: all .3s;

}

@media (max-width: 1600px) {
    .hero .content img {
        height: 65px;
    }

    .hero .content h1 {
        font-size: 66px;
    }

    .simple-btn {
        font-size: 16px;
    }

    header .links a {
        font-size: 16px;
    }

    header img {
        height: 35px;
    }

    .hero .content p {
        font-size: 16px;
        margin: 40px 0 60px;
    }
}

@media (max-width: 1400px) {
    .hero .content img {
        height: 55px;
    }

    .hero .content h1 {
        font-size: 58px;
    }

    .simple-btn {
        font-size: 16px;
    }

    header .links a {
        font-size: 14px;
    }

    header img {
        height: 30px;
    }

    .hero .content p {
        font-size: 16px;
        margin: 40px 0 60px;
    }

    .simple-btn {
        font-size: 14px;
        padding: 13px 22px;
    }

    header .batn i {
        font-size: 25px;
    }
}

@media (max-width: 1000px) {
    header img {
        height: 25px;
    }

    header .links {
        gap: 30px;
    }

    .simple-btn {
        padding: 11px 18px;
    }

    .hero .content img {
        height: 45px;
    }

    .hero .content h1 {
        font-size: 48px;
    }
}

@media (max-width: 800px) {
    header .links {
        display: none;
    }

    .hero .content h1 {
        font-size: 40px;
        margin-top: 40px;
    }

    .hero .content p {
        margin: 30px 0 40px;
    }
}

@media (max-width: 630px) {
    .hero .content h1 {
        font-size: 35px;
    }

    .hero .content {
        padding: 0 16px;
    }

    .hero .content p {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 540px) {
    .hero .content h1 br {
        display: none;
    }

    header {
        padding: 20px 3vw;
    }
}


.introduction{
    padding: 0 5vw;
    margin-top: 100px;
    margin-bottom: 50px;
}


.platform {
    background-color: #101010;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 150px 3vw;
    text-align: center;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    bottom: 42px;
}

h1 {
    font-size: 90px;
    font-family: 'EingrantchMono';
    color: white;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

h1 span {
    background: linear-gradient(to right, #4B65E0, #CF1C23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p {
    font-size: 18px;
    color: white;
    margin: 60px 0;
    text-align: center;
    line-height: 1.7;
}

h5 {
    font-size: 25px;
    color: white;
    font-family: 'EingrantchMono';
    text-transform: uppercase;
    background: linear-gradient(to right, #4B65E0, #CF1C23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}


.platform .cards-area {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 70px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.platform .cards-area .platform-card {
    width: 340px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all .3s;
}
.services .cards-area .platform-card {
    min-height: 400px;
    align-items: flex-start !important;

}
.services .cards-area .platform-card li{
    list-style: disc;
    color: #9b9b9b;
    margin-left: 20px;
}
.services .cards-area .platform-card .text{
    align-items: flex-start !important;

}
.services .cards-area .platform-card p{
    text-align: start;
}
.services .cards-area .platform-card b{
    text-align: start !important;
}

.platform .cards-area .platform-card:hover {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.4);

}

.platform .cards-area .platform-card img {
    height: 90px;
    margin-bottom: 30px;
}

.platform .cards-area .platform-card .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}

.platform .cards-area .platform-card .text b {
    font-size: 24px;
    color: white;
    font-weight: 600;
    line-height: 1.6;
}

.platform .cards-area .platform-card .text p {
    font-size: 18px;
    color: #9b9b9b;
    margin-top: 15px;
    line-height: 1.5;
}






.multi-agent {
    margin-top: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.multi-agent h1 {
    padding: 0 3vw;
}

.multi-agent .p {
    padding: 0 3vw;
}

.multi-agent h5 {
    padding: 0 3vw;
}

.multi-agent .multi-agent-slider {
    width: 100%;
    display: flex !important;
    margin-top: 60px;
}

.multi-agent .multi-agent-slider .slick-next {
    right: 35px;
    z-index: 10;

}

.multi-agent .multi-agent-slider .slick-track {
    width: 4000px !important;
}

.multi-agent .multi-agent-slider .slick-prev {
    left: 55px;
    z-index: 10;
}

.multi-agent .button-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
}

.multi-agent .button-wrapper button {
    background-color: transparent;
}

.multi-agent .button-wrapper button.button-left {
    position: absolute;
    left: 2rem;
    z-index: 2;
}

.multi-agent .button-wrapper button.button-right {
    position: absolute;
    right: 2rem;
    z-index: 2;
}

.multi-agent .button-wrapper button.slick-disabled {
    display: none !important;
}

/* .button-right{
    height: 70px;
    width: 70px;
    background-color: #CF1C23;
    border-radius: 100px;
} */

.multi-agent .multi-agent-slider .slick-dots li button:before {
    color: white;
    opacity: 1;
    height: 12px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #ffffff !important;
    outline: 2px solid rgb(255, 255, 255);
    border-radius: 100px;
    height: 12px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.multi-agent .agent-card {
    height: 328px;
    width: 295px !important;
    border-radius: 30px;
    border: 1px solid white;
    background: linear-gradient(to top, #0e0e0e, #1f1f1f);
    padding: 10px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-right: 40px;
}

.multi-agent .slick-dots {
    bottom: -50px;
}

.multi-agent .agent-card img {
    margin-top: 47px;
    height: 60px;
    position: relative;
    z-index: 2;
}

.multi-agent .agent-card .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.multi-agent .agent-card b {
    font-size: 20px;
    display: inline-block;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.multi-agent .agent-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    text-align: center;
    line-height: 1.6;
}

.multi-agent .agent-card a {
    font-size: 16px;
    display: inline-block;
    width: 100%;
    height: 40px;
    color: white;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.multi-agent .agent-card a img {
    height: 20px;
    margin: 0;
}

.multi-agent .agent-card .gradient {
    height: 100%;
    width: 100%;
    position: absolute;
    top: -5%;
    left: 0;
    transform: translateY(-50%);
    opacity: .5;
}

.multi-agent a {
    margin-top: 100px;
}

.multi-agent .agent-gradient {
    position: absolute;
    width: 65%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}








.development {
    margin-top: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 3vw;
}

.development .development-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10vw;
    margin-top: 80px;
}

.development .development-card {
    width: 442px;
    padding: 5px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .3s;
}

.development .development-card:hover {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.4);

}

.development .development-card img {
    width: 100%;
    border-radius: 30px;
}

.development .development-card .text {
    padding: 30px 20px;
}

.development .development-card .text b {
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
}

.development .development-card .text p {
    margin-top: 12px;
    color: white;
    font-size: 14px;
    line-height: 1.7;
}

.development a {
    margin-top: 60px;
}

.development .development-gradient {
    position: absolute;
    width: 75%;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}



.union {
    padding: 0 15vw;
    margin-top: 350px;
}


.solutions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 350px;
    position: relative;
    padding: 0 3vw;
}

.solutions .solution-cards {
    width: 85%;
    margin-top: 130px;
}

.solutions .solution-card {
    width: 100%;
    margin-bottom: 38px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 390px;
}

.solutions .solution-card .img {
    padding: 10px;
    height: 100%;
}

.solutions .solution-card img {
    height: 100%;
    border-radius: 30px;
}

.solutions .solution-card .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 70px;
    width: 50%;
}

.solutions .solution-card .text h4 {
    text-transform: uppercase;
    font-size: 46px;
    background: linear-gradient(to right, #4B65E0, #CF1C23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'EingrantchMono';
}

.solutions .solution-card .text p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    line-height: 1.7;
    margin-top: 30px;
}

.solutions a {
    position: relative;
    bottom: 100px;
}

.solutions .solution-gradient {
    position: absolute;
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, #101010, #101010c9, #101010a4, #10101000);
    bottom: 80px;
    left: 0;
}





.feature {
    margin-top: 280px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.feature .feature-gradient {
    position: absolute;
    top: -190px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: -1;
}

.feature .platform-card {
    background-color: rgba(0, 0, 0, 0.01);
}

.feature .platform-card:hover {
    background-color: rgba(255, 255, 255, 0.01);
}



.services {
    padding: 0 3vw;
    margin-top: 350px;
}

.services .platform-card {
    align-items: center !important;
    padding: 30px 20px !important;
    border-radius: 40px !important;
    background: linear-gradient(to top, #0e0e0e7e, #1f1f1f77);
}

.services .platform-card .text {
    align-items: center !important;
    text-align: center !important;
}

.services .platform-card .text p {
    font-size: 14px !important;
}



.agency {
    margin-top: 350px;
    margin-bottom: 275px;
    padding: 0 3vw;
}

.agency .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
    margin: auto;
    gap: 180px;
    margin-top: 90px;
}

.agency .wrapper .img-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;

}

.agency .wrapper .img-txt img {
    height: 72px;

}

.agency .wrapper .img-txt::after {
    content: '';
    height: 2px;
    width: 285px;
    top: 36px;
    left: 167px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);

}

.agency .wrapper .img-txt.last::after {
    display: none;
}

.agency .wrapper .img-txt p {
    font-size: 14px;
    color: white;
    width: 220px;
    line-height: 1.7;
}



.sign-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #4B65E0, #CF1C23);
    width: 95%;
    margin: auto;
    border-radius: 40px;
    padding: 90px 3vw;
}

.sign-up img {
    height: 40px;
    margin-bottom: 50px;

}

.sign-up .batn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sign-up .first {
    background-color: white;
    color: black;
}

.sign-up .first:hover {
    background-color: transparent;
    color: white;
}







@media (max-width: 1600px) {
    h1 {
        font-size: 80px;
    }

    .p {
        margin: 50px 0;
    }

    .multi-agent {
        margin-top: 150px;
    }

    .development {
        margin-top: 250px;
    }

    .union {
        margin-top: 250px;
    }

    .solutions {
        margin-top: 250px;

    }

    .feature {
        margin-top: 250px;
    }

    .services {
        margin-top: 250px;
    }

    .agency {
        margin-top: 250px;
        margin-bottom: 200px;
    }

    .agency .wrapper {
        gap: 100px;
    }

    .agency .wrapper .img-txt::after {
        width: 200px;
    }

    .development .development-card {
        width: 332px;
    }
}

@media (max-width: 1400px) {
    .platform {
        padding: 90px 3vw;
    }

    h1 {
        font-size: 70px;
    }

    .p {
        margin: 40px 0;
        font-size: 16px;
    }

    h5 {
        font-size: 22px;
    }

    .platform .cards-area .platform-card .text b {
        font-size: 22px;
    }

    .platform .cards-area .platform-card .text p {
        font-size: 16px;
    }

    .platform .cards-area .platform-card img {
        height: 80px;
    }

    .platform .cards-area .platform-card {
        width: 300px;
        padding: 25px;
    }

    .platform .cards-area {
        margin: 50px 0;
    }

    .multi-agent {
        margin-top: 50px;
    }

    .multi-agent .multi-agent-slider {
        margin-top: 50px;
    }

    .multi-agent a {
        margin-top: 70px;
    }

    .development .development-cards {
        margin-top: 50px;
    }

    .development .development-gradient {
        width: 146%;
        top: -300px;
    }

    .development a {
        margin-top: 50px;
    }

    .development {
        margin-top: 180px;
    }

    .union {
        margin-top: 180px;
        padding: 0 3vw !important;
    }

    .solutions {
        margin-top: 180px;
    }

    .solutions .solution-cards {
        width: 90%;
        margin-top: 50px;
    }

    .services {
        padding: 0 3vw;
        margin-top: 180px;
    }

    .agency {
        margin-top: 180px;
        margin-bottom: 150px;
    }

    footer p {
        font-size: 14px;
    }

    footer img {
        height: 25px;
    }

    footer {
        padding: 20px 3vw;
    }

}

@media (max-width: 1200px) {
    h1 {
        font-size: 60px;
    }

    .p {
        margin: 30px 0;
    }

    .solutions .solution-card {
        height: 300px;
    }

    .solutions .solution-card .text h4 {
        font-size: 35px;
    }

    .solutions .solution-card .text p {
        font-size: 16px;
        margin-top: 10px;
    }

    .solutions .solution-card .text {
        padding-left: 40px;
    }

    .agency .wrapper {
        gap: 30px;
    }

    .agency .wrapper .img-txt::after {
        width: 136px;
        top: 26px;
    }

    .agency .wrapper .img-txt img {
        height: 60px;
    }

    .agency .wrapper .img-txt {
        gap: 10px;
    }

    /* .agency .wrapper .img-txt p {
        font-size: 12px;
    } */

    .sign-up img {
        height: 30px;
        margin-bottom: 30px;
    }

    .feature .feature-gradient {
        width: 120%;
    }
}

@media (max-width: 1000px) {
    h1 {
        font-size: 50px;
    }

    .feature .feature-gradient {
        width: 184%;

    }

    .agency .wrapper {
        flex-wrap: wrap;
    }

    .agency .wrapper .img-txt.third::after {
        display: none;
    }

    .solutions .solution-gradient {
        bottom: 70px;
    }
}


@media (max-width: 925px) {
    .development .development-card .text {
        padding: 15px 10px;
    }

    .development .development-card .text b {
        font-size: 18px;
    }

    .development .development-card .text p {
        font-size: 12px;
    }

    .development .development-card {
        width: 300px;
    }

    .solutions .solution-card .text p {
        font-size: 14px;
    }

    .development .development-gradient {
        width: 200%;
    }
}

@media (max-width: 957px) {
    .agency .wrapper .img-txt.second::after {
        display: none;
    }

    .agency .wrapper .img-txt.third::after {
        display: block;
    }
}

@media (max-width: 900px) {
    .development .development-cards {
        padding: 0;
    }

    .multi-agent .agent-gradient {
        width: 125%;
        top: -130px;
    }
}

@media (max-width: 830px) {
    .solutions .solution-card {
        flex-direction: column-reverse;
        height: auto;
        padding: 30px;
    }

    .solutions .solution-card .text {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .solutions .solution-card .img {
        height: unset;
        width: 100%;
    }

    .solutions .solution-card .img {
        padding: 0;
    }

    .solutions .solution-card img {
        border-radius: 30px;
        width: 100%;
    }
}

@media (max-width: 777px) {
    .multi-agent .agent-card {
        margin-right: 20px;
    }
}

@media (max-width: 750px) {
    h1 {
        font-size: 40px;
    }

    .p {
        font-size: 14px;
    }

    h5 {
        font-size: 18px;
    }

    .p {
        margin: 10px 0 30px;
    }
}

@media (max-width: 660px) {
    .platform .cards-area .platform-card {
        width: 100%;
    }

    .development .development-card {
        width: 90%;
    }

    .feature .feature-gradient {
        width: 200%;
        top: 160px;
    }

    .multi-agent .agent-gradient {
        width: 145%;
        top: 0px;
    }

    .development .development-gradient {
        width: 300%;
        top: 610px;
    }
}

@media (max-width: 625px) {
    .agency .wrapper .img-txt::after {
        display: none;
    }

    .agency .wrapper .img-txt.third::after {
        display: none;
    }

    h5 {
        font-size: 16px;
        line-height: 1.5;
    }

    .solutions .solution-cards {
        width: 95%;
    }

    .development .development-card {
        width: 95%;
    }
}

@media (max-width: 530px) {
    .multi-agent .agent-gradient {
        width: 165%;
        top: 140px;
    }

    .multi-agent .multi-agent-slider {
        width: 100%;
    }

    .multi-agent {
        padding: 0;
    }

    .multi-agent h1 {
        padding: 0 3vw;
    }

    .multi-agent p {
        padding: 0 3vw;
    }

    .slick-list {
        padding-left: 20px !important;
    }

    .solutions .solution-card {
        padding: 20px;
    }
    .multi-agent .button-wrapper button.button-right{
     display: none;
    }
}
    .multi-agent .button-wrapper button.button-left{
     display: none;
    }
}