/************************************************/

/* Nav Bar                                       */

/************************************************/

.navbar-default .navbar-left>li>a>.fa-user {
    font-size: 56px;
    top: 16px;
    left: 24px;
}

.navbar-default .navbar-left>li>a>.fa-phone {
    font-size: 56px;
    top: 16px;
    left: 24px;
}

/************************************************/

/* Header                                       */

/************************************************/

header {
    position: relative;
    width: 100%;
    min-height: 40vh !important;
    color: #fff;
    background-image: url(../img/billboard-xs@2x.png);
    background-color: white;
    background-position: bottom left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

@media only screen and (min-width: 768px) {
    header {
        background-image: url(../img/billboard-sm@2x.png);
    }
}

@media only screen and (min-width: 992px) {
    header {
        background-image: url(../img/billboard-md@2x.png);
    }
}

@media only screen and (min-width: 1200px) {
    header {
        background-image: url(../img/billboard-lg@2x.png);
    }
}

header .header-no-image {
    background-image: none;
}

/* Header Text */

header .header-content h1 {
    font-weight: 100;
    font-style: italic;
    line-height: 100%;
    letter-spacing: -1px;
    width: 70%;
    text-align: left;
    color: #4990e2;
}

/* Responsive font sizing: min 24px, max 42px */

@media screen and (min-width: 320px) {
    header .header-content h1 {
        font-size: calc(21px + 15 * ((100vw - 320px) / 680));
    }
}

@media screen and (min-width: 1000px) {
    header .header-content h1 {
        font-size: 42px
    }
}

/************************************************/

/* Product Cards                                */

/************************************************/

#product .stamp {
    border-radius: 80%;
    text-align: center;
    background: #e4eefa;
    font-size: calc(3vw + 3vh);
    color: rgba(74, 144, 226, 0.25);
    max-width: 288px;
    position: relative;
    width: 80%;
}

#product .stamp:before {
    content: "";
    display: block;
    padding-top: 100%;
}

#product .stamp i {
    position: absolute;
    top: .2em;
    left: 0;
    right: 0;
    bottom: 0;
}

#product .card {
    position: relative;
    top: -65px;
    border: none;
    box-shadow: none;
    background: transparent;
}

#product h3 {
    font-size: 28px;
    font-family: 'open sans';
    color: #4a90e2;
    font-weight: 600;
    line-height: 1.1;
}

#product p {
    font-size: 20px;
}

#product a.btn {
    position: relative;
    top: -65px;
    margin: 0 16px;
}

@media screen and (min-width: 990px) {
    #product .card {
        height: 25em;
    }
}

/************************************************/

/* Misc                                       */

/************************************************/

.btn-default {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(74, 144, 226, 1);
    border-color: rgba(74, 144, 226, 1);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

#learnmore {
    text-align: right;
    font-style: italic;
}