/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/*=== Basic css ===*/
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;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #090909;
    color: #fff;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), #FFF;
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    z-index: 999;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: linear-gradient(-205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), #FFF;
    color: #fff;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/*=== Header area start ===*/

.header-area {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 1px 0 6px;
    background: rgba(9, 9, 9, 0.54);
    backdrop-filter: blur(5.5px);
}

.header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-item-inner2 ul {
    display: flex;
    align-items: center;
}

.header-item-inner2 ul li a {
    font-family: 'Inter', sans-serif;
    color: #6D6D6E;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px 8px;
    margin: 0 5px;
    border-radius: 7px;
}

.header-item-inner2 ul li a:hover {
    color: #fff;
}

.header-item-inner2 ul li a.active {
    color: #fff;
    background: #282828;
}

.header-item-inner2 ul li:last-of-type a:hover {
    opacity: .8;
}

.header-item-inner3 a {
    font-family: 'Red Hat Display', sans-serif;
    color: #FFF;
    font-size: 15.25px;
    font-weight: 700;
    padding: 12px 17px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), #FFF;
}

.header-item-inner3 a:hover {
    background: linear-gradient(-205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), #FFF;
}

.header-item-inner4 {
    cursor: pointer;
}

.header-item-inner4 span {
    width: 30px;
    height: 3px;
    display: block;
    background: #fff;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header-item-inner4 span:nth-of-type(2) {
    margin: 7px 0;
}

.header-item-inner4:hover span {
    background: #64ADD6;
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #090909;
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.side-menu-inner .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-inner .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: #fff;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-inner .close:hover span {
    background: #64ADD6;
}

.side-menu-inner .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-inner .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-inner2 ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-inner2 ul li a {
    margin: 0 0 15px;
}

/*=== software area start ===*/

.software-area {
    background-image: url(../image/software-bg2.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 50% -5%;
    padding: 55px 0 0;
}

.software-area-inner {
    background-image: url(../image/software-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0 -10%;
}

.software-area-inner2 {
    background-image: url(../image/software-bg3.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 100% -20%;
}

.software-item-inner {
    max-width: 355px;
    margin: 0 auto 30px;
    padding: 4px 10px 4px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 49px;
    border: 1px solid #35363B;
    background: #151517;
}

.software-item-inner h6 {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.software-item-inner h6 img {
    max-width: 16px;
    margin-right: 3px;
}

.software-item-inner a {
    font-family: 'Inter', sans-serif;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.28px;
}

.software-item-inner a i {
    margin-left: 6px;
}

.software-item-inner a:hover {
    color: #5695D8;
}

.software-item-inner2 {
    margin-bottom: 54px;
}

.software-item-inner2 h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.software-item-inner2 h2 span {
    background: linear-gradient(0deg, #5695D8 0%, #5A9CD7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.software-item-inner2 p {
    color: #A6A6A6;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
}

.software-item-inner2 ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-item-inner2 ul li a {
    font-family: 'Inter', sans-serif;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 132px;
    height: 40px;
    padding-left: 13px;
    padding-right: 11px;
    margin: 0 6px;
    border-radius: 8px;
    background: linear-gradient(205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), linear-gradient(97deg, #E9158E 0%, #7C0DF5 99.76%), #FFF;
}

.software-item-inner2 ul li:last-of-type a {
    color: #A6A6A6;
    border-radius: 8px;
    border: 1px solid #272B36;
    background: #141416;
}

.software-item-inner2 ul li a:hover {
    opacity: .8;
}

.software-item-inner3 {
    max-width: 752px;
    margin: 0 auto;
}

.software-item-inner3 .row {
    --bs-gutter-x: 22px;
}

.software-item-inner4 {
    padding: 12px 5px 13px;
    border-radius: 8px;
    border: 1px solid #272B36;
    background: #0C0C0C;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.software-item-inner4 h2 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 3px;
}

.software-item-inner4 p {
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
}

.software-item-inner5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    border-radius: 0px 0px 78.85px 93.6px;
    background: linear-gradient(90deg, #6166DC 0%, #9397E8 100%), #D9D9D9;
}

.software-item-inner6 {
    padding: 8px;
    border-radius: 11px;
    background: #1C1C1C;
    box-shadow: 0px 51.5969px 30.6792px 0px rgba(0, 0, 0, 0.01), 0px 22.3122px 22.3122px 0px rgba(0, 0, 0, 0.06), -3px -2px 12.5506px 0px rgba(0, 0, 0, 0.07);
    position: absolute;
    left: -7px;
    top: -14px;
}

.software-item-inner7 {
    margin-top: -40px;
}

.software-item-inner7 img {
    display: block;
    margin: 0 auto;
}

/*=== supporting area start ===*/

.supporting-area {
    background-image: url(../image/supporting-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 50% calc(100% - 10px);
    padding: 25px 0 184px;
    position: relative;
    z-index: 9;
}

.supporting-area-inner {
    background-image: url(../image/supporting-bg2.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0 100%;
}

.supporting-area-inner2 {
    background-image: url(../image/supporting-bg3.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 100% 100%;
}

.supporting-item {
    text-align: center;
}

.supporting-item h6 {
    font-family: 'Inter', sans-serif;
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 12.289px;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 8px;
    background: linear-gradient(205deg, rgba(100, 173, 214, 0.16) 15.96%, rgba(85, 147, 217, 0.16) 50.05%, rgba(70, 121, 220, 0.16) 84.14%), rgba(255, 255, 255, 0.10);
    box-shadow: 0px 0.625px 2.5px 0px rgba(255, 255, 255, 0.40) inset;
    backdrop-filter: blur(1.875px);
    margin-bottom: 15px;
    display: inline-block;
}

.supporting-item h6 span {
    background: linear-gradient(0deg, #5695D8 0%, #5A9CD7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.supporting-item h2 {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.supporting-item p {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 99px;
}

.supporting-item ul {
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.supporting-item ul li a {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 22px;
    margin: 0 8px 11px;
    border-radius: 8px;
    border: 1px solid #26272C;
    background: #191919;
}

.supporting-item ul li:nth-of-type(2) a {
    border: 1px solid #18191E;
    background: #0F0F0F;
}

.supporting-item ul li:nth-of-type(3) a {
    background: linear-gradient(90deg, #6166DC 0%, #9397E8 100%), linear-gradient(205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), #FFF;
}

.supporting-item ul li:nth-of-type(4) a {
    border-radius: 8px;
    border: 1px solid transparent;
    background: linear-gradient(205deg, #64ADD6 15.96%, #5593D9 50.05%, #4679DC 84.14%), #FFF;
}

.supporting-item ul li:nth-of-type(6) a {
    border: 1px solid #18191E;
    background: #0F0F0F;
}

.supporting-item ul li a:hover {
    opacity: .8;
}

.supporting-item2 {
    position: absolute;
    left: 52px;
    top: 90px;
}

.supporting-item3 {
    position: absolute;
    right: 33px;
    top: 90px;
}

/*=== interaction area start ===*/

.interaction-area {
    padding: 100px 0 1px;
    border-bottom: 1px solid #272B36;
}

.interaction-item {
    background-image: url(../image/interaction-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 30px;
    position: relative;
    z-index: 9;
    max-width: 1282px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 40px;
    overflow: hidden;
}

.interaction-item-inner {
    background-image: url(../image/interaction-bg2.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 109% 60%;
}

.interaction-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 100%;
    border-radius: 14.5px 0px 0px 14.05px;
    background: #FFF;
}

.interaction-item-inner h2 {
    color: #FFF;
    text-shadow: 0px 4px 28.600000381469727px rgba(0, 0, 0, 0.20);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 10px;
}

.interaction-item-inner p {
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.interaction-item-inner2 {
    position: absolute;
    top: 46px;
    left: 42px;
}

.interaction-item-inner3 {
    position: relative;
    display: inline-block;
    margin-top: -20px;
    margin-bottom: -16px;
}

.interaction-item-inner3>img {
    display: block;
    margin: 0 auto;
}

.interaction-item-inner4 {
    position: absolute;
    top: 60px;
    left: -90px;
}

.interaction-item-inner5 {
    position: absolute;
    top: 20px;
    right: -5px;
}

.interaction-item-inner6 {
    padding: 6px 15px;
    border-radius: 11px;
    background: var(--zave-it-1440-x-810-default-nero, #FFF);
    box-shadow: 0px 51.5969px 30.6792px 0px rgba(0, 0, 0, 0.01), 0px 22.3122px 22.3122px 0px rgba(0, 0, 0, 0.06), -3px -2px 18px 0px rgba(0, 0, 0, 0.21);
    position: absolute;
    right: 17px;
    bottom: 16px;
}

.interaction-item-inner6 h6 {
    color: #090909;
    font-size: 15px;
    font-weight: 700;
}

.interaction-item2 p {
    color: #A6A6A6;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.5px;
}

/*=== feature area start ===*/

.feature-area {
    padding: 48px 0 70px;
    overflow: hidden;
    text-align: center;
}

.feature-area-inner {
    max-width: 1282px;
    margin: 0 auto;
}

.feature-area .row {
    --bs-gutter-x: 31px;
}

.feature-item h6 {
    font-family: 'Inter', sans-serif;
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 12.289px;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 8px;
    background: linear-gradient(205deg, rgba(100, 173, 214, 0.16) 15.96%, rgba(85, 147, 217, 0.16) 50.05%, rgba(70, 121, 220, 0.16) 84.14%), rgba(255, 255, 255, 0.10);
    box-shadow: 0px 0.625px 2.5px 0px rgba(255, 255, 255, 0.40) inset;
    backdrop-filter: blur(1.875px);
    margin-bottom: 15px;
    display: inline-block;
}

.feature-item h6 span {
    background: linear-gradient(0deg, #5695D8 0%, #5A9CD7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h2 {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 48px;
}

.feature-item2 {
    margin-bottom: 40px;
}

.feature-item2-inner {
    min-height: 235px;
}

.feature-item2-inner img {
    width: 100%;
}

.feature-item2 h2 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 9px;
}

.feature-item2 p {
    color: #737373;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    max-width: 310px;
    margin: 0 auto;
}

.feature-item3 {
    margin-top: -8px;
}

.feature-item4 {
    margin-top: 18px;
}

/*=== footer area start ===*/

.footer-area {
    border-top: 1px solid #272B36;
    padding: 7px 0 19px;
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-item-inner2 p {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 700;
}

.footer-item-inner3 ul {
    display: flex;
    align-items: center;
}

.footer-item-inner3 ul li a {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 700;
}

.footer-item-inner3 ul li span {
    width: 1px;
    height: 11px;
    display: block;
    margin: 0 15px;
    border-radius: 16px;
    background: #272B36;
}

.footer-item-inner3 ul li a:hover {
    color: #5695D8;
}