body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #333;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    letter-spacing: 1px;
}

section h2 {
    font-size: 48px;
    font-weight: bold;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    color: rgb(0, 142, 214);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #1d9b6c;
}

.light {
    font-weight: 400;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fefefe;
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #fff;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #c0c0c0;
    font-size: 16px;
}

.navbar-custom.top-nav-collapse {
    -webkit-box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
}

.navbar-custom.top-nav-collapse a {
    color: #a0a0a0;
}

.navbar-custom .nav li a {
    font-size: 12px;
    transition: all ease 0.30s;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: #333;
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    color: #333;
}

.navbar-custom .nav li.active a:hover {
    color: #000;
}

.row.feature a {
    text-decoration: underline;
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #fff;
    }
}

.intro {
    display: table;
    width: 100%;
    height: 900px !important;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-color: rgb(0, 142, 214);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
    font-weight: 100;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 60px;
    }

    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}

@media(max-width:991px) {
    .intro {
        padding-top: 100px;
    }
}

.btn-feature {
    width: 70px;
    height: 70px;
    margin: 0 0 0 20px;
    padding: 0 16px;
    border: 1px solid #007dc5;
    border-radius: 100%;
    font-size: 40px;
    color: #007dc5;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-feature:hover {
    outline: 0;
    color: #fff;
    background: rgba(0, 142, 214, .9);
}

.btn-feature.hoverTitle {
    outline: 0;
    color: #fff;
    background: rgba(0, 142, 214, .9);
}

.btn-feature i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-feature:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 100px;
    }
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #42dca3;
    color: #42dca3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #42dca3;
    outline: 0;
    color: #000;
    background-color: #42dca3;
}

footer {
    padding: 50px 0;
}

footer p {
    margin: 0;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}

.btn-primary {
    background: #005885;
    border-radius: 4px;
    padding: 16px 25px 16px 25px;
    border: 0;
    -webkit-transition: all .25s ease-in-out;
}

.btn-primary:hover {
    background-color: #e0e0e0;
    color: #333;
}

.btn-primary i {
    margin: 0 5px 0 0;
}

.top-spacing {
    min-height: 600px;
}

.intro-body .form-control:hover {
    cursor: pointer;
}

.fa-info-circle {
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
}

.fa-info-circle:hover {
    color: #333;
}

.controls {
    margin: 25px 0 0 0;
    min-height: 100px;
}

input[type='text'] {
    color: #333;
    padding: 3px 0 3px 3px;
}

.feature-left {
    padding-left: 0;
    text-align: right;
}

.feature-right {
    padding-right: 0;
    text-align: left;
}

.feature-left .feature {
    margin: 0 25px 0 0;
}

.feature-right .feature {
    margin: 0 0 0 25px;
}

.feature h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #007dc5;
}

.feature p {
    font-size: 16px;
    max-width: 260px;
}

.row.feature.right {
    float: right;
}

.feature-right .btn-feature {
    margin: 0 20px 0 0;
}

.row.feature {
    min-height: 140px;
}

@media(max-width:1200px) {
    .btn-feature {
        margin-left: 130px;
    }

    .btn-feature i {
        margin-bottom: 20px;
    }

    .btn-feature {
        width: 35px;
        height: 35px;
        padding: 0 8px;
        font-size: 20px;
    }

    .feature-left .btn-feature {
        margin: 0 0 0 234px;
    }

    .feature-right .btn-feature {
        margin: 0 0 0 23px;
    }

    .feature p {
        margin: 0 0 10px 0;
    }
}

@media(max-width:991px) {
    .feature-left .btn-feature {
        margin: 0 0 0 183px;
    }

    .feature-right .btn-feature {
        margin: 0 0 0 0;
    }
}

@media(max-width:991px) {
    .top-spacing {
        min-height: 0;
    }

    .intro {
        height: auto !important;
    }

    .intro .intro-body {
        text-align: center;
    }
}

@media(max-width:767px) {
    .btn-feature {
        display: none;
    }

    img {
        margin: 0 0 25px 0;
    }

    .feature-right {
        text-align: right;
    }

    .feature-right .feature {
        margin: 0 30px 0 0;
    }

    .feature-left {
        margin-left: 12px;
    }
}

@media(max-width:676px) {
    .feature-left {
        margin-left: 25px;
        text-align: center;
    }

    .feature-right {
        margin-left: 0;
        text-align: center;
    }
}
