/* GENERIC CSS */ 

*{
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    height: 100%;
    margin: 0;
    scroll-snap-type: y mandatory;
}

body {
    padding: 0;
    height: 100%;
    max-width: 100vw;
    margin: 0;
    overscroll-behavior-y: none;
}


h1 {
    font-size: 12.5vh;
    padding: 0;
    display: block;
    text-decoration: none;
    font-weight: 600;
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    h1 {
        font-size: 7vh;
    }
}


h2 {
    font-weight: 600;
    font-size: 40px;
    margin: 0px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

@media only screen and (max-width: 815px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 36px;
    font-weight: 600;
}

h6 {
    font-size: 14px;
    display: inline;
}

p {
    font-size: 12px;
    font-weight: 300;
}

a {
    font-size: 14px;
    text-decoration: none;
}

.textcont {
    max-width: 305px;
}

.relative {
    position: relative;
}



/* HEADER */


.headerhello {
    position: absolute;
    color: black;
    padding: 30px 100px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 15;
    box-sizing: border-box;
}


.hellolinks { 
    padding: 0px 30px;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.logo {
    width: 60px;
}

.logomobile {
    display: none;
    width: 30px;
}

.burgerwhite {
    display: none;
    width: 25px;
}

.mobilenavcont {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    
    height: 80%;
    width: 90%;
    left: 5%;
    top: 9%;
    background-color: #F5F5F5;
    border-radius: 10px;
    z-index: 20;
    overflow-x: hidden;
    padding-top: 30%;
    padding-bottom: 10%;
    box-sizing: border-box;

    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobilenavlinkscont a {
    font-size: 18px;
    color: black;
    display: block;
    border: 1px solid black;
    margin-bottom: 20px;
    padding: 5px 0px;
    width: 195px;
    text-align: center;
    border-radius: 15px;
}

.mobilenavconnectcont {
    text-align: center;
    width: 60%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobilesnavconnect {
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

.mobilenavsocialiconscont {
    height: 40px;
    display: flex;
    justify-content: space-evenly;
}

.mobilenavsocialiconscont a {
    font-size: 0;
}

/* ANIMATED BURGER ICON */ 

.animatedburgerwhite {
    z-index: 30;
    display: none;
}

.animatedburgerwhitebar1, .animatedburgerwhitebar2, .animatedburgerwhitebar3 {
    width: 27px;
    height: 3px;
    margin-bottom: 6px;
    transition: 0.4s;
    background-color: black;
}

/* Rotate first bar */
.change .animatedburgerwhitebar1 {
    -webkit-transform: rotate(-45deg) translate(-8px, 4px) ;
    transform: rotate(-45deg) translate(-8px, 4px) ;
  }
  
/* Fade out the second bar */
.change .animatedburgerwhitebar2 {
    opacity: 0;
  }

/* Rotate last bar */
.change .animatedburgerwhitebar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -4px) ;
    transform: rotate(45deg) translate(-8px, -4px) ;
  }
 

/* HEADER FOR MOBILE */

@media only screen and (max-width: 815px) {
    .burgerwhite {
        display: none;
    }

    .animatedburgerwhite {
        display: block;
    }

    .hellolinks {
        display: none;
    }

    .letschat {
        display: none;
    }

    .logo {
        display: none;
    }

    .logomobile {
        display: initial;
    }

    .headerhello {
        padding: 15px 5%;
        width: 100vw;
        z-index: 15;
    }


} 


/* LETS CHAT BUTTON */ 

.letschat {
    background-color: black;
    color: white;
    border-radius: 50px;
    padding: 5px 30px;
    text-align: center;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
}


/* BACK TO PROJECTS BUTTON */ 


.backtoprojectsarrow {
    position: fixed;
    bottom: 25px;
    left: 100px;
    z-index: 50;
    color: black;
    text-decoration: none;
  } 

.backtoprojectstext {
    display: inline-block;
    padding-left: 20px;
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .backtoprojectstext, .backtoprojectsarrow {
        display: none;
    }
}










/* 1.0 Title Section */ 

.titlesectioncont {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.titlecont {
    background-color: #0AB68B;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 75px 0 75px 200px;
}

.unumtitlelogo {
    height: 8vh;
    display: block;
}

.titlecont h3 {
    color: white;
}

.titlecont p {
    width: 305px;
    color: white;
    padding-top: 50px;
}

.welcomecont {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcomeclay {
    height: 71.5vh;
    margin-left: -90px;
}

.heroimage {
    width: 100%;
    height: 700px;
    background-image: url('Images/09_UNUM/Hero\ Cover\ Unum.png');
    background-size: cover;
    background-position: center;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .titlecont {
        padding: 75px 0 75px 100px;
    }

    .unumtitlelogo {
        height: 7vh;
    }
}


/* IPAD */

@media only screen and (max-width: 1024px) {
    .welcomecont {
        justify-content: flex-end;
    }

    .welcomeclay {
        margin-right: 150px;
    }

    .titlecont {
        width: 60%;
        padding: 50px 0 50px 100px;
    }

    .heroimage {
        height: 475px;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .unumtitlelogo {
        height: 6vh;
    }

    .welcomeclay {
        height: 50vh;
        margin-right: 100px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .welcomeclay {
        display: none;
    }

    .titlesectioncont {
        height: initial;
    }

    .titlecont {
        width: 100%;
        padding: 150px 20px;
        align-items: center;
    }

    .heroimage {
        height: 200px;
    }
}












/* 2.0 Problem Section */ 

.problemsectioncont {
    width: 100%;
    padding: 200px 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monzoamexrev {
    width: 40vw;
}

.problemtextcont {
    max-width: 305px;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .problemsectioncont {
        padding: 100px 150px;
    }

    .monzoamexrev {
        width: 50vw;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .problemsectioncont {
        padding: 100px;
    }

    .monzoamexrev {
        width: 45vw;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .problemsectioncont {
        padding: 20px;
        flex-direction: column-reverse;
    }

    .monzoamexrev {
        width: 100%;
        margin: 50px 0;
    }
}




/* 3.0 Card Reveal Section */ 

.cardrevealsection {
    background-color: tomato;
    margin-top: 200px;
    margin-bottom: 200px;
}

.cardrevealcont {
    padding: 150px 200px;
    height: 500px;
    background-color: #0AB68B;
    display: flex;
    justify-content: space-between;
    overflow: visible;
    align-items: center;
}

.solutiontextcont {
    max-width: 305px;
    color: white;
}

.cardinsleve {
    max-width: 45vw;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .cardrevealcont {
        padding: 100px 100px;
        height: 400px;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .cardrevealsection {
        margin-top: 0;
        margin-bottom: 100px;
    }

    .cardinsleve {
        max-width: 30vw;
    }

    .cardrevealcont {
        height: 600px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .cardrevealcont {
        flex-direction: column;
        height: initial;
        padding: 20px;
    }

    .cardrevealsection {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .cardinsleve {
        max-width: 80vw;
    }
}







/* 4.0 One card one app */ 

.onecardoneappsection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.onecardoneappsection h1 {
    font-size: 8vh;
    margin: 0;
    color: #028174;
}

.onedescont {
    max-width: 305px;
}

.onesubcont {
    display: flex;
    align-items: center;
    padding-right: 130px;
}

.cardsclay {
    height: 87.5vh;
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .onesubcont {
        padding-right: 0;
    }

    .cardsclay {
        height: 70vh;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .cardsclay {
        height: 40vh;
    }

    .onecardoneappsection h1 {
        font-size: 4vh;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .onesubcont {
        flex-direction: column;
    }

    .cardsclay {
        height: 50vh;
    }
}







/* 5.0 - Changing cards section */  

.changingcardssection {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 200px;

}

.midchange, .afterchange {
    max-height: 75vh;
    margin: 0 -75px;
}

.changingdescont {
    padding-right: 100px;
    box-sizing: content-box;
}

.changingcardsscreencont {
    position: relative;
}

.backcard {
    height: 25vh;
    position: absolute;
    right: -200px;
    bottom: 20vh;
    z-index: -1;
    transform: rotate(40deg);
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .changingcardssection {
        padding: 0 100px;
    }

    .midchange, .afterchange {
        max-height: 70vh;
        margin: 0 -75px;
    }

    .backcard {
        display: none;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .midchange, .afterchange {
        max-height: 60vh;
        margin: 0 -50px;
    }

    .changingdescont {
        padding-right: 50px;
    }
}


/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .midchange, .afterchange {
        height: 35vh;
    }

    .changingcardssection {
        padding: 0;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .changingcardssection {
        flex-direction: column;
    }

    .changingdescont {
        padding: 0;
    }

    .midchange, .afterchange {
        margin: 0 -30px;
    }
}





/* 6.0 Battery Dead */

.batterydeadsection {
    display: flex;
    justify-content: center;
    align-items: center;
}

.batteryclay {
    height: 75vh;
    margin: 0 -75px;
}

.batterydeaddes {
    padding-left: 100px;
}

.batterydeaddes h3, .batterydeaddes h4 {
    margin: 0;
    color: #028174;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .batteryclay {
        height: 70vh;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .batterydeaddes {
        max-width: 500px;
    }

    .batterydeaddes h3 {
        padding-bottom: 20px;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .batteryclay {
        height: 40vh;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .batterydeadsection {
        flex-direction: column;
        padding: 20px;
    }

    .batterydeaddes {
        padding: 0;
    }

    .batterydeaddes h3, .batterydeaddes h4 {
        text-align: center;
    } 
}




/* 7.0 Manage Section */ 

.managesection {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    align-items: flex-start;
}

.manageclaymastercont {
    display: inline-flex;
    flex-direction: column;
}




.managesetone {
    display: flex;
    overflow: visible;
    align-items: center;
    padding-bottom: 10%;
    position: relative;
}

.arrowsmanage {
    position: absolute;
    top: 30%;
    left: 49%;
}

.managesummaryclay {
    max-height: 75vh;
    margin: 0 -75px;
}

.assignclay {
    max-height: 75vh;
    margin: 0 -75px;
    transform: translateY(10%);
}




.managesettwo {
    display: flex;
    justify-content: flex-end;
}

.spendingclay {
    max-height: 75vh;
    margin: 0 -75px;
}



.managesetthree {
    position: relative;
}

.accountsclay {
    max-height: 75vh;
    margin: 0 -75px;
}

.arrowsmanagetwo {
    position: absolute;
    top: 30%;
    left: 49%;
}



.managedescont {
    padding-left: 100px;
    box-sizing: content-box;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: auto;
    padding-top: 20vh;
    padding-bottom: 10vh;
}

.managedescontmob {
    display: none;
}




.touchassign {
    position: absolute;
    z-index: 2;
    top: 33.7%;
    left: 68%;
}



/* IPAD */

@media only screen and (max-width: 1024px) {
    .managesection {
        padding-top: 0;
    }

    .managesummaryclay, .assignclay, .spendingclay, .accountsclay {
        max-height: 60vh;
        margin: 0 -50px;
    }

    .managedescont {
        padding-left: 50px;
    }

    .arrowsmanage, .arrowsmanagetwo {
        display: none;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .managesummaryclay, .assignclay, .spendingclay, .accountsclay {
        max-height: 40vh;
        margin: 0 -50px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .managesection {
        padding: 0;
    }

    .managedescont {
        display: none;
    }

    .manageclaymastercont {
        width: 100%;
        padding: 20px
    }

    .managesetone {
        justify-content: center;
        margin: 0;
    }

    .managesettwo {
        justify-content: center;
    }
    
    .managesetthree {
        display: flex;
        justify-content: center;
    }

    .managesummaryclay, .assignclay, .spendingclay, .accountsclay {
        max-height: 35vh;
        margin: 0 -30px;
    }

    .managedescontmob {
        display: initial;
    }
}









/* 8.0 Share Section */ 

.greysection {
    background-color: #EFEFEE;
}

.greysection h1 {
    font-size: 8vh;
    text-align: center;
    padding: 10vh 0 6vh 0;
    color: #028174;
    margin: 0;
}







.userprofilecont {
    width: 100%;
    padding: 0 100px;
    display: flex;
    margin-top: 100px;
    justify-content: center;
}

.userheadshotjes {
    width: 20vh;
    height: 20vh;
    border-radius: 20px;
}

.jescont {
    display: flex;
    margin-right: 100px;
}

.cascont {
    display: flex;
}

.jestext {
    max-width: 305px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 40px;
}

.jescont h3, .cascont h3 {
    margin: 0;
    font-size: 2vh;
    padding-bottom: 3px;
}

.jescont h4, .cascont h4{
    font-size: 12px;
    margin: 0;
    padding-bottom: 3px;
}

.jescont p, .cascont p {
    margin: 0;
}

.sharerole {
    color: #028174;
}















.userflowdiagramcont {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.userflowdia {
    width: 70%;
    margin: 150px 0;
}

.sharedstep1 {
    height: 75vh;
    margin: 0 -75px;
    margin-top: -50px;
}

.sharemastercont {
    display: flex;
    justify-content: center;
}


.shareonecont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sharedescont {
    max-width: 250px;
    height: 150px;
}


.inbetweencont {
    display: flex;
    justify-content: center;
    position: relative;
}

.inbetweencont h4 {
    color: #028174;
}

.inbetweenclay {
    height: 75vh;
    margin: 0 -75px -37.5vh -75px;
    transform: rotate(30deg);
}

.jessicasharestext {
    position: absolute;
    top: 0;
    left: 200px;
}

.caseyusestext {
    position: absolute;
    bottom: -37vh;
    left: 200px;
}



.borrowmastercont {
    width: 100%;
    margin-top: 37vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessingsharedcont {
    width: 51.9vh;
    margin: 0 -75px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.samplecard {
    max-width: 305px;
}

.accessdescont {
    padding-left: 50px;
    box-sizing: content-box;
}






.touchstep1 {
    position: absolute;
    top: 47%;
    left: 71%;
}

.touchstep3 {
    position: absolute;
    top: 44%;
    left: 39%;
}

.touchstep4 {
    position: absolute;
    top: 64%;
    left: 45%;
}

.touchstep5 {
    position: absolute;
    top: 17%;
    left: 36%;
}








/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .sharedstep1 {
        height: 63vh;
    }

    .sharedescont {
        max-width: 200px;
    }

    .inbetweenclay {
        height: 63vh;
    }

    .accessingsharedcont {
        width: 43.60vh;
    }
}


/* IPAD */

@media only screen and (max-width: 1024px) {
    .sharedstep1 {
        height: 58vh;
        margin: 0 -40px;
    }

    .jessicasharestext, .caseyusestext {
        left: 50px;
    }

    .accessingsharedcont {
        width: 40.5vh;
        margin: 0 -40px;
    }

    .samplecard {
        width: 20vw;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .sharedstep1 {
        height: 33vh;
    }

    .inbetweenclay {
        height: 33vh;
    }

    .accessingsharedcont {
        width: 23vh;
        margin: 0 -40px;
    }

    .greysection h1 {
        font-size: 4vh;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .sharemastercont {
        flex-direction: column;
    }

    .borrowmastercont {
        flex-direction: column;
    }

    .inbetweencont h4 {
        font-size: 15px;
    }

    .accessdescont {
        padding: 0;
    }

    .greysection h1 {
        font-size: 4vh;
        padding: 0;
    }

    .accessingsharedcont {
        width: 100%;
    }

    .shareonecont {
        width: 100%;
    }

    .sharedescont {
        max-width: 100%;
        height: initial;
    }

    .greysection {
        padding: 20px;
        padding-bottom: 150px;
        box-sizing: border-box;
    }

    .sharedstep1 {
        height: 50vh;
    }

    .inbetweenclay {
        height: 40vh;
    }

    .jessicasharestext, .caseyusestext {
        left: 20px;
    }

    .samplecard {
        width: 80vw;
    }

    .userprofilecont {
        padding: 0;
        flex-direction: column;
    }

    .jescont, .cascont {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .jestext {
        padding: 0;
        max-width: 100%;
        margin-top: 50px;
    }

    .userflowdia {
        width: 100%;
        margin: 60px 0;
    }

    .cascont {
        margin-top: 100px;
    }

    .borrowmastercont {
        margin-top: 20vh;
    }

}






/* 9.0 Travel Section */ 

.travelsection {
    display: flex;
    justify-content: center;
    position: relative;
}

.currencyclay {
    height: 75vh;
    margin: 0 -75px;
}

.unumplane {
    position: absolute;
    bottom: 0;
    left: -250px;
    height: 53vh;
}

.traveldes {
    padding-right: 90px;
    padding-top: 150px;
    box-sizing: content-box;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .unumplane {
        height: 45vh;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .unumplane {
        height: 20vh;
    }

    .currencyclay {
        height: 40vh;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .traveldes {
        padding-top: 100px;
    }
}


/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .travelsection {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 20px;
        align-items: center;
    }

    .unumplane {
        display: none;
    }

    .traveldes {
        padding: 0;
    }

    .currencyclay {
        height: 50vh;
    }
}







/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }