/*--browser settings reset--*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}



/*--browser settings reset END--*/



/*--consistent browser font rendering START--*/

body{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-transform: none;
}

/*--consistent browser font rendering END--*/







/*--nav START--*/



header {
    background: white;
    text-align: center;
    position: fixed;
    z-index: 99999999;
    width: 100%;
    height: 50px;
    
}

nav {
    padding-top: 5px;
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: #71B6E1;
    width: 100%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform 400ms ease-in-out;
    transition: -webkit-transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

.trial-nav{
    color: white;
    font-weight: 900;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 30px;
    width: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    display: none;
    padding-top: 10px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 10px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: black;
    height: 2px;
    width: 20px;
    border-radius: 2px;
    position: relative;
    /*--for span --*/
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    /*--don't want it to default to none (show line)*/
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 0px;

}

nav a {
    font-family: 'Nunito', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
}

nav a:hover {
    color: white;
}

.nav-toggle:checked ~ nav {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.nav-toggle:checked ~ nav a {
    opacity: 1;
    -webkit-transition: opacity 250ms ease-in-out 250ms;
    transition: opacity 250ms ease-in-out 250ms;
}


/*--nav END--*/











@media screen and (min-width: 600px){
    
/*--nav START--*/
    
    
   .nav-toggle-label {
        display: none;
    }

    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom-color: #E2F0F9;
        border-bottom-style: solid;
        border-width: 2px;



    }

    .logo {
        grid-column: 2 / span 1;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: block;
        margin-left: 0px;
    }

    nav {
        all: unset;
        grid-column: 3 / 4;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-right: 40px;
    }

    
    .trial-nav{
        font-family: 'nunito', sans-serif;
        color: #71B6E1;
        font-weight: 900;
        font-size: 13px;
    }
    
    
    nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    nav li {
        margin-left: 14px;
        margin-bottom: 0;
        margin-top: 0px;
    }

    nav a {
        opacity: 1;
        position: relative;
        color: black;
        font-size: 12px;
    }

    
    
    nav a:hover {
    color: rgba(113, 182, 225, 80%);
}
    
    
    
    nav a::before {
        content: '';
        display: block;
        height: 1px;
        background: white;
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transition: -webkit-transform ease-in-out 250ms;
        transition: -webkit-transform ease-in-out 250ms;
        transition: transform ease-in-out 250ms;
        transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
    }

    nav a:hover::before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
 
    
/*--nav END--*/    
    

    
    
}

@media screen and (min-width: 900px){
    
}