@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h5,
h4,
h6,
p,
ul,
li,
figure {
    margin: 0;
    line-height: 1.2;
}

:root {
    --blue: #614dde;
    --skyblue: #0095d9;
}

.nav-link:focus-visible {
    box-shadow: none;
}

section {
    padding: 100px 0;
}

h2 {
    font-size: 53px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
}

h2 span {
    font-weight: 400;
}

p {
    color: #000000;
}

p,
li {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 300;
}

html,
body {
    font-family: 'Gotham';
    font-display: swap;
}

.container {
    max-width: 100%;
    padding: 0 270px;
}

:focus-visible {
    outline: 0;
}


/* banner section css start */

.banner {
    background: linear-gradient(rgb(0 0 0 / 0%), rgba(0, 0, 0, 0)), url("../img/banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    color: #ffffff;
    padding: 0;
    position: relative;
    place-content: center;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 50px;
    left: 80px;
}

.banCon h1 {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 300;
    width: fit-content;
    text-transform: uppercase;
}

.banCon h1 span {
    color: var(--green);
    font-weight: 900;
}

.banCon {
    position: relative;
    z-index: 1;
    place-content: end;
    padding-top: 80px;
}

.banCon h2 {
    font-size: 40px;
    font-weight: 300;
    padding: 20px 0;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
}

.banCon a {
    /* border-radius: 5px; */
    background: #088FD9;
    background: linear-gradient(134deg, rgba(8, 143, 217, 1) 0%, rgba(78, 92, 221, 0.98) 86%);
    color: #ffffff;
    padding: 10px 30px;
    text-decoration: none;
    display: block;
    width: fit-content;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.5s;
}

.banCon h2 span {
    color: #0094d8;
    font-weight: 900;
}

.bothbtn {
    display: flex;
    gap: 10px;
}

.banCon .bothbtn a:last-child {
    border: 2px solid;
    border-image: linear-gradient( 134deg, rgba(8, 143, 217, 1) 0%, rgba(78, 92, 221, 0.98) 86%) 1;
    background: transparent;
    transition: all 0.5s ease;
}

.banCon .bothbtn a:last-child:hover {
    background: linear-gradient(134deg, rgba(8, 143, 217, 1) 0%, rgba(78, 92, 221, 0.98) 86%);
    border-radius: 0;
}


/* ==========================
   Secure Section
========================== */

.secure {
    position: relative;
    overflow: hidden;
}

.secure .heading {
    padding-bottom: 50px;
}

.secure .heading h2 {
    padding-bottom: 10px;
}

.secure .cdA {
    display: flex;
    flex-wrap: wrap;
    padding-right: 250px;
    gap: 0;
}

.secure .cdA .conCard {
    width: 50%;
    padding: 25px;
    position: relative;
    transition: all .45s ease;
    cursor: pointer;
    overflow: hidden;
}


/* Divider */

.secure .cdA .conCard:first-child,
.secure .cdA .conCard:nth-child(2) {
    border-bottom: 2px solid #d2d1ff;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.secure .cdA .conCard .txt {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

.secure .cdA .conCard .txt figure {
    width: 90px;
    flex-shrink: 0;
    transition: .5s;
}

.secure .cdA .conCard .txt h3 {
    color: var(--skyblue);
    transition: .4s;
}

.secure .cdA .conCard p {
    padding-right: 100px;
    position: relative;
    z-index: 2;
    transition: .4s;
}


/* Background */

.secure .cdA .conCard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff4ff, #ffffff);
    opacity: 0;
    transform: scale(.9);
    transition: .45s ease;
}


/* Glow */

.secure .cdA .conCard::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(82, 116, 255, .12);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    filter: blur(40px);
    opacity: 0;
    transition: .5s;
}


/* Hover */

.secure .cdA .conCard:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(35, 53, 120, .12), 0 6px 18px rgba(0, 0, 0, .05);
    border-radius: 20px;
}

.secure .cdA .conCard:hover::before {
    opacity: 1;
    transform: scale(1);
}

.secure .cdA .conCard:hover::after {
    opacity: 1;
}

.secure .cdA .conCard:hover figure {
    transform: rotate(-8deg) scale(1.08);
}

.secure .cdA .conCard:hover h3 {
    color: #3758ff;
}

.secure .cdA .conCard:hover p {
    color: #333;
}


/* Floating image animation */

.secure .cdA .conCard figure img {
    transition: .45s;
}

.secure .cdA .conCard:hover figure img {
    transform: translateY(-6px);
}


/* Side Images */

.secure>figure {
    position: absolute;
    left: 0;
    top: 0;
}

.secure figure.sf {
    left: auto;
    right: 0;
    bottom: 0;
    top: auto;
}


/* need section css start */

section.supNew {
    margin-top: 0;
    background: #f9f9f9;
}

.supNew .container>.heading {
    margin-bottom: 210px;
    text-align: center;
}

.supSlider {
    width: 100%;
}

.supSlider img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.supSlider figure {
    padding: 50px;
}

.supSlider .swiper-pagination-bullet {
    background: #2c2a2a;
    opacity: .5;
}

.supSlider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #4f6fff;
}

.subSlider .repoCon {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 0px;
    /* box-shadow: 5px 2px 40px 0px #0000001a; */
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    height: 100%;
}

.subSlider .repoCon h3 {
    /* background: #e5e5e5ad; */
    padding: 15px 40px;
    font-size: 30px;
    /* border-bottom: 2px solid #000; */
    margin: 0;
    cursor: pointer;
}

.subSlider .item:hover {
    top: 47%;
}

.subSlider .item.active:hover {
    top: 50%;
}

.subSlider .repoCon .row {
    padding: 50px 40px;
    height: calc(100% - 57px);
    /* gap: 50px; */
    --bs-gutter-x: 0;
}

.subSlider .item.active .repoCon {
    border: 1px solid var(--blue);
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.14);
}

.subSlider .item.active .repoCon h3 figure,
.subSlider .item.active:hover .repoCon h3 figure {
    top: -100px;
}

.subSlider .repoCon h3 {
    display: flex;
    justify-content: space-between;
}

.subSlider .repoCon:hover h3 figure {
    top: 0;
}

.subSlider .repoCon h3 figure {
    padding: 0;
    height: auto;
    width: 40px;
    /* background: red; */
    border-radius: 50%;
    height: 40px;
    border: 2px solid var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    /* rotate: -35deg; */
    position: relative;
    top: -100px;
    transition: all 0.5s;
}

.subSlider .repoCon h3 figure img {
    width: 60%;
}

.subSlider .repoCon h3 span {
    width: 90%;
    color: #0095d9;
    font-weight: 600;
}

.subSlider .repoCon .row .col-lg-6 {
    height: 100%;
}

.topDivs .subSlider .repoCon {
    position: absolute;
    top: 0;
    left: 0;
}

.subSlider {
    position: relative;
    height: 621px;
}

.subSlider .item {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    z-index: -1;
    transition: all 0.5s;
    cursor: pointer;
    /* border: 1px solid; */
    /* border-radius: 30px; */
}

.subSlider .item h3 span:first-child {
    border: 2px solid var(--skyblue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0095d9;
    font-weight: 500;
    font-size: 26px;
}

.solution .sameBtn a i {
    font-size: 20px;
}

.solution .row .col-lg-4 .sameBtn a {
    display: none;
}

.solution .row .col-lg-4 .sameBtn a.active {
    display: inline;
}

.subSlider .item.active {
    width: 100%;
    z-index: 9;
}

.subSlider .item.item2 {
    margin-top: -57px;
    /* background: red; */
    z-index: 6;
    /* width: 95%; */
}

.subSlider .item.item3 {
    margin-top: -114px;
    z-index: 5;
    /* width: 90%; */
}

.subSlider .item.item4 {
    margin-top: -171px;
    /* width: 85%; */
    z-index: 4;
}

.subSlider .item.item5 {
    margin-top: -228px;
    /* width: 80%; */
    z-index: 3;
}

.subSlider .item.item6 {
    margin-top: -285px;
    z-index: 2;
}

section.supNew {
    margin-top: 0;
    background: #f3f3ff;
}

.supNew .container>.heading {
    margin-bottom: 330px;
    text-align: center;
}

.subSlider .repoCon .row {
    padding: 50px 40px;
    height: calc(100% - 57px);
    --bs-gutter-x: 0;
}

.subSlider .repoCon .row .col-lg-6 {
    height: 100%
}

.repoCon figure {
    height: 100%;
    padding-left: 95px;
}

.repoCon figure img {
    height: 100%;
    width: 100%;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.14);
}

.repoCon .heading h4 {
    padding-bottom: 22px;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
}

.repoCon .heading {
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 442px;
}

.repoCon .heading ul li {
    position: relative;
    list-style: none;
    padding-bottom: 12px;
}

.repoCon .heading ul li::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('../img/right.webp');
    background-repeat: no-repeat;
    background-size: contain;
    left: -30px;
    top: 7px;
}

.swiper-pagination-bullet {
    background: #94bced;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
    border-radius: 5px;
}


/* need section css end */


/* platfrom section css start */

.platfrom {
    background-image: url('../img/pla.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.platfrom ul li {
    position: relative;
    list-style: none;
}

.platfrom ul li::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    background-image: url(../img/right.webp);
    background-repeat: no-repeat;
    background-size: contain;
    left: -15px;
    top: 0px;
}

.versatile .row {
    border-bottom: 2px solid #95e4ff;
}

.platfrom .heading {
    text-align: center;
    padding-bottom: 50px;
}

.platfrom .heading h2 {
    padding-bottom: 10px;
}

.platfrom .platAll {
    display: flex;
    gap: 30px;
}

.platfrom .platAll h3 {
    color: var(--skyblue);
    font-size: 18px;
    font-weight: 900;
}

.platfrom .platAll h3 span {
    color: #000;
}

.platfrom .platAll p {
    font-size: 14px;
    padding: 10px 0 20px;
}

.platfrom .platAll ul li {
    font-size: 12px;
}

.platfrom .platAll ul {
    display: flex;
    gap: 25px;
    padding-left: 17px;
}

.platfrom .platAll .plat {
    position: relative;
    height: 560px;
    border-left: 2px solid #dedede;
    padding-left: 5px;
}

.platfrom .platAll .plat:first-child,
.platfrom .platAll .plat:nth-child(3),
.platfrom .platAll .plat:nth-child(5) {
    top: 130px;
    height: calc(560px - 130px);
}


/* platfrom section css end */


/* Data-Driven css start  */

.data-driven small {
    font-size: 30px;
}

.boxss {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 560px;
}

.box:nth-last-child(2) img {
    filter: brightness(90) invert(1);
}

.box {
    padding: 22px;
    border: 1px solid #1d1d1d;
    border-radius: 0 18px 0 18px;
    transition: .3s;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.box figure {
    margin: 0 0 15px;
}

.box figure img {
    width: 42px;
}

.box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.box p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.box:hover {
    background-color: #5b4ce5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid #5b4ce5;
}

.box:hover h3,
.box:hover p {
    color: #fff;
}

.box:hover img {
    filter: brightness(0) invert(1);
}

.dtline {
    position: absolute;
    margin-top: -370px;
    margin-left: -288px;
    z-index: -1;
}


/* Data-Driven css end  */


/* built section css start */

.built {
    padding: 100px 0;
    background: #f5f5fb;
}

.heading {
    margin-bottom: 60px;
}

.heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #5546dd;
    text-transform: uppercase;
}

.cardT {
    padding: 50px;
    height: 100%;
}

.blue-card {
    background: #1198d7;
    color: #fff;
}

.light-card {
    background: #d9d3ff;
    color: #222;
}

.purple-card {
    background: linear-gradient(135deg, #5948ef, #6649d8);
    color: #fff;
}

.cts {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 15px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, .35);
}

.light-card .cts {
    border-color: rgba(0, 0, 0, .25);
}

.cts h4 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
}

.cardT h3 {
    font-size: 20px;
    font-weight: 700;
}

.cardT ul {
    margin: 0;
    padding-left: 18px;
}

.cardT li {
    margin-bottom: 12px;
    font-size: 22px;
}

.imgBox {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.imgBox:hover img {
    scale: 1.1;
}


/* Overlapping effect like design */

.secondRow {
    margin-top: -30px;
}

.secondRow .imgBox {
    padding-top: 30px;
}

.secondRow .light-card {
    margin-left: -35px;
    position: relative;
    z-index: 2;
}

.thirdRow {
    margin-top: -20px;
}

.thirdRow .purple-card {
    margin-right: -35px;
    position: relative;
    z-index: 3;
}

@media(max-width:991px) {
    .secondRow,
    .thirdRow {
        margin-top: 0;
    }
    .secondRow .light-card,
    .thirdRow .purple-card {
        margin: 0;
    }
}

.light-card .gfh .cts {
    flex-direction: column;
}

.secondRow .light-card {
    display: flex;
    gap: 25px;
}


/* built section css end */


/* Versatile css start  */

.versatile .heading {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.versatile .item {
    padding: 30px 0;
}

.versatile .item h4 {
    font-size: 30px;
    color: #0094d8;
}

.versatile .item p {
    font-size: 20px;
}

.versatile .row .col-lg-4:nth-last-child(1) {
    text-align: right;
}

.versatile .col-lg-4:nth-child(2) {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.vercon {
    border-bottom: 2px solid #0094d8;
}

.verline {
    position: absolute;
    margin-top: -636px;
    margin-left: -307px;
    z-index: -1;
}

.versatile .heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d4d4ff;
    opacity: 0.2;
}

.vercon .col-lg-4:nth-child(3) .item:first-child {
    position: relative;
}

.vercon .col-lg-4:nth-child(3) .item:first-child::before {
    content: "";
    position: absolute;
    top: 40px;
    right: -100px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d4d4ff;
    opacity: 0.2;
}


/* Versatile css end */


/* action section css start */

.action .swiper {
    width: 100%;
    padding: 110px 0 100px;
}

.action .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.action .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper .swiper-slide.first-slide {
    transform: rotate(-18deg);
    margin-left: 50px;
    opacity: 0.5;
}

.mySwiper .swiper-slide {
    transform-origin: center;
    transition: all 0.5s;
    opacity: 0;
    /* padding: 60px; */
    border: 20px solid #65a4e6;
    /* margin-left: 50px; */
}

.mySwiper .swiper-slide.swiper-slide-next figure {
    padding: 20px;
}

.mySwiper .swiper-slide.swiper-slide-next {
    transform: rotate(0);
    scale: 1.3;
    margin-top: -60px;
    z-index: 1;
    opacity: 1;
    padding: 0;
    border: none;
    box-shadow: 0px 30px 50px 0px #00000078;
    margin-left: -30px;
}

.mySwiper .swiper-slide.last-slide {
    transform: rotate(18deg);
    margin-left: -50px;
    opacity: 0.5;
}

.action {
    background: #0C8DDA;
    background: linear-gradient(134deg, rgba(12, 141, 218, 1) 0%, rgba(83, 89, 221, 0.98) 70%);
}

.action .heading {
    text-align: center;
}

.mySwiper figure {
    background: #ffffff;
    /* padding: 20px; */
    height: 100%;
}

.action .heading h2,
.action .heading p {
    color: #fff;
}

.action .heading p {
    padding: 10px 0 30px;
}

.exam-section {
    background: linear-gradient(90deg, #0d98e6, #4968e7);
    padding: 90px 0;
}

.exam-content {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    align-items: flex-start;
    margin-top: 80px;
}

.left-content {
    width: 52%;
}

.right-content {
    width: 48%;
}

.left-content h3 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .95);
}

.right-content ul {
    list-style: none;
}

.right-content li {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
}

.right-content li::before {
    content: "";
    color: #fff;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    margin-top: 5px;
    background-image: url(../img/right.webp);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.btn-wrap {
    text-align: center;
    margin-top: 80px;
}

.demo-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    text-decoration: none;
    font-size: 35px;
    font-weight: 700;
    transition: .35s;
    padding: 10px 30px;
}

.demo-btn:hover {
    background: #fff;
    color: #1f7fe9;
}

@media(max-width:991px) {
    .exam-content {
        flex-direction: column;
        gap: 40px;
    }
    .left-content,
    .right-content {
        width: 100%;
    }
    .left-content p,
    .right-content li {
        font-size: 22px;
    }
    .demo-btn {
        width: 280px;
        height: 80px;
        font-size: 32px;
    }
}

@media(max-width:576px) {
    .exam-section {
        padding: 60px 0;
    }
    .left-content p,
    .right-content li {
        font-size: 18px;
    }
    .demo-btn {
        width: 220px;
        height: 65px;
        font-size: 26px;
    }
}


/* action section css end */


/* ready section css start  */

.ready .heading {
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 20px;
}

.ready .heading h2 {
    padding-bottom: 10px;
}

.ready .ft {
    display: flex;
}

.ready .ft p {
    font-size: 20px;
}

.ready .ft .icons {
    margin-left: auto;
    display: flex;
    gap: 0px;
}

.ready .ft .icons a {
    display: block;
}

.ready .ft .icons a img {
    width: 55px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.ready .ft .icons a:first-child {
    position: relative;
    left: 10px;
}


/* ready section css end  */


/* form css */

body {
    font-family: Arial, sans-serif;
}


/* Open Button */

.open-popup {
    padding: 15px 35px;
    border: none;
    /* border-radius: 60px; */
    background: #4f6fff;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .35s;
}

.open-popup:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(79, 111, 255, .35);
}


/* Overlay */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 25, .45);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Popup */

.popup-box {
    width: 520px;
    max-width: 90%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transform: scale(.4) rotate(-12deg);
    opacity: 0;
    transition: .6s cubic-bezier(.17, .89, .32, 1.49);
}

.popup-overlay.active .popup-box {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}


/* Glow */

.popup-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #8ea8ff;
    border-radius: 50%;
    top: -160px;
    right: -120px;
    filter: blur(90px);
    opacity: .35;
}


/* Close */

.close-popup {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f5ff;
    cursor: pointer;
    font-size: 24px;
    transition: .35s;
}

.close-popup:hover {
    transform: rotate(180deg);
    background: #4f6fff;
    color: #fff;
}


/* Heading */

.adm-txt {
    text-align: center;
    margin-bottom: 25px;
}

.adm-txt h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.adm-txt p {
    color: #666;
}


/* Inputs */

.form-group {
    margin-bottom: 15px;
}

.input {
    width: 100%;
    height: 54px;
    border: 1px solid #dfe5ff;
    border-radius: 12px;
    padding: 0 18px;
    outline: none;
    transition: .3s;
}

.input:focus {
    border-color: #4f6fff;
    box-shadow: 0 0 0 4px rgba(79, 111, 255, .12);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
}


/* Button */

.submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #4f6fff, #6b88ff);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .35s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(79, 111, 255, .35);
}