@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
    --primary: #00089E;
    --secondary: #00D4C8;
    --text: #313131;
    --light: #EFF5FF;
    --dark: #000;
    --white: #FFF;
    --ftitle: "Lexend", sans-serif;
    --fbody: "Poppins", sans-serif;
}
body {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    font-family: var(--fbody);
    line-height: 150%;
    overflow-x: hidden;
}
section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}
html .container {
    padding: 0 25px;
    width: 1370px;
    max-width: 100%;
}
html .container-lg {
    width: 1430px;
}
html .container-sm {
    width: 1200px;
    max-width: 100%;
}
html .container-xs {
    width: 1020px;
}
img,svg{
    height:auto;
    width:auto;
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--ftitle);
    font-weight: 400;
}
a{
    color:var(--primary);
    text-decoration: none;
    transition: all 0.4s;
}
a:hover{
    color:var(--dark);
    text-decoration: none;
}
p:last-child{
    margin-bottom:0;
}
::selection{
    color:var(--light);
    background:var(--primary);
}
img{
    max-width:100%;
    width:auto;
    height:auto;
}



header {
    padding-block: 30px;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    transition: all 0.4s;
}
.sticky header {
    background: rgb(10 29 75 / 65%);
    backdrop-filter: blur(8px);
    padding-block: 16px;
}
.logo a {
    display: block;
    width: 157px;
}
.hactions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.loginbtn a {
    font-family: var(--ftitle);
    display: inline-block;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: rgba(4, 13, 35, 0.1);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 40px;
}
.loginbtn a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}
.sitemenu {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-family: var(--ftitle);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}
.sitemenu .dots {
    width: 22px;
    min-width: 22px;
    height: 22px;
    position: relative;
}
.sitemenu .dots span {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
.sitemenu .dots span:nth-child(2) {
    bottom: 0;
    right: auto;
}
.sitemenu .dots span:nth-child(3) {
    bottom: 0;
    left: auto;
}
.sitemenu .dots span:last-child {
    top: auto;
    bottom: 0;
}
.sitemenu:hover .dots {
    animation: dothover 0.4s linear 1 forwards;
}
@keyframes dothover {
    0% {
        transform: scale(1) rotate(0);
    }
    50% {
        transform: scale(0.8) rotate(-90deg);
    }
    0% {
        transform: scale(1) rotate(-180deg);
    }
}
.hbanner {
    padding-block: 268px 147px;
    /* background-image: url('../images/banner-bg.jpg'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}
.hbanner:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(1, 8, 25, 0.5);
    box-shadow: inset 0px 0px 250px #010819;
}
.hbanner .container {
    width: 1012px;
}
.hbanner h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hbanner p {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
}
.hbanner .btn-wpr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
html .btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--ftitle);
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    transition: all 0.4s;
    --btn-line-height: 50px;
    --btn-bg: var(--secondary);
    --btn-radius: 10px;
}
html .btn .text {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
    height: var(--btn-line-height);
    background: var(--btn-bg);
    border-radius: var(--btn-radius);
    transition: inherit;
}
html .btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-line-height);
    aspect-ratio: 1;
    background: var(--btn-bg);
    border-radius: var(--btn-radius);
    transition: inherit;
}
html .btn-primary {
    color: var(--white);
    --btn-bg: var(--primary);
}
html .btn:hover {
    color: var(--white);
    --btn-bg: var(--primary);
    background: transparent;
}
html .btn-primary:hover {
    color: var(--primary);
    --btn-bg: var(--secondary);
}
html .btn-link {
    text-decoration: none !important;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-family: var(--ftitle);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 138%;
}
html .btn-link:hover {
    color: var(--secondary);
}

.cms-list {
    background-image: url('../images/cms-list-bg.jpg');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: 110px 242px;
    color: var(--white);
}
.cms-list ul {
    margin: 0;
    list-style: none;
    padding-left: 78px;
    width: 568px;
    max-width: 100%;
}
.cms-list ul li {
    font-family: var(--ftitle);
    font-size: 34px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 30px;
    padding-left: 41px;
    position: relative;
}
.cms-list ul li:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 3px;
    transform: rotate(45deg);
    position: absolute;
    left: 2px;
    top: 17px;
}
.cms-list ul li:last-child {
    margin-bottom: 0;
}
.shop-smart {
    padding: 0;
    background-image: url('../images/shop-smart-bg.jpg');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}
.shop-smart .container {
    width: 1166px;
}
.shop-smart .gx-5 {
    --bs-gutter-x: 135px;
}
.shop-smart .image {
    width: 428px;
    max-width: 100%;
}
.shop-smart .text img {
    display: block;
    width: 205px;
    margin-bottom: 30px;
}
.shop-smart .text h3 {
    font-size: 34px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0;
}
.support-sec {
    padding-block: 154px 188px;
    background-image: url('../images/support-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
}
.support-sec .text {
    width: 340px;
    max-width: 100%;
    margin-left: 61px;
}
.support-sec .text img {
    display: block;
    width: 98px;
}
.support-sec .text h2 {
    font-size: 44px;
    font-weight: 500;
    line-height: 140%;
    margin-block: 30px;
}

.myky-work-sec .g-4 {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
}
.title {
    margin-bottom: 60px;
}
.title h2 {
    color: var(--primary);
    font-size: 50px;
    font-weight: 300;
    line-height: 140%;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.title h2 span {
    color: var(--secondary);
}
.imagebox {
    padding: 24px 34px 0;
    background-color: rgba(252, 181, 59, 0.15);
    border-radius: 20px;
    border-bottom: 8px solid #FCB53B;
    color: var(--text);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.imagebox .txt {
    width: 100%;
    margin-bottom: 20px;
}
.imagebox .txt h4 {
    font-size: 26px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 8px;
}
.imagebox .txt p {
    font-size: 15px;
    line-height: 140%;
}
.imagebox .image {
    height: 322px;
    border: 1px solid rgba(10, 29, 75, 0.08);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    margin-top: auto;
}
.imagebox .image img {
    object-fit: cover;
    object-position: top center;
}
.imagebox.boxred {
    background-color: rgba(252, 120, 74, 0.15);
    border-color: #FC784A;
}
.imagebox.boxgreen {
    background-color: #F0F1FF;
    border-color: var(--primary);
}
.imagebox.boxblue {
    background-color: #E8FFFE;
    border-color: var(--secondary);
}
.imagebox:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}
.integrate-sec .container {
    width: 1092px;
}
.integrate-sec .title {
    margin-bottom: 50px;
}
.integrate-sec .title h2 {
    margin-bottom: 20px;
}
.integrate-sec .title p {
    font-size: 18px;
    line-height: 160%;
    width: 800px;
    max-width: 100%;
    margin-inline: auto;
}
.integrate-sec img {
    width: 706px;
    max-width: 100%;
    margin: 0 auto;
}
.coin-sec {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 212, 200, 0.2) 100%);
    padding-block: 48px 17px;
}
.coin-sec .image {
    width: 399px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    transform: translateX(145px);
}
.coin-sec .image:before {
    content: '';
    display: block;
    position: absolute;
    left: -125px;
    right: -175px;
    bottom: 27px;
    height: 17px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(1, 36, 78, 0.2) 0%, rgba(1, 36, 78, 0) 100%);
    border-radius: 50%;
}
.coin-sec .txt {
    width: 512px;
    max-width: 100%;
}
.coin-sec .txt h2 {
    font-size: 50px;
    line-height: 140%;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.coin-sec .txt p {
    line-height: 160%;
}
.coin-sec .txt .btn-wpr {
    margin-top: 30px;
}
.mc-sec {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}
.mc-sec .title h2 {
    color: var(--white);
    margin-bottom: 10px;
}
.mc-crsl-wpr {
    margin-right: -240px;
}
.mc-crsl .owl-stage-outer {
    overflow: visible;
}
.mc-crsl .owl-stage {
    display: flex;
}
.mc-crsl .item {
    height: 100%;
}
.mc-crsl .image-box {
    background: #121AB3;
    padding: 10px 10px 5px;
    border-radius: 25px;
    height: 100%;
}
.mc-crsl .image-box .image {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 5px;
}
.mc-crsl .image-box .image img {
    height: 100%;
    object-fit: cover;
}
.mc-crsl .image-box .text {
    padding: 16px;
}
.mc-crsl .image-box h4 {
    font-family: var(--fbody);
    line-height: 130%;
    margin-bottom: 10px;
}
.mc-crsl .image-box p {
    font-size: 14px;
    line-height: 150%;
}
html .mc-crsl .owl-nav {
    margin-top: 0;
    width: 1320px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: absolute;
    top: -130px;
    left: 0;
}
html .mc-crsl .owl-nav [class*="owl-"] {
    display: block;
    width: 34px;
    height: 34px;
    font-size: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    margin: 0;
}
html .mc-crsl .owl-nav [class*="owl-"]:before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.55005 0.800781L0.800049 4.55078L4.55005 8.30078" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
}
html .mc-crsl .owl-nav .owl-next {
    transform: scaleX(-1);
}
html .mc-crsl .owl-nav [class*="owl-"]:hover {
    background: var(--dark);
}
.mtitle {
    position: sticky;
    z-index: 1;
    top: 82px;
    margin-bottom: -240px;
}
.mtitle h2 {
    font-size: 60px;
    line-height: 130%;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 84px;
    background: linear-gradient(180deg, #FFFFFF 55.77%, rgba(255, 255, 255, 0) 100%);
    width: 640px;
    max-width: 100%;
    color:var(--primary);
}
.merchants-sec .item {
    position: sticky;
    top: 84px;
    margin-bottom: 50px;
}
.merchants-sec .item:nth-child(2) {
    top: 104px;
}
.merchants-sec .item:nth-child(3) {
    top: 124px;
}
.merchants-sec .item:nth-child(4) {
    top: 144px;
}
.merchants-sec .item:nth-child(5) {
    top: 164px;
}
.merchants-sec .item:last-child {
    margin-bottom: 0;
}
.merchants-sec .gx-5 {
    --bs-gutter-x: 80px;
}
.merchants-sec [class*="col-"]:has(.txt) {
    display: flex;
    align-items: flex-end;
    background: var(--white);
}
.merchants-sec .txt {
    margin-top: auto;
    width: 430px;
    max-width: 100%;
}
.merchants-sec .txt h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}
.merchants-sec .txt p {
    font-size: 16px;
    margin-bottom: 12px;
}
.merchants-sec .txt .btn-wpr {
    margin-top: 24px;
}
.merchants-sec .image {
    border: 10px solid var(--white);
    border-radius: 26px;
    overflow: hidden;
    height: 600px;
}
.merchants-sec .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customer-sec {
    background: #E8FFFE;
}
.customer-sec .mtitle h2 {
    background: linear-gradient(180deg, #E8FFFE 55.77%, rgba(255, 255, 255, 0) 100%);
}
.customer-sec [class*="col-"]:has(.txt) {
    background: #E8FFFE;
}
.customer-sec .image {
    border-color: #E8FFFE;
}
.ssr-sec {
    background: var(--white);
}
.ssr-sec .title {
    margin-bottom: 30px;
}
.ssr-sec .title h2 {
    font-size: 80px;
    line-height: 130%;
}
.ssr-sec .text p {
    line-height: 160%;
    padding-right: 50px;
}
.ssr-sec .iconbox-wpr {
    width: 616px;
    max-width: 100%;
    margin-top: 40px;
}
.ssr-sec .icon-box {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
}
.ssr-sec .icon-box:last-child {
    margin-bottom: 0;
}
.ssr-sec .icon-box .icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ssr-sec .icon-box h5 {
    font-family: var(--fbody);
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 0;
}
.ssr-sec .image {
    width: 504px;
    max-width: 100%;
}
.review-sec {
    padding-block: 100px;
    background-color: #E8FFFE;
}
.review-sec .title {
    margin-bottom: 100px;
    position: sticky;
    top: 100px;
}
.review-sec .container {
    width: 1490px;
}
.review-sec .title h2 {
    font-size: 180px;
    line-height: 100%;
    font-weight: 200;
}
.review-sec .g-4 {
    --bs-gutter-x: 50px;
    --bs-gutter-y: 65px;
}
[class*="col"]:nth-child(3n + 3) .review-box {
    transform: rotate(3deg);
}
.review-box {
    border: 1px solid rgba(0, 212, 200, 0.1);
    background: var(--white);
    border-radius: 20px;
    padding: 29px;
    transform: rotate(-3deg);

    transform-origin: center top; /* rotate around the top center so spacing is predictable */
    transition: transform .18s ease; /* small hover/animation nicety */
    margin-bottom: 24px; /* extra fallback spacing */
}
.review-box > p {
    font-size: 18px;
    line-height: 150%;
    font-weight: 300;
}
.review-box .rinfo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}
.review-box .rinfo img {
    display: block;
    width: 60px;
    min-width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
}
.review-box .rinfo h6 {
    font-size: 22px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 3px;
}
.review-box .rinfo p {
    color: #546181;
    font-family: var(--ftitle);
    font-size: 16px;
    font-weight: 300;
    line-height: 130%;
}
/* Apply rotation patterns per column position — placed AFTER the base .review-box rule */
.review-sec .row > [class*="col"]:nth-child(3n + 1) .review-box {
    transform: rotate(-4deg);
}
.review-sec .row > [class*="col"]:nth-child(3n + 2) .review-box {
    transform: rotate(0deg);
}
.review-sec .row > [class*="col"]:nth-child(3n + 3) .review-box {
    transform: rotate(4deg);
}
.faq-sec [class*="col-"]:has(.badge) {
    position: sticky;
    top: 102px;
}
html .badge-wp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}
html .badge {
    font-family: var(--ftitle);
    font-weight: 300;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: #E8FFFE;
    padding: 0 14px;
    border-radius: 10px;
}
.faq-sec .title {
    margin-bottom: 100px;
}
.faq-sec .title h2 {
    line-height: 130%;
}
.faq-sec .accordion {
    --bs-accordion-active-color: var(--primary);
    --bs-accordion-btn-color: var(--primary);
    --bs-accordion-color: var(--primary);
    padding-left: 72px;
}
.faq-sec .accordion-item {
    border-inline: 0;
    border-radius: 0;
    border-color: rgba(1, 36, 78, 0.14);
    color:var(--text);
}
html .accordion-button {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    padding: 28px 0;
    box-shadow: none !important;
}
html .accordion-button::after {
    width: 38px;
    min-width: 38px;
    height: 38px;
    background-color: var(--secondary);
    border-radius: 10px;
    background-image: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.001 4.58203V17.4172" stroke="%2300089E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.4187 11H4.5835" stroke="%2300089E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
}
html .accordion-button:not(.collapsed) {
    background: transparent;
}
html .accordion-button:not(.collapsed)::after {
    background-color: var(--primary);
    background-image: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.4187 11H4.5835" stroke="%23EFF5FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

html .accordion-body {
    padding: 0;
    padding-bottom: 28px;
    padding-right: 78px;
    font-size: 16px;
    line-height: 150%;
}
.nbt-sec {
    background: var(--primary);
    border-radius: 50px;
    margin-inline: 20px;
    padding-block: 54px 80px;
    color: var(--white);
}
.nbt-sec .title h2 {
    font-size: 70px;
    line-height: 120%;
    color: var(--white);
    padding-right: 110px;
}
.nbt-sec .btn-wpr {
    margin-top: 50px;
}
.nbt-sec .btn:hover {
    color: var(--primary);
    --btn-bg: var(--light);
}
.qrwpr {
    position: relative;
    padding: 90px;
    display: inline-block;
}
.qrwpr .image {
    width: 350px;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.qrwpr .image img {
    padding: 30px 38px;
    border-radius: 25%;
}
.qrwpr .box {
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
    border-top: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.qrwpr .box.b2,
.qrwpr .box.b4 {
    left: auto;
    right: 0;
    transform: scaleX(-1);
}
.qrwpr .box.b3 {
    top: auto;
    bottom: 0;
    transform: scaleY(-1);
}
.qrwpr .box.b4 {
    top: auto;
    bottom: 0;
    transform: scale(-1);
}
.qrwpr .box:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    position: absolute;
    right: -10px;
    bottom: -10px;
}
.iconbox-row {
    margin-top: 30px;
}
.nbt-sec .iconbox {
    color: var(--white);
    border: 1px solid #1921A8;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 20px;
    border-radius: 16px;
    margin-right: -1px;
}
.nbt-sec .iconbox .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nbt-sec .iconbox h5 {
    font-family: var(--fbody);
    font-size: 17px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 0;
    margin-top: auto;
}
.nbt-sec .iconbox:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    position: relative;
}

.ftop {
    padding-block: 70px;
}
.logocol .flogo {
    display: block;
    width: 118px;
    margin-bottom: 30px;
}
.logocol h3 {
    font-size: 19px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 10px;
}
.logocol .dwlink {
    display: block;
    width: 172px;
}
.logocol .dwlink:hover {
    transform: scale(0.9);
}
footer h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
    color:var(--primary);
}
footer ul.links {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer ul.links.menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
footer ul.links li {
    line-height: 100%;
    margin-bottom: 14px;
}
footer ul.links li:last-child {
    margin-bottom: 0;
}
footer ul.links a {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
    color: var(--text);
    min-width: 180px;
}
footer ul.links a:hover {
    color: var(--dark);
}
footer ul.links.menu a {
    min-width: 200px;
}
footer ul.cinfo {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer ul.cinfo li {
    width: 330px;
    max-width: 100%;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    color: var(--text);
    position: relative;
    padding-left: 40px;
    margin-bottom: 14px;
}
footer ul.cinfo li:last-child {
    margin-bottom: 0;
}
footer ul.cinfo li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    top: 0;
}
footer ul.cinfo li a {
    display: flex;
    align-items: center;
    min-height: 26px;
    color: var(--text);
}
footer ul.cinfo li p {
    display: flex;
    align-items: center;
    min-height: 26px;
    color: var(--text);
}
.fbottom .mtext {
    height: 81px;
    overflow: hidden;
    border-bottom: 1px solid #DDE5F2;
}
.fbottom .mtext h3 {
    font-weight: 600;
    font-size: 100px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.03em;
    color: rgba(0, 212, 200, 0.16);
    transform: translateY(-6px);
    margin-bottom: 0;
}
.fbottom > .row {
    padding-block: 20px;
}
.smwpr {
    display: flex;
    align-items: center;
    gap: 20px;
}
.smwpr h6 {
    font-family: var(--fbody);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}
.sicons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sicons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: #EFF5FF;
    color: var(--primary);
    border-radius: 50px;
    padding-top: 5px;
}
.sicons a:hover {
    background: var(--primary);
    color: var(--white);
}


.navmenu {
    position: fixed;
    z-index: 99;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    background: rgba(5, 9, 76, 0.25);
    backdrop-filter: blur(13px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.navmenu nav {
    width: 600px;
    background: var(--primary);
    position: relative;
    z-index: 1;
    padding: 30px 30px 0 50px;
    transition: all 0.4s;
    min-height: 100dvh;
    transition: all 0.4s;
    transform: translateX(100%);
}
.navmenu nav .navclose {
    margin-left: auto;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s;
}
.navmenu nav .navclose:hover {
    transform: scale(1.1);
}
.navmenu nav .navclose:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: var(--primary);
    transform: rotate(45deg);
    position: absolute;
    z-index: 1;
    inset: 0;
    margin: auto;
}
.navmenu nav .navclose span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    position: absolute;
    inset: 0;
    margin: auto;
    transform: rotate(45deg);
}
.navmenu nav .navclose span:last-child {
    transform: rotate(-45deg);
}
.navmenu nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.navmenu nav > ul > li > a {
    font-family: var(--ftitle);
    font-size: 38px;
    font-weight: 500;
    line-height: 110%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navmenu nav > ul > li:first-child > a {
    padding-top: 0;
}
.navmenu nav > ul > li > a span {
    display: block;
    width: 42px;
    height: 30px;
    transform: translateX(-20px);
    transition: all 0.4s;
}
.navmenu nav > ul > li > a span:after {
    content: '';
    display: block;
    width: 0;
    height: 30px;
    background-image: url('../images/arrow.svg');
    background-position: left center;
    background-size: 42px;
    background-repeat: no-repeat;
    transition: all 0.4s;
}
.navmenu nav > ul > li > a:hover {
    color: var(--secondary);
}
.navmenu nav > ul > li > a:hover span {
    transform: translateX(0);
}
.navmenu nav > ul > li > a:hover span:after {
    width: 42px;
}
.mshow .navmenu {
    opacity: 1;
    visibility: visible;
}
.mshow .navmenu nav {
    transform: translateX(0%);
}
.sqr-sec .images-wpr {
    width: 1200px;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
}
.sqr-sec .images-wpr img {
    width: 104px;
}
.text-primary{
    color:var(--primary) !important;
}
.banner-video {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}
