/*################### Defaults ###################*/

nav, header, footer {
    display: block;
    color: #666;
}

body {
    line-height: 1;
    margin: 0;
    /* color: #fff; */
}

/*################### Nav Bar ###################*/

nav {
    width: 100%;
    margin: 0;
}

nav ul {
    background-color: #eee;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

ul.topnav li{
    list-style: none;
    float: left;
}

ul.topnav li.topnav-right{
    list-style: none;
    float: right;
}

ul.topnav li a {
    display: block;
    text-decoration: none;
    min-height: 16px;
    text-align: center;
    padding: 14px;
    text-transform: uppercase;
    color: #666;
}

ul.topnav li a:hover {
    background-color: #0080ff;
    color: #fff;
}

ul.topnav li.dropdownIcon {
    display: none;
    list-style: none;
    float: right;
}

label {
    font-size: 35px;
    font-weight: bold;
}

p {
    font-size: 28px;
    line-height: 1.2;
}

article p {
    font-size: 35px;
    padding: 20px;
}

.container {
    width: 100%;
    margin: auto;
    padding-top: 2%;
    padding-bottom: 2%;
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.row::after {
    display: table;
    clear: both;
    content: "";
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

* {
    box-sizing: border-box;
}

/*################### Custom Styles ###################*/

#section-1-gradient {
    background: #0080ff; /* Browsers without gradient support */
    background: -webkit-linear-gradient(#0080ff, #65A5FF); /* for Safari 5.1 to 6 */
    background: -o-linear-gradient(#0080ff, #65A5FF); /* for Opera 11.1 to 12 */
    background: -moz-linear-gradient(#0080ff, #65A5FF); /* for Firefox 3.6 to 15 */
    background: linear-gradient(#0080ff, #65A5FF); /* Standard */

    color: #fff;
}

div.box {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 0 1px #666, 0 2px 3px 0 #666;
    padding: 6px;
    margin: 10px;
    border-radius: 7px;
}

div.devIcon {
    margin: auto;
}

div.devIcon img {
    width: 50%;
}

.devIcon img {
    display: block;
    margin: auto;
    box-shadow: -10px -10px 20px 10px #666, 
                10px 10px 20px 10px #666;
}

button {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background-color: #0080ff;
    padding: 15px 60px;
    display: block;
    text-align: center;
    margin: 5px;
    border-radius: 7px;
}

button.learnMore {
    margin: 20px auto;
}

div.icon img {
    height: 60px;
}

h1.large {
    color: #fff;
    font-size: 56px;
}

h1.section2Header {
    font-size: 50px;
    text-align: center;
}

div.leftside-col {
    margin-left: 30%;
}

form h2 {
    margin-bottom: 0;
}

input[type="text"] {
    font-size: 20px;
    width: 400px;
    min-width: 50px;
    padding: 5px;
    border-radius: 7px;
}

.div.rightside-col {
    text-align: center;
    margin: 0;
}

footer.footsy {
    background-color: #666;
    color: #eee;
    padding-left: 10%;
}

footer.footsy h1 {
    font-size: 35px;
}

footer.footsy ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

footer.footsy ul li {
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
}

/*################### Mobile ###################*/
@media screen and (max-width: 680px) {
    ul.topnav li:not(:nth-child(1)) {
        display: none;
    }

    ul.topnav li.dropdownIcon {
        display: block;
        float: right;
    }

    ul.topnav.mobile li.dropdownIcon {
        position: absolute;
        top: 0;
        right: 0;
    }

    ul.topnav.mobile {
        position: relative;
    }

    ul.topnav.mobile li {
        display: inline;
        float: none;
    }

    ul.topnav.mobile li a {
         display: block;
         text-align: left;
    }

    .col-6, 
    .col-4,
    .col-5,
    .col-7 {
        width: 100%;
        margin: 0;
    }

    div.mobileStack {
        width: 50%;
        display: block;
    }

    div.leftside-col, .div.rightside-col {
        margin: 14px;
    }

    input[type="text"] {
        width: 350px;
    }

    .videoContainer iframe {
        position: relative;
        width: 95%;
        margin: 14px;
        overflow: hidden;
    }
}