﻿BODY {
    background-color: #f9f6ef;
    margin: 0px;
    padding: 0px;
    height: 100%;
    font-size: 16px; /*100% = 16px: 1em = 16px, (0.875em = 14px, 0.750em = 12px, 0.625em = 10px, , 0.500em = 8px) 1.063em = 17px, 1.125em = 18px, 1.188em = 19px, 1.250em = 20px, 1.375em = 22px, 1.5em = 24px, 1.625em = 26px, 1.750em = 28px, 1.875em = 30px, 2em = 32px, 2.125em = 34px, 2.250em = 36px, 2.375em = 38px, 2.500em = 40px, 3em = 48px, 4em = 64px, 5em = 80px, etc. */
}
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;
}
HTML, FORM
{
height: 100%;
}
/*HOW TO STYLE THE PLACEHOLDER TEXT*/
::-webkit-input-placeholder {
    color: #6c6c6c;
}
::-moz-placeholder {
    color: #6c6c6c;
}
/* firefox 19+ */
:-ms-input-placeholder {
    color: #6c6c6c;
}
/* ie */
input:-moz-placeholder {
    color: #6c6c6c;
}

button[disabled], html input[disabled], button[disabled]:hover, html input[disabled]:hover {
    cursor: none;
    background-color: lightgray;
}
/*pxtoem.com or w3schools.com/tags/ref_pxtoemconversion.asp to convert px to em*/
/*ARROWS*/
.arrow-up {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f00;
}

.arrow-right {
    display: inline-block;
    margin-left: .2em;
    color: #fff;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #515255;
    content: '';
}

.arrow-left {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid blue;
}
/*MENU TOGGLE*/
.navbar-default .navbar-toggle {
    background-color: #fff;
    /*Bootstrap defaults:
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;*/
}
    .navbar-default .navbar-toggle:hover, .navbar-toggle:focus {
        background-color: lightgray;
        border: #b63420 2px solid;
        /*Bootstrap defaults:background-color: #ddd;*/
    }
.sr-only {
    /*Bootstrap defaults:
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;*/
}
.navbar-default .navbar-toggle .icon-bar {
    /*Bootstrap defaults:
    background-color: #888;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;*/
}

/*MAIN MENU*/
.mainnav-container {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0px;
    text-align: center;
    padding: 0px;
    margin: 0 auto;
    display: block;
    visibility: visible;
    /*Bootstrap defaults:
    background-color: #f8f8f8;
    border-color: #e7e7e7;
    border-radius: 4px;
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;*/
}
.mainnav {
    background-color: transparent;
    display: -webkit-flex;
    margin-left: 0rem;
    margin-right: 0rem;
    font-size: 0;
    font-weight: 500;
    height: auto !important;
}
.navbar-nav > li {
    border-right: none;
    padding: 0px;
    margin: 0px;
    float: none !important;
    display: inline-block !important;
    color: #fff;
}    
.navbar-nav > li > a {
    letter-spacing: 1px;
    padding: .667em 1.667em !important;
    margin: 0 !important;
    font-weight: 500;
    color: #303e4d;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .2s ease-in-out;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
}
.navbar-nav > .open > a:hover, .navbar-nav > .open > a:focus, .navbar-nav > .open > a:visited {
    letter-spacing: 1px;
    padding: .667em 1.667em !important;
    margin: 0 !important;
    font-weight: 500;
    color: #67a27e;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .2s ease-in-out;
}
.navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
    letter-spacing: 1px;
    padding: .667em 1.667em !important;
    margin: 0 !important;
    font-weight: 500;
    color: #303e4d;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .2s ease-in-out;
}
.navbar-nav > li > a::before {
    position: absolute;
    content: '';
    height: 2px;
    bottom: -0.5rem;
    width: 0;
    left: -1rem;
    background: #67a27e;
    transition: width 0.3s ease-in;
}
.navbar-nav > li > a:hover::before, .navbar-nav > li > a:focus::before {
    width: calc(100% + 2rem);
}
.navbar-nav > .open > a::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
}
.navbar-nav > li .caret {
    display: none;
    /*Bootstrap defaults:
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;*/
}
.navbar-nav > li > .dropdown-menu /*sub-menu*/ {
    background: linear-gradient(#fff,#fff,#fff,#fff,transparent) !important;
    border: none;
    left: 0;
    margin-top: 0px;
    padding: 1rem 1.5rem 2rem;
    min-width: 12rem;
    /*Bootstrap defaults:
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)*/
    /*SUB UL MENU - SMARTMENUS AUTO CREATED
    left: 0px;
    top: auto;
    width: auto;
    margin-top: 0px;
    margin-left: 0px;
    display: none;
    min-width: 10em;
    max-width: 20em;*/
}
.navbar-nav > li > .dropdown-menu > li /*sub-menu item separator*/{
    padding: 0px;
    margin: 0px;
}
    .navbar-nav > li > .dropdown-menu > li > a /*sub-menu link style*/ {
        color: #67a27e;
        background-color: transparent;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        padding: .8rem;
        line-height: 25px;
        font-weight: 500;
        /*Bootstrap defaults:
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em !important;
    text-decoration: none;*/
    }
        .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-nav > li > .dropdown-menu > li > a:focus {
            color: #b63420;
            background-color: transparent;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: .8rem;
            line-height: 25px;
            font-weight: 500;
            text-decoration: none;
            /*Bootstrap defaults:
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;*/
        }
.navbar-nav > li > .dropdown-menu > li .caret {
    display: none;
    /*Bootstrap defaults:
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;*/
}
    .navbar-nav > li > .dropdown-menu > li > a.dropdown-toggle::after {
        border-top: .3em solid transparent;
        border-right: 0;
        border-bottom: .3em solid transparent;
        border-left: .3em solid;
        vertical-align: .135em;
    }
.dropdown-menu /*child-menu*/ {
    background: linear-gradient(#fff,#fff,#fff,#fff,transparent) !important;
    border: none;
    width: auto;
    margin: -20px 0px 0px 0px;
    padding: 1rem 1.5rem 2rem 2rem !important;
    left: 100%;
    /*Bootstrap defaults:
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);*/
    /*CHILD UL MENU - SMARTMENUS AUTO CREATED
    left: 0px;
    top: auto;
    width: auto;
    margin-top: -44px;
    margin-left: 110px;
    display: none;
    min-width: 10em;
    max-width: 20em;*/
}
.dropdown-menu > li /*child-menu item separator*/{
    border-bottom: none;
    padding: 0px;
    margin: 0px;
    /*defaults for all li's:
    padding: 0px 5px;
    margin: 0px 0px 0px 18px;*/
}
    .dropdown-menu > li > a /*child-menu link style*/ {
        color: #67a27e;
        background-color: transparent;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        padding: .8rem;
        line-height: 25px;
        font-weight: normal;
        /*Bootstrap defaults:
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em !important;
    text-decoration: none;*/
    }
        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            color: #b63420;
            background-color: transparent;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
            padding: .8rem;
            line-height: 25px;
            font-weight: normal;
            text-decoration: none;
            /*Bootstrap defaults:
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;*/
        }

/*SECONDARY MENU*/
.topnav-container {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0px;
    position: relative;
    min-height: 20px;
    display: block;
    padding: 5px 0px 10px;
    margin-right: -10px;
}
.topnav {
    background-color: transparent;
    visibility: visible;
    float: right;
}
.topbar-nav > li {
    float: left;
    padding: 0px;
    margin: 0px;
    background: none;
   border-radius: 0px;
}
    .topbar-nav > li > a {
        padding: .3rem 1rem;
        font-weight: 700;
        background: none;
        border: #b63420 2px solid;
        color: #b63420;
        border-radius: 0px;
        font-family: 'Roboto', sans-serif;
        font-size: 0.75rem;
        font-style: normal;
        letter-spacing: 2px;
        margin: .4rem .8rem;
        white-space: normal;
        transition: all .3s ease-in-out;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        word-break: break-word;
        line-height: 1;
    }
        .topbar-nav > li > a:hover, .topbar-nav > li > a:focus {
            padding: .3rem 1rem;
            font-weight: 700;
            color: #ffffff;
            background-color: #e26c5a;
            border: #b63420 2px solid;
            font-family: 'Roboto', sans-serif;
            font-size: 0.75rem;
            font-style: normal;
            letter-spacing: 2px;
            margin: .4rem .8rem;
            white-space: normal;
            transition: all .3s ease-in-out;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            word-break: break-word;
            line-height: 1;
        }

/*TEXTNAV MENU*/
.secnav-container {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0px;
    position: relative;
    display: block;
}
.secnav {
    background-color: transparent;
    float: left;
    margin: 0;
    visibility: visible !important;
    list-style: none;
}
.secbar-nav > li {
    float: left;
    padding: 0px;
    margin: 0px;
    /*Bootstrap defaults:
    position: relative;
    display: block;*/
}
    .secbar-nav > li > a {
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        color: #fff;
        text-decoration: none;
        margin-right: 2.5rem;
        /*Bootstrap defaults:
    position: relative;
    display: block;
    padding: 10px 15px;*/
    }
        .secbar-nav > li > a:hover, .secbar-nav > li > a:focus {
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
            color: #e26c5a;
            text-decoration: none;
            margin-right: 2.5rem;
            /*Bootstrap defaults:
    background-color: #eee;
    position: relative;
    display: block;
    padding: 10px 15px;*/
        }

/* MOBILE MENU STYLES */
.mm-cntrl {
    top: 100%;
    right: 0px;
    left: 0 !important;
    margin: 0px;
    padding: 0px !important;
    border-radius: 0px;
}
.tn-cntrl {
    top: auto;
    left: 0 !important;
}
.dropdown-item-button {
    display: block;
    width: 100%;
    padding: 5px 5px 5px 15px;
    clear: both;
    font-weight: bold;
    color: #b63420;
    text-align: inherit;
    white-space: normal;
    background-color: #fff;
    border-top: solid #b63420 1px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
    .dropdown-item-button:hover, .dropdown-item-button:active, .dropdown-item-button:focus {
        display: block;
        width: 100%;
        padding: 5px 5px 5px 15px;
        clear: both;
        font-weight: bold;
        color: #fff;
        text-align: inherit;
        white-space: normal;
        background-color: #b63420;
        border-top: solid #b63420 1px;
        font-size: 12px;
        text-transform: uppercase;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
    }
.dropdown-item-category, .dropdown-item-category:hover, .dropdown-item-category:active, .dropdown-item-category:focus {
    display: block;
    width: 100%;
    padding: 15px;
    clear: both;
    font-weight: bold;
    color: #000;
    text-align: center;
    white-space: normal;
    background-color: #c1c3c9;
    border: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
/* mm = main menu styles */
#mm {
    background: none;
    width: 100%;
    margin: 0px;
    padding: 0px !important;
    border: none;
    clear: both;
    position: relative;
    left: 0;
    height: auto;
    border-radius: 0px;
    top: auto;
}
    #mm > .dropdown-item-mm {
        display: block;
        width: 100%;
        clear: both;
        letter-spacing: 1px;
        padding: 1em 1.667em !important;
        margin: 0 !important;
        font-weight: 500;
        color: #303e4d;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color .2s ease-in-out;
        text-decoration: none;
        text-align: center;
        border-bottom: 2px solid transparent;
        background-color: transparent;
    }

        #mm > .dropdown-item-mm:focus, #mm > .dropdown-item-mm:hover, #mm > .dropdown-item-mm:active {
            display: block;
            width: 100%;
            clear: both;
            letter-spacing: 1px;
            padding: 1em 1.667em !important;
            margin: 0 !important;
            font-weight: 500;
            color: #303e4d;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color .2s ease-in-out;
            text-decoration: none;
            text-align: center;
            border-bottom: 2px solid #67a27e;
            background-color: transparent;
        }

.dropdown-item-mm {
    display: block;
    width: 100%;
    letter-spacing: 1px;
    padding: .8em !important;
    margin: 0 !important;
    font-weight: 500;
    color: #67a27e;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .2s ease-in-out;
    text-decoration: none;
    text-align: center;
    background-color: #fff;
}

    .dropdown-item-mm:focus, .dropdown-item-mm:hover, .dropdown-item-mm:active {
        display: block;
        width: 100%;
        letter-spacing: 1px;
        padding: .8em !important;
        margin: 0 !important;
        font-weight: 500;
        color: #b63420;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color .2s ease-in-out;
        text-decoration: none;
        text-align: center;
        background-color: #fff;
    }

#mm > .dropdown-item-mm > .hcarat-mm {
    margin-left: 20px;
}

#mm > .dropdown-item-mm > .hcarat-mm:before {
    content: "\003e";
    position: absolute;
    border: none;
    margin-top: -7px;
    font-size: 23px;
}

.hcarat-mm {
    margin-left: 20px;
}

.hcarat-mm:before {
    content: "\003e";
    position: absolute;
    border: none;
    margin-top: -3px;
    font-size: 17px;
}
/* tn = top menu styles */
#tn {
    background-color: transparent;
    background: none;
    width: 100%;
    margin: 0px 0px 0px 0px;
    border: none;
    clear: both;
    position: relative;
    left: 0;
    height: auto;
    border-radius: 0px;
    padding: 0px !important;
}

    #tn > .dropdown-item-tn {
        display: block;
        width: 100%;
        letter-spacing: 1px;
        padding: 1em 1.667em !important;
        margin: 0 !important;
        font-weight: 500;
        color: #303e4d;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        transition: color .2s ease-in-out;
        text-decoration: none;
        text-align: center;
        border-bottom: 2px solid transparent;
        background-color: transparent;
    }

        #tn > .dropdown-item-tn:focus, #tn > .dropdown-item-tn:hover, #tn > .dropdown-item-tn:active {
            display: block;
            width: 100%;
            letter-spacing: 1px;
            padding: 1em 1.667em !important;
            margin: 0 !important;
            font-weight: 500;
            color: #303e4d;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
            transition: color .2s ease-in-out;
            text-decoration: none;
            text-align: center;
            border-bottom: 2px solid #67a27e;
            background-color: transparent;
        }

.dropdown-item-tn {
    display: block;
    width: 100%;
    letter-spacing: 1px;
    padding: .8em !important;
    margin: 0 !important;
    font-weight: 500;
    color: #67a27e;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .2s ease-in-out;
    text-decoration: none;
    text-align: center;
    background-color: #fff;
}

    .dropdown-item-tn:focus, .dropdown-item-tn:hover, .dropdown-item-tn:active {
        display: block;
        width: 100%;
        letter-spacing: 1px;
        padding: .8em !important;
        margin: 0 !important;
        font-weight: 500;
        color: #b63420;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color .2s ease-in-out;
        text-decoration: none;
        text-align: center;
        background-color: #fff;
    }

/*FRAME OF SITE*/
.leadgenbg
{
	padding: 0px;
	margin: 0px auto;
    background-attachment: scroll;
	background-image: url(images/bg2.png);
	background-repeat: repeat-x;
    height: auto;
}
.bg_top {
    background: linear-gradient(#fff, #73c2e1);
    padding-right: 0px;
    padding-left: 0px;
}
.bg_main_nav {
    background-color: #303032;
    background: linear-gradient(#151516, #47494d);
    padding-right: 0px;
    padding-left: 0px;
}
.logo {
    height: 4.5rem !important;
}
.top-phone {
    padding: 40px 15px 0px 0px;
    text-align: right;
}
a.phone, a.phone:hover, a.phone:focus, a.phone:active, a.phone:visited {
    font-weight: normal;
    font-family: Book Antiqua, Ms Serif, Times New Roman;
    font-size: 24px;
    color: #003064;
    text-decoration: none;
}
.slider {
    width: 100%;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    background-color: #fff;
}
.add_trans
{
   margin: 0px;
   padding: 70px 0px 0px 0px;
}
.bg_footer {
    background: linear-gradient(#000, #46484c);
    border-top: solid 1px #fff;
    padding: 20px;
    color: #fff;
    font-size: 13px;
    padding-right: 0px;
    padding-left: 0px;
}
.footer_right {
    background-color: rgba(255,255,255,.2);
    padding: 20px;
    margin-top: 12px;
}
.footer_contact {
    border-bottom: #fff solid 1px;
    padding-left: 0px;
}
.footer_addy {
    padding-right: 0px;
    padding-left: 0px;
}
.copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-style: normal;
    line-height: 1.7;
    margin: 0px;
    display: inline-block;
    color: #fff;
}
.xsellit {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-style: normal;
    line-height: 1.7;
    margin: 0px;
    display: inline-block;
    color: #fff;
}
.copyright_lines {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-style: normal;
    line-height: 1.7;
    margin: 0px;
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
}
.copyright_mobile
{
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 10px;
	color: #000000;
	text-decoration: none;
    text-decoration: none;
    padding: 10px 0px 0px 30px;
    margin: 0px;
    float: left;
}
a.textnav {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-style: normal;
    line-height: 1.7;
    margin: 0px;
    display: inline-block;
    text-decoration: underline;
    color: #fff;
}
    a.textnav:hover, a.textnav:focus, a.textnav:active {
        font-family: 'Roboto', sans-serif;
        font-size: 0.8rem;
        letter-spacing: 1px;
        font-style: normal;
        line-height: 1.7;
        margin: 0px;
        display: inline-block;
        text-decoration: underline;
        color: #e26c5a;
    }
 .ic_bbb_footer  {
    padding: 0px 80px 0px 12px;
    margin: 0px 0px 0px 0px;
    text-align: left; 
    width: 60%;
  }
 .soc-icons {
    padding: 22px 12px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    width: 40%; 
  }  
}
.leadform
{
    padding: 0px 0px 0px 0px;
    margin: 0px;
}
.learnmore
{
	padding: 0px;
	margin: 10px 0px 0px 0px;
    border: none;
     max-width: 100%;
  height: auto;
}
.learnmore_image {
    max-width: 100%;
    height: auto;
}
.lead_col1
{
    font-family: Helvetica, Tahoma, Sans-Serif, arial;
    font-size: 1em;
    color: #fff;
    text-align: left;
    padding: 0px;
    font-weight: normal;
    line-height: 23px;
}
.lead_col2
{
    font-family: Helvetica, Tahoma, Sans-Serif, arial;
    font-size: 0.875em;
    color: #fff;
    text-align: left;
    margin: 3px 0px 0px 50px;
    font-weight: normal;
    line-height: 23px;
}
.lead_col3
{
    font-family: Helvetica, Tahoma, Sans-Serif, arial;
    font-size: 0.875em;
    color: #fff;
    text-align: left;
    margin: 3px 0px 0px 25px;
    font-weight: normal;
    line-height: 23px;
}
.lead_col4 {
        text-align: left;
        font-family: Helvetica, Tahoma, Sans-Serif, arial;
        font-size: 0.875em;
        color: #fff;
        margin: 10px 0px 0px 25px;
        font-weight: normal;
        line-height: 23px;
    }
.hp_body {
    background: linear-gradient(#fff, #fefefe);
    padding: 30px 0px;
}
.callout1 {
    background: linear-gradient(#fefefe, #d5d5d5);
    padding-bottom: 50px;
    padding-right: 0px;
    padding-left: 0px;
}
.callout1_right {
    padding-top: 60px;
    padding-right: 100px;
}
.callout1_left {
    padding: 20px 15px;
}
.callout2 {
    background-image: url(../files/callout2.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0px;
    background-attachment: fixed;
    padding-right: 0px;
    padding-left: 0px;
}
.callout2_bg {
    padding: 50px;
    background-color: rgba(255,255,255,.85);
    text-align: center;
    margin: 50px auto;
    color: #000;
    line-height: 30px;
}
.callout3 {
    padding-right: 0px;
    padding-left: 0px;
}
.callout1_inside {
    padding: 20px 0px 0px 70px;
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #000000;
    text-decoration: none;
    line-height: 1.6em;
}
.callout2_inside {
    padding: 0px 50px 0px 0px;
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #000000;
    text-decoration: none;
    line-height: 1.6em;
}
.callout3_inside {
    padding: 0px 0px 0px 0px;
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #000000;
    text-decoration: none;
    line-height: 1.6em;
}
a.isg {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
    color: #004812;
    text-decoration: none;
    font-weight: normal;
}
a.isg:hover {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
    color: #7d7e7e;
    text-decoration: none;
    font-weight: normal;
}
.linksummary {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #FFFFFF;
    text-decoration: none;
}
/*CONTENT*/
H1 {
    font-family: 'Gilda Display', serif;
    font-size: 3.5rem;
    letter-spacing: 1px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 300;
    padding-bottom: 3rem;
}
.prop_body_bg {
    background-image: url("../files/prop_body_bg.png");
}
.property {
    margin-top: -63%;
    z-index: 900;
    position: absolute;
    top: 12%;
    right: 5%;
    left: 5%;
}
    .property H1 {
        font-size: 4rem;
        color: #fff;
        text-transform: uppercase;
        text-shadow: 0 0 3px #8d919b, 0 0 5px #000;
    }
.broker {
    padding-top: 45px;
    padding-bottom: 45px;
}
.broker h2 {
    color: #303e4d;
    text-align: left;
    font-family: 'Gilda Display', serif;
    font-size: 1.9rem;
    letter-spacing: 1px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
    font-weight: 700;
}
.broker h3 {
    color: #303e4d;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 0;
    font-style: normal;
    line-height: 1.3;
}
.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}
H2 {
    font-family: 'Gilda Display', serif;
    font-size: 1.9rem;
    letter-spacing: 1px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
    color: #fff;
    padding-bottom: 1.5rem !important;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 500;
}

H3 {
    font-family: 'Gilda Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
    color: #333333;
    padding-bottom: 1.5rem !important;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 500;
}

H4 {
    font-family: 'Gilda Display', serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
    color: #b63420;
    padding-bottom: 1.5rem !important;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 500;
}
H5 {
    font-family: 'Gilda Display', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
    color: #333333;
    padding-bottom: 1.5rem !important;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: bold;
}
.maintext {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #000000;
    text-decoration: none;
    padding: 0px 0px 75px 0px;
    margin: 0px;
    line-height: 1.5em;
    clear: both;
    width: 800px;
}
.insidetext {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #000000;
    text-decoration: none;
    padding: 10px 0px 20px 0px;
    margin: 0px;
    line-height: 1.6em;
    clear: both;
}
.boldhd {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.125em;
    color: #004812;
    font-weight: bold;
    text-decoration: none;
}

.boldhd2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.125em;
    color: #939598;
    font-weight: bold;
    text-decoration: none;
}
/*WHATS NEW*/
.lastupdate {
    font-family: Poppins, sans-serif;
    color: #e26c5a;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
}
.whatsnew {
    padding: 0px;
    visibility: visible !important;
    display: inline-block;
    list-style: none;
    margin-bottom: 10px;
}
    .whatsnew > li {
        list-style: none;
        float: left;
        position: relative;
        display: block;
        margin-right: 20px;
        margin-bottom: 10px;
        margin-left: 0px;
    }
    .whatsnew > li > a, .whatsnew > li > a.highlighted {
        font-family: Poppins, sans-serif;
        color: #67a27e;
        text-decoration: none;
        padding: 60px;
        background-color: #e26c5a;
        font-size: 20px;
        text-align: center;
        display: inline-block;
    }
        .whatsnew > li > a:hover, .whatsnew > li > a:focus, .whatsnew > li > a:active, .whatsnew > li > a.highlighted:hover {
            font-family: Poppins, sans-serif;
            color: #fff;
            text-decoration: none;
            padding: 60px;
            background-color: #67a27e;
            font-size: 20px;
            text-align: center;
            display: inline-block;
        }
.newslist > li {
    list-style: none;
    float: left;
    position: relative;
    display: block;
    margin-right: 20px;
    margin-bottom: 10px;
    margin-left: 0px;
}
    .newslist > li > a, .newslist > li > a.highlighted {
        font-family: Poppins, sans-serif;
        color: #67a27e;
        text-decoration: none;
        padding: 60px;
        background-color: #e26c5a;
        font-size: 20px;
        text-align: center;
        display: inline-block;
    }
        .newslist > li > a:hover, .newslist > li > a:focus, .newslist > li > a:active, .newslist > li > a.highlighted:hover {
            font-family: Poppins, sans-serif;
            color: #fff;
            text-decoration: none;
            padding: 60px;
            background-color: #67a27e;
            font-size: 20px;
            text-align: center;
            display: inline-block;
        }

/* FORM INPUTS */
.inputButtontaf {
    color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    background-color: #326c40;
    border: #326c40 1px solid;
    cursor: pointer;
}

.inputButton {
    display: inline-block;
    margin-top: 15px;
    background-color: #ff504b;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.5s ease 0s, opacity 800ms, transform 800ms;
    opacity: 1;
    transform: translateX(0px) translateY(0px) translateZ(0px);
    -webkit-transition: background-color 500ms ease;
    transition: background-color 500ms ease;
    font-family: 'Source Sans Pro', Open Sans, Trebuchet MS, sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: uppercase;
    border-style: none;
    border-width: 0px;
}
.inputButton:hover, .inputButton:active, .inputButton:focus {
    display: inline-block;
    margin-top: 15px;
    background-color: #408387;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.5s ease 0s, opacity 800ms, transform 800ms;
    opacity: 1;
    transform: translateX(0px) translateY(0px) translateZ(0px);
    -webkit-transition: background-color 500ms ease;
    transition: background-color 500ms ease;
    font-family: 'Source Sans Pro', Open Sans, Trebuchet MS, sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: uppercase;
    border-style: none;
    border-width: 0px;
}
.inputButton_contact {
    display: block;
    margin-right: 0px;
    padding: 15px 20px;
    border-style: none;
    border-color: #000;
    border-radius: 0px;
    background-color: #e26c5a;
    font-family: Poppins, sans-serif;
    color: #fff;
    line-height: 22px;
    height: auto;
    border: 1px none #fff;
    transition: all 400ms ease;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    margin-top: 20px;
}
    .inputButton_contact:hover, .inputButton_contact:active, .inputButton_contact:focus {
        display: block;
        margin-right: 0px;
        padding: 15px 20px;
        border-style: none;
        border-color: #000;
        border-radius: 0px;
        background-color: #cc3a24;
        font-family: Poppins, sans-serif;
        color: #fff;
        line-height: 22px;
        height: auto;
        border: 1px none #fff;
        transition: all 400ms ease;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        font: inherit;
        margin-top: 20px;
    }
.inputButton2 {
    background-color: #ff504b;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.5s ease 0s, opacity 800ms, transform 800ms;
    opacity: 1;
    transform: translateX(0px) translateY(0px) translateZ(0px);
    -webkit-transition: background-color 500ms ease;
    transition: background-color 500ms ease;
    font-family: 'Source Sans Pro', Open Sans, Trebuchet MS, sans-serif;
    color: #408387;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: uppercase;
    border-style: none;
    border-width: 0px;
}
.inputButton2:hover, .inputButton2:active, .inputButton2:focus {
    background-color: #408387;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.5s ease 0s, opacity 800ms, transform 800ms;
    opacity: 1;
    transform: translateX(0px) translateY(0px) translateZ(0px);
    -webkit-transition: background-color 500ms ease;
    transition: background-color 500ms ease;
    font-family: 'Source Sans Pro', Open Sans, Trebuchet MS, sans-serif;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: uppercase;
    border-style: none;
    border-width: 0px;
}

.inputButtonJoin {
    background-color: #e26c5a;
    color: #ffffff;
    border-radius: 0;
    border: 0;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1rem 2rem;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}
    .inputButtonJoin:hover, .inputButtonJoin:active, .inputButtonJoin:focus {
        background-color: #cc3a24;
        color: #ffffff;
        border-radius: 0;
        border: 0;
        line-height: 1.5;
        margin-bottom: 1.875rem;
        padding: 1rem 2rem;
        position: relative;
        font-family: 'Roboto', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 2px;
    }
.inputJoin {
    display: inline;
    border: none;
    border-radius: 0;
    padding: .5rem .5rem;
    height: 50px;
    background: #fff;
    color: #000000;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    box-shadow: none;
    line-height: normal;
    font-weight: 400;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.inputsm {
    display: inline-block;
    width: 70%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #636363;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #9c9c9c;
    font-family: 'Source Sans Pro', Open Sans, Trebuchet MS, sans-serif;
    box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, .12);
}

.input {
    display: inline-block;
    height: 42px;
    margin-bottom: 12px;
    float: none;
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    border-radius: 0px;
    background-color: #f3f3f3;
    font-family: 'Roboto', sans-serif;
    color: #6c6c6c;
    font-size: 1rem;
    line-height: 23px;
    font-weight: 400;
    width: 100%;
    padding: 8px 12px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
}

.inputlg {
    display: inline-block;
    height: 42px;
    margin-bottom: 12px;
    float: none;
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    border-radius: 0px;
    background-color: #f3f3f3;
    font-family: Poppins, sans-serif;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    width: 100%;
    padding: 8px 12px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
}

.textarea {
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    background-color: #f3f3f3;
    font-family: Poppins, sans-serif;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    height: auto;
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
}

.textarea_contact {
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    background-color: #f3f3f3;
    font-family: Poppins, sans-serif;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    height: auto;
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
    height: 125px;
}

.textarea2 {
    box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, .12);
    font-family: 'Source Sans Pro', Open Sans, Trebuchet MS, sans-serif;
    font-size: 14px;
    color: #636363;
    border: 1px solid #9c9c9c;
    font-weight: normal;
    vertical-align: top;
    margin: 0px;
    padding: 2px 0px 0px 7px;
}

.select {
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    background-color: #f3f3f3;
    font-family: Poppins, sans-serif;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
}
.selectsized {
    width: 143px;
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    background-color: #f3f3f3;
    font-family: Poppins, sans-serif;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    display: block;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
}

th {
    font-family: verdana, helvetica, arial;
    font-size: 1em;
    color: #4F5187;
    border-bottom: 1px solid #2E3133;
}
.leadinput {
    border: none;
    border-radius: 0;
    padding: .5rem 1rem;
    background: #efefef;
    color: #000000;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    box-shadow: none;
    line-height: 1.43;
    min-height: 3.5em;
    display: block;
    height: calc(1.5em + .75rem + 2px);
    font-weight: 400;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.leadtextarea {
    min-height: 96px;
    height: auto;
    border: none;
    border-radius: 0;
    padding: .5rem 1rem;
    background: #efefef;
    color: #000000;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    box-shadow: none;
    line-height: 1.43;
    display: block;
    height: calc(1.5em + .75rem + 2px);
    font-weight: 400;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.captcha_label {
    font-family: helvetica,tahoma,verdana,arial;
    font-size: 1em;
    color: #fff;
    padding: 0px;
    margin: 0px;
    display: none;
}
.captcha_img {
    padding: 0px;
    margin: -1px 0px 0px 0px;
    height: 51px;
    display: inline-block;
    width: 24%;
}
.inputcap {
    display: inline-block;
    height: 42px;
    margin-bottom: 12px;
    margin-top: 10px;
    float: none;
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    border-radius: 0px;
    background-color: #f3f3f3;
    font-family: 'Roboto', sans-serif;
    color: #6c6c6c;
    font-size: 1rem;
    line-height: 23px;
    font-weight: 400;
    width: 100%;
    padding: 8px 12px;
    vertical-align: middle;
    border: 1px solid #cccccc;
    font: inherit;
}
.leadcaptcha {
    display: inline-block;
    width: 54%;
    border: none;
    border-radius: 0;
    padding: .5rem 1rem;
    background: #efefef;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    box-shadow: none;
    line-height: 1.43;
    min-height: 3.5em;
    height: calc(1.5em + .75rem + 2px);
    font-weight: 400;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.inputButton_captcha {
    background-color: #e26c5a;
    color: #ffffff;
    padding: 19px 15px 19px 15px;
    border-radius: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0px;
    transition: all .3s ease-in-out;
    font-style: normal;
    letter-spacing: 2px;
    white-space: normal;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    word-break: break-word;
    line-height: 1;
    border: none;
    float: right;
}
    .inputButton_captcha:hover, .inputButton_captcha:focus {
        background-color: #cc3a24;
        color: #ffffff;
        padding: 19px 15px 19px 15px;
        border-radius: 0px;
        font-family: 'Roboto', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        margin: 0px;
        transition: all .3s ease-in-out;
        font-style: normal;
        letter-spacing: 2px;
        white-space: normal;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        vertical-align: middle;
        word-break: break-word;
        line-height: 1;
        border: none;
        float: right;
    }
a.contact_phone, a.contact_phone:hover {
    font-family: Montserrat, sans-serif;
    color: #3d2442;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
}
a.contact_email {
    font-family: Montserrat, sans-serif;
    color: #3d2442;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
}
a.contact_email:hover {
    font-family: Montserrat, sans-serif;
    color: #f9ce0e;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
}

/*CONTACT TABLE*/
.contact {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f8f8f9;
}
.contact-column, .contact-column2 {
    padding: 60px 60px 30px;
    margin: 0 0 15px;
    text-align: left;
}
.contact-column2 p {
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    text-align: left;
    color: #6c6c6c;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 10px;
}
.contact input.off {
    border: 0;
    width: auto;
}
.required {
    font-family: Microsoft Sans Serif, Arial, Helvetica;
    font-size: 0.688em;
    color: Red;
    text-decoration: none;
}
.nameemaillabel {
    padding-right: 10px;
    text-align: right;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #36424A;
    text-decoration: none;
    font-weight: normal;
}
fieldset {
    margin-bottom: 10px;
    margin-right: 40px;
    border: 1px solid #2E3133;
}
label {
    margin-top: 8px;
    margin-bottom: 8px;
}
.icjoin {
    background-image: url(images/icjoin.png);
    background-attachment: scroll;
    height: 12px;
    width: 140px;
    background-repeat: no-repeat;
}
.ziptble {
    background-color: #F6F6F6;
}

.storelocatorsep {
    border-top: 1px solid #000000;
}

.logotext {
    font-family: Poppins, sans-serif;
    font-size: 1.063em;
    color: #ffffff;
    padding: 20px 0px 0px 15px;
    font-weight: normal;
    margin: 0px;
    border: none;
    text-decoration: none;
}

a.logotext {
    font-family: Poppins, sans-serif;
    font-size: 1.063em;
    color: #ffffff;
    padding: 20px 0px 0px 15px;
    font-weight: normal;
    margin: 0px;
    border: none;
    text-decoration: none;
}

    a.logotext:hover {
        font-family: Poppins, sans-serif;
        font-size: 1.063em;
        color: #ffffff;
        padding: 20px 0px 0px 15px;
        font-weight: normal;
        margin: 0px;
        border: none;
        text-decoration: none;
    }
/* Admin Login */
.adminlogin {
    width: 20%;
    margin: 0px auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #363636;
    background-color: #FFFFFF;
    padding: 20px 70px 20px 50px;
    border: solid red 0px;
}

.hd-sub_checkin {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #363636;
    text-decoration: none;
    font-weight: normal;
    margin: 0px;
    padding: 13px 0px 0px 0px;
}
/* General */
.gallery {
    margin: 0px !important;
    padding: 5px !important;
    background-color: #cecfd3 !important;
}

.bagallery_separator {
    width: 100% !important;
    height: 1px !important;
    margin: 0px !important;
    padding: 0px !important;
    background-color: #74647a !important;
}
#pictureContainer > img {
    max-width: 100%;
    height: auto;
}

.gallery_previous {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #37fefe;
    display: block;
    cursor: pointer;
}

.gallery_next {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #37fefe;
    display: block;
    cursor: pointer;
}

.gallery_mobile {
    display: none;
}

.gallery_thumbnail {
    display: inline-block;
}

.gallery_thumbnail_mobile {
    display: none;
}
.piccaption {
    text-align: center;
    padding-top: 20px;
}

.piccaption p {
    text-align: center;
}
.modal-dialog {
    z-index: 2000;
    margin-top: 50px;
}

.modal-body-zoom {
    padding-bottom: 17px;
}
a.black_link {
    color: #000000;
}

a.black_link:hover {
    color: #000000;
}

.fb_share_button {
    font-family: Arial, Sans-Serif, Helvetica;
    font-size: 0.750em;
    color: #ffffff;
}
.fb_share_button:hover {
    font-family: Arial, Sans-Serif, Helvetica;
    font-size: 0.750em;
    color: #ffffff;
}

a.fb_share_link {
    font-family: Arial, Helvetica, Verdana;
    font-size: 14px;
    color: #000000;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
}
a.fb_share_link:hover {
    font-family: Arial, Helvetica, Verdana;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
}
a.fb_share-link {
    font-family: Arial, Helvetica, Verdana;
    font-size: 14px;
    color: #000000;
    text-decoration: underline;
}
a.fb_share-link:hover {
    font-family: Arial, Helvetica, Verdana;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
}
a.twitter_link {
    font-family: Arial, Sans-Serif, Helvetica;
    font-size: 12px;
    color: #004812;
    text-decoration: none;
}
a.twitter_link:hover {
    font-family: Arial, Sans-Serif, Helvetica;
    font-size: 12px;
    color: #004812;
    text-decoration: underline;
}
a.mobile_contact {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    line-height: 20px;
}
a.mobile_contact:hover {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    line-height: 20px;
}

.footerbg {
    padding: 0px;
    margin: 0px auto;
    background-attachment: scroll;
    background-image: url(images/bg4.png);
    background-repeat: repeat-x;
    width: 100%;
    overflow: hidden;
}

.bottomfooterbg {
    padding: 25px 0px 0px 0px;
    margin: 0px auto;
    background-attachment: scroll;
    background-image: url(images/bg5.png);
    background-repeat: repeat-x;
    min-height: 35px;
    width: 100%;
    overflow: hidden;
}
.addressinfo {
    display: block;
    padding: 30px 0px 0px 0px;
}
.joininfo {
    display: block;
    padding: 30px 0px 0px 0px;
}
.addline1 {
    font-size: 1em;
    font-weight: normal !important;
    color: #004812 !important;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.addline2 {
    font-size: .95em;
    font-weight: normal !important;
    line-height: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a.mobile_phone, a.mobile_phone:hover, a.mobile_phone:active, a.mobile_phone:focus, a.mobile_phone:visited {
    font-size: 1em;
    font-weight: normal;
    line-height: 0.9rem;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #efefef;
}
a.mobile_email {
    font-size: 1em;
    font-weight: normal !important;
    line-height: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    color: #fff;
}
a.mobile_email:hover, a.mobile_email:focus, a.mobile_email:active {
    font-size: 1em;
    font-weight: normal !important;
    line-height: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: underline;
    color: #fff;
}
.addline3 {
    font-size: .95em;
    font-weight: normal !important;
}
.cobaltline
{
    padding: 10px 0px 0px 0px;
}


a.maplink {
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
    font-size: 10px !important;
    color: #004812 !important;
    text-decoration: underline !important;
}

    a.maplink:hover {
        font-family: Verdana, Geneva, Tahoma, sans-serif !important;
        font-size: 10px !important;
        color: #7d7e7e !important;
        text-decoration: underline !important;
    }

.lead_spacing {
    padding: 0px 0px 0px 10px;
}

a.hpcallout {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .750em;
    color: #004812;
    text-decoration: none;
    font-weight: normal;
}

    a.hpcallout:hover {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: .750em;
        color: #7d7e7e;
        text-decoration: underline;
        font-weight: normal;
    }
/*SLIDER STYLES*/
#myCarousel .carousel-control .slider-prev, #myCarousel .carousel-control .slider-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.42);
    position: relative;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    -webkit-user-select: none;
}
#myCarousel .carousel-control .slider-prev:before, #myCarousel .carousel-control .slider-next:before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    left: 7px;
    top: 7px;
    transition: .3s ease-in-out background;
    background: #1485c2;
}
#myCarousel .carousel-control .slider-prev:after {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    left: 14px;
    top: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/files/arrow_slider.png);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
#myCarousel .carousel-control .slider-next:after {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    left: 17px;
    top: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/files/arrow_slider.png);
}
.carousel-control.right {
    right: 0;
    left: auto;
    top: 50%;
    background-image: none;
    filter: none;
}
.carousel-control.left {
    background-image: none;
    filter: none;
    top: 50%;
}
.carousel-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #151617;
    font-size: 1.250em;
    text-align: left;
    text-shadow: none;
    line-height: 2.0em;
}
/*.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #151617 !important;
    text-align: left !important;
    text-shadow: none !important;
    filter: alpha(opacity=50);
    opacity: .5;
}*/
.hdslider {
    font-family: 'Gilda Display', serif;
    font-size: 4rem;
    line-height: 1;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: .5rem;
    text-shadow: 2px 2px 6px #000;
    text-align: left;
    color: #fff;
}
.hdslider-sub {
    font-size: 1.7rem !important;
    font-family: 'Gilda Display', serif;
    letter-spacing: 1px;
    font-style: normal;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 2px 2px 6px #000;
    color: #fff;
}

.slide1 {
    background-position: 0px 0px, 50% 0px;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
}
.img-slide {
    position: absolute;
}
.container-slide1 {
    padding: 25px;
    font-family: Montserrat, sans-serif;
    color: #73c2e1;
    font-size: 25px;
    line-height: 42px;
    font-weight: 400;
    background-color: rgba(255, 255, 255, .2);
    text-align: center;
    white-space: normal;
    margin-top: 20%;
    margin-right: 20%;
    margin-left: 5%;
    border-radius: 7px;
    margin-bottom: 20%;
}
.hp_mobile_img {
    display: none;
}
.socmedia {
    display: inline-block;
    vertical-align: top;
    padding-left: 11px;
    margin-top: -3px;
}
.translate {
    text-align: right;
}
/*MEDIA POINTS*/
@media (max-width: 1281px) {
    .container-slide1 {
        margin-top: 10%;
        margin-right: 17%;
        margin-left: 5%;
        margin-bottom: 10%;
    }
}
@media (max-width: 1201px) {
    .captcha_img {
        width: 22%;
    }

    .inputcap {
        width: 77%;
    }
}
@media (max-width: 1144px) {
    .navbar-nav > li > a, .navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
        padding: 10px 20px;
    }
}
@media (max-width: 993px) {
    .top-phone {
        padding: 15px 15px 10px 0px;
        text-align: right;
    }
    .navbar-toggle {
        position: relative;
        float: right;
        display: block;
        padding: .4rem;
        background: none;
        border: #b63420 2px solid;
        border-radius: 0px;
        white-space: normal;
        transition: all .3s ease-in-out;
    }
        .navbar-toggle .icon-bar {
            background-color: #b63420;
            height: 3px;
            width: 22px;
            display: block;
            margin: 4px;
        }
    .mainnav-container, .topnav-container {
        display: none;
    }
}
@media (max-width: 991px) {
    .copyright_lines {
        display: none;
    }
    .copyright {
        display: block;
    }
    .xsellit {
        display: block;
    }
}
@media (max-width: 991px) {    
    .mainnav, .topnav {
        display: none;
    }
}
@media (max-width: 950px) {
    .container-slide1 {
        margin-top: 13%;
        margin-right: 8%;
        margin-left: 2%;
        margin-bottom: 13%;
        font-size: 20px;
        line-height: 32px;
    }
}
@media (max-width: 769px) {
    .callout1_right {
        padding-right: 50px;
        padding-left: 40px;
    }
    .contact {
        margin-right: 20px;
        margin-left: 20px;
    }
    .captcha_img {
        width: auto;
    }
    .inputcap {
        width: 100%;
        margin-left: 0px;
    }
    .contact-column iframe {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 767px) {
    .leadcaptcha {
        width: 45%;
    }
    .cid-s3Jo0eQU1T .form-group {
        max-width: 100%;
    }
    .property {
        margin-top: -90%;
        z-index: 900;
        position: absolute;
        top: 12%;
        right: 5%;
        left: 5%;
    }
    .hdslider {
        font-size: 3rem;
        margin-top: 0;
        margin-bottom: .5rem;
        text-align: left;
    }
    .hdslider-sub {
        font-size: 1.2rem !important;
    }
    .container-slide1 {
        margin-top: 3%;
        margin-right: 55%;
        margin-left: 2%;
        margin-bottom: 5%;
    }
    .callout1_right {
        padding-top: 0px;
        padding-right: 15px;
        padding-left: 25px;
    }
    .callout1_left {
        padding: 0px 15px 10px;
        text-align: center;
    }
    .contact-column2 {
        padding: 0px 60px 30px;
    }
    .footer {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        text-align: center;
        float: none;
    }
    .footer_right {
       text-align: center;
    }
    .footer_contact {
        padding-left: 15px;
        padding-right: 15px;
    }
    .secnav-container {
        margin-left: 0px;
        text-align: center;
    }
    .secnav {
        float: none;
    }
    .secbar-nav > li {
        float: none !important;
        display: inline-block !important;
    }
    .bg_footer {
        padding: 20px 0px 0px;
    }
}
@media (max-width: 703px) {
    .container-slide1 {
        margin-top: 3%;
        margin-right: 53%;
        margin-left: 0%;
        margin-bottom: 5%;
    }
}
@media (max-width: 694px) {
    .container-slide1 {
        font-size: 18px;
        line-height: 27px;
    }
}
@media (max-width: 648px) {
    .container-slide1 {
        font-size: 18px;
        line-height: 27px;
    }
    .hdslider {
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: .5rem;
        text-align: left;
    }
    .hdslider-sub {
        font-size: 1rem !important;
    }
}
@media (max-width: 608px) {
    .translate, .addthis {
        text-align: center;
        display: block;
        width: 100%;
    }
    .content img {
        max-width: 100%;
        height: auto !important;
        width: auto !important;
    }
    .property H1 {
        font-size: 3rem;
    }
}
@media (max-width: 545px) {
    .top-phone {
        padding: 0px 15px;
        text-align: center;
        width: 100%;
    }
    .navbar-toggle {
        float: none;
        margin-top: 10px;
        margin-right: auto;
        margin-bottom: 13px;
        margin-left: auto;
    }
    .mm-cntrl, tn-cntrl {
        margin: -13px 0px 0px 0px;
        right: 0px;
    }
}
@media (max-width: 520px) {
    .contact_left {
        padding: 0px 0px 0px 0px; 
        margin: 0px; 
        width: 100%;
        vertical-align: middle;
        display: block;
        float: none;
        height: 25px;
    }
    .contact_right {
        padding: 5px 0px 0px 0px;
        margin: 0px; 
        width: 100%;
        vertical-align: middle;
        display: block;
        float: none;
        height: 35px;
    }
}
@media (max-width: 481px) {
    .leadcaptcha {
        width: 38%;
    }
    .cid-s3I8JTF5EU .carousel-caption {
        left: 10px;
    }
    .gallery_mobile {
        display: block;
    }

    .gallery_main {
        display: none;
    }

    .gallery_thumbnail {
        display: none;
    }

    .gallery_arrow {
        width: 100%
    }

    .gallery_thumbnail_mobile {
        display: block;
        width: 33%;
        margin-bottom: 10px;
    }
}
@media (max-width: 446px) {
    .copyright_mobile
    {
	    font-family: Verdana, Geneva, Tahoma, sans-serif;
	    font-size: 10px;
	    color: #000000;
	    text-decoration: none;
        padding: 0px 150px 0px 25px;
        margin: 0px;
    }
}
@media (max-width: 411px) {
    .socmedia {
        padding-left: 0px;
        margin-top: 0px;
        display: block;
        margin-bottom: 10px;
    }
}
@media (max-width: 400px) {
    .copyright_mobile {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 10px;
        color: #000000;
        text-decoration: none;
        padding: 0px 50px 0px 25px;
        margin: 0px;
    }

    .xsellit {
        padding: 0px 0px 0px 25px;
        margin: 0px 0px 0px 0px;
    }
}
@media (max-width: 391px) {
    .carousel {
        display: none;
    }
    .property {
        margin-top: -117%;
    }
    .hp_mobile_img {
        display: block;
        margin-top: 144px;
        z-index: 10;
    }
    .hdslider {
        font-size: 1.8rem;
        margin-top: -102px;
        margin-bottom: .5rem;
        text-align: center;
        z-index: 900;
    }
    .hdslider-sub {
        font-size: 1rem;
        z-index: 900;
        text-align: center;
    }
}
@media (max-width: 376px) {
    .contact {
        margin-right: 0px;
        margin-left: 0px;
    }
    .property {
        margin-top: -140%;
    }
}
@media (max-width: 321px) {
    .contact {
        margin-right: -15px;
        margin-left: -15px;
    }
    .inputcap {
        font-size: 15px;
    }
}