* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #b5b3b5;
    background-color: #000;
}
.container {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}
/* header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.header-wrapper.fixed {
    background-color: #ffffff0d;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.navbar {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.nav-toogler {
    display: none;
}
.brand {
    display: inline-block;
    width: 150px;
}
.brand img {
    max-width: 100%;
}
.nav-menu {
    background-color: #0000004d;
    backdrop-filter: blur(20px);
    margin: 0;
    padding: 5px;
    display: flex;
    list-style: none;
    border-radius: 60px;
    gap: 5px;
    border: 1px solid #fff3;
}
.nav-link {
    display: inline-block;
    padding: 4px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 60px;
    transition: 0.3s ease-in-out;
}
.nav-link.active, .nav-link:hover {
    background-color: #ffffff1a;
}
.header-btn {
    display: inline-block;
    padding: 10px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg,rgba(40, 173, 98, 1) 0%, rgba(98, 83, 237, 1) 100%);
    border-radius: 60px;
    transition: 0.6s ease-in-out;
}
.header-btn:hover {
    transform: scale(1.1);
}
/* hero */
.hero-section {
    padding: 180px 0;
}
.hero-heading {
    text-align: center;
    font-size: 60px;
    line-height: 70px;
    font-weight: 500;
    margin: 0px;
    margin-bottom: 30px;
    color: #fff;
}
.hero-heading span {
    display: block;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg,rgba(40, 173, 98, 1) 20%, rgba(98, 83, 237, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}
/* Count */
.count-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 25%;
    padding: 0 20px;
}
.count-bx {
    border: 1px solid #ffffff1a;
    padding: 24px;
    transition: 0.3s ease-in-out;
    min-height: 218px;
    margin-bottom: 20px;
}
.count-bx:hover {
    transform: translateY(-10px);
    border-color: rgba(98, 83, 237, 1);
    box-shadow: 3px 4px 32px 0px rgba(98, 83, 237, 0.58);
}
.count-icon {
    display: flex;
    justify-content: center;
}
.count-icon-wrapper {
    background: linear-gradient(90deg,rgba(40, 173, 98, 1) 20%, rgba(98, 83, 237, 1) 100%);
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 26px;
    transition: 0.4s ease-in-out;
}
.count-content {
    margin-top: 20px;
}
.count-text {
    margin: 0;
    text-align: center;
    font-weight: 600;
}
.count-bx:hover .count-icon-wrapper {
    transform: scale(1.1);
}
/* benefit */
.ben-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 20%;
    padding: 0 20px;
}
.timeline-section {
    display: flex;
    flex-wrap: wrap;
}
.time-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 16.666%;
}
.time-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timline-count {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
    font-weight: 700;
    font-style: normal;
    transition: 0.3s ease-in-out;
    position: relative;
}
.timeline-section .time-col:not(:last-child) .timline-count::after {
    content: "";
    width: 157px;
    height: 2px;
    background-color: #ffff;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}
.time-bx h3 {
    font-size: 18px;
    margin-bottom: 0px;
    font-size: 12px;
    color: #fff;
}
.time-bx p {
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    margin: 0px;
}
.time-bx:hover .timline-count {
    background-color: #fff;
    color: #000;
    backdrop-filter: blur(20px);
}
.quote-section {
    padding: 100px 0;
    background: linear-gradient(90deg, rgb(55 4 73) 0%, rgb(4 66 67) 100%);
    text-align: center;
}
.quote-text {
    text-align: center;
    margin: 0;
}
.mb-1 {
    margin-bottom: 1rem !important;
}
.quote-section .header-btn {
    margin-top: 20px;
    padding: 15px 60px;
    font-size: 20px;
}
/* common */
.bg-section {
    background: url(../images/bg2.svg) no-repeat;
    background-size: cover;
    min-height: 100vh;
}
.section-wrapper {
    padding: 100px 0;
}
.row {
    display: flex;
    margin: 0 -20px;
    flex-wrap: wrap;
}
.page-heading {
    text-align: center;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0;
    margin-bottom: 60px;
}
.page-heading span {
    background: linear-gradient(90deg,rgba(40, 173, 98, 1) 20%, rgba(98, 83, 237, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.main-section {
    position: relative;
    width: 100%;
}
.main-section.bef::before {
    content: "";
    position: absolute;
    top: -250px;
    left: 0;
    background: url(../images/bef2.svg) no-repeat;
    background-size: cover;
    width: 562px;
    height: 1045px;
    z-index: -1;
}
.main-section.aft::after {
    content: "";
    position: absolute;
    bottom: -250px;
    right: 0;
    background: url(../images/aft.svg) no-repeat;
    background-size: cover;
    width: 562px;
    height: 1045px;
    z-index: -1;
}
/* footer */
.footer-section {
    background: url(../images/footer_bg.svg) no-repeat;
    background-size: contain;
}
.footer-top {
    padding: 100px 0;
}
.footer-col-1 {
    flex: 0 0 auto;
    max-width: 100%;
    width: 40%;
    padding: 0 20px;
}
.footer-col-2 {
    flex: 0 0 auto;
    max-width: 100%;
    width: 30%;
    padding: 0 20px;
}
.footer-logo {
    max-width: 200px;
}
.footer-heading {
    margin: 0;
    color: rgba(98, 83, 237, 1);
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 35px;
}
.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-list a {
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    transition: 0.3s ease-in-out;
}
.footer-list a:hover {
    opacity: 0.4;
}
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #fff3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    font-size: 14px;
}
.footer-bottom-list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 10px;
}
.footer-bottom-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer-bottom-list a:hover {
    text-decoration: underline;
}
.inner-hero-section {
    padding: 200px 0;
}
.hero-btns {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    justify-content: center;
    gap: 10px;
}
.hero-btns a {
    display: inline-block;
    padding: 2px;
    background: linear-gradient(90deg,rgba(40, 173, 98, 1) 20%, rgba(98, 83, 237, 1) 100%);
    border-radius: 60px;
    transition: 0.3s ease-in-out;
}
.hero-btns a span {
    border-radius: 60px;
    display: inline-block;
    padding: 5px 24px;
    background: linear-gradient(90deg,rgb(0, 0, 0) 20%, rgb(0, 0, 0) 100%);;
    color: #fff;
    font-size: 14px;
    min-width: 150px;
    text-align: center;
    transition: 0.3s ease-in-out;
}
.hero-btns a:hover span {
    background: linear-gradient(90deg,rgba(40, 173, 98, 1) 20%, rgba(98, 83, 237, 1) 100%);
}
.hero-btns a:hover {
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 100%);
}
.ben-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 20%;
    padding: 0 20px;
}
.benefit-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit-icon {
    color: #fff;
}
.benefit-content h3 {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 16px;
}
.benefit-content p {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}
.work-timeline {
    padding: 80px 0;
    position: relative;
}
.work-timeline::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 100%;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.work-timeline::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 100%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.mid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.work-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
}
.row-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
}
.work-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 50%;
}
.work-image-holder {
    padding-right: 40px;
}
.work-img {
    width: 100%;
    height: 460px;
    border: 1px solid #fff;
}
.work-timeline .work-row:nth-child(odd) {
    flex-direction: row-reverse;
}
.work-content {
    padding-left: 40px;
}
.work-timeline .work-row:nth-child(odd) .work-content {
    padding-right: 40px;
    padding-left: 0px;
}
.work-timeline .work-row:nth-child(odd) .work-image-holder {
    padding-left: 40px;
    padding-right: 0px;
}
.inner-hero-section .hero-heading span {
    display: inline-block;
}
/* Contact Us */
.contact-form-wrapper {
    max-width: 896px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    margin-top: 80px;
}
.form-col, .form-col-2 {
    flex: 0 0 auto;
    max-width: 100%;
    width: 50%;
    padding: 0 20px;
}
.form-col-2 {
    width: 100%;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}
.form-label sup {
    color: red;
}
.form-control {
    width: 100%;
    display: block;
    height: 42px;
    background-color: transparent;
    border: 1px solid #ffffff1a;
    border-radius: 5px;
    outline: none;
    font-family: "Space Grotesk", sans-serif;
    color: #fff;
    padding: 0 17px;
}
textarea.form-control {
    resize: none;
    padding: 17px;
    height: 150px;
}
.submit-btn {
    width: 100%;
    border: none;
    outline: none;
    transform: inherit !important;
    height: 42px;
    cursor: pointer;
    transition: 0.8s ease-in-out;
    font-size: 18px;
    font-weight: 500;
}
.submit-btn:hover {
    background: linear-gradient(90deg,rgba(98, 83, 237, 1) 0%, rgba(40, 173, 98, 1) 100%);
}
.accordion-wrapper {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, .1);
}
.accordion-btn {
    display: inline-flex;
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordion-btn.collapsed {
    color: #b5b3b5;
}
.accordion-content {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: none;
    visibility: hidden;
    opacity: 0;
}
.accordion-content.show {
    display: block;
    visibility: visible;
    opacity: 1;
}
.accordion-btn.collapsed i {
    transform: rotate(180deg);
}
.accordion-content p {
    margin: 0;
    font-size: 14px;
}
.price-bx {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    margin-top: 40px;
}
.price-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.price-heading {
    text-align: center;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.price {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
}
.price-body {
    padding: 30px;
}
.win-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 33.333%;
    padding: 0 20px;
}
.text-left {
    text-align: left;
}
.fs-2  {
    font-size: 12px;
    font-weight: 600;
}
.policy-hero {
    background: linear-gradient(140deg, rgb(55 4 73) 0%, rgb(4 66 67) 100%);
}
.select2-container .select2-selection--single {
    height: 42px;
    background-color: transparent;
    border: 1px solid #ffffff1a;
    border-radius: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 39px;
    color: #fff;
    font-size: 14px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 14px;
    background-color: #000;
    color: #fff;
}
.select2-results__option {
    font-size: 14px;
    color: #000;
    background-color: #fff;
}
.select2-dropdown {
    background-color: transparent;
}
.text-center {
    text-align: center;
}
.text-white {
    color: #fff;
}
.linkedin-auth-btn {
    display: inline-flex;
    width: 100%;
    height: 38px;
    align-items: center;
    border: none;
    outline: none;
    color: #0a66c2;
    background-color: transparent;
    border-radius: 60px;
    padding: 0 12px;
    font-family: Lato, sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .25px;
    border: 1px solid #dadce0;
    transition: .3s ease-in-out;
    cursor: pointer;
}
.linkedin-auth-btn span {
    flex-grow: 1;
    color: #fff;
}
.mb-2 {
    margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
    .container {
        max-width: 1200px;
    }
    body {
        font-size: 18px;
        line-height: 26px;
    }
    .page-heading {
        font-size: 38px;
    }
    .time-bx h3 {
        font-size: 11px;
    }
    .hero-heading {
        font-size: 56px;
        line-height: 66px;
    }
    .timeline-section .time-col:not(:last-child) .timline-count::after {
        width: 124px;
    }
}
@media only screen and (max-width: 1399px) {
    .container {
        max-width: 1170px;
    }
    .hero-heading {
        font-size: 50px;
        line-height: 60px;
    }
     body {
        font-size: 16px;
        line-height: 24px;
    }
    .page-heading {
        font-size: 34px;
    }
    .timeline-section .time-col:not(:last-child) .timline-count::after {
        width: 120px;
    }
    .time-bx h3 {
        font-size: 11px;
        text-align: center;
        line-height: 16px;
        min-height: 32px;
    }
}
@media only screen and (max-width: 1199px) {
    .container {
        max-width: 970px;
    }
     .hero-heading {
        font-size: 44px;
        line-height: 54px;
    }
    .count-col {
        width: 50%;
    }
    .section-wrapper {
        padding: 80px 0;
    }
    .page-heading {
        font-size: 30px;
    }
    .ben-col {
        width: 33.333%;
    }
    .timeline-section .time-col:not(:last-child) .timline-count::after {
        width: 86px;
    }
}
@media only screen and (max-width: 991px) {
    .container {
        max-width: 100%;
    }
    .navbar-content {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100%;
        background-color: #000;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }
    .nav-menu {
        padding: 0px;
        border: none;
        background: transparent;
        flex-direction: column;
    }
    .nav-link {
        width: 100%;
    }
    .nav-toogler {
        display: inline-block;
        background: transparent;
        border: none;
        outline: none;
        display: flex;
        flex-direction: column;
        width: 40px;
        gap: 5px;
        cursor: pointer;
    }
    .bar {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 60px;
    }
    .header-wrapper .header-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 50px;
    }
    .timeline-section .time-col:not(:last-child) .timline-count::after {
        display: none;
    }
    .time-col {
        width: 33.333%;
    }
    .time-bx {
        margin-top: 20px;
    }
}