@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600');

@font-face {
    font-family: 'Bank Gothic Light BT';
    src: url('../fonts/2EF970_0_0.eot');
    src: url('../fonts/2EF970_0_0.eot?#iefix') format('embedded-opentype'), url('../fonts/2EF970_0_0.woff2') format('woff2'), url('../fonts/2EF970_0_0.woff') format('woff'), url('../fonts/2EF970_0_0.ttf') format('truetype');
}

@charset "utf-8";

/* CSS Document */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #222;
    padding: 0px;
}

body.spaced {
    padding-top: 53px;
}

.bodycontent {
    margin-bottom: 60px;
    margin-top: 60px;
}

.container-fluid {
    max-width: 1500px;
}

.header {
    padding: 20px 0;
    /*height:100px;*/
    background: #222;
    color: #fff;
}

.header .logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .numbers {
    /*line-height:100px;*/
    font-size: 17px;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    font-family: 'Bank Gothic Light BT'
}

.header .numbers a.tel {
    color: #fff;
    margin-left: 10px;
}

.header .numbers a.social {
    margin-left: 10px;
    color: #fff;
}

.headerCarousel .header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=0);
}

.carousel-control-next,
.carousel-control-prev,
.carousel-indicators {
    z-index: 9999999999999;
}

h1.heading {
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Bank Gothic Light BT'
}

h1 {
    font-family: 'Bank Gothic Light BT'
}

.white {
    padding: 60px 0;
    background: #fff;
}

.grey {
    padding: 60px 0;
    background: #f6f6f6;
}

.blue {
    padding: 60px 0;
    background: #489baf;
    color: #FFF;
}

.darkgrey {
    padding: 60px 0;
    background: #222;
    color: #fff;
}

/* HEADER CAROUSEL */
.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
}

.navbar-toggler {
    padding: .5rem .5rem;
    font-size: 1rem;
    line-height: 1;
    background-color: #489baf;
    border: 1px solid #489baf;
    border-radius: 0px;
}

.navbar-collapse.collapse.show,
.navbar-collapse.collapsing {
    padding-top: 11px;
}

.dropdown-menu {
    /*left:-100px;*/
    font-family: 'Bank Gothic Light BT';
    font-size: 16px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #489baf;
}

.headerCarousel .topnav {
    margin-top: -53px;
}

.topnav.fixed-top {
    margin-top: 0px;
}

.bg-dark {
    background-color: rgba(34, 34, 34, 0.8) !important;
}

.headerCarousel {
    position: relative;
}

@media all and (max-width:992px) {
    .navbar .container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media all and (max-width:768px) {
    .header .numbers {
        line-height: 25px;
    }
}

/* The animation code */
@keyframes zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2)
    }
}

@keyframes slideFade {
    from {
        opacity: 0;
        margin-left: -100px;
    }

    to {
        opacity: 1;
        margin-left: 0;
    }
}

.headerCarousel .carousel-item .item {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: center center;
    animation: zoom 7s ease-in-out;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

.headerCarousel .carousel-item .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
}

.headerCarousel .carousel-caption {
    position: initial;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0 35px;
    opacity: 0;
    background-position: center center;
    animation: slideFade 2s ease-out;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

/* NAV */
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-family: 'Bank Gothic Light BT';
    font-size: 16px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #77bbcc;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #77bbcc;
}

/* PARALLAX */
.parallax {
    /* The image used */
    background-image: url(../images/parallax-1.jpg);
    /* Set a specific height */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 0;
}

/*
 .parallax > .container{
     position:absolute;
     top:50%;
     left:50%;
     transform:translate(-50%,-50%);
     -webkit-transform:translate(-50%,-50%);
}
*/
.parallax h1 {
    color: #FFF;
    font-size: 40px;
    font-family: 'Bank Gothic Light BT'
}

.parallax h2 {
    color: #cacaca;
    font-size: 25px;
    font-family: 'Bank Gothic Light BT'
}

.parallax h3 {
    color: #fff;
    font-size: 20px;
    font-family: 'Bank Gothic Light BT'
}

.featuredimg {
    border: 10px solid #FFF;
}

.gold {
    color: #FC3;
    margin-bottom: 20px;
}

.btn-primary {
    color: #fff;
    background-color: #489baf;
    border-color: #489baf;
    border-radius: 0px;
    font-family: 'Bank Gothic Light BT'
}

.btn-primary:hover {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.btn-outline-primary {
    color: #489baf;
    background-color: transparent;
    background-image: none;
    border-color: #489baf;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #489baf;
    background-image: none;
    border-color: #489baf;
}

/* SEARCH */


/* FORM */
.form-control {
    border-radius: 0px;
}

/* CONTENT */
.content {
    text-align: center;
}

h2 {
    font-size: 25px;
    font-family: 'Bank Gothic Light BT';
}

.content h2 {
    font-size: 25px;
    font-family: 'Bank Gothic Light BT';
}

h3 {
    font-size: 20px;
    font-family: 'Bank Gothic Light BT';
}

.borderline {
    position: relative;
    width: 25%;
    height: 2px;
    background-color: #489baf;
    margin: 15px auto;
}

.page-header {
    padding-top: 20px;
    padding-bottom: 20px;
}

.disclaimer {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.required {
    color: #ff0000;
}

a {
    color: #489baf;
}

a:hover {
    color: #222;
    text-decoration: none;
}

.box_area {
    padding: 150px 0;
    display: block;
    margin: 0;
}

.box_area.small {
    padding: 75px 0;
}

.box_area.tiny {
    padding: 40px 0;
}

.box_area.nospace {
    padding: 0 !important;
}

.box_area.grey {
    background: #f6f6f6;
}

.box_area.dark {
    color: #fff;
    background: #131313;
}

.box_area.white {
    background: #fff;
}

.box_area h1.heading,
.box_area h2.heading,
.box_area h3.heading,
.calc h1.heading {
    padding: 0 0 20px;
    margin: 0 0 20px;
    text-align: center;
    border-bottom: solid 4px #ff7102;
    color: #333;
}

.box_area h3.heading {
    border-bottom: solid 4px #ff7102;
    display: table;
    margin: 40px auto 20px !important;
    width: auto;
    clear: both;
}

.head {
    color: #ff7102;
}

.box_area.dark h1.heading {
    border-bottom: solid 1px #ff7102;
}

.box_area h1.heading small {
    color: #ccc;
    font-size: 50%;
}

.red {
    color: #ff7102 !important;
}

.box_area h3 {
    font-size: 17px;
    color: #ff7102;
    margin: 20px 0 !important;
}

.images.main {
    position: relative;
    height: 100vh;
}

.images .meta {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 25%;
    transform: translate(0, -25%);
    -webkit-transform: translate(0, -25%);
    display: block;
    width: auto;
    height: auto;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000;
}

.images .meta h1 {
    padding: 0;
    margin: 0;
    font-size: 55px;
    font-weight: 400;
}

.images .meta h1 strong {
    font-weight: 700;
}

.images .meta h1 a {
    display: inline-block;
    padding: 10px;
    margin: 10px 0 0;
    background: #b69668;
    color: #fff;
    font-size: 14px;
}

.images .mainlogo {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.box_area .images {
    position: absolute;
}

.box_area .images:after {
    display: block;
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.box_area .text {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    z-index: 10;
    padding: 10px;
}

.box_area .text a {
    color: #77bbcc;
}

.box_area .text a:hover {
    color: #fff;
}

.overflow-hidden {
    overflow: hidden;
}

/* FEATURED */
.featured {
    text-align: center;
}

.contact-hours {
    position: relative;
    display: inline-block;
    zoom: 1;
    * display: inline;
    vertical-align: top;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    line-height: 20px;
}

.contact-hours .active {
    color: #489baf;
    font-weight: 700;
}

.contact-hours ul li {
    width: 100%;
    font-size: 12px;
}

.contact-hours span {
    width: 50%;
    float: left;
}

.base_links {
    text-align: center;
}

.base_links a {
    color: #888;
    padding-left: 5px;
    padding-right: 6px;
}

.base_links a:hover {
    color: #fff;
    text-decoration: none;
}

.base_links li {
    border-right: solid 1px #489baf;
    margin-bottom: 10px;
    display: inline-block;
}

.base_links li:last-child {
    border-right: none;
}

/* FOOTER */
.footer {
    text-align: center;
    color: #999;
    font-size: 13px;
}

.footer a {
    color: #489baf;
}

.footer a:hover {
    color: #FFF;
}

.footer h2 {
    font-size: 21px;
    color: #fff;
}

.footer hr {
    border-top: 1px solid #333;
    margin-top: 30px;
    margin-bottom: 30px;
}

.baselinks a {
    color: #999;
}

.baselinks a:hover {
    color: #FFF;
}

.boxzoom {
    position: relative;
    display: block;
    text-align: center;
}

.boxzoom .image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
    transition: all .5s ease-in-out;
    background-size: 100%;
}

.boxzoom:hover .image {
    transform: scale(1.05);
}

.boxzoom .text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    display: block;
    z-index: 5;
    color: #fff;
}

.gold {
    color: #FC6;
}

/* REVIEWS */
.reviews {
    text-align: center;
}

.reviews p {
    font-style: italic;
}

.reviews h5 {
    font-size: 25px;
    color: #b2e3ef !important;
    font-family: 'Bank Gothic Light BT'
}

.reviews h6 {
    font-size: 15px;
    font-weight: bold;
}

.reviews .carousel-control-prev {
    left: -100px;
}

.reviews .carousel-control-next {
    right: -100px;
}

.reviews .carousel-indicators {
    margin-top: 30px;
}

.reviews .carousel-indicators li {
    background-color: #6eb3c3;
}

.reviews .carousel-indicators .active {
    background-color: #b2e3ef;
}

@media (min-width: 320px) and (max-width: 640px) {
    .reviews .carousel-inner .carousel-item p {
        font-size: 14px;
    }

    .reviews .carousel-control-prev {
        left: -40px;
    }

    .reviews .carousel-control-next {
        right: -40px;
    }

    .reviews .carousel-indicators {
        top: 400px;
    }
}

@media (min-width:576px) and (max-width:768px) {
    .header .numbers {
        line-height: 25px;
        padding: 10px;
    }

    .header .numbers .tel {
        display: block;
    }
}

.page-item.active .page-link {
    color: #fff;
    background-color: #489baf;
    border-color: #489baf;
}

.page-link {
    color: #333;
}

/* Checks */
ul.checks {
    list-style: none;
    padding: 0;
}

ul.checks li:before {
    font-family: "Font Awesome 5 Free";
    content: '\f058';
    color: #f00;
    position: absolute;
    left: 4px;
}

ul.checks.grey li:before {
    color: #999;
}

ul.checks li {
    padding-left: 25px;
    position: relative;
}

.p-bottom {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    width: auto;
}

.btnglow {
    background: rgb(72, 155, 175);
    background: -moz-linear-gradient(top, rgba(72, 155, 175, 1) 0%, rgba(95, 183, 198, 1) 50%, rgba(72, 155, 175, 1) 50%, rgba(95, 183, 198, 1) 99%);
    background: -webkit-linear-gradient(top, rgba(72, 155, 175, 1) 0%, rgba(95, 183, 198, 1) 50%, rgba(72, 155, 175, 1) 50%, rgba(95, 183, 198, 1) 99%);
    background: linear-gradient(to bottom, rgba(72, 155, 175, 1) 0%, rgba(95, 183, 198, 1) 50%, rgba(72, 155, 175, 1) 50%, rgba(95, 183, 198, 1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#489baf', endColorstr='#5fb7c6', GradientType=0);

    box-shadow: 1px 1px 0 #fff, 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.btnglow:hover {
    background: rgb(54, 107, 120);
    background: -moz-linear-gradient(top, rgba(54, 107, 120, 1) 0%, rgba(78, 142, 153, 1) 50%, rgba(54, 107, 120, 1) 50%, rgba(78, 142, 153, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(54, 107, 120, 1) 0%, rgba(78, 142, 153, 1) 50%, rgba(54, 107, 120, 1) 50%, rgba(78, 142, 153, 1) 100%);
    background: linear-gradient(to bottom, rgba(54, 107, 120, 1) 0%, rgba(78, 142, 153, 1) 50%, rgba(54, 107, 120, 1) 50%, rgba(78, 142, 153, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#366b78', endColorstr='#4e8e99', GradientType=0);

    border-color: #2f5d69;
    box-shadow: 1px 1px 0 #fff, 2px 2px 5px rgba(0, 0, 0, 0.2);
}


.flexslider {
    margin: 0 auto 10px !important;
    position: relative;
    zoom: 1;
}

.affiliates img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    margin-bottom: 10px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoContainer {
    position: relative;
}

.playBtn {
    opacity: 0.5;
    filter: alpha(opacity=50);
    /* For IE8 and earlier */
    position: absolute;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    margin-left: -48px;
    /*half of the width */
    margin-top: -48px;
    /*half of the height */
}

.playBtn:hover {
    opacity: 1.0;
    filter: alpha(opacity=100);
    /* For IE8 and earlier */
}

#overview .card,
#overview .card-header {
    background: none;
    border: none;
}

.financeproposal-calc-wrapper.tablet .finance-calculator {
    background: #489baf !important;
    color: #fff;
}

.financeproposal-calc-wrapper .select {
    height: 30px;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.free {
    color: #999;
}

#pcode,
#prevpcode,
#emppcode,
#prevemppcode {
    text-transform: uppercase;
}

.has-error .control-label,
.has-error label {
    color: #e56464;
    font-weight: 700;
}

.has-error .form-control,
.has-error .form-select {
    background-color: #f8d7da;
    border: 1px solid #e56464;
}

.has-error .input-group-text {
    background-color: #e56464;
    border: 1px solid #e56464;
    color: #fff;
}
