:root {
    --primary: #5F4388;
    --primary-hover: #3E1153;
    --primary-light: #9569D6;
    --secondary: #D51180;
    --secondary-hover: #C40960;
    --secondary-light: #D75BA1;
    --col-purple: #5F4388;
    --col-purple-light: #EDE4F5;
    --col-purple-hover: #412B69;
    --col-yellow: #EB8C0A;
    --col-yellow-light: #FBE7CC;
    --col-yellow-hover: #D58A35;
    --col-blue: #2895BC;
    --col-blue-light: #BFDFEB;
    --col-pink: #D51180;
    --col-pink-light: #FBE4F1;
    --col-pink-hover: #C40960;
    --grey-950: #0D0D0D;
    --grey-900: #1A1A1A;
    --grey-850: #262626;
    --grey-800: #333333;
    --grey-750: #404040;
    --grey-700: #4D4D4D;
    --grey-650: #595959;
    --grey-600: #666666;
    --grey-550: #737373;
    --grey-500: #808080;
    --grey-450: #999999;
    --grey-400: #A6A6A6;
    --grey-350: #B3B3B3;
    --grey-300: #BFBFBF;
    --grey-250: #CCCCCC;
    --grey-200: #D9D9D9;
    --grey-150: #E6E6E6;
    --grey-100: #F2F2F2;
    --hero-grad: linear-gradient(45deg, rgba(194,144,233,1) 0%, rgba(255,255,255,1) 49%, rgba(248,142,187,1) 100%);
    /*--feature-grad: linear-gradient(45deg, rgba(128,90,183,1) 0%, rgba(174,70,180,1) 100%);*/
    --feature-grad: linear-gradient(100deg, rgba(149,110,191,1) 0%, rgba(182,95,189,1) 100%);
    --get-paid-grad: linear-gradient(180deg, rgba(237,228,245,0.5) 0%, rgba(237,228,245,1) 100%);
    --footer-bg: #111132;
    --header-font: "Syne", sans-serif;
    --copy-font: "Montserrat", sans-serif;
    --box-radius-60: 60px;
    --box-radius-60-top: 60px 60px 0 0;
    --box-radius-60-bottom: 0 0 60px 60px;
    --box-radius-30: 30px;
    --box-radius-30-top: 30px 30px 0 0;
    --box-radius-15: 15px;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html, body {
    height: 100%;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--header-font);
    font-weight: 500;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 52px;
    line-height: 64px;
}

h3 {
    font-size: 32px;
    line-height: 44px;
}

h4 {
    font-size: 28px;
    line-height: 40px;
}

h5 {
    font-size: 24px;
    line-height: 36px;
}

h6 {
    font-size: 20px;
    line-height: 32px;
}


body,
p,
li,
tr,
td,
button {
    font-family: var(--copy-font);
    font-size: 16px;
    font-weight: 400;
}

p {
    line-height: 28px;
}


.p-lg {
    font-size: 20px;
    line-height: 1.7em;
}

.ver-pos {
    display: flex;
    align-items: center;
}

.hor-pos-right {
    display: flex;
    justify-content: end;
}

.col-primary {
    color: var(--primary);
}
.bg-primary{
    background:var(--primary);
}
.bg-purple-light {
    background: var(--col-purple-light);
}

/*--------------------------------------------------------------
# List Gen
--------------------------------------------------------------*/
.list-gen {
    margin:10px 0 25px 0;
    padding:unset;
}
.list-gen li{
    list-style-type:none;
    display:flex;
    margin-bottom:8px;
}
    .list-gen li span{
        margin:5px 15px 0 0;
        font-weight:700;
        color:var(--col-purple)
    }


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 400;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        text-decoration: none;
    }


.btn-w100 {
    width: 100%;
}

.btn-big {
    font-size: 28px;
    font-weight: 500;
    padding: 10px 30px
}

    .btn-big span {
        font-size: 42px;
    }

.btn-flex {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

    .btn-flex span {
        margin-left: 15px
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header .logo img {
    max-height: 80px;
    height: 80px;
}

#header.header-scrolled, #header.header-inner-pages {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #2A0B3B;
}

.navbar a, .navbar a:focus {
    font-size: 18px;
    font-weight: 500;
    color: #3E1153;
}

.navbar .btn,
.navbar .btn:focus {
    padding: 8px 20px;
    margin-left: 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

    .navbar .btn.btn-login,
    .navbar .btn.btn-login:focus {
        background-color: var(--col-purple);
    }

        .navbar .btn.btn-login:hover {
            background-color: var(--col-purple-hover);
            color: #fff;
        }

    .navbar .btn.btn-signup,
    .navbar .btn.btn-signup:focus {
        background-color: var(--col-pink);
    }

        .navbar .btn.btn-signup:hover {
            background-color: var(--col-pink-hover);
            color: #fff;
        }

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 15px;
}

.mobile-nav-toggle.icon-x {
    color: #fff;
}

.navbar a i, .navbar a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    background-image: var(--hero-grad);
}

    #hero .hero-waves {
        background: url('/img/wave-lines.svg') no-repeat left bottom;
        background-size: 1600px 592px;
        height: 100%;
    }

    #hero p {
        font-size: 42px;
        color: var(--primary);
    }

    #hero h1 {
        margin: 0 0 30px 0;
        font-size: 72px;
        font-weight: 700;
        line-height: 82px;
        color: var(--primary);
    }

.hero-img {
    max-width: 800px;
    height: auto;
}

.hp-top {
    padding-top: 50px;
}

/*--------------------------------------------------------------
# Scrolling Features
--------------------------------------------------------------*/

.scroll-features {
    background: var(--feature-grad);
    padding: 50px 25px 35px 25px;
}

.sf-row {
    display: flex;
    margin: 0 -15px;
}

    .sf-row .sec-features-card {
        background: rgba(0,0,0,0.3);
        border-radius: var(--box-radius-30);
        color: #fff;
        padding: 45px;
        min-height: 360px;
        margin: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }

        .sf-row .sec-features-card span {
            font-size: 120px;
            color: #fff;
        }

        .sf-row .sec-features-card h3 {
            font-size: 28px;
        }

@media (max-width:768px) {
    .sf-row .sec-features-card:not(:first-child) {
        display: none;
    }
}

/*--------------------------------------------------------------
# Sub Page - Section Feautres
--------------------------------------------------------------*/
.sec-features {
    background: var(--feature-grad);
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 40px;
    height: 40px;
    overflow: hidden;
    top: 0;
    right: 0;
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: 10px;
    margin-right: 10px;
    color: white;
    font-size: 30px;
    font-weight: 600;
}

.sec-features-card {
    display: block;
    color: #fff;
    position: relative;
    background: rgba(0,0,0,0.3);
    border-radius: var(--box-radius-15);
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    min-height: 280px;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .sec-features-card span {
        font-size: 110px;
    }

    .sec-features-card h3 {
        font-size: 26px;
        line-height: 36px;
    }

    .sec-features-card:hover {
        box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    }

    .sec-features-card:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -25px;
        right: -25px;
        background: #fff;
        height: 32px;
        width: 32px;
        border-radius: 32px;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-out;
    }

    .sec-features-card:hover:before {
        transform: scale(35);
    }

    .sec-features-card:hover p,
    .sec-features-card:hover span,
    .sec-features-card:hover h3,
    .sec-features-card:hover .go-arrow,
    .sec-features-card:focus p,
    .sec-features-card:focus span,
    .sec-features-card:focus h3,
    .sec-features-card:focus .go-arrow {
        transition: all 0.3s ease-out;
        color: var(--primary);
    }


/*--------------------------------------------------------------
# Section - Get Paid
--------------------------------------------------------------*/

.sec-get-paid {
    background: var(--col-purple-light);
}

.get-paid-head {
    margin-bottom:25px;
}
.get-paid-head h2,
.get-paid-head p {
    color: var(--primary);
    text-align:center;
}
.get-paid-head p {
    font-size: 38px;
}
    .get-paid-head h2 {
        font-weight: 700;
        font-size: 62px;
    }

.get-paid-steps-row {
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin:100px 0 70px 0;
}
.get-paid-steps-col{
    position:relative
}

.gp-step1,
.gp-step2,
.gp-step3{
    border-radius: 50%;
    background-color: #D7C8E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 50px;
    height: 200px;
    width: 200px;
    position: relative;
}
    .gp-step2:before,
    .gp-step3:before {
        border-bottom: 2px var(--primary) dotted;
        content: '';
        position: absolute;
        width: 100px;
        left: -100px;
        left: -100px;
    }

.gp-step1 img,
.gp-step2 img,
.gp-step3 img{
    width: 110px;
    height: auto;
}

.gps-bubble {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    width: 270px;
    background: #fff;
    border-radius: var(--box-radius-15);
    padding: 24px;
    text-align: center;
    color: #000;
}

.gpsb-step-1,
.gpsb-step-2,
.gpsb-step-3 {
    position: absolute;
    z-index:10;
}

.gpsb-step-1 {
    left: 0;
    top: -75px;
}
    .gpsb-step-1:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-top-color: #fff;
        border-bottom: 0;
        border-left: 0;
        margin-left: 15px;
        margin-bottom: -20px;
    }

.gpsb-step-2 {
    left: 0;
    bottom: -80px;
}

    .gpsb-step-2:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-bottom-color: #fff;
        border-top: 0;
        border-left: 0;
        margin-left: 15px;
        margin-top: -20px;
    }

.gpsb-step-3 {
    left: 0;
    top: -75px;
}

    .gpsb-step-3:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-top-color: #fff;
        border-bottom: 0;
        border-left: 0;
        margin-left: 15px;
        margin-bottom: -20px;
    }

.get-paid-methods {
    background: #D7C8E9;
    border-radius: var(--box-radius-15);
    min-height: 550px;
    padding: 25px 25px 0 25px;
}
.gpm-selections {
    display: flex;
    flex-direction: column;
    padding: 50px 70px 20px 70px;
}

.gpm-select{
    background:#fff;
    border-radius:10px;
    padding:15px;
    margin-top:15px;
    min-height:60px;
    display:flex;
    align-items:center;
}
    .gpm-select:nth-child(5) {
        background: rgba(255,255,255,0.6);
    }
    .gpm-select:nth-child(6) {
        background: rgba(255,255,255,0.4);
    }
    .gpm-select:nth-child(7){
        background:rgba(255,255,255,0.2);
    }

    .gpms-cirle {
        border: 2px #ccc solid;
        height: 30px;
        width: 30px;
        border-radius: 50%;
    }
.gpms-name {
    margin-left:15px;
    font-weight:500;
    font-size:18px;
    color:var(--grey-850);
}


/*--------------------------------------------------------------
# Homepage Exceptional Features
--------------------------------------------------------------*/
.hp-feature-copy {
    padding-right: 20px;
}

    .hp-feature-copy h2 {
        margin-bottom: 20px;
    }

    .hp-feature-copy p,
    .hp-feature-copy li {
        font-size: 18px;
        font-size: 18px;
    }
    .hp-feature-copy p {
        margin-bottom: 40px;
    }
    .hp-feature-copy li {
        margin-bottom: 20px;
    }
    .hp-feature-copy li span{
        font-size:20px;
    }

    .hp-feature-copy .btn {
        color: #fff;
        font-size: 22px;
        padding: 10px 25px;
    }

        .hp-feature-copy .btn:hover,
        .hp-feature-copy .btn:focus {
            color: #fff;
        }

    .hp-feature-copy.hpf-purple h2,
    .hp-feature-copy.hpf-purple span{
        color: var(--col-purple);
    }

    .hp-feature-copy.hpf-purple .btn {
        background-color: var(--col-purple);
        transition: all 0.2s ease-in-out;
    }

        .hp-feature-copy.hpf-purple .btn:hover,
        .hp-feature-copy.hpf-purple .btn:focus {
            background-color: var(--col-purple-hover);
        }
    .hp-feature-copy.hpf-purple .btn span {
        color:#fff;
    }

    .hp-feature-copy.hpf-pink h2,
    .hp-feature-copy.hpf-pink span{
        color: var(--col-pink);
    }
        .hp-feature-copy.hpf-yellow span.list-gen-info,
        .hp-feature-copy.hpf-purple span.list-gen-info,
        .hp-feature-copy.hpf-pink span.list-gen-info {
            color: unset;
            font-size: 18px;
            font-weight: unset;
        }

        .hp-feature-copy.hpf-pink .btn {
            background-color: var(--col-pink);
            transition: all 0.2s ease-in-out;
        }

        .hp-feature-copy.hpf-pink .btn:hover,
        .hp-feature-copy.hpf-pink .btn:focus {
            background-color: var(--col-pink-hover);
        }
    .hp-feature-copy.hpf-pink .btn span {
        color:#fff;
    }

    .hp-feature-copy.hpf-yellow h2,
    .hp-feature-copy.hpf-yellow span{
        color: var(--col-yellow);
    }

    .hp-feature-copy.hpf-yellow .btn {
        background-color: var(--col-yellow);
        transition: all 0.2s ease-in-out;
    }
        .hp-feature-copy.hpf-yellow .btn:hover,
        .hp-feature-copy.hpf-yellow .btn:focus {
            background-color: var(--col-yellow-hover);
        }
        .hp-feature-copy.hpf-yellow .btn span{
            color:#fff;
        }

        .hpf-img-mask {
            width: 500px;
            height: 700px;
            border-radius: var(--box-radius-30);
            display: flex;
            align-items: center;
            padding: 15px;
        }

    .hpf-img-mask.mask-purple {
        background: url('/img/feature-lines.svg') no-repeat right bottom, var(--col-purple-light);
    }

    .hpf-img-mask.mask-pink {
        background: url('/img/feature-lines.svg') no-repeat right bottom, var(--col-pink-light);
    }

    .hpf-img-mask.mask-yellow {
        background: url('/img/feature-lines.svg') no-repeat right bottom, var(--col-yellow-light);
    }


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 100px 0;
    overflow: hidden;
}

.sec-np {
    padding: unset;
}

.sec-np-top {
    padding-top: unset;
}

.hr-sec-devider {
    margin: unset;
}

.sec-grey{
    background-color:#efefef;
}

.sec-pink {
    background: var(--col-pink);
}

    .sec-pink.bottom-border-radius {
        border-radius: var(--box-radius-60-bottom);
    }

.sec-purple {
    background: var(--col-purple);
}

    .sec-purple.top-border-radius {
        border-radius: var(--box-radius-60-top);
    }

    .sec-pink h2,
    .sec-purple h2 {
        color: #fff;
        margin-bottom: 25px;
    }

    .sec-purple h2,
    .sec-purple h3,
    .sec-purple h4,
    .sec-purple h5,
    .sec-pink h2,
    .sec-pink h3,
    .sec-pink h4 {
        color: #fff;
    }

.sph-lb {
    font-weight: 300;
    font-family: var(--copy-font);
    margin-bottom: 45px;
}

.sec-purple p,
.sec-pink p {
    color: rgba(255, 255, 255, 0.7);
}

.sec-purple .card,
.sec-pink .card {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: unset;
    padding: 45px;
    border-radius: var(--box-radius-15);
    height: 100%;
}

    .sec-purple .card p,
    .sec-purple .card li,
    .sec-purple .card li span,
    .sec-pink .card p,
    .sec-pink .card li {
        color: rgba(255, 255, 255, 0.7);
    }

.hr-sec-purple,
.hr-sec-pink {
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 1px rgba(255,255,255,0.8) solid;
}

.sec-purple-emp {
    border-radius: var(--box-radius-15);
    border: 1px rgba(255,255,255,0.5) solid;
    border-left: 3px #fff solid;
    padding: 25px;
}

.card-emp {
    padding: 45px;
    border-radius: var(--box-radius-15);
    border: 1px rgba(0,0,0,0.5) solid;
    border-left: 3px var(--col-pink) solid;
}

/*--------------------------------------------------------------
# Lets get started - homepage
--------------------------------------------------------------*/
.get-stared-row {
    display: flex;
    align-items: center;
    min-height: 600px;
}

    .get-stared-row .gs-col {
        width: 50%;
        min-height: 600px;
    }

        .get-stared-row .gs-col.gsc-left {
            background: var(--col-blue) url('/img/girl-holding-pink-dress.jpg') no-repeat left top;
        }

        .get-stared-row .gs-col.gsc-right {
            background: var(--col-pink);
        }

.gsc-right {
    padding: 50px 100px;
    position: relative;
}

.gscr-arrow {
    position: absolute;
    left: 0;
    top: 10px;
}

    .gscr-arrow img {
        width: 72px;
        height: auto;
    }

.gsc-right h2,
.gsc-right p {
    color: #fff;
}

.gsc-right p {
    max-width: 450px;
    margin-bottom: 50px;
}

.btn-gscr {
    font-size: 20px;
    border-radius: 50px;
    border: 1px #fff solid;
    color: #fff;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 10px 25px;
    transition: all 0.3s;
}

    .btn-gscr:hover {
        background: #fff;
        color: var(--grey-900);
        transition: all 0.3s;
    }

    .btn-gscr .sir {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #fff;
        color: var(--grey-900);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin-left: 15px;
        transition: all 0.3s;
    }

    .btn-gscr:hover .sir {
        background-color: var(--grey-900);
        color: #fff;
        transition: all 0.3s;
    }

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/

.blog-card {
    min-height: 150px;
    height:100%;
    border-radius: var(--box-radius-15);
    border: unset;
    overflow: hidden;
    transition: all 0.2s;
}
    .blog-card:hover {
        box-shadow: 0 0.5em 0.5em -0.4em #ccc;
        transform: translateY(-0.25em);
    }
    .blog-card a h4{
        color:var(--grey-850);
    }
    .blog-card a p{
        color: var(--grey-650);
    }

.bc-img {
    max-height:200px;
}
.bc-img img{
    width:100%;
    height:auto;
}
.bc-body{
    padding: 25px;
}
.bci-body {
    padding: 50px;
}

.bc-body p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.bci-body h2 {
    margin-bottom: 25px;
    font-size: 42px;
    line-height: 54px;
}
.bci-body p{

}

.bci-layout {
    padding: 0 100px;
}
.blog-card-indv {
    min-height: 250px;
    border-radius: var(--box-radius-15);
    border: unset;
    overflow:hidden;
}
.bci-img {
    max-height:400px;
    overflow:hidden;
}
.bci-img img{
    width:100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    background: url('/img/wave-lines.svg') no-repeat left top, var(--footer-bg);
    min-height: 600px;
    padding: 100px 0;
}

    footer .logo {
        width: 90px;
        height: auto;
        margin-bottom: 25px;
    }

    footer h5 {
        color: #fff;
        font-family: var(--copy-font);
        margin-bottom: 15px;
    }

    footer p {
        line-height: 1.6em;
        padding-right: 20px;
    }

    footer p,
    footer a {
        color: rgba(255,255,255,0.6);
    }

        footer a:hover,
        footer a:focus {
            color: #fff;
        }

    footer ul {
        margin: 0 0 35px 0;
        padding: unset;
    }

        footer ul li {
            list-style-type: none;
            margin-bottom: 10px;
        }

            footer ul li a {
                display: block;
            }

/*--------------------------------------------------------------
# Sub page styling
--------------------------------------------------------------*/
.sub-page-hero,
.sub-page-hero-blog {
    width: 100%;
    background-image: var(--hero-grad);
    padding: 100px 0 50px 0;
}
.sub-page-hero {
    height: 40vh;
}
.sub-page-hero-blog {
    height: 30vh;
}


    .sub-page-hero .container,
    .sub-page-hero .row,
    .sub-page-hero .col-md-6,
    .sub-page-hero-blog .container,
    .sub-page-hero-blog .row,
    .sub-page-hero-blog .col-md-6 {
        height: 100%;
    }

.sph-header-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .sph-header-layout h1 {
        margin: 0;
        font-size: 62px;
        font-weight: 700;
        line-height: 74px;
        color: var(--primary);
    }

    .sph-header-layout p {
        font-size: 32px;
        font-weight: 400;
        line-height: 44px;
        color: var(--primary);
    }

.sub-page-content {
    display: flex;
    flex-direction: column;
}

    .sub-page-content h2 {
        color: var(--primary);
        margin-bottom: 25px;
    }

    .sub-page-content p {
        font-size: 18px;
        line-height: 30px;
    }
    .sub-page-content li {
        font-size: 18px;
        margin-bottom:20px;
    }

.spc-comp-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spc-emp-purple {
    padding: 25px;
    border-radius: var(--box-radius-30);
    background-color: var(--col-purple-light);
    border-left: 3px var(--col-purple) solid;
}

.spc-p-right {
    padding-right: 10px;
}

.img-base {
    border-radius: 15px;
    height: 100%;
    max-width: 500px;
    max-height: 700px;
    overflow: hidden;
}

    .img-base img {
        max-width: 100%;
        height: auto;
    }

.wgp-indv-row {
    background: rgba(0,0,0,0.3);
    padding: 45px;
    border-radius: var(--box-radius-15);
    display: flex;
    height: 100%;
}

    .wgp-indv-row h3 {
        color: #fff;
    }

    .wgp-indv-row p {
        color: rgba(255,255,255,0.7);
    }

    .wgp-indv-row .icon {
        width: 35%;
        padding: 0 40px 0 30px;
    }

    .wgp-indv-row .info {
        width: 65%;
    }

.graviti-pay-promise h2 {
    color: var(--col-pink);
    margin-bottom: 25px;
}

.gpp-info {
    border-radius: var(--box-radius-15);
    background-color: var(--col-pink);
    padding: 45px;
}

    .gpp-info h5 {
        color: #fff;
        line-height: 40px;
        font-weight: 300;
        font-family: var(--copy-font);
        padding: 25px;
    }

        .gpp-info h5 span {
            font-weight: 700;
        }

.gpp-img {
    display: flex;
    justify-content: center;
}

    .gpp-img img {
        max-width: 450px;
    }



/*--------------------------------------------------------------
# Fees - Pricing
--------------------------------------------------------------*/
.sec-fees {
    background: var(--col-purple) url('/img/gpp-wallet.svg') no-repeat right top;
    background-size:420px 396px;
}
    .sec-fees h2,
    .sec-fees h3,
    .sec-fees h4,
    .sec-fees h5,
    .sec-fees p{
        color: #fff;
    }

.fees-card {
    background:#fff;
    border-radius:var(--box-radius-30);
    min-height: 250px;
    padding: 35px;
}
    .fees-card h2 {
        color: var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 50px;
        border-bottom: 1px #ccc solid;
        margin-bottom: 30px;
        padding-bottom: 15px;
    
}
    .fees-card h2 span{
        font-family:var(--copy-font);
        font-size:18px;
    }
    .fees-card ul{
        margin-bottom:25px;
    }
    .fees-card li {
        margin-bottom: 6px;
    }



/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width:768px) {
    #header {
        background: #fff;
    }

        #header .logo img {
            max-height: 60px;
            height: 60px;
        }

    .mobile-nav-toggle {
        color: var(--primary);
        font-size: 32px;
    }

    .hero-waves .btn {
        margin-bottom: 25px;
    }

    section,
    footer {
        padding: 50px 35px;
    }

    .top-features .col-md-6 {
        width: 100%;
    }

    .hp-feature-copy {
        max-width: 100%;
    }

    .top-features .col-md-6 .btn {
        margin-bottom: 25px;
    }

    .top-features .hpf-img-mask {
        width: 100%;
        height: 500px;
    }

        .top-features .hpf-img-mask img {
            width: 100%;
            max-height: 100%;
        }

    .top-features .row-rev {
        flex-direction: column-reverse;
    }

    .get-stared-row {
        flex-direction: column-reverse;
    }

        .get-stared-row .gs-col {
            width: 100%;
            min-height: 400px;
        }

            .get-stared-row .gs-col.gsc-left {
                background-size: cover;
            }

    .gsc-right {
        padding: 50px;
    }

    .gscr-arrow {
        left: -20px;
    }

    footer .col-md-3,
    footer .col-md-4,
    footer .col-md-8 {
        width: 100%;
    }

    footer p {
        padding-right: unset;
    }

    .navbar .btn, .navbar .btn:focus {
        padding: 8px 20px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        border-radius: 50px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }
}

@media (max-width:480px) {

    #hero p {
        font-size: 32px;
    }

    #hero h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .btn-big {
        font-size: 24px;
    }

    section,
    footer {
        padding: 35px 25px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .top-features .hpf-img-mask {
        height: 400px;
    }

    .gsc-right {
        padding: 40px;
    }

    .scroll-features {
        min-height: 360px;
    }

    .sf-row .card {
        border-radius: var(--box-radius-30);
        padding: 35px;
        min-height: 280px;
        margin: 15px;
    }

        .sf-row .card span {
            font-size: 100px;
            color: #fff;
        }

        .sf-row .card h3 {
            font-size: 24px;
        }

    .hp-feature-copy p {
        font-size: 18px;
    }

    .hp-feature-copy .btn {
        font-size: 20px;
    }
}

@media (max-width:400px) {
    .top-features .hpf-img-mask {
        height: 350px;
    }

    section, footer {
        padding: 25px 15px;
    }

    .gsc-right {
        padding: 30px;
    }

    .gscr-arrow {
        left: -50px;
    }
}
