@font-face {
    font-family: Hanken Grotesk Black; 
    src: url('./fonts/HankenGrotesk-Black.ttf');
}

@font-face {
    font-family: Hanken Grotesk Medium;
    src: url('./fonts/HankenGrotesk-Medium.ttf');
}

@font-face {
    font-family: Helvetica Neue;
    font-weight: light; 
    src: url('./fonts/HelveticaNeueLight.ttf');
}
h1, h2, h3, h4, h5, h6 { /*reset for mobile and mac browsers */
    font-weight: normal;
}
body{
    -webkit-font-smoothing: antialiased;
    margin: 0;
    background: url('./images/green-topRight.svg'), url('./images/purple-topRight.svg'), 
                url('./images/purple-bottom.svg'), url('./images/green-bottom.svg'),
                url('./images/green-middle-top.svg'),  url('./images/green-middle-btm.svg'),
                url('./images/green-light-mid.svg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right 169px, right top, left bottom, right 86%, left 54.5%, left 62%, left 26%;
}

@media (min-width: 1616px) {
    body {
        background-size: auto, auto, contain, contain, contain, contain, contain, contain;
    }
}

@media (max-width: 1064px) {
    body {
        background-position: right 169px, right top, left bottom, right 86%, right 59%, right 66%, left 30%;
    }
}

@media (max-width: 900px) {
    body {
        background-position: right 169px, right top, left bottom, right 86%, right 59%, right 63%, left 30%;
    }
}

@media (max-width: 640px) {
    body {
        background-position: right 169px, right top, left bottom, right 86%, right 57.7%, right 63.2%, left 30%;
        background-size: auto, auto, auto 2250px, auto, auto, auto, auto;
    }
}

@media (max-width: 500px) {
    body {
        background-position: right 169px, right top, left bottom, right 86%, right 63%, right 65.2%, left 30%;
        background-size: auto, auto, auto 2050px, auto, auto, auto, auto;
    }
}

#nav-bar {
    height: 150px;
    background: transparent;
    display: block;
    float: left;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    transition: all ease .7s;
  }
  
  #nav-bar.scrolling {
    height: 75px;
    transition: all ease .7s;
    background-image: linear-gradient( rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0.8));
  }

.logo {
    display: inline-block;
    transition: all ease .7s;
    margin-left: 50px;
    padding-top: 50px;
    padding-bottom: 20px;
}

#logo-icon {
    float: left;
}

#logo-text {
    font-family: Hanken Grotesk Black;
    color: #080530;
    font-size: 24px;
    margin-top: 0;
    padding-top: 4px;
    padding-left: 25px;
    float: left;
}

.demo-nav-container {
    display: none;
    float: left;
    padding-top: 48px;
    transition: all ease .7s;
}

.demo-img-container {
    display: none;
    float: left;
    padding-top: 48px;
    transition: all ease .7s;
}

#nav-bar.scrolling .demo-nav-container {
    padding-top: 20px;
    transition: all ease .7s;
    transform: scale(0.9);
  }

  #nav-bar.scrolling .demo-img-container {
    padding-top: 20px;
    transition: all ease .7s;
    transform: scale(0.9);
  }
  
#nav-bar.scrolling .logo {
    padding-top: 20px;
    margin-left: 30px;
    transition: all ease .7s;
    transform: scale(0.9);
  }

nav {
    position: relative;
    float: right;
    top: 0;
    display: inline-block;
    padding-top: 32px;
    padding-right: 50px;
    transition: all ease .7s;
}

#nav-bar.scrolling nav {
    padding-right: 30px;
    padding-top: 2px;
    transition: all ease .7s;
    transform: scale(0.9);
  }

@media (max-width: 639px) {
    .logo {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
        transition: all ease .7s;

    }

    #logo-text {
        padding-top: 10px;
    }

    #nav-bar.scrolling .logo {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        transition: all ease .7s;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0), scale(0.9);
        transform: translateZ(0), scale(0.9);
      }
}

@media (max-width: 500px) {
    #logo-icon {
        width: 55px;
    }
    #logo-text {
        font-size: 20px;
        padding-left: 16px;
    }
}

h2 {
    font-family: Hanken Grotesk Black;
    font-size: 14px;
    line-height: 18px;

    color: #080530;
}

.nav-desktop {
    display: none;
    text-align: right;
}

.dropdown {
    position: relative;
    display: inline-block;
  }
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(255, 255, 255, 0.5);
    width: 85%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    margin-top: -5px;
}
  
.dropdown-content .dropdown-item {
    display: block;
    text-align: center;
    padding: 10px;
}
  
.dropdown-content .dropdown-item:hover {
    background: linear-gradient( rgb(196, 250, 243), #FFFFFF, #00D6D5) ;
}

.dropdown-text {
    color: black;
    text-decoration: none;
    font-family: Hanken Grotesk Black;
    font-size: 14px;
    padding: 5;
    margin: 0;
}

.dropdown-content .dropdown-text:hover {
    transform: translate(0, -1px);
    cursor: pointer;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}

#new-caption {
    position: absolute;
    top: -20px;
    left: 165px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient( rgb(183, 235, 235), #00D6D5, rgb(0, 177, 177));
    border-radius: 50%;
    box-shadow:  0px 2px 5px rgba(0, 0, 0, 0.63);
}

#new-text {
    font-family: Hanken Grotesk Black;
    font-size: 10px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgb(0, 66, 66);
}

.nav-li {
    display: inline-block;
    margin-right: 25px;
}

@media (min-width: 1200px) {
    h2 {
        font-size: 16px;
        line-height: 19px;
    }
    .nav-li {
        margin-right: 35px;
    }
}

.login {
    display: none;
}

@media (min-width: 840px) {
    .login {
        display: inline-block;
        margin-top: 15px;
    }
}

.img-container {
    display: inline-block;
}

#separator {
    display: none;
}

@media (min-width: 1080px) {
    .nav-desktop {
        display: inline-block;
    }
    .login {
        margin-top: 0;
    }
    #separator {
        display: inline-block;
    }

}

.nav-ul {
    display: inline-block;
}

.nav-moveable {
    display: inline;
    text-align: right;
}

#separator {
    padding-right: 35px;
    vertical-align: -50%;
}

#separator-demo {
    padding-right: 20px;
    padding-left: 40px;
    vertical-align: -50%;
}

#login-icon {
    padding-right: 20px;
    vertical-align: -10%;
}

.login-text-container {
    display: inline-block;
}

button {
    background: #F86410;
    border-radius: 5px;
    border: none;
    padding: 0;
    margin: 0;
    font-family: Hanken Grotesk Black;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;

    transition: all .35s ease-in-out;
}

button:hover, button:focus { 
    transform: translate(0, -1.8px);
    background-color: rgb(255, 132, 60);
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s ease-in-out;
}

#h2-demo, li, .login, .nav-li, .partners {
    transition: all .2s ease-in-out;
}

#h2-demo:hover, li:hover, .login:hover, .nav-li:hover, .partners:hover {
    transform: translate(0, -2px);
    cursor: pointer;
}

a:focus #h2-demo, a:focus li, a:focus .login, a:focus .nav-li, a:focus .partners:focus {
    transform: translate(0, -2px) scale(1.01);
}

#nav-demo-btn {
    display: inline;
    font-size: 14px;
    padding: 10px 20px 10px 20px;
    margin-left: auto;
    position: relative;
    color: black;
    background-color: transparent;
}

@media (min-width: 642px) {
    .demo-nav-container, .demo-img-container {
        display: block;
        float: left
    }
    .logo {
        float: left;
    }
}

main {
    margin-top: 200px;
}

.engage-row {
    margin-top: 100px;
    max-width: 1600px;
}

@media (min-width: 1100px) {
    .connect-container {
        padding-right: 5%;
        max-width: 1100px;
    }
}

@media (width: 768px) {
    .connect-container {
        padding-right: 0%;
    }
}



h4 {
    font-family: Hanken Grotesk Black;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.35em;

}

#connect {
    margin-top: 0;
    margin-bottom: 30px;
    margin-right: 5px;
    color: #00D6D5;
    display: inline-block;
}

#inline-logos {
    display: inline-block;
    margin-bottom: 30px;
    vertical-align: -1px;
}

#L3D-inline {
    width: 115px;
    margin-top: -14px;
    margin-bottom: -14px;
    margin-left: -10px;
    margin-right: -15px;
}

#BigCommerce-inline {
    width: 95px;
    vertical-align: 0px;
    margin-left: 2px;
}

#shopify-inline {
    width: 75px;
    vertical-align: -2px;
}

#BigCommerce-inline, #L3D-inline, #shopify-inline {
    transition: all .2s ease-in-out;
    display: inline-block;
}

#L3D-inline:hover, #BigCommerce-inline:hover, #shopify-inline:hover {
    transform: translate(0, -2px);
    cursor: pointer;
}

#L3D-inline:focus, #BigCommerce-inline:focus, #shopify-inline:focus {
    transform: translate(0, -2px) scale(1.01);
}

h5 {

    font-family: Hanken Grotesk Black;
    font-size: 46px;
    line-height: 139%;
    color: #080530;
    margin-top: 0;
    margin-bottom: 0;

}

#primary-btn {
    margin-top: 40px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 80px;
    background-color: #4a3ec9;
}

.caption-box {
    width: 100%;
    /* margin-top: 25px; */
    display: block;
    padding-top: 0;
}

.caption {

    font-family: Helvetica Neue;
    font-size: 18px;
    line-height: 22px;
    text-align: center;

    color: #080530;
}

.testimonial-box {
    margin-top: 5px;
    max-width: 850px;
}

#testimonial-quote {

    font-family: Hanken Grotesk Medium;
    font-size: 22px;
    line-height: 191%;
    color: #080530;
    /* margin-top: 0; */
}

.testimonial-caption-box {
    display: inline-block;
    margin-left: 25px;
}

#testimonial-photo {
    display: inline-block;
    margin-top: 36px;
}

#testimonial-name {
    vertical-align: 5px;
    font-family: Hanken Grotesk Black;
    font-size: 18px;
    line-height: 129%;
    margin-bottom: 0;
    color: #080530;
}

#influencer-caption {
    margin-top: 10px;
    padding-top: 0;
    font-family: Helvetica Neue;
    font-size: 14px;
    line-height: 17px;
    color: #080530;
}

/* .mobile-hand-box {
    margin: 0;
    padding: 0;
}

#mobile-hand {
    display: block;
    margin-right: 0;
    margin-left: auto;
    margin-top: 20px;
    width: 70%;
    height: 100%;
    margin-bottom: -130px;
} */

.simulator-box {
    padding-left: 10%;
    padding-right: 9%;
    position: relative;
    margin-top: 40px;
}

#simulator {
    display: block;
    margin-left: auto;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 35px;
    z-index: 2;
}

#simulator-screen-container {
    display: block;
    position: absolute;
    top: 4%;
    left: 16.8%;
    right: 15%;
    border-radius: 25px;
    z-index: -1;
    background-color: #000000;
}

#simulator-screen {
    width: 100%;
    position: absolute;
    top: 0;
}

#mobile-example {
    width: 100%;
    height: 100%;
}

.brand-box {
    padding-left: 5%;
    padding-right: 5%;
}

#brand {
    margin-top: 80px;
    font-size: 48px;
    line-height: 129%;
    color: #080530;
}

.subtitle {
    margin-top: 29px;
    font-family: Helvetica Neue;
    font-size: 20px;
    line-height: 190%;

    color: #080530;
}

#subtitle-brand {
    max-width: 620px;
}

.subtitle1 {
    font-family: Helvetica Neue;
    font-size: 30px;
    line-height: 150%;
}

.subtitle-center {
    text-align: center;
}

.subtitle-center-white {
    color: #FFFFFF;
    margin-top: 25px;
}

@media (max-width: 639px) {
    .subtitle {
        font-size: 12px;
    }
    .subtitle1 {
        font-size: 16px;
    }
}

@media (max-width: 899px) {
    .subtitle {
        font-size: 15px;
    }
    .subtitle1 {
        font-size: 25px;
    }
}

@media (max-width: 450px) {
    .subtitle-center {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.brand-icons-row {
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
}

.brand-icons-box {
    display: inline-block;
    width: 45%;
    vertical-align: top;
}

.b-i-b-c2 {
    margin-left: 5%;
}

.brand-icon-container {
    display: inline-block;
    width: 20%;
    vertical-align: top;
}

.brand-icon {
    width: 100%;
}

.brand-icon-title-container {
    display: inline-block;
    width: 67%;
    margin-left: 10%;
}

.brand-icon-title {
    font-family: Hanken Grotesk Medium;
    font-size: 22px;
    vertical-align: top;
    margin-top: 0;
    line-height: 150%;
}

#demo-btn {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 80px;
    background-color: #4a3ec9;

}

@media (max-width: 1200px) {
    .brand-icon-title {
        font-size: 18px;
    }
}

@media (max-width: 639px) {
    .brand-icons-box {
        width: 100%;
    }
    .b-i-b-c2 {
        margin-left: 0;
        margin-top: 40px;
    }
    .brand-icon-title-container {
        width: 67%;
        margin-left: 10%;
    }
    .brand-icon-title {
        font-size: 22px;
    }
    .brand-icon-container {
        width: 15%;
    }
}




.design-launch-header {
    margin-top: 125px;
}

#design-launch {

    font-family: Hanken Grotesk Black;
    font-size: 48px;
    line-height: 129%;

    text-align: center;
    color: #080530;
}

.design-row {
    margin-top: 100px;
    margin-bottom: 100px;
}

.icon-box {
    display: block;
    margin-left: 20%;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: visible;
}

.icon-container {
    display: inline-block;
    width: 20%;
}

.icon {
    width: 100%;
}

.icon-title-box {
    display: inline-block;
    width: 65%;
    margin-left: 5%;
    padding-top: 0;
    vertical-align: top;
}

.icon-titles {
    font-family: Hanken Grotesk Medium;
    font-size: 26px;
    line-height: 150%;
    display: inline;
    vertical-align: top;
}

.icon-subtitle {
    margin-top: 10px;
}

@media (max-width: 1340px) {
    .icon-titles {
        font-size: 22px;
    }
}

@media (max-width: 639px) {
    .icon-box {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
    }
    .icon-title-box {
        width: 73%;
    }
    .icon-subtitle {
        font-size: 18px;
    }
    
}

@media (max-width: 530px) {
    .icon-titles {
         font-size: 18px;
     }
    .icon-subtitle {
        font-size: 15px;
    }
}









#store-connect {
    height: 100%;
    width: 70%;
    margin-left: 15%;
    margin-bottom: 5%;
}

@media (min-width: 640px) {
    #store-connect {
        height: 100%;
        width: 52%;
        margin-left: 15%;
        margin-top: 10%;
    }
    /* #mobile-hand {
        width: 100%;
        height: 100%;
    } */
    .simulator-box {
        margin-bottom: -200px;
        padding-left: 3%;
        padding-right: 3%;
        margin-top: -50px;
    }
    #simulator-screen-container {
        display: block;
        position: absolute;
        top: 4%;
        left: 16.5%;
        right: 16.5%;
        border-radius: 25px;
        z-index: -1;
    }
}

.white-tablet {
    background-color: #f9f9f9;
    border-radius: 40px 0px 0px 40px;
    padding-left: 2.5%;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    box-shadow:  0px 25px 35px rgba(0, 0, 0, 0.63);
    max-width: 750px;
    float: right;
}

#white-tablet {
    width: 100%;
    border-radius: 10px 0px 0px 10px;
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    border-left: 1px solid #E7E7E7;
}

#feat-int-btn-row {
    position: relative;
}

#features-box, #integrations-box {
    display: none;
}

#features-box.visible, #integrations-box.visible {
    display: block;
    position: absolute;
    border: solid 0.5px #E7E7E7;
    left: 10%;
    right: 10%;
    top: 210px;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 10px 55px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 2000;
    text-align: center;
}

.inline-icon-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.item-img {
    width: 28%;
}

.integrations-img {
    width: 16%;
    border-radius: 15px;
    box-shadow:  0px 5px 10px rgba(0, 0, 0, 0.4);
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 10px;
    margin-bottom: 20px;
}

#features-button {
    background: #493EC9;
    display: block;
    margin-top: 20px;
    margin-right: auto; 
    margin-left: auto;
    width: 90%;
    height: 80px;   
    box-shadow:  0px 5px 15px rgba(0, 0, 0, 0.2); 
}

#integrations-button {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    height: 80px;
    background: #00D6D5;
    box-sizing: border-box;
    border-radius: 10px;
    color: #FFFFFF;
    box-shadow:  0px 5px 15px rgba(0, 0, 0, 0.2);
}

#integrations-button:hover, #integrations-button:focus {
    background: rgba(0, 214, 214, 0.7);
}

#features-button:hover, #features-button:focus {
    background: rgba(73, 62, 201, 0.788);
}

#final-btn-primary {
    display: block;
    margin-top: 20px;
    margin-right: auto; 
    margin-left: auto;
    width: 90%;
    height: 80px;   
    box-shadow:  0px 5px 15px rgba(0, 0, 0, 0.2); 
}

#final-btn-demo {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    height: 80px;
    background: #FFFFFF;
    box-sizing: border-box;
    color: #F86410;
    box-shadow:  0px 5px 15px rgba(0, 0, 0, 0.2);
}

#final-btn-demo:hover, #final-btn-demo:focus {
    background: rgba(255, 255, 255, 0.808);
}

@media (min-width: 640px) {
    #demo-btn {
        width: 95%;
        height: 80px;
        margin-left: 0;
    }
    #features-button, #final-btn-primary  {
        margin-right: 2.5%;
        margin-left: auto;
        width: 90%;
        height: 80px;
    }
    #integrations-button, #final-btn-demo {
        margin-left: 2.5%;
        margin-right: auto;
        width: 90%;
        height: 80px;
    }
    #primary-btn {
        width: 351px;
        height: 80px;
        margin-left: 0;
    }
    .brand-box {
        padding-left: 1%;
    }
    .caption-box {
        width: 90%;
    }
    #features-box.visible, #integrations-box.visible {
        top: 150px;
    }
}

@media (min-width: 900px) {
    #features-button, #final-btn-primary {
        margin-right: 20px;
        margin-left: auto;
        width: 352px;
        height: 80px;
    }
    #integrations-button, #final-btn-demo {
        margin-left: 20px;
        margin-right: auto;
        width: 352px;
        height: 80px;
    }
    #demo-btn {
        width: 351px;
        height: 80px;
        margin-left: 0;
    }
    .caption-box {
        width: 351px;
    }
}

.use-case-row {
    max-width: 1300px;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 70px;
}

.use-case-box {
    width: 31%;
    margin-left: 1%;
    margin-right: 1%;
    float: left;
    height: 200px;
    background: #493EC9;
    border-radius: 20px;
    box-shadow:  0px 5px 10px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    padding-Top: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.use-case-box:hover, .use-case-box:focus {
    transform: translate(0, -3px) scale(1.01);
}

.use-case-img-box {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}

.usecase-img {
    width: 100%;
}

.use-case-text-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.use-case-text {
    font-family: Hanken Grotesk Black;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

@media (max-width: 950px) {
    .use-case-box {
        width: 48%;
    }
}

@media (max-width: 640px) {
    .use-case-box {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
}




.teal {
    padding-top: 200px;
    padding-bottom: 400px;
    margin-bottom: 100px;
}

@media (max-width: 500px) {
    .teal {
        padding-bottom: 100px;
    }
}

.increase-box {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.apple-box {
    display: inline-block;
    text-align: center;
}


.increase-header {
    font-family: Hanken Grotesk Black;
    font-size: 48px;
    color: #FFFFFF;
    margin:0;
}

.apple-icon {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
    vertical-align: -13px;
}

#google-pay {
    width: 120px;
}

@media (min-width: 640px) {
    .teal {
        margin-top: 400px;
        padding-top: 200px;
    }
}


.white-cards {
    margin-top: 100px;
    margin-left: 12%;
    margin-right: 12%;

}

#face-id-box, #checkout-box {
    background-color: white;
    border-radius: 10% 10% 10% 10%;
    box-shadow:  -15px 35px 75px rgba(0, 0, 0, 0.1);
    margin-left: 4%;
    margin-right: 4%;
    padding-top: 5%;
    padding-left: 5%;

}



.white-card-icons{
    width: 35%;
    padding-top: 10%;
    padding-bottom: 5%;
    padding-left: 10%;
}

#orange-cart-container {
    padding-top: 13.3%;
}

.w-c-i-images {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

.white-card-caption {
    vertical-align: top;
    padding-left: 10%;
    padding-bottom: 15%;
    padding-right: 10%;

}

.white-card-title {
   font-family: Hanken Grotesk Medium;
    font-size: 26px;
}

@media (min-width: 1600px){
    #line1::after {
        content: '\A';
        white-space: pre;
    }
}

@media (min-width: 1450px){
    #face-id-box, #checkout-box {
        min-height: 480px;
    }
}

@media (max-width: 1340px) {
    .white-card-title {
        font-size: 22px;
    }
}

@media (max-width: 1150px) {
    .white-cards {
        margin-top: 100px;
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 800px) {
    .white-cards {
        margin-top: 50px;
    }
}

@media (max-width: 639px) {
    .white-cards {
        margin-left: 10%;
        margin-right: 10%;
    }
    #face-id-box, #checkout-box {
        margin-bottom: 10%;
    }
    .white-card-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 530px) {
    .white-card-title {
         font-size: 18px;
     }
    .white-card-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    #face-id-box, #checkout-box {
        padding-top: 0;
        padding-left: 0;
    }
    .white-card-caption {
        padding-bottom: 10%;;
    
    }
}

.grow-row {
    margin-top: 50px;
    margin-bottom: 100px;
}

#grow {
    text-align: center;
}

#black-tablet {
    width: 100%;
    height: 100%;
    margin-left: -30px;
    margin-right: auto;
}

.showcase {
    padding-left: 0
}

#mbl-showcase {
    width: 100%;
}

.final-head {
    margin-bottom: 70px;
}

#final-header {

    font-family: Hanken Grotesk Black;
    font-size: 81px;
    line-height: 119%;
    text-align: center;
    color: #FFFFFF;
}

@media (min-width: 900px) {
    #final-header {
        font-size: 30px;
    }
}

@media (min-width: 1066px) {
    #final-header {
        font-size: 50px;
    }
    #grow-row {
        margin-bottom: 150px;
    }
}


.about-box {
    padding-right: 10px;
}

.p-info {
    font-family: Helvetica Neue;
    font-size: 16px;
    line-height: 212%;
    color: #FFFFFF;
}

.h4-white {
    text-align: center;
    color: #FFFFFF;
    margin-top: 50px;
}

.foot-nav-ul {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.foot-nav-li {
    font-family: Hanken Grotesk Black;
    font-size: 16px;
    line-height: 275%;
    color: #FFFFFF;

    display: list-item;
    text-align: center;
    list-style: none;
}

.foot-nav-icons {
    width: 7%;
}
 
.partner-row {
    margin-top: 50px;
}

.partners {
    display: block;
    width: 50%;
    height: 50%;
    margin-top: 50px;

    margin-left: auto;
    margin-right: auto;
}


footer {
    margin-top: 100px;
    margin-bottom: 190px;
}

.footer-li {
    display: none;
}

@media (min-width: 640px) {
    .final-head {
        margin-bottom: 200px;
    }
    .h4-white {
        text-align: left;
        margin-top: 0;
    }
    .partners {
        margin-top: 0;
        vertical-align: middle;
    }

    .partner-row {
        margin-top: 80px;
    }
    #partner1 {
        margin-left: 40%
    }
    
    #partner2 {
        margin-left: auto;
        margin-right: auto;
    }
    
    #partner3 {
        margin-left: auto;
        margin-right: 40%;
    }
    .about-box {
        padding-right: 100px;
    }
    #footer-ul {
        padding-left: 14%;
    }
    .footer-li {
        display: inline-block;
        padding-right: 30px;
    }
    .foot-nav-li {
        text-align: left;
    }
    .foot-nav-hide {
        display: none;
    }
    .foot-nav-icons {
        vertical-align: -3px;
        width: initial;
    }
}

@media (max-width: 900px) {
    #final-header {
        font-size: 40px;
    }
    h5, #brand, #design-launch, #grow  {
        font-size: 35px;
    }
    .increase-header {
        font-size: 38px;
    }
    .apple-icon {
        vertical-align: -5px;
    }
    
}

@media (max-width: 500px) {
    h5, #brand, #design-launch, #grow  {
        font-size: 30px;
    }
    .increase-header {
        font-size: 28px;
    }
    #final-header {
        font-size: 30px;
    }
    .p-info {
        font-size: 12px;
    }
}