:root {
    --primary: #1A47B0;
    --secondary: #F92043;
    --third: #34A2E6;
}

* {
    padding: 0;
    margin: 0;
    border: none;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

body,
html {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #5E5E5E;
}

body {
    background: url(../img/background.svg) no-repeat;
    background-position: left top;
    background-size: 100%;
    font-weight: 300;
}

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

p {
    font-size: 1.1rem;
}

li {
    list-style: none;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-third {
    color: var(--third) !important;
}

.px-6 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 2rem;
    padding-left: 2rem;
}

section .section-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 3rem;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1370px;
    }
}


@media (max-width: 991px) {
    section .section-title {
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }
}


/*Header*/

header {
    position: fixed;
    padding-top: 3rem;
    width: 100%;
    transition: 0.7s all;
    z-index: 100;
}


header .navbar {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    transition: .3s ease;
}

body.header-fixed header {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    padding-top: 0;
    width: 100%;
    z-index: 20;
    box-shadow: 0px 4px 20px 0 rgb(0 0 0 / 10%);
}

body.header-fixed header .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

body.header-fixed header .navbar-brand img {
    transition: 0.7s all;
}


@media (min-width: 991px) {
    body.header-fixed header nav .nav-link:not(.active):not(:hover) {
        color: #34A2E6;
        transition: .3s ease;
    }

    body.header-fixed header .navbar-brand img {
        transform: scale(.9);
    }
}

@media (max-width: 991px) {
    header {
        padding-top: 2rem;
    }

    body.header-fixed header .navbar {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    body.header-fixed header .navbar-brand img {
        padding: 0;
    }
}

@media (max-width: 480px) {
    header .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0rem;
    }

    header .navbar .navbar-nav {
        margin-top: 5.5rem;
        padding-top: 4rem;
    }

    header .navbar .nav-link {
        padding: 1.8rem 1rem;
        font-size: 1.2rem;
    }

    header .navbar-brand img {
        width: 115px;
    }

    body.header-fixed header .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.navbar ul li {
    position: relative;
    width: max-content;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 30px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    background-color: var(--secondary);
    transition: .3s ease;
    box-shadow: 10px 10px 40px 0 rgb(0 0 0 / 20%);
}

.navbar .navbar-toggler {
    z-index: 11;
}


.navbar .navbar-toggler {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transform: rotate(0deg);
}

.navbar .navbar-toggler span {
    background-color: #fff;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    display: block;
    position: absolute;
    left: 0;
    content: "";
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}

.navbar .navbar-toggler:not(.collapsed) span,
body.header-fixed .navbar .navbar-toggler span {
    background-color: #000;
}

.navbar .navbar-toggler span:nth-child(1) {
    top: 4px;
    transform-origin: left center;
}

.navbar .navbar-toggler span:nth-child(2) {
    top: 14px;
    transform-origin: left center;
}

.navbar .navbar-toggler span:nth-child(3) {
    top: 24px;
    transform-origin: left center;
}

.navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg);
    top: 3px;
    left: 4px;
}

.navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg);
    top: 25px;
    left: 4px;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-brand img {
    position: relative;
    z-index: 99;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
        margin: 0 .4rem;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav {
        padding: 10rem 2rem 2rem;
        background-color: #123075;
        margin-top: 8.5rem;
        height: 100vh;
    }

    .navbar .navbar-collapse {
        padding: 0;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s;
        z-index: 10;
    }

    .navbar-collapse.show {
        min-height: 100vh;
        visibility: visible;
        opacity: 1;
    }

    .navbar .nav-link {
        padding: 1rem;
    }

    .navbar .nav-link.active,
    .navbar .nav-link:hover {
        background: none;
        box-shadow: none;
        color: var(--secondary);
    }
}

@media (min-width: 400px) and (max-width: 991px) {
    .navbar .nav-link {
        padding: 2rem;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding-top: 1rem;
    }
}

/*Header*/

/*Hero Section*/
section.hero {
    height: 100vh;
}

section.hero h2 {
    background-color: var(--secondary);
    color: #fff;
    padding: 0.4rem 1rem;
    font-weight: 400;
    font-size: 3.5rem;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 10px 10px 40px 0 rgb(0 0 0 / 40%);
}

section.hero h1 {
    color: var(--primary);
    font-weight: 500;
    font-size: 4.5rem;
}

section.hero h3 {
    color: var(--primary);
    font-weight: 300;
    font-size: 4.3rem;
    white-space: nowrap;
}

section.hero img {
    width: 105%;
}

@media (max-width: 1200px) {
    section.hero h2 {
        font-size: 2.7rem;
    }

    section.hero h1 {
        font-size: 3.5rem;
    }

    section.hero h3 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    section.hero {
        height: 54vh;
    }

    section.hero h2 {
        font-size: 2rem;
    }

    section.hero h1 {
        font-size: 2.6rem;
    }

    section.hero h3 {
        font-size: 2.3rem;
    }
}

@media (max-width: 767px) {
    section.hero h2 {
        font-size: 1.2rem;
        padding: 0.4rem 1rem;
    }

    section.hero h1 {
        font-size: 1.5rem;
    }

    section.hero h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    section.hero {
        height: 61vh;
    }

    section.hero img {
        margin-left: -4%;
    }
}

/*Hero Section*/
/*About*/
section.about {
    background: url(../img/video-bg.png) no-repeat left;
    background-size: contain;
    padding: 6rem;
    position: relative;
}

section.about .video-container {
    display: flex;
    border-radius: 28px;
    overflow: hidden;
}

section.about .play-button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.about .play-button svg {
    width: 14px;
}

section.about .right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5rem;
    max-width: 650px;
}

@media (min-width: 992px) {
    section.about .container {
        max-width: none;
    }
}

@media (max-width: 991px) {

    /* section.about {
        padding: 6rem;
    } */
    section.about .play-button {
        width: 80px;
        height: 80px;
    }

    section.about .play-button svg {
        width: 18px;
    }

    section.about .right-column {
        position: absolute;
        top: 100%;
        left: 5rem;
        padding: 5rem 0;
        width: calc(100% - 10rem);
    }
}

@media (max-width: 480px) {
    section.about {
        padding: 1.5rem 1.5rem;
    }

    section.about .video-container {
        border-radius: 14px;
    }

    section.about .play-button {
        width: 44px;
        height: 44px;
    }

    section.about .play-button svg {
        width: 10px;
    }

    section.about .right-column {
        left: 2rem;
        padding: 4rem 0;
        width: calc(100% - 4rem);
    }

    .section-title {
        font-size: 1.8rem !important;
    }
}


/*About*/
/*Features*/
section.features {
    background: url(../img/features-bg.png) no-repeat;
    background-size: cover;
    color: #fff;
    margin-top: 7rem;
    padding-top: 5rem;
    background-position: 0 5rem;
}

section.features .container {
    padding: 0px 6rem;
}

section.features .features-icon-box {
    transform: translateY(-45px);
    margin-bottom: 2rem;
}

section.features .features-icon-box .icon {
    background-color: var(--third);
    padding: 1rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px 0 rgb(0 0 0 / 40%);
}

section.features .features-icon-box .icon:hover {
    background-color: var(--secondary);
    transition: .3s ease;
}

section.features .features-icon-box .icon:hover+h5 {
    color: var(--secondary) !important;
    transition: .3s ease;
}

section.features .features-bottom .num {
    background-color: var(--third);
    color: #fff;
    border-radius: 20px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
    font-size: 1.2rem;
    font-weight: 400;
}

section.features .features-bottom h5 {
    margin-top: 4px;
}


@media (max-width: 991px) {
    section.features {
        margin-top: 17rem;
    }

    section.features .container {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {

    section.features h5 {
        font-size: 1rem;
    }

    section.features p {
        font-size: .9rem;
    }

}

/*Features*/
/*Use Cases*/

section.use-cases {
    background: url(../img/use-cases-bg.svg) no-repeat;
    /* background-position: 0 3rem; */
    background-size: contain;
    padding: 5rem 0;
    margin-top: 3rem;
}

section.use-cases .container {
    padding: 0px 5rem;
}

section.use-cases .use-cases-inner {
    display: flex;
    max-width: 100%;
    overflow: auto;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 0px;
}

section.use-cases .use-cases-inner::-webkit-scrollbar {
    display: none;
}

section.use-cases .use-cases-inner .item-box {
    width: 250px;
    flex-shrink: 0;
}

section.use-cases .use-cases-inner .item-box .item {
    margin: 3.2rem 5rem;
    background-color: #fff;
    padding: 2.5rem 3.2rem;
    /* min-height: 330px; */
    border-radius: 100px 0 100px 0;
    box-shadow: 20px -20px 0px -5px #36a1e4, 20px 20px 60px 0 rgb(0 0 0 / 10%);
}

section.use-cases .use-cases-inner .item-box:nth-child(2) .item {
    box-shadow: 20px -20px 0px -5px #EE2851, 20px 20px 60px 0 rgb(0 0 0 / 10%);
}

section.use-cases .use-cases-inner .item-box:nth-child(3) .item {
    box-shadow: 20px -20px 0px -5px #6B34E6, 20px 20px 60px 0 rgb(0 0 0 / 10%);
}

section.use-cases .use-cases-inner .item-box:nth-child(4) .item {
    box-shadow: 20px -20px 0px -5px #5E5E5E, 20px 20px 60px 0 rgb(0 0 0 / 10%);
}

section.use-cases .use-cases-inner .item-box .item .icon {
    border: 4px solid #36a1e4;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    padding: 1.5rem;
    margin-left: -5rem;
}

section.use-cases .use-cases-inner .item-box:nth-child(2) .item .icon {
    border-color: #EE2851;
}

section.use-cases .use-cases-inner .item-box:nth-child(3) .item .icon {
    border-color: #6B34E6;
}

section.use-cases .use-cases-inner .item-box:nth-child(4) .item .icon {
    border-color: #5E5E5E;
}

section.use-cases .use-cases-inner .item-box .item .icon img {
    width: 50px;
    height: 50px;
}

section.use-cases .use-cases-inner .item-box .item p {
    line-height: 24px;
    /* height: 94px; */
}


@media (min-width: 992px) {
    section.use-cases .use-cases-inner {
        flex-wrap: wrap;
        max-width: unset;
        overflow: unset;
        -ms-scroll-snap-type: unset;
        scroll-snap-type: unset;
        -webkit-overflow-scrolling: unset;
        border-radius: unset;
    }

    section.use-cases .use-cases-inner .item-box {
        width: 50%;
    }
}


@media (min-width: 1400px) {
    section.use-cases .use-cases-inner .item {
        margin: 0 2rem;
    }
}

@media (max-width: 992px) {
    section.use-cases {
        background-position: -2rem 5rem;
        background-size: auto 93%;
    }

    section.use-cases .container {
        padding: 0;
        max-width: none;
    }

    section.use-cases .use-cases-inner {
        padding-left: 2rem;
    }

    section.use-cases .use-cases-inner .item-box {
        width: 82vw;
    }

    section.use-cases .use-cases-inner .item-box .item {
        margin: 6.2rem 4rem 6.2rem 2rem;
    }

    section.use-cases .use-cases-inner .item-box .item p {
        font-size: 1.5rem;
        line-height: 30px;
    }

    section.use-cases .use-cases-inner .item-box .item .icon {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    section.use-cases {
        background-position: left 83%;
        background-size: 50%;
        padding: 0;
    }

    section.use-cases .use-cases-inner .item-box {
        width: 90vw;
    }

    section.use-cases .use-cases-inner .item-box .item {
        min-height: 235px;
        margin: 2rem 3rem 5rem 0rem;
        padding: 1rem;
        border-radius: 60px 0 60px 0;
        box-shadow: 11px -11px 0px 0px #36a1e4, 20px 20px 60px 0 rgb(0 0 0 / 10%);
    }

    section.use-cases .use-cases-inner .item-box .item .icon {
        padding: 1rem;
        margin-left: -2rem;
    }

    section.use-cases .use-cases-inner .item-box .item .icon img {
        width: 40px;
        height: 40px;
    }

    section.use-cases .use-cases-inner .item-box .item p {
        font-size: 1rem;
        line-height: 20px;
        margin-top: 1rem;
        margin-bottom: 0;
    }

}

/*Use Cases*/
/*Need*/
section.need .item {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    background-color: #fff;
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    transition: .3s ease;
}

section.need .item-box:hover .item {
    box-shadow: 40px 40px 80px 0 rgb(0 0 0 / 10%);
}

section.need .item-box:hover {
    z-index: 1;
}

section.need .item p {
    font-size: 1rem;
}

@media (min-width: 992px) {
    section.need .section-title {
        padding-left: 8rem;
    }
}

/*Need*/
/*Solution*/
section.solution {
    padding-top: 4rem;
}

section.solution .solution-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

section.solution .solution-title h5{
    position: relative;
    z-index: 2;
    margin: 0;
}
section.solution .solution-title span{
    position: absolute;
    font-size: 2.6rem;
    font-weight: 600;
    color: #999999;
    opacity: .2;
    z-index: 1;
}

section.solution .solution-title .left-text {
    left: 0;
    bottom: -28px;
}

section.solution .solution-title .right-text {
    right: -16px;
    top: -26px;
}

@media (max-width: 991px) {
    section.solution .solution-title span{
        font-size: 2.2rem;
    }
}
@media (max-width: 480px) {
    section.solution .solution-title span{
        font-size: 1.5rem;
    }
    section.solution .solution-title .left-text {
        bottom: -17px;
    }
    
    section.solution .solution-title .right-text {
        right: -8px;
        top: -16px;
    }
}

/*Solution*/
/*Footer*/
footer {
    color: #fff;
}

footer .footer {
    background-color: #0A225B;
    padding: 4rem 0;
}

footer a {
    color: #fff;
}

footer a:not(:last-child) {
    padding-bottom: 0.75rem;
}

footer a:hover,
footer h5:hover {
    color: var(--third);
}

footer .copyright {
    background-color: #000;
    padding: 1rem 0;
}

@media (max-width: 991px) {
    footer svg {
        width: 22px;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: .75rem;
    }

    footer h5 {
        font-size: 1rem;
    }

    footer svg {
        width: 16px;
    }

    footer .footer {
        padding: 2.5rem 0;
    }

    footer .footer-brand {
        width: 160px;
    }

    footer .copyright {
        font-size: .64rem;
    }
}

/*Footer*/