/* @import url('http://example.com/example_style.css'); */

/**
 * CSS @imports must be at the top of the file.      
 * Add them above this section.                             
 */



/* ==========================================================================
   HS COS Boilerplate v1.5.0                                
   Reference: http://designers.hubspot.com/docs/tools/boilerplate-css
   ========================================================================== */


/* These includes are optional, but helpful. */
/* HTML 5 Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
}

/* Support migrations from wordpress */

.wp-float-left {
    float: left;
    margin: 0 20px 20px 0;
}

.wp-float-right {
    float: right;
    margin: 0 0 20px 20px;
}

/* Responsive Google Maps */

#map_canvas img, .google-maps img {
    max-width: none;
}

/* line height fix for reCaptcha theme */
#recaptcha_table td {line-height: 0;}
.recaptchatable #recaptcha_response_field {min-height: 0;line-height: 12px;}

 





/* ==========================================================================
   Index:         
  1. BASE STYLES   
    - Variables
    - Macros
    - Base
    - Typography
  2. COS STRUCTURE
    - Structure
    - Header
    - Content
    - Footer
  3. MAIN NAVIGATION
    - Custom Menu Primary
    - Mobile Menu
  4. HELPER CLASSES 
  5. TEMPLATE MODULE CLASSES
    - Common Template Classes
    - Site Pages
    - Landing Pages
    - System Pages
  6. COS COMPONENTS
    - Blog
    - Forms
    - Buttons
  7. MISCELLANOUS
  8. MOBILE MEDIA QUERIES
   ========================================================================== */








/* ==========================================================================
   1. BASE STYLES                                             
   ========================================================================== */


 /* CUSTOM FONTS -  update the fonts as per theme's requirements* [added-a] */
    @font-face {
        font-family: 'fujisans';
        src: url('http//cdn2.hubspot.net/hubfs/2585850/Fujitsu_2016/Fonts/FujitsuSansRegular.eot');
        src: url('//cdn2.hubspot.net/hubfs/2585850/Fujitsu_2016/Fonts/FujitsuSansRegular.eot') format('embedded-opentype'),
             url('//cdn2.hubspot.net/hubfs/2585850/Fujitsu_2016/Fonts/FujitsuSansRegular.woff') format('woff'),
             url('//cdn2.hubspot.net/hubfs/2585850/Fujitsu_2016/Fonts/FujitsuSansRegular.ttf') format('truetype'),
             url('//cdn2.hubspot.net/hubfs/2585850/Fujitsu_2016/Fonts/FujitsuSansRegular.svg#fujisansc') format('svg');
    }




/* ==========================================================================
   Variables                                               
   ========================================================================== */


/**
 * Find the most consistently used font styles, colors, and container widths 
 * for your site and assign them to the jinja variables below for easy use 
 * and reference. 
 *
 * Apply the variable as shown below.  Ignore the jingja comment tags.
 *
 * 
 */

/* Colors */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */

/* Typography */
            /*  */
                         /*  */
                          /*  */
 /*  */

/* Containers */
 /* Used on '.page-center' in 'Base' and in the 'Portrait tablet to landscape and desktop' media query */




/* ==========================================================================
   Macros                                                  
   ========================================================================== */


/** 
  * Create jinja macros for CSS3 properties that need browser prefixes.
  *
  * Apply the style as shown below on it's own CSS property line.  
  * Ignore the jinja comment tags. 
  *
  * 
  */

 

/** 
  * Example of how to apply the above macro (ignore the jinja comment tags):
  *
  * a {
  *   color: red;
  *   font-size: 12px;
  *    
  * }
  */




/* ==========================================================================
   Base                                                    
   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
  background: #fff;
  color: #333;
  font-family: Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

.container-fluid .row-fluid .page-center {
  float: none;
  max-width: 1175px;
  margin: 0 auto;
}

a { color: gray; text-decoration: none; }
a:hover, a:focus { color: #000; }

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #333;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #333;
  text-shadow: none;
}

/* Corrects width issues in table elements created via the wysiwyg editor */
table tr td img {
max-width: initial;
}


.yg {
    color: #cec851;
}

.og {
    color: #ffaf00;
}

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


/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {} 
small {}
strong {}
em {}
cite {}
code {}
pre {}

sup, sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 {}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {}
h2 {}
h3 {}
h4 {}
h5 {}
h6 {}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}


.dis-table {
    display: table;
}

.dis-tabcell {
    display: table-cell;
}




/* ==========================================================================
   2. COS STRUCTURE                                            
   ========================================================================== */





/* ==========================================================================
   Structure                                               
   ========================================================================== */


/* The outer wrappers of your website */
.header-container-wrapper, 
.body-container-wrapper, 
.footer-container-wrapper {}

/* The inner wrappers of your website */
.header-container, 
.body-container, 
.footer-container {}




/* ==========================================================================
   Header
   ========================================================================== */


.header-container-wrapper {}
.header-container {}

/* Logo styling */
.header-container .hs_cos_wrapper_type_logo {}
.header-container .hs_cos_wrapper_type_logo a {}
.header-container .hs_cos_wrapper_type_logo a img {}

.header {    
    width: 100%;
  padding: 75px 100px 0px;
    color: #999;
    position: fixed;
    z-index: 10;
}

.header.sticky {
    padding: 20px 50px 20px;
    background: rgba(115,11,38,0.5);
    z-index: 25;
}

.scroll-btn.sticky {
   /* background: rgba(115,11,38,0.5); */
    border-radius: 38px;
    height: 90px;
}

.header .logo {
    position: relative;
    z-index: 10;
}

.header .top-left-side {
    position: relative;
    z-index: 10;
}

.header.fixed
{
    position: fixed;
  top: 0;
  left: 0;
}
.footer.fixed
{
  position: fixed;
  bottom: 0;
  left: 0;
}
.header a#menu-button
{
    display: block;
  width: 50px;
  height: 40px;
  padding: 11px;
    display: inline-block;
    z-index: 10;
}

.header a#menu-button:before,
.header a#menu-button:after
{
  content: '';
  display: block;
  background: #fff;
  height: 2px;
}
.header a#menu-button span
{
  background: #fff;
  display: block;
  height: 2px;
  margin: 6px 0;
}

#rs-search {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border-bottom: none;
    font-size: 20px;
    position: relative;
    top: -12px;
}

.icon-menu {
    text-align: right;
}

.hero-banner img, .abt-left .bg img {
    display: none;
}

.hero-banner, .abt-left {
    background-size: cover;
    background-repeat: no-repeat;
}

.home .section {
    min-height: 100vh !important;
}

.home .hero-banner {
    height: 100vh;
}

.hero-banner {
    height: 470px;
}

.home .hero-banner .text-content {
    min-height: 95vh;
}


.scroll-down {
    text-align: center;
    height: 0 !important;
    min-height: 0px !important;
    display: none !important;
}

.home .scroll-down {
    display: block !important;
}

.scroll-down a {
    position: fixed;
    z-index: 10;
    bottom: 30px;
    left: 48%;
    width: 75px;
}

.scroll-btn {
    padding-top: 5px;
}

ul.social-media li a, .mm-navbar-bottom li a {
    display: block;
    color: #43505b;
    padding: 8px 10px;
    background: #fff;
    border-radius: 100%;
    width: 35px;
    text-align: center;
    height: 35px;
}

ul.social-media li a:hover, .mm-navbar-bottom li a:hover {
    background: #ffaf00;
}

ul.social-media li, .mm-navbar-bottom li {
    display: inline-block;
    margin-right: 5px;
}

a.mm-close {
    display: none;
}

#menu .mm-panels>.mm-panel {
    padding: 5px 40px 0 40px;
}

#menu.mm-menu {
    background: #7e0c2a;
   -webkit-box-shadow: -4px 0px 5px 0px rgba(255,255,255,1);
    border-left: 5px solid rgba(255, 255, 255, .2);
}

#menu .mm-navbar-bottom {
    height: 60px;
    background: #7e0c2a;
    text-align: right;
}

#menu .mm-navbar-bottom li {
    float: none !important;
    width: 50px;
    display:inline-block !important;
}

#menu .mm-navbar-bottom li a {
    color: #43505b !important;
}

.mm-listview .mm-next:before {
    border-left: none !important;   
}

.hs-menu-flow-horizontal ul {
    display: none;
}

.hs-menu-flow-horizontal ul.mm-listview {
    display: block;
}

.mm-menu .mm-search input {
    color: #fff !important;
    max-height: 50px;
    height: 50px;
    font-size: 18px;
}

input#hs-search-72f7540f-7eb8-4ac5-a319-7a12322ad264 {
    background: #7e0c2a;
    border-radius: 0;
    border: 1px solid #fff;
    margin: 0 10px;
    width: 90%;
    color: #fff;
}

input#hs-search-72f7540f-7eb8-4ac5-a319-7a12322ad264::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #e0e0e0;
}
input#hs-search-72f7540f-7eb8-4ac5-a319-7a12322ad264::-moz-placeholder { /* Firefox 19+ */
  color: #e0e0e0;
}
input#hs-search-72f7540f-7eb8-4ac5-a319-7a12322ad264:-ms-input-placeholder { /* IE 10+ */
  color: #e0e0e0;
}
input#hs-search-72f7540f-7eb8-4ac5-a319-7a12322ad264:-moz-placeholder { /* Firefox 18- */
  color: #e0e0e0;
}

.lp-page .hero-banner h1 {
    font-size: 3.5em;
}

.lp-page .header {
    position: absolute;
}

.lp-page .hero-banner {
    height: auto;
    background-attachment: fixed;
}

.lp-page .left-content {
    margin: 8% 0 0;
    overflow: auto;
    max-height: 80vh;
    color: #fff;
    padding: 0 8%;
}

.lp-page .left-content::-webkit-scrollbar {
    width: 12px;
}
 
.lp-page .left-content::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
.lp-page .left-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background:rgba(100,100,100,0.3); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.lp-page .hero-banner .left-content p {
    width: 100%;
}

.lp-footer {
    position: absolute;
    bottom: 5%;
    right: 5%;
    text-align: right;
}

.lp-page .hero-banner .text-content {
    padding: 10% 10% 0%;
    min-height: 100vh;
    overflow: auto;
}



a#cta_button_479958_36323fdf-e41d-4cf0-8999-f8ab01402465:hover, a#cta_button_479958_ac4b28d2-f373-47f5-8e79-ef6983599b4b:hover, a#cta_button_479958_eb2d5073-9ad9-45aa-914a-8d36b3f36ef5:hover, a#cta_button_479958_bf661fa1-a13f-41cf-91ef-25dc397fc0cb:hover, #home-footer .footer-left-side .form-area .hs_submit .actions input:hover, a#cta_button_479958_e757b82d-80d8-4fd3-8525-22c588bc0892:hover {
    background: #FFAB00 !important;
}




/* ==========================================================================
   Content                                                 
   ========================================================================== */


.body-container-wrapper {}
.body-container {}


#page-content-area {
    margin: 5em 0;
}

#page-content-area h3 {
    color: #7d0c2a;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.2em;
}

/* Unique Pages
   ========================================================================== */

/* Homepage */

.home .hero-banner .text-content {
  padding: 17% 10% 0;
  text-align: left;
}

.hero-banner .text-content {
  padding: 10% 10% 0;
}

.hero-banner h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 72px;
    color: #fff;
    line-height: 1em;
    font-weight: bold;
}

.home .hero-banner h1 .og {
    font-size: 55px;
}

.hero-banner p {
    font-size: 16px;
    color: #fff;
    width: 380px;
    margin: 15px auto 30px;
}

.hero-banner a:hover {
    color: #aaa;
}

.lp-page .hero-banner p {
    width: 75%;
}

#about-intro .abt-left {
    height: 100vh;
    position: relative;
    width: 50%;
    z-index: 2;
}

.abt-left .man-image {
    text-align: right;
    position: absolute;
    bottom: -5px;
    left: 10%;
}

#about-intro .abt-right {
    background-color: #7e0c2a;
    height: 100vh;
    display: flex;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    width: 50%;
}

#about-intro .abt-budget {
    background-color: #ffffff;
    height: 100vh;
    display: flex;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    width: 50%;
}

.abt-right .abt-content {
    width: 100%;
}

.abt-budget .abt-content {
    width: 100%;
}
.abt-right .r-wrap {
    width: 100%;
}

.abt-budget .r-wrap {
    width: 100%;
}


.abt-content h2, .abt-content p {
    width: 100%;
    margin: 0 auto;
    padding: 0 15%;
}

.abt-content h2 {
    font-size: 4.5em;
    color: #fff;
    font-size: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 10px;
}

.r-wrap .abt-content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
}



.abt-right_budget .abt-content_budget {
    width: 100%;
}

.abt-right_budget .r-wrap_budget {
    width: 100%;
}

.abt-content_budget h2, .abt-content_budget p {
    width: 100%;
    margin: 0 auto;
    padding: 0 15%;
}

.abt-content_budget h2 {
    font-size: 4.5em;
    color: #5E6A71;
    font-size: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 10px;
}

.r-wrap_budget .abt-content_budget p {
    color: #5E6A71;
    font-size: 16px;
    margin-bottom: 25px;
}

.slide-item img.slide-bg {
    display: none;
}

#home-services .slide-item {
    /* background-size: cover;
    height: 75vh; */
    position: relative;
    transition: all .2s ease-in-out;
    padding: 20px;
    text-align: center;
}
#home-services .slide-item .dis-table,
#home-services .slide-item .dis-tabcell {
    width: 100%;
}
#home-services .slide-item .dis-tabcell a {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
#home-services .slide-item img {
    margin: 0px auto;
}
#home-services .slide-item h3 {
    margin-bottom: 10px;
    color: #7d0c2a;
}

#home-services .slide-item h3 a {
    color: #7d0c2a;
}
#home-services .slide-item p {
    max-width: 250px;
    margin: 0px auto;
}


/* #home-services .slide-item:hover {
    background-color: rgba(109,27,52,0.8);
    transform: scale(1.1);
} */

/* #home-services .slide-item:hover > .s-overlay {
    opacity: 1;

} */

/* #home-services .slide-item:hover > .appear-text {
    display: none;
} */

#home-services {
    background-color: #fff;
    display: flex;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#home-services #hs_cos_wrapper_module_14785675553806275 a:hover {
   /* background: #FFAB00 !important; */
}

.s-overlay {
    padding: 60px 70px;
    position: absolute;
    bottom: 0;
    background-color: rgba(54,13,26,0.8);
    color: #fff;
    opacity: 0;
    text-align: left;
    transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
    width: 100%;
}

.appear-text {
    padding: 10% 60px 15%;
    position: absolute;
    bottom: 0;
     background-color: rgba(54,13,26,0.8);
    color: #fff;
    text-align: left;
    width: 100%;
}

/*.slide-item:before {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: inherit;
  content: ' ';
} */

.slide-item .align-center {
    height: 500px;
    position: relative;
    z-index: 10;
    padding-top: 60%;
}

.slide-item .align-center img {
    margin: 0 auto;
}

/* Services Center White */

#home-services .service-slide {
    position: relative;
    /* height: 130vh; */
    margin-top: 100px;
}

#home-services .services-area {
    /* opacity: 0;
    z-index: -100;
    position: relative; */
    display: none;
}

.services-center-wrapper {
    width: 100%;
}

.services-center-content {
    background: #ffffff;
    min-width: 1175px;
    /* position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%); */
    /* height: 75vh; */
    padding: 20px;
}

 
.services-center-wrapper ul {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-center-wrapper ul li.services-itemh {
    float: left;
    width: 20%;
    text-decoration: none;
    list-style: none;
    /* height: 240px; */
    height: 150px;
    padding: 0 25px;
    margin-bottom: 30px;
}

.services-itemh h3 a {
    color: #7d0c2a;
    min-height: inherit;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 20px;
    text-decoration: none;
    display: table-cell;
    vertical-align: middle;
}
.services-item h3 a {
    display: table-cell;
    vertical-align: middle;
}

.services-itemh p {
    font-size: 14px;
    font-weight: normal;
    display: none;
}

.services-itemh .dis-tabcell {
    height: 110px;
    width: 225px;
    vertical-align: middle;
}

#home-services .slick-dots {
    display: none;
}


/* End Home services */

#home-blog {
    padding: 5% 0; 
    background: #d0d0d0;
}

#home-blog h2 {
    text-align: center;
    font-size: 4.5em;
    color: #7d0c2a;
}

#home-blog h2 span {
    display: inline-block;
    position: relative;
}

#home-blog h2 span:before, #home-blog h2 span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-top: 1px solid #7d0c2a;
  top: 50%;
  width: 400px;
}

#home-blog h2 span:before {
  right: 100%;
  margin-right: 15px;
}
#home-blog h2 span:after {
  left: 100%;
  margin-left: 15px;
}


#home-blog h2 {
    margin-bottom: 40px;
}

.blog-item {
    width: 31.5%;
    float: left;
    margin-right: 1.5%;
    position: relative;
    transition: background-color 1s;
    height: 245px;
    background-size: cover;
    margin-bottom: 20px;
    cursor: pointer;
}

.blog-item h4 {
    font-weight: bold;
    font-size: 1.5em;
}

.blog-item.active > .c-overlay {
    display: none;
}

.blog-item:before {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: inherit;
  content: ' ';
}

/*.blog-item:hover {
    background-color: rgba(109,27,52,0.8);
}*/

.c-overlay {
    padding: 25px 20px;
    position: absolute;
    bottom: 0;
    background-color: rgba(83,97,110,0.8);
    color: #fff;
    text-align: left;
    width: 100%;
    z-index: 3;
}

.blog-item.active > .initial-content { 
   display: block;
    transition: top 0.4s ease, bottom 0.4s ease, opacity 0.4s ease;
    opacity: 1;
    top: 100%;
    z-index: 4;
}

.initial-content {
    position: absolute;
    top: 0;
    background: #fff;
    padding: 15px 15px 30px;
    text-align: center;
    display: block;
    opacity: 0;
    cursor: auto;
    z-index: -1;
}

.initial-content p img {
    display: none;
}

.initial-content h5 {
    font-size: 1.2em;
    font-weight: bold;
}

.initial-content p {
    font-size: 1em;
}

.initial-content a.button {
    padding: 15px;
    background-color: #7d0c2a;
    color: #fff;
    display: block;
}

.initial-content a.button:hover {
   background-color: #FFAB00;
}

.c-overlay p {
    margin: 0;
}



#home-footer {
   /* background-color: #495764; */
    background-color: #7d0c2a;
    color: #fff;
    position: relative;
    z-index: 2;
    min-height: auto !important;
}

#home-footer .footer-left-side {
    background-color: #7d0c2a;
    display: flex;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    height: auto;
    width: 50%;
    padding: 7.5% 0 0;
}

#home-footer .form-area {
    padding: 0 15%;
}


#home-footer .footer-right-side {
    width: 50%;
    margin-left: 0;
    background-color: #495764;
}

#home-footer .footer-left-side .form-area h3 {
    font-family: 'Helvetica', sans-serif;
    font-size: 2.0em;
    color: #fff;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 30px !important;
}

#home-footer .footer-left-side .form-area label span {
    font-size: 1.65em;
}

#home-footer .footer-left-side .form-area label span.hs-form-required {
    display: none;
}


#home-footer .footer-left-side .form-area .input input {
    background: transparent;
    border-bottom: 2px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 87%;
    position: relative;
    top: -35px;
    left: 13%;
    height: 30px;
    outline: none;
    color: #fff;
    font-size: 1.6em;
}

#home-footer .footer-left-side .form-area .input select {
    background: transparent;
    border-bottom: 2px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 78%;
    position: relative;
    top: -35px;
    left: 22%;
    height: 30px;
    outline: none;
    color: #fff;
    font-size: 1.6em;
}

#home-footer .footer-left-side .form-area .input select option {
    color: #333;
}
#home-footer .footer-left-side .form-area .hs_submit {
    text-align: center;
    margin-top: 30px;
}

#home-footer .footer-left-side .form-area .hs_submit .actions input {
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    font-family: sans-serif;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid #fff;
    text-shadow: none;
    line-height: 1.5em;
    padding: 10px 50px;
    border-radius: 0px;
    font-size: 1.6em;
}


#home-footer .contact-info {
    display: flex;
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 7% 10% 5%;
}

#other-logo {
    padding: 5% 15% 0;
}

#other-logo .widget-type-linked_image {
    text-align: center;
}

#footerv2 p a {
    color: #fff;
}

#footerv2 .input {
    position: relative;
    height: 20px;
}

#footerv2 {
    background-color: #7d0c2a;
    padding: 50px;
    color: #fff;
}

#footerv2 .contact-info h2, #footerv2 .form-area h3 {
    font-size: 2em;
    margin-bottom: 10px !important;
    font-weight: bold;
    
}

#footerv2  .contact-info .upper-content p {
    font-size: 1.2em;
    margin: 0px;
    padding-left: 5px;
}

#footerv2 .form-area .input input {
    background: transparent;
    border-bottom: 2px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 78%;
    position: relative;
    top: -35px;
    left: 20%;
    height: 30px;
    outline: none;
    color: #fff;
    font-size: 1em;
}

#footerv2 .form-area .hs_submit .actions input {
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    font-family: sans-serif;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid #fff !important;
    text-shadow: none;
    line-height: 1.5em;
    padding: 10px 50px;
    border: none;
    border-radius: 0px;
    font-size: 1.2em;
    margin-top: 30px;
}

#footerv2 .form-area label span {
    font-size: 1.2em;
}

#footerv2 .contact-info .lower-content {
    margin-top: 15%;
}

#footerv2 .fot-soc-content {
    padding-top: 10%;
}


#footerv2 .fot-soc-content2 {
    padding-top: 10%;
}

#footerv2 ul.social-media li a, .mm-navbar-bottom li a {
    color: #7d0c2a;   
}


.contact-info h2 {
    font-family: 'Helvetica', sans-serif;
    font-size: 3.5em;
    color: #fff;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 0px !important;
}

.contact-info .upper-content p {
    font-size: 1.2em;
    margin: 0px;
    padding-left: 15px;
}

.contact-info .upper-content a {
    color: #fff;
}

.contact-info .lower-content {
    margin-top: 10%;
}

.contact-info .lower-content footer {
   /* margin-top: 20px;
    margin-left: 15px; */
}

.lower-content p {
    font-size: 1em;
}

.lower-content p a {
    color: #fff;
}

.fot-soc-content {
    text-align: right;
}


/* Services */

.services .header a#menu-button:before, .services .header a#menu-button:after, .services .header a#menu-button span {
    background-color: #7d0c2a;   
}

.services .header.sticky a#menu-button:before, .services .header.sticky a#menu-button:after, .services .header.sticky a#menu-button span {
    background-color: #fff;   
}

.services .header #rs-search {
    color: #7d0c2a;   
}

.services .header.sticky #rs-search {
    color: #fff;
}

.text-center {
    text-align: center;
}

/* Services Page Styling */
.services-inner-left {
    color: #434343;
    padding: 8em 8em;
}
.services-inner-left img, #sevices-inner-content img {
    margin-bottom: 2em;
}
.services-inner-left h2, .services-inner-left h3, .services-inner-left h2,  #services-inner-content h2,  #services-inner-content h3 {
    color: #7d0c2a;
    font-weight: bold;
    font-size: 48px;
}
#services-inner-content h1, 
#services-inner-content h2,  
#services-inner-content h3,
#services-inner-content h4,
#services-inner-content h5,
#services-inner-content h6,
.services-inner-left h4 {
    color: #7d0c2a;
    font-weight: bold;
}
#services-inner-content h1{
    font-size:4.5em;
}
#services-inner-content h2{
    font-size: 3em;
}
#services-inner-content h3 {
    font-size: 36px;
}
#services-inner-content h4 {
    font-size: 24px;
}


#services-inner-content ul {
    list-style: none;
    margin: 1em 0;
    padding: 0;
}

#services-inner-content ul li {
    padding-left: 1em; 
    text-indent: -.7em;

}

#services-inner-content ul li:before {
    content: "• ";
    color: #7d0c2a; /* or whatever color you prefer */
}
#services-inner-content .cta_button{
     font-family:'Helvetica', sans-serif !important;
}

#services-inner-content .cta_button:hover{
    background-color: #ffaf00;
}

.services-inner-right {
    background: #4d5c69;
    color: #f2f2f2;
    padding: 20% 4%;
    text-align: center;
   
}
.services-inner-right h2 {
    font-size: 1.8em;
    font-weight: bold;
}

.services-inner div > div.row-fluid-wrapper.row-depth-1.row-number-6 > div > div > div > div > div {
    min-height: 0;
}


#services-area {
    position: relative;
    background-color: #fff;
    /*padding-bottom: 2em;*/
}

.services-center-content .header-text {
    padding: 20px 0 30px;
}

#services-area .text-content h2, .services-center-content h2 {
    color: #791d2e;
    font-size: 3.2em;
    font-weight: bold;
}

#services-area .text-content h2 a, .services-center-content h2 a {
    color: #791d2e;
}

@media (min-width: 1280px) { 
    .home #services-area .text-content h2, .home .services-center-content h2 {
        margin-top: -50px;
    }
    .home .services-center-wrapper ul li:nth-child(5), .home .services-center-wrapper ul li:nth-child(6), .home .services-center-wrapper ul li:nth-child(7), .home .services-center-wrapper ul li:nth-child(8) {
        /* margin-top: -40px; */
    }
}

#services-area .text-content {
    padding-top: 10%;
    width: 50%;
    margin: 0 auto 50px;
    float: none;
}

#services-area #mserv .services-item {
    width: 24%;
}

#services-area .services-item {
    width: 19%;
    float: left;
    margin-right: 1%;
    padding: 0 10px;
    margin-bottom: 30px;
}

.services-item a {
    min-height: 100px;
    display: block;
}

#services-area .services-item h3 a {
    color: #7d0c2a;
    min-height: inherit;
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: none;
}

#services-area .services-item p {
    /* margin: 0; */
    min-height: 75px;
    display: none;
}

#services-menu {
    position: relative;
    min-height: 0;
    height: 0;
    display: none;
}

#home-services .header-services-mobile {
    display: none;
}

.navigation-toggle-open {
    position: fixed;
    top: 48%;
    left: -45px;
    z-index: 5;
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    background-color: #4d5c69;
    border-radius: 0 0 10px 10px;
}

.navigation-toggle-open #smenu-open, .navigation-toggle-close #smenu-close {
    padding: 10px 20px;
    display: block;
    color: #eaeaea;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
}



.navigation-toggle-close {
    position: absolute;
    top: 48%;
    right: -74px;
    bottom: auto;
    z-index: 7;
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    background-color: #4d5c69;
    border-radius: 0 0 10px 10px;
}

.navigation-toggle-close a {
    padding: 10px 20px;
    display: block;
    color: #eaeaea;
    border-radius: 0 0 10px 10px;
}

.service-menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    min-width: 270px;
    background: #4d5c69;
    z-index: 10;
    display: none;
}

.ser-inner-wrap {
    display: flex;
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    height: 100vh;
    
}

.ser-inner-wrap ul {
    padding: 0;
    margin: 0 0 90px;
}

.ser-inner-wrap ul li {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    list-style: none;
}

.ser-inner-wrap ul li a {
    color: #eaeaea;
    font-size: 18px;
    padding: 10px;
    display: block;
}

.ser-inner-wrap ul li a:hover {
    background: #364049;
}

.ser-inner-wrap .nav-button a {
    font-size: 16px;
    padding: 20px;
    text-align: center;
    background-color: #7d0c2a;
    color: #eaeaea;
    height: auto;
}

.ser-inner-wrap .nav-button {
    width: 270px;
    height: auto;
    position: relative;
    float: left;
}


#service-inner-menu {
    position: relative;
    float: left;
    width: 25%;
    overflow: hidden;
    /*transition: all 0.4s ease; */
    background-color: #4d5c69;
    min-height: 700px;
    z-index: 10;
}

#services-inner-content {
  float: left;
  width: 70%;
  /*transition: all 0.4s ease;*/
  position: relative;
  background-color: #fff;
 /* min-height: 500px; */
  min-height: 1150px;
  
}
#services-inner-content:before {
  content: '';
  clear:both;
}
#services-inner-content:after {
  content: '';
  clear:both;
  display: table-cell;
}

#service-inner-menu.active {
  width: 0%;
}
#service-inner-menu.active + #services-inner-content {
  width: 75%;
}

#service-inner-menu .navigation-toggle-close {
    display: none;
}

#services-inner-content .navigation-toggle-close {
    left: -6.3%;
    right: 0;
    height: 50px;
    width: 120px;
    display: none;
}

#services-inner-content .widget-type-rich_text {
   /* max-height: 795px;
    overflow-y: auto;*/
    width: 100%;
    padding-top: 6em;
    padding-bottom: 6em;
  /*  padding-left: 34%;*/
}

#service-inner-menu ul {
    padding: 15% 10% 5% 5%;
    list-style: none;
    margin: 15% 0 10%;
    /* overflow-y: auto; */
   /* max-height: 550px; */
}

#service-inner-menu ul li {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

#service-inner-menu ul li a {
    color: #eaeaea;
    font-size: 16px;
    padding: 10px;
    display: block;
    text-decoration: none;
}

/* Hide Meet The Team */
#service-inner-menu ul li:nth-child(2), .ser-inner-wrap ul li:nth-child(2), .medical-inner #service-inner-menu ul li:nth-child(1), .mecical .ser-inner-wrap ul li:nth-child(1) {
    display: none;
}

.medical-inner #service-inner-menu ul li:nth-child(1), .mecical .ser-inner-wrap ul li:nth-child(1) {
     isplay: none;
}


#service-inner-menu ul li a:hover, #service-inner-menu ul li.active-branch a {
    background: #364049;
}

#service-inner-menu .nav-button {
    clear: both;
}

#service-inner-menu .nav-button a {
    text-align: center;
    background-color: #7d0c2a;
    color: #eaeaea;
    width: 50%;
    height: auto;
    margin: 0 auto 20px;
    padding: 10px;
    display: block;
    font-size: 18px;
}

#service-inner-menu .nav-button a:hover {
    background-color: #ffaf00;
}

/* Contact Us */

#publication-area {
   /* background-color: #d9d9d9; */
}

.publication-module-area {
    padding-top: 10vh;
}

.publication-item {
    width: 49%;
    margin-right: 1%;
    margin-bottom: 80px;
    float: left;
}

.publication-item .inner-wrap {

}

.publication-item .inner-wrap .span8 {
    min-height: auto;
}

.publication-item .inner-wrap h3 {
    margin-bottom: 5px;
}

.publication-item .inner-wrap h3 a, .publication-content h3 {
    color: #7d0c2a;
    font-weight: bold;
    text-decoration: none;
}

.publication-item .inner-wrap p {
    margin: 10px 0;
}

#publication-area .publication-content {
    padding: 15vh 5%;
    background: #fff;
    height: auto;
    display: flex !important;
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
}


/* Contact Us */

#contact-area .cleft-area {
    width: 50%;
}

#contact-area .cright-area {
    width: 50%;
    margin-left: 0;
    background-color: #f2f2f2;
    height: 100vh;
    display: flex;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
}

.cright-area .contact-form {
    padding: 0 15%;
}

.cright-area .contact-form h3, .cleft-area .contact-info h2 {
    font-size: 2.6em;
    color: #7d0c2a;
    margin-bottom: 20px;
    font-weight: bold;
}

.cright-area .contact-form label span {
    display: none;
}

.cright-area .contact-form ul.inputs-list li input {
    height: 10px;
}

.cright-area .contact-form ul.inputs-list label span {
    display: inline-block;
}

.cright-area .contact-form select, .cright-area .contact-form input {
    border: none;
    color: #434343;
    padding-left: 15px;
    height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
}

.cright-area .contact-form textarea {
    height: 160px;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 16px;
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 15px;
    border: none;
}

.cright-area .contact-form .hs_submit input:hover, .hs_submit input.hs-button:hover, #footerv2 .form-area .hs_submit .actions input:hover, .event-subscribe .hs_submit input:hover, .publication-form .hs_submit input:hover {
    background-color: #ffaf00;
}

.cright-area .contact-form .hs_submit input {
    width: 100%;
    color: #fff;
    font-size: 16px;
    background-color: #7d0c2a;
}

.cright-area .contact-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #434343;
  font-size: 16px;
}
.cright-area .contact-form input::-moz-placeholder { /* Firefox 19+ */
  color: #434343;
  font-size: 16px;
}
.cright-area .contact-form input:-ms-input-placeholder { /* IE 10+ */
  color: #434343;
  font-size: 16px;
}
.cright-area .contact-form input:-moz-placeholder { /* Firefox 18- */
  color: #434343;
  font-size: 16px;
}

.cright-area .contact-form select::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #434343;
  font-size: 16px;
}
.cright-area .contact-form select::-moz-placeholder { /* Firefox 19+ */
  color: #434343;
  font-size: 16px;
}
.cright-area .contact-form select:-ms-input-placeholder { /* IE 10+ */
  color: #434343;
  font-size: 16px;
}
.cright-area .contact-form select:-moz-placeholder { /* Firefox 18- */
  color: #434343;
  font-size: 16px;
}

.cright-area .contact-form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #434343;
  font-size: 16px;
}

.cright-area .contact-form textarea::-moz-placeholder { /* Firefox 19+ */
  color: #434343;
  font-size: 16px;
}

.cright-area .contact-form textarea:-ms-input-placeholder { /* IE 10+ */
  color: #434343;
  font-size: 16px;
}

.cright-area .contact-form textarea:-moz-placeholder { /* Firefox 18- */
  color: #434343;
  font-size: 16px;
}

.cleft-area .contact-info {
    height: 50vh;
    display: flex;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.past-events .contact-info h2, .current-events .contact-info h2 {
    color: #7d0c2a;
    font-size: 3.2em;
}

/* Mozilla */
@-moz-document url-prefix() {
    select.hs-input {
      -webkit-appearance:none;
      -moz-appearance:none;
      appearance:none;
      position:relative;
    }
    
    .hs_category {
        position: relative;
        z-index: 11;
    }
    
    .hs_category:after{
      content: "\f0d7";
      font-family: FontAwesome;
      padding:8px;
      position:absolute;
      right: 5px;
      top:0px;
      background:#7d0c2a;
      z-index: 10;
      line-height:10%;
      color: #fff;
    }
}

/* Internet Explorer */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    select.hs-input {
      -webkit-appearance:none;
      -moz-appearance:none;
      appearance:none;
      position:relative;
    }
    
    .hs_category {
        position: relative;
        z-index: 11;
    }
    
    .hs_category:after{
      content: "\f0d7";
      font-family: FontAwesome;
      padding:8px;
      position:absolute;
      right: 5px;
      top:0px;
      background:#7d0c2a;
      z-index: 10;
      line-height:10%;
      color: #fff;
    }
    
    .hs_category select::-ms-expand {
        display: none;
    }
    
}

/* Events */

#pastevent-accordion .row-depth-2 .widget-type-raw_jinja {
    display: none !important;
}

.events-post #blog-main-area {
    padding: 0;
}

.events-register, .publication-form {
    background-color: #f2f2f2;
    display: flex !important;
     display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 10vh 3%;
}

.events-register h3, .publication-form h3 {
    color: #7d0c2a;
    margin-bottom: 30px;
    font-weight: bold;
}

.events-register .event-subscribe label span, .publication-form label span {
    display: none;
}

.event-subscribe input, .publication-form input {
    border: none;
    color: #434343;
    padding-left: 15px;
    height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
}

.event-subscribe textarea {
    height: 160px;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 16px;
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 15px;
    border: none;
}

.event-subscribe .hs_submit input, .publication-form .hs_submit input {
    width: 100%;
    color: #fff;
    font-size: 16px;
    background-color: #7d0c2a;
    font-weight: bold;
}

#events-section .widget-type-blog_content {
    padding: 15vh 5% 5%;
}

#events-section .post-body {
    margin-bottom: 50px;
}

#events-section .post-body a {
    color: #7d0c2a;
}

#events-section .blog-feature-img {
    display: none;
}

#event-area .current-events {
    width: 60%;
    padding: 8vh 9% 0;
}

#event-area .past-events {
    width: 40%;
    margin-left: 0px;
    background-color: #f2f2f2;
    height: auto;
    padding-top: 8vh;
}


#event-area h3 {
    font-size: 2.4em;
    font-weight: bold;
    color: #7d0c2a;
    margin-bottom: 30px;
}

#event-area .past-events h3 {
    padding: 0 15%;
}


.events-item {
    margin-bottom: 30px;
    width: 100%;
    overflow: auto;
}

.events-item h4, .events-item h4 a {
    color: #7d0c2a;
    font-weight: bold;
}

.events-item .span5 img {
    margin-bottom: 25px;
}

.events-item .span7 {
    margin-bottom: 25px;
}

.events-item a.rbutton {
    width: 90%;
    padding: 10px;
    background: #7d0c2a;
    color: #fff;
    text-align: center;
    display: block;
}

.events-item a.rbutton:hover {
    background-color: #ffaf00; 
}

#event-area #pastevent-accordion h3 {
    text-align: center;
    color: #fff;
    font-size: 1.8em;
    padding: 10px 15%;
    margin-bottom: 0;
}

#pastevent-accordion h3.ui-state-default.ui-state-active {
    background: #7d0c2a;
    border:none;
}

#pastevent-accordion h3.ui-state-default {
    background: #4b5966;
    border:none;
}

#pastevent-accordion .ui-accordion-content {
    background-color: #f2f2f2;
    height: initial !important;
}

.events-post .hs-blog-social-share {
    border: none;   
}

/* Blog */

#blog-main-area {
   padding: 7% 0;
}

#blog-main-area .post-header h3, .post-header h3 a {
    color: #7d0c2a;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.2em;
}

.blog-back-button a {
    padding: 10px 30px;
   /* background: #7d0c2a; */
    color: #7d0c2a;
    text-align: center;
    text-decoration: none;
}
.blog-back-button a span {
    text-decoration: underline;
}

.blog-bg {
    z-index: 2;
}

.post-header {
    clear: both;
}

.blog-listing-wrapper .post-listing .post-item {
    min-height: 260px;
    height: auto;;
    overflow: hidden;
    margin-bottom: 30px;
    border-bottom: 2px solid #7d0c2a;
    padding-bottom: 30px;
}

a.more-link {
    width: 40%;
    padding: 10px;
    background: #7d0c2a;
    color: #fff;
    text-align: center;
    display: inline-block;
}

a.more-link:hover {
    background-color: #ffaf00;
}

.search-blog .hs-form {
    padding: 20px;
    background-color: #7d0c2a;
    margin-bottom: 30px;
}

.search-blog .hs-form label {
    font-size: 1.6em;
    color: #fff;
}

.search-blog .hs-form .input {
    position: relative;
}

.search-blog .hs-form .input input {
    padding: 10px 30px;
    font-size: 1em;
}

.search-blog .widget-type-google_search .hs-button.primary {
    position: absolute;
    top: 8px;
    left: 10px;
}

.right-blog-side #hs_cos_wrapper_blog_subscription {
    color: #fff;
}

.right-blog-side .blog-subscribe {
    padding: 20px;
    background-color: #7d0c2a;
    margin-bottom: 30px;
}

.right-blog-side .blog-subscribe h3 {
    color: #fff;
}

.right-blog-side .blog-subscribe .input input {
    padding: 10px 30px;
    font-size: 1em;
    margin-bottom: 5px;
}

.right-blog-side .blog-subscribe .hs_email, .right-blog-side .blog-subscribe .hs_name  {
    position: relative;
}

.right-blog-side .blog-subscribe .hs_email label, .right-blog-side .blog-subscribe .hs_name label {
    position: absolute;
    top: 10px;
    left: 8px;
}

.right-blog-side .blog-subscribe .hs_email li label {
    position: static;
    color: #fff;
}


.right-blog-side #hs_form_target_blog_subscription ul.inputs-list li label span {
    color: #fff;
    font-size: 1em;
}

.right-blog-side .blog-subscribe .hs_submit {
    text-align: center;
}

.right-blog-side .row-number-2, .right-blog-side .row-number-3  {
    /* padding: 0 10%; */
    margin-bottom: 30px;
}

.right-blog-side .row-number-2 h3, .right-blog-side .row-number-3 h3, .post-listing h3  {
    font-size: 1.6em;
    color: #7d0c2a;
    margin-bottom: 10px;
}

.right-blog-side .row-number-2 ul, .right-blog-side .row-number-3 ul, .post-listing ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.right-blog-side .row-number-2 ul li, .right-blog-side .row-number-3 ul li, .post-listing ul li {
    list-style: none;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    
}

.right-blog-side .row-number-2 ul li a, .right-blog-side .row-number-3 ul li a {
    color: #7d0c2a;
}

.right-blog-side .row-number-2 ul li:before, .right-blog-side .row-number-3 ul li:before {
    list-style: none;
    content: '\f0da';
    font-family: FontAwesome;
    color: #7d0c2a;
}

.blog-section .section {
    min-height: inherit !important;
}

#blog-main-area #hubspot-author_data {
    position: relative;
}

.inline-blog {
    position: relative;
    margin-right: 15px;
}

.inline-blog, #blog-main-area #hs_cos_wrapper_blog_social_sharing {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-bottom: 15px;
}

#hs_cos_wrapper_blogSocialSharing,{
    position: relative;
    top: 6px;

}

.events-post  #hs_cos_wrapper_blogSocialSharing {
    margin-bottom: 10px;
    display: block; 
}

#blog-main-area #hubspot-author_data .hs-blog-social-share {
    padding: 0;
    border: none;
    height: 10px;
}

.blog-section .post-header h1 {
    font-size: 1.8em;
    color: #7d0c2a;
    font-weight: bold;
}

.blog-feature-img {
    margin-bottom: 20px;
}

.pagination li {
    list-style: none;
    display: inline-block;
    margin: 0 2px;
}

.pagination {
    list-style: none;
    margin: 0 auto;
    width: 80%;
}

.pagination li.disabled {
    display: none;
}

.pagination li a {
    padding: 5px 10px;
    color: #7d0c2a;
    border: 1px solid #7d0c2a;
}

.pagination li.disabled a, .pagination li:last-child a {
    border: none;
}

.pagination li.active a, .pagination li a:hover {
    background: #7d0c2a;
    color: #fff;
}


.blog-area .hs_cos_wrapper_widget:nth-last-of-type(1) .blog-item.active .initial-content {
    top: auto;
    bottom: 100%;
}

.blog-area .hs_cos_wrapper_widget:nth-last-of-type(1) .initial-content {
    bottom: 0%;
}

/* Investor blog */

.hs-blog-name-cutcher-investor-blog .custom_listing_comments {
    display: none;
}

#hs_cos_wrapper_blogSocialSharing img[alt="Share on Facebook"] { background: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Images/Blog/social-fb.png) center center no-repeat; width: 0px; height: 0px; padding: 11px; vertical-align: middle;  }
#hs_cos_wrapper_blogSocialSharing img[alt="Share on Twitter"] { background: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Images/Blog/social-twitter.png) center center no-repeat; width: 0px; height: 0px; padding: 11px; vertical-align: middle; }
#hs_cos_wrapper_blogSocialSharing img[alt="Share on LinkedIn"] { background: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Images/Blog/social-linkedin.png) center center no-repeat; width: 0px; height: 0px; padding: 11px; vertical-align: middle; }
#hs_cos_wrapper_blogSocialSharing img[alt="Share on Google+"] { background: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Images/Blog/social-google-plus.png) center center no-repeat; width: 0px; height: 0px; padding: 11px; vertical-align: middle; }

/* Our Team */

/* Our Team Page */
.ourteam-firm { position: relative; background: -webkit-linear-gradient(to bottom,#fff, #eee); background: -o-linear-gradient(to bottom,#fff, #eee); background: -moz-linear-gradient(to bottom,#fff, #eee); background: linear-gradient(to bottom,#fff, #eee); }
.ourteam-firm-left { position: relative; height: 100vh; background: -webkit-linear-gradient(to bottom,#fff, #eee); background: -o-linear-gradient(to bottom,#fff, #eee); background: -moz-linear-gradient(to bottom,#fff, #eee); background: linear-gradient(to bottom,#fff, #eee); }
.ourteam-firm-left .desc { max-width: 580px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ourteam-firm-left .desc h2 { font-size: 4.5em; color: #7d0c2a; font-weight: bold; line-height: 1em; }
.ourteam-firm-right { background-color: #7d0c2a; height: 100vh; }
.ourteam-firm-img img { width: 55% !important; position: absolute; bottom: 0; right: 0; }

.ourteam-partners {
  height: 90vh;
  position: relative; /* By DS */
}
.ourteam-partners-left { position: relative; height: 90vh; width: 50% !important; background: #fff; }
.ourteam-partners-left .desc { max-width: 580px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ourteam-partners-left .desc h2 { font-size: 4.5em; color: #7d0c2a; font-weight: bold; line-height: 1em; }
.ourteam-partners-right { height: 90vh; width: 50% !important; margin: 0 !important; /*position: relative;*/ }
.ourteam-partners-right .blank { width: 33.33% !important; height: 30vh !important; background-color: #4a0316; }
.ourteam-partners-right .partner { width: 33.33% !important; background-position: 0px 0px !important; }
.ourteam-partners-right .partner .thumb { height: 30vh; cursor: pointer; position: relative; background: rgba(0,0,0,0.5); transition: all 0.5s; }
.ourteam-partners-right .partner .thumb:hover { background: transparent; }
.ourteam-partners-right .partner .thumb .thumb-label { background: rgba(125,12,42, 0.8); position: absolute; width: 100%; bottom: 0; text-align: center; color: #fff; opacity: 0; transition: all 0.5s; }
.ourteam-partners-right .partner .thumb:hover .thumb-label { opacity: 1; }
.ourteam-partners-right .partner .thumb .thumb-label h3 { margin-top: 15px; font-weight: bold; font-size: 2em; }
.ourteam-partners-right .partner .thumb .thumb-label p { margin-top: 0; }
/* .ourteam-partners-right .partner .full-size { position: absolute; width: 100%; height: calc(90vh + 1px); top: 0; left: 0; background: #fff; z-index: 1; background: #fff; } */
/* .ourteam-partners-right .partner .full-size .container { position: relative; height: 90vh; } */
/*.ourteam-partners-right .partner .full-size .container img.large-pic { position: absolute; bottom: 0; left: -25%; width: 90%; }*/
/*.ourteam-partners-right .partner .full-size .container .details { position: absolute; right: 10%; height: 90vh; max-width: 425px !important; padding-top: 10%; }*/
.ourteam-partners-right .partner .full-size .container {
    /* By DS */
    position: relative;
    height: 100%;
}
.ourteam-partners-right .partner .full-size {
    /* By DS */
    position: absolute;
    width: 95%;
    width: calc(100% - 60px);
    height: calc(80vh + 1px);
    height: 90%;
    top: 5%;
    left: 30px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 25px;
    z-index: 23;
}
.ourteam-partners-right .partner .full-size .container .details {
    /* By DS */
    position: absolute;
    right: 5%;
    top: 5%;
    height: 95vh;
    height: 100%;
    height: calc(100% - 100px);
    padding-top: 25px;
    max-width: 1000px;
    width: 55%;
}
.ourteam-partners-right .partner .full-size .container .details .description {  }
.ourteam-partners-right .partner .full-size .container .details .description p span { color: #770b28; font-weight: bold; }
.ourteam-partners-right .partner .full-size .container .details .description a { color: #fff; background: #ffae00; width: 32px; height: 30px; border-radius: 100%; text-align: center; display: inline-block; padding: 5px; }
.ourteam-partners-right .partner .full-size .container .details .label {
    background: #7d0c2a;
    position: absolute;
    /*width: 90%;*/
    width: 100%;
    /* bottom: 25%; */
    bottom: 0%;
    text-align: center;
    color: #fff;
    z-index: -1;
}
.ourteam-partners-right .partner .full-size .container .details .label h3 { margin-top: 15px; font-weight: bold; font-size: 2em; }
.ourteam-partners-right .partner .full-size .container .details .label p { margin-top: 0; }


.ourteam-directors {
    height: 90vh; 
    position: relative;
    z-index: 22;
}
.ourteam-directors-left { height: 90vh; width: 50% !important; margin: 0 !important; /* position: relative; */ }
.ourteam-directors-left .blank { width: 33.33% !important; height: 30vh !important; background-color: #4a0316; }
.ourteam-directors-left .director { width: 33.33% !important; background-position: 0px 0px !important; }
.ourteam-directors-left .director .thumb { height: 30vh; cursor: pointer; position: relative; background: rgba(0,0,0,0.5); transition: all 0.5s; }
.ourteam-directors-left .director .thumb:hover { background: transparent; }
.ourteam-directors-left .director .thumb .thumb-label { background: rgba(125,12,42, 0.8); position: absolute; width: 100%; bottom: 0; text-align: center; color: #fff; opacity: 0; transition: all 0.5s; }
.ourteam-directors-left .director .thumb:hover .thumb-label { opacity: 1; }
.ourteam-directors-left .director .thumb .thumb-label h3 { margin-top: 15px; font-weight: bold; font-size: 2em; }
.ourteam-directors-left .director .thumb .thumb-label p { margin-top: 0; }

/* .ourteam-directors-left .director .full-size { position: absolute; width: 100%; height: calc(90vh + 1px); top: 0; left: 0; background: #fff; z-index: 1; background: #fff; } */
/* .ourteam-directors-left .director .full-size .container { position: relative; height: 90vh; } */
.ourteam-directors-left .director .full-size .container img.large-pic { position: absolute; bottom: 0; right: -31%; width: 90%; }
/* .ourteam-directors-left .director .full-size .container .details { position: absolute; left: 10%; height: 90vh; max-width: 425px !important; padding-top: 10%; } */
.ourteam-directors-left .director .full-size .container .details .description {  }
.ourteam-directors-left .director .full-size .container .details .description p span { color: #770b28; font-weight: bold; }
.ourteam-directors-left .director .full-size .container .details .description a { color: #fff; background: #ffae00; width: 32px; height: 30px; border-radius: 100%; text-align: center; display: inline-block; padding: 5px; }
.ourteam-directors-left .director .full-size .container .details .label {
  background: #7d0c2a;
  position: absolute;
  /* width: 90%;
  bottom: 25%; */
  width: 100%;
  bottom: 0px;
  text-align: center;
  color: #fff;
  z-index: -1;
}
.ourteam-directors-left .director .full-size .container .details .label h3 { margin-top: 15px; font-weight: bold; font-size: 2em; }
.ourteam-directors-left .director .full-size .container .details .label p { margin-top: 0; }

.ourteam-directors-right { position: relative; height: 90vh; width: 50% !important; margin: 0 !important; background: #fff; }
.ourteam-directors-right .desc { max-width: 580px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ourteam-directors-right .desc h2 { font-size: 4.5em; color: #7d0c2a; font-weight: bold; line-height: 1em; }

.ourteam-directors-left .director .full-size {
    /* By DS */
    position: absolute;
    width: 95%;
    width: calc(100% - 60px);
    height: calc(80vh + 1px);
    height: 90%;
    top: 5%;
    left: 30px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 25px;
    z-index: 23;
}
.ourteam-directors-left .director .full-size .container {
    /* By DS */
    position: relative;
    height: 100%;
}
.ourteam-directors-left .director .full-size .container .details {
    /* By DS */
    position: absolute;
    left: 5%;
    top: 5%;
    height: 95vh;
    height: 100%;
   /* height: calc(100% - 100px); */
    height: 90%;
    padding-top: 25px;
    max-width: 1000px;
    width: 55%;
}

.ourteam-partners-right .partner .full-size .container img.large-pic {
    /*width: 67%;*/
    /* By DS */
    position: absolute;
    left: 5%;
    bottom: 0px;
    width: 30%;
}
.ourteam-directors-left .director .full-size .container img.large-pic {
    /* width: 67%; */
    /* By DS */
    position: absolute;
    right: 5%;
    bottom: 0px;
    width: 30%;
}
.ourteam-partners-right .partner .full-size .container .details .description {
    overflow: auto;
    /*max-height: 55vh;*/
    /* By DS */
    height: 80%; 
    height: calc(95% - 95px);
    padding-right: 24px;

}
.ourteam-directors-left .director .full-size .container .details .description {
    overflow: auto;
    /* max-height: 55vh; */
    /* By DS */
    height: 80%; 
    padding-right: 24px;
}

.director .close-fs {
    right: 30px;
    left: auto;
}

.close-fs {
    position: absolute;
    /* top: 10%;
    left: 30px; */
    top: 30px;
    right: 30px;
    font-size: 3em;
    display: block;
    z-index: 100;
    color: #7d0c2a;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.9) rotateZ(90deg);
}

.close-fs:hover {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
}

/* Career */

/* Careers Page Styling */
.careers #careers-area {
    background: #fff;
    padding: 150px 0;
}

.careers .careers-inner-area {
    max-width: 1292px;
    margin: 0 auto !important;
    float: none !important;
    padding:0 15px;
}

.careers .intro {
    max-width: 1055px;
    margin: 0 auto !important;
    float: none !important;
    padding-bottom: 5em;
}

.careers .intro h2 {
    color: #7d0c2a;
}

.careers .description {
    max-width: 768px;
    margin: 0 auto !important;
    float: none !important;
    padding-bottom: 5em;
}

.careers .description h2 {
    font-weight: bold;
    color: #7d0c2a;
}

.careers .careers-position {
    max-width: 890px;
    margin: 0 auto !important;
    float: none !important;
    padding-bottom: 5em;
}

.careers .careers-position h3 {
    font-weight: bold;
    color: #7d0c2a;
}



/* Carrer Inner */

.career-inner .hero-banner h1 {
    font-size: 2.5em;
}

.career-inner .hero-banner {
    min-height: 100vh;
}

.career-inner .inner-content {
    padding: 10% 0 0%;
}

.career-inner .hero-banner p {
    margin: 15px 0px 30px;
    width: auto;
}

.lp-page .inner-content .content-mh {
    max-height: 60vh;
    overflow: auto;
    padding: 0 20px;
}

.lp-page .inner-content .content-mh::-webkit-scrollbar {
    width: 12px;
}

.lp-page .inner-content .content-mh::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}

.lp-page .inner-content .content-mh::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background:rgba(100,100,100,0.3); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}


/* Career Inner Form */

.career-form, #form-login {
    padding: 3.5% 10%;
    background-color: #7d0c2a;
}

.career-inner .hs-form-field ul.hs-error-msgs, .career-form .hs-form-field ul.hs-error-msgs {
    background-color: #FFAB00;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 15px !important;
    display: inline-block !important;
    margin-top: 0px;
}

#careers-area .careers-row a:hover {
    background-color: #ffaf00 !important;
}

#form-login {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#form-login p {
    width: 100%;
    margin-bottom: 0;
    text-align: left;
}

#form-login input#cbxRemeberUserID {
    height: 12px;
}

#form-login h3 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

#form-login span label {
    color: #fff;
}

.career-form h3 {
    font-size: 2.6em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.career-form input, #form-login input {
    border: none;
    color: #434343;
    padding-left: 15px;
    height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
    float: left;
}

.career-form .hs_firstname label span, .career-form .hs_lastname label span, .career-form .hs_current_role label span, .career-form .hs_email label span, .career-form .hs_phone label span, .career-form .hs_upload_resume label span, .career-form .hs_upload_your_cover_letter label span {
    display: none;
}


.career-form .hs-form-field ul.inputs-list li input {
    height: 18px;
}

.career-form .input .inputs-list label span {
    color: #fff;
    display: inline-block;
    position: relative;
    top: -4px;
    left: 12px;
    margin-bottom: 0 !important;
}

.career-form .hs-field-desc {
    color: #fff;
    margin-bottom: 5px;
}
.career-form input#submit_btn {
    margin-top: 15px !important;

}

.career-form .hs_submit input, #submit_btn, #btnLogin, #mylogin{
    width: 100%;
    color: #000;
    font-size: 16px;
    background-color: #fff;
}

.career-form .hs_submit input:hover, #submit_btn:hover, #btnLogin:hover, #mylogin:hover {
    background-color: #ffaf00;
    color: #fff;
}

.career-form input[type="file"] {
    color: #fff !important;
}

.career-form textarea {
    height: 160px;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 16px;
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 15px;
    border: none;
}

/* Forensic */

.ot-wrap {
    padding-top: 5%;
}

.ot-item {
    padding: 5% 0;
    overflow: hidden;
}

.ot-item.whitebg {
    background-color: #fff;
}

.ot-item.graybg {
    background-color: #fff;
}

.ot-image {
    padding-top: 6%;
}

.ot-content h3 {
    font-size: 2.2em;
    font-weight: bold;
    color: #7d0c2a;
}

.ot-content h4 {
    font-size: 1.14em;
    font-weight: bold;
}

.ot-content span.position {
    font-size: 1.5em;
    color: #434343;
    font-weight: bold;
}

.email-add a, .ot-content a {
    color: #7d0c2a;
}

.ot-content .phone a {
    color: #434343;
}

/* Our Team Inners */

.our-team-inner .ourteam-partners {
    background-color: #efefef;
}

.our-team-inner .ourteam-partners-right {
    height: auto;
}




/* Modular & Reusable Components
   ========================================================================== */

/* Callouts */

/* Social Media Custom Icons */

/* Additional Menus aside from the Main Nav */




/* ==========================================================================
   Footer
   ========================================================================== */


.footer-container-wrapper {}
.footer-container {}








/* ==========================================================================
   3. MAIN NAVIGATION                                            
   ========================================================================== */

/* Slick */

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 64px;
    height: 64px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 10;

    /* By DS */
    /* filter: brightness(0%); */
    opacity: 0.7;
    transform: scale(0.8);
    /* By DS */
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
   /* color: transparent;
    outline: none;
    background: transparent; */
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.services-area .slick-prev
{
    left: 10px;
    background-image: url(https://cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Images/left-arrow-black.png);
}

.slick-prev
{
    left: 10px;
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/left-arrow.png);
}
[dir='rtl'] .slick-prev
{
    right: 10px;
    left: auto;
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/left-arrow.png);
}
.slick-prev:before
{
    content: '';
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/left-arrow.png);
}
[dir='rtl'] .slick-prev:before
{
    content: '';
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/right-arrow.png);
}

.services-area .slick-next
{
    right: 10px;
    background-image: url(https://cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Images/right-arrow-black.png);
}

.slick-next
{
    right: 10px;
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/right-arrow.png);
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 10px;
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/right-arrow.png);
}
.slick-next:before
{
    content: '';
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/right-arrow.png);
    
}
[dir='rtl'] .slick-next:before
{
    content: '';
    background-image: url(//cdn2.hubspot.net/hubfs/479958/Cutcher_Neale/Scrollify/left-arrow.png);
}



/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;
    

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}




/* ==========================================================================
   Custom Menu Primary
   ========================================================================== */


 /* Set ul background color */
 /* Set li background Color */
 /* Set link Color */
 /* Set link Hover Color */

/* Parent List */
.custom-menu-primary .hs-menu-wrapper > ul{ 
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul{}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
  color:;
}

/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
 /* overflow: visible !important; */
  max-width: none !important;
  width: auto !important;
}

  #mm-2 ul li.hs-menu-depth-2 a {
      background-color: rgba(86,87,102,.3);
  }
  
  #mm-2 ul li.hs-menu-depth-2 a, #mm-3 ul li.hs-menu-depth-2 a, #mm-4 ul li.hs-menu-depth-2 a, #mm-5 ul li.hs-menu-depth-2 a, #mm-6 ul li.hs-menu-depth-2 a {
    background-color: rgba(86,87,102,.3);
  }

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:768px) {
      .custom-menu-primary .hs-menu-wrapper { 
          display:block !important;
      }
  }




/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
   ========================================================================== */


/**
 * Special Note
 *
 * When the menu is open, a class of .mobile-open is applied to the body. You can 
 * use this for custom styling on any element when the menu is in the open position.                     
 */

.mobile-trigger, .child-trigger{
    display: none; /* Hide button on Desktop */
}

@media (max-width: 767px){


  /* Variables
     ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* 
    * Menu Reset
    *
    * Remove styling from desktop version of custom-menu-primary. Place any 
    * additional CSS you want removed from the mobile menu in this reset 
    */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:#ffffff;
  }


 
    
  /* Menu Styles on Mobile Devices
     ========================================================================== */  
     
   .custom-menu-primary.js-enabled{
       position: relative;
       padding-top: 44px; /* Makes room for button */
       margin: 10px 0 10px 0;
   }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color:#000000; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

   /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px dotted rgba(255, 255, 255, .35); /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 10px;
    color:#ffffff; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:#ffffff; /* link hover color set by global mobile-aColorHover variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
    
  }
  
    @media (max-width: 767px) {
                .hidden-phone {
                        display: none !important;
                }
    }


  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px; /* Indent Child lists */
  }
}



/* ==========================================================================
   4. HELPER CLASSES                                        
   ========================================================================== */

     
  /* Display and Alignment */
  .fl { float: left}
  .fr { float: right}
  .clearfix {
    &:before,
    &:after {
      content: "";
         display: table;
        }
    &:after { clear: both; }
  }
  .pos-relative         { position:relative;}
  .pos-absolute       { position:absolute;}
  .hidden             { display: none !important; }
  .visible            { display: block !important; }

  .min-height0        { min-height:0 !important}      
  .align-left         { text-align: left; }
  .align-center       { text-align: center; }
  .align-right      { text-align: right; }
  .align-just         { text-align: justify; }   

  .vertical-center { 
    position: absolute;
    top: 50%;
    left:0;
    right:0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);  
  }
        
  .vertical-bot-center { 
    position: absolute;
    top: 60%;
    left:0;
    right:0;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);  
  }
  

  /* Padding and Margin */      
  .pad-tb4        { padding:4em 0}
  .pad0       { padding:0; }
  .pad-t0       { padding-top:0 !important}
  .pad-b0       { padding-bottom:0 !important}
  .pad-t2       { padding-top:2em;}
  .pad-lr1      { padding:0 1.5em;}
  .pad-r1         { padding-right:1.5em;}
  
  .mar-0            { margin:0 !important;}
  .mar-t0     { margin-top:0 !important}
  .mar-t1       { margin-top:1em;}
  .mar-t2       { margin-top:2em;}
  .mar-r1         { margin-right:1em;}
  .mar-l1         { margin-left:1em;}
  .mar-b2       { margin-bottom:2em;}
  .mar-b0     { margin-bottom:0 !important}


  /* List */
  ul.unstyled, ol.unstyled,  .unstyled ul, .unstyled ol { list-style: none; padding: 0; }
  .list-inline li { display:inline-block;}
 
  /* Effects */
  
    /* Easing effect */
  .ease-fx * {
      box-sizing: inherit;
      transition-property: all;
      transition-duration: .6s;
      transition-timing-function: ease;
    }
  
    /* Fade content */
    .fade * {
      animation: fadein 0.6s;
      -moz-animation: fadein 0.6s; /* Firefox */
      -webkit-animation: fadein 0.6s; /* Safari and Chrome */
      -o-animation: fadein 0.6s; /* Opera */     
    }
     
    @keyframes fadein {
      from {
        opacity:0;
        }
        to {
        opacity:1;
        }
    }

    /* Img to background image */
    .bg-img-wrap, .hs-rss-item { 
      background-size:cover; 
      background-repeat:no-repeat;
      background-position:bottom center;
    }
      .bg-img, .bg-img img, .hs-rss-featured-image  { display:none !important;}
    
    /* Circled image */
    .img-circle img { border-radius:50%;}     


  /* 4a - CUSTOM GLOBAL HELPER CLASSES */

    /* CUSTOM GLOBAL CLASSES -- adjust your style as per theme's requirements [added-a] */
       
      html { font-size: 16px; }
    
      @media (max-width: 900px) {
        html { font-size: 15px; }
      }
      @media (max-width: 400px) {
        html { font-size: 13px; }
      }
    
      body {    
        line-height: 1.45rem; 
        color: #515252; 
        font-family: 'Helvetica', sans-serif;
        font-size:16px; 
        font-weight:400;}
        
      p { font-weight:300; line-height: 1.5em}
    
     
      h1, .h1 { font-size: 3em; }
      h2, .h2 { font-size: 2.2em; }
      h3, .h3 { font-size: 1.6em; }
      h4, .h4 { font-size: 1.4em; }
      h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {  
       /* font-family: 'calistb', sans-serif; */
        line-height:1.2em; 
        margin-bottom:15px; 
        margin:0; 
        padding:0; 
        font-weight:normal; }
    
      /* Font Declaration */
      .calist *         { font-family: 'calist', sans-serif; font-weight:normal; }
      .centurygothic *  { font-family: 'centurygothic', sans-serif;  font-weight:normal; }
      .sm-font *        { font-size:12px;}

      .page-center { 
        max-width:1120px; 
        margin:0 auto; 
      }
    
      .row-fluid [class*="span"].page-center  { 
        float:none !important; 
        margin:0 auto !important;
      }
        
  
    
      /* Secton header and section body */
      .sec-head h1 {  }
      .sec-head h2 {  }
      .sec-head h3 {  }
      .sec-head h4 {  }
      .sec-head p {  
        font-family: 'calistb',sans-serif;
        font-size: 2.2em;
        margin-top: 0;
      }
      .sec-body { min-height:0px;}
      .sec-body p { font-size:20px;}
               
      /* Color: Font and Background  */
      .white, .white *    { color: #fff; }
    .dark-gray      { color: #eee; }
      .gray                   { color: #333; }
    .purple               { color:#2a1e56; }
    
      .bg-black             { background-color:#302b23; }
      .bg-white             { background-color: #fff }
      .gray-bg        { background-color: #333; }
  
      /* Overlay */  
      .white-overlay:before {
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        background: rgba(213, 222, 229,0.8);
        top: 0;
        z-index: 0; 
      }  
        
      .white-mid-overlay:before {
        position: absolute;
        width: 100%;
        height: 54%;
        content: '';
        bottom: 0;
        z-index: 0; 
          /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
          background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
          background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
      }
        
      /* Others */  
      .border-yellow {   border:2px solid #F2A900; }
        
      /* CTA buttons */
      .cta_button { 
        text-decoration:none; 
        display:inline-block;
        text-transform:uppercase;
        font-size:14.5px;
        font-family: 'Montserrat', sans-serif;
        font-weight:700;
        padding: .5em 2.2em;
        border-radius: 6px;
        letter-spacing:1px;
        border:2px solid transparent;
        border-color:#F2A900;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-osx-font-smoothing: grayscale;
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        position: relative;    
        }

      .cta_button:focus, .cta_button:active { border:2px solid #F2A900; } 
      .cta_button:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
          -webkit-transform: scaleX(0);
          transform: scaleX(0);
          -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
          -webkit-transition-property: transform;
          transition-property: transform;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
          overflow: hidden;
          border-radius: 4px;
        }
        
        .cta_button:hover:before {
          webkit-transform: scaleX(1);
          transform: scaleX(1);
        }

.cta_button_2 { 
        text-decoration:none; 
        display:inline-block;
        text-transform:uppercase;
        font-size:14.5px;
        font-family: 'Montserrat', sans-serif;
        font-weight:700;
        padding: .5em 2.2em;
        border-radius: 6px;
        letter-spacing:1px;
        border:2px solid transparent;
        border-color:#F2A900;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-osx-font-smoothing: grayscale;
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        position: relative;    
        }

      .cta_button_2:focus, .cta_button_2:active { border:2px solid #F2A900; } 
      .cta_button_2:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
          -webkit-transform: scaleX(0);
          transform: scaleX(0);
          -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
          -webkit-transition-property: transform;
          transition-property: transform;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
          overflow: hidden;
          border-radius: 4px;
        }
        
        .cta_button_2:hover:before {
          webkit-transform: scaleX(1);
          transform: scaleX(1);
        }
        
        .cta_button.yellow-bg { color:#fff;}
        .cta_button.yellow-bg:before {   background: #fff;  }
        .cta_button.yellow-bg:hover {
          background: #da9506;
          color: #2a1e56;
        }
        
        .cta_button.border-yellow:before  {   background: #f6a704 }
        .cta_button.border-yellow:hover {
          background:  #fff;
          color: #2e1a46;
        }
        
        .cta_button.border-white {  
          color:#fff;
          border: 2px solid #fff;
          padding: 8px 2.5em; }
        .cta_button.border-white:before  {   background: #ffffff }
        .cta_button.border-white:hover {
          background:  #e5e5e5;
          color: #f6a704;
        }
            
      
        /* Width */
        .maxwidth-90{ max-width: 900px; }
       

        
  

/* ==========================================================================
   5. TEMPLATE MODULE SELECTORS                                         
   ========================================================================== */





/* Common Template Selectors                                             
   ========================================================================== */

body.one-column {}
body.two-column {}
body.three-column {}
.content-wrapper {}
.main-content {}
.sidebar{}
.sidebar.right{}
.sidebar.left{}

/* Common One Column Selectors */
body.site-page.one-column, 
body.landing-page.one-column, 
body.error-template.one-column, 
body.password-template.one-column, 
body.subscription-template.one-column {}

body.site-page.one-column .main-content, 
body.landing-page.one-column .main-content, 
body.error-template .main-content, 
body.password-template .main-content, 
body.subscription-template .main-content {}

/* Common Two Column Selectors */
body.site-page.two-column, 
body.landing-page.two-column, 
body.blog {}  

body.site-page.two-column .main-content, 
body.landing-page.two-column .main-content, 
body.blog .blog-content {}

/* Common Three Column Selectors */
body.site-page.three-column, 
body.landing-page.three-column {}

body.site-page.three-column .main-content, 
body.landing-page.three-column .main-content {}


/* Site Pages                                            
   ========================================================================== */

/* One Column Template */
body.site-page.one-column {}
body.site-page.one-column .content-wrapper {}
body.site-page.one-column .main-content {}

/* Two Column Template */
body.site-page.two-column {}
body.site-page.two-column .content-wrapper {}
body.site-page.two-column .main-content {}
body.site-page.two-column .sidebar.right {}

/* Three Column Template */
body.site-page.three-column {}
body.site-page.three-column .content-wrapper {}
body.site-page.three-column .main-content {}


/* Landing Pages                                           
   ========================================================================== */

/* One Column Template */
body.landing-page.one-column {}
body.landing-page.one-column .content-wrapper {}
body.landing-page.one-column .main-content {}

/* Two Column Template */
body.landing-page.two-column {}
body.landing-page.two-column .content-wrapper {}
body.landing-page.two-column .main-content {}
body.landing-page.two-column .sidebar.right {}

/* Three Column Template */
body.landing-page.three-column {}
body.landing-page.three-column .content-wrapper {}
body.landing-page.three-column .main-content {}


/* System Pages                                          
   ========================================================================== */

/* Error Templates 404, 500 */
body.error-template.one-column {}
body.error-template.one-column .content-wrapper {}
body.error-template.one-column .main-content {}

/* Password template */
body.password-template.one-column {}
body.password-template.one-column .content-wrapper {}
body.password-template.one-column .main-content {}

/* Email Subscribition templates */
body.subscription-template.one-column {}
body.subscription-template.one-column .content-wrapper {}
body.subscription-template.one-column .main-content {}








/* ==========================================================================
   6. COS COMPONENTS                                        
   ========================================================================== */





/* ==========================================================================
   Blog                                         
   ========================================================================== */


/* Blog Post and Listing Body Class */
body.blog {}

/* Blog Post */
body.hs-blog-post {}

/* Blog Listing */
body.hs-blog-listing {}

body.hs-blog-listing .hero-banner {
    background-image: url(//www.accountingnewcastle.com.au/hs-fs/hubfs/Cutcher_Neale/Images/Banner/Small%20To%20Medium.jpg);
}

/* Blog Columns Wrapper */
.blog .content-wrapper {}


/* Blog Content Column
   ========================================================================== */

.blog .blog-content {}

/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {}

/* Use this to style the main wrapper for the blog post pages */
.blog-post-wrapper {}

/* Blog Title */
.hs-blog-header h1 {}
.hs-blog-header h1 a{}

/* Blog Post Title */
.post-header h2 {}
.post-header h2 a {}

/* Blog Author and Avatar */
#hubspot-author_data { color: #bababa; }
#hubspot-author_data a.author-link { color: #bababa;}
#hubspot-author_data .hs-author-avatar {}
#hubspot-author_data .hs-author-avatar img {}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {}
.blog-listing-wrapper .post-listing .post-item .post-body { margin-bottom: 20px; }
.blog-post-wrapper .post-body {}

.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5 {
    margin: 1em 0;
}

 .post-listing .post-body h3 {
    font-size: 1.2em;
    color: #59595c;
 }

.post-listing .post-body h1, .post-listing .post-body h2, .post-listing .post-body h3, .post-listing .post-body h4, .post-listing .post-body h5 {
    margin: 0.5em 0;
}

/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {}
.hs-featured-image-wrapper .hs-featured-image-link {}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
  border-width: 0;
  max-height: 170px;
  max-width: 210px;
  height: auto;
  width: auto;
  display: inline-block !important;
  float: right;
  margin: 20px 0 20px 20px;
}

/* Read More Link */
a.more-link {}

/* Blog Topics List */
#hubspot-topic_data {}
#hubspot-topic_data a.topic-link {}

/** 
 * Blog Social Sharing icons
 *
 * Overrides defaults to better align icons and prevent overlapping 
 */

.hs-blog-social-share {
  padding: 10px 0 0 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  height: auto;
}

/** 
 * Blog Commments 
 *
 * Custom styles are listed below, as the COS does not provide default styles.
 */

#comments-listing {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
}
.comment {
  margin: 10px 0;
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
.comment-date { font-size: 13px; text-align: right; }
.comment-from { font-weight: bold; }
.comment-body { padding: 10px 0; }

/* Pagination */
.blog-pagination {}
.blog-pagination a {}
.blog-pagination a.previous-posts-link {}
.blog-pagination a.all-posts-link {}
.blog-pagination a.next-posts-link {}

/** 
 * Blog Author Page 
 *
 * ALWAYS be sure to set styles to these selectors, as the COS does not provide default styles
 */

.hs-author-profile {}
.hs-author-profile h2.hs-author-name {}
.hs-author-profile .hs-author-bio {}
.hs-author-profile .hs-author-avatar {}
.hs-author-profile .hs-author-avatar img {}
h3.hs-author-listing-header {}

/** 
 * Blog All Posts Page
 *
 * ALWAYS be sure to set styles to these selectors, as the COS does not provide default styles
 */

body.hs-content-path-blog-all {}
div.post-listing-simple {}
div.post-listing-simple .post-item {}
h2.post-listing-simple {}
h2.post-listing-simple a {}


/* Blog Sidebar
   ========================================================================== */

.blog .blog-sidebar {}

/* Blog Modules */
.blog .blog-sidebar .widget-span {}




/* ==========================================================================
   Forms
   ========================================================================== */


/* All Global Forms
   ========================================================================== */

/* Form Field */
body .hs-form-field {}

/* Descriptions */
body .hs-field-desc {}

/* Labels */
body label {}
body .hs-form-field > label {}

/* One Line Inputs */
body input[type="text"],
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"],
body input[type="file"],
body textarea,
body select {
  width: 100%;
  font-family: Open Sans', sans-serif;
  font-size: 13px;
  padding-left: 15px;
  height: 45px;
  margin-bottom: 15px;
  font-size: 16px;
}

body input[type="text"]:focus,
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus,
body input[type="file"]:focus,
body textarea:focus,
body select:focus {}

/* Separate Styles for Multiple Line Inputs */
body textarea {}
body textarea:focus {}

/* Separate Styles for Drop Downs */
body select {}
body select:focus {}

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.inputs-list {
  list-style: none;
  padding: 0;
}

.footer-left-side form.hs-form .hs-form-field ul.hs-error-msgs {
    position: relative;
    top: -15px;
    border: 1px solid #fff;
    padding: 5px 15px;
}

body form.hs-form .hs-form-field ul.inputs-list li input {}
body input[type="radio"] {}
body input[type="checkbox"] {}

/* Required */
body input:focus:required:invalid, 
body textarea:focus:required:invalid, 
body select:focus:required:invalid {}

body input:focus:required:invalid:focus, 
body textarea:focus:required:invalid:focus, 
body select:focus:required:invalid:focus {}

/* Placeholder Text */
::-webkit-input-placeholder { /* Webkit Browsers */
   /* color: #555;
   opacity: 1; */
}
:-moz-placeholder { /* Firefox 18- */
   /* color: #555;
   opacity: 1; */
}
::-moz-placeholder { /* Firefox 19+ */
   /* color: #555;
   opacity: 1; */
}
:-ms-input-placeholder { /* IE10 */
   /* color: #555;
   opacity: 1; */
}


/* Form Module
   ========================================================================== */

/* Form Field */
.hs_cos_wrapper_type_form .hs-form-field {}

/* Descriptions */
.hs_cos_wrapper_type_form .hs-field-desc {}

/* Labels */
.hs_cos_wrapper_type_form label {}
.hs_cos_wrapper_type_form .hs-form-field > label {}

/* One Line Inputs */
.hs_cos_wrapper_type_form input[type="text"],
.hs_cos_wrapper_type_form input[type="password"], 
.hs_cos_wrapper_type_form input[type="datetime"], 
.hs_cos_wrapper_type_form input[type="datetime-local"], 
.hs_cos_wrapper_type_form input[type="date"], 
.hs_cos_wrapper_type_form input[type="month"], 
.hs_cos_wrapper_type_form input[type="time"], 
.hs_cos_wrapper_type_form input[type="week"], 
.hs_cos_wrapper_type_form input[type="number"], 
.hs_cos_wrapper_type_form input[type="email"], 
.hs_cos_wrapper_type_form input[type="url"], 
.hs_cos_wrapper_type_form input[type="search"], 
.hs_cos_wrapper_type_form input[type="tel"], 
.hs_cos_wrapper_type_form input[type="color"],
.hs_cos_wrapper_type_form input[type="file"],
.hs_cos_wrapper_type_form textarea,
.hs_cos_wrapper_type_form select {
    border: none;
    color: #434343;
    padding-left: 15px;
    height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
}

.hs_cos_wrapper_type_form input[type="text"]:focus,
.hs_cos_wrapper_type_form input[type="password"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime-local"]:focus, 
.hs_cos_wrapper_type_form input[type="date"]:focus, 
.hs_cos_wrapper_type_form input[type="month"]:focus, 
.hs_cos_wrapper_type_form input[type="time"]:focus, 
.hs_cos_wrapper_type_form input[type="week"]:focus, 
.hs_cos_wrapper_type_form input[type="number"]:focus, 
.hs_cos_wrapper_type_form input[type="email"]:focus, 
.hs_cos_wrapper_type_form input[type="url"]:focus, 
.hs_cos_wrapper_type_form input[type="search"]:focus, 
.hs_cos_wrapper_type_form input[type="tel"]:focus, 
.hs_cos_wrapper_type_form input[type="color"]:focus,
.hs_cos_wrapper_type_form input[type="file"]:focus,
.hs_cos_wrapper_type_form textarea:focus,
.hs_cos_wrapper_type_form select:focus {}

/* Separate Styles for Multiple Line Inputs */
.hs_cos_wrapper_type_form textarea {}
.hs_cos_wrapper_type_form textarea:focus {}

/* Separate Styles for Drop Downs */
.hs_cos_wrapper_type_form select {}
.hs_cos_wrapper_type_form select:focus {}

/* Multiple Selection Inputs */
.hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list li input {}
.hs_cos_wrapper_type_form input[type="radio"] {}
.hs_cos_wrapper_type_form input[type="checkbox"] {}


/* Blog Comment Form
   ========================================================================== */

/* Label */
#comment-form .hs-form-field > label {}
#comment-form label {}

/* Inputs */
#comment-form input[type="text"], #comment-form input[type="email"] {
    color: #434343;
    padding-left: 15px;
    height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
    width: 50%;
}
#comment-form input[type="text"]:focus {}

#comment-form textarea {
    color: #434343;
    padding-left: 15px;
    height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
    width: 50%;
}
#comment-form textarea:focus {}

#comment-form input[type="checkbox"] {}

#comment-form input.hs-button.primary {
    cursor: pointer;
    -webkit-appearance: none;
    font-family: Open Sans', sans-serif;
    text-decoration: none !important;
    color: #000;
    font-size: 16px;
    background-color: #7d0c2a;
    box-shadow: none !important;
    margin-top: 20px;
    border: 1px solid;
    padding: 15px;
    color: #fff;
}

#comment-form input.hs-button.primary:hover {
    background-color: #ffaf00;
}

/* Error */
body .hs-common-error-message {}


/* Blog Subscription Form
   ========================================================================== */

/* Label */
#hs_form_target_blog_subscription .hs-form-field > label {}
#hs_form_target_blog_subscription label {}

/* Inputs */
#hs_form_target_blog_subscription input[type="email"] {}
#hs_form_target_blog_subscription input[type="email"]:focus {}

#hs_form_target_blog_subscription input[type="radio"], #hs_form_target_blog_subscription input[type="checkbox"] {
width: auto;
margin-right: 10px;
}


/* Google Search Form
   ========================================================================== */

/* Label */
.widget-type-google_search label {}

/* Input */
.widget-type-google_search input[type="text"] {}
.widget-type-google_search input[type="focus"] {}


/* Multi Column Form
   ========================================================================== */

body .hs-form fieldset.form-columns-1 {}
body .hs-form fieldset.form-columns-1 .hs-form-field {}

body .hs-form fieldset.form-columns-2 {}
body .hs-form fieldset.form-columns-2 .hs-form-field {}

body .hs-form fieldset.form-columns-3 {}
body .hs-form fieldset.form-columns-3 .hs-form-field {}

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.inputs-list li input {}
body input[type="radio"] {}
body input[type="checkbox"] {}
body form.hs-form fieldset { max-width: none; }
body form.hs-form fieldset .hs-form-field { padding: 0 10px 0 0; }
body form.hs-form fieldset[class*="form-columns"] .input { margin-right: 0; }
body form.hs-form fieldset[class*="form-columns"] .hs-input { width: 100%; }
body form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] { width: auto; }
body form.hs-form fieldset.form-columns-3 .hs-form-field { width: 33.33%; }

@media (max-width: 400px) {
  body form.hs-form fieldset .hs-form-field { padding: 0; }
  body form.hs-form fieldset.form-columns-3 .hs-form-field,
  body form.hs-form .form-columns-2 .hs-form-field .hs-input, 
  body form.hs-form .form-columns-3 .hs-form-field .hs-input { width: 100%; }
  body form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] { width: auto; }
}




/* ==========================================================================
   Buttons                                              
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  font-family: Open Sans', sans-serif;
  font-size: 13px;
  text-decoration: none !important;
}

body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {}

body .hs-button.primary:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {}

.footer-container .input select {
    background: transparent;
    border-bottom: 2px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 65%;
    position: relative;
    top: -31px;
    left: 33%;
    height: 30px;
    outline: none;
    color: #fff;
    font-size: 1.2em;
}

.footer-container .input select option {
    color: #333;
}


/* Form Module Button
   ========================================================================== */

.hs_cos_wrapper_type_form .hs-button.primary.large {}
.hs_cos_wrapper_type_form .hs-button.primary.large:hover {
    color: #fff;
}
 
.hs_cos_wrapper_type_form .hs-button.primary.large:focus {}


/* Blog Comment Button
   ========================================================================== */
#add-comment-button.hs-button.primary {}
#add-comment-button.hs-button.primary:hover {}
#add-comment-button.hs-button.primary:focus {}


/* Blog Subscription Button
   ========================================================================== */
.right-blog-side #hs_form_target_blog_subscription .hs-button.primary.large {    
    border: none;
    padding: 10px 30px;
    font-size: 1em;
    background: #7d0c2a;
    color: #fff;
    font-weight: bold; 
    border: 2px solid #fff;
    margin-top: 10px;
}
#hs_form_target_blog_subscription .hs-button.primary.large:hover { background-color: #ffaf00; }
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


/* Google Search Button
   ========================================================================== */
.widget-type-google_search .hs-button.primary {}
.widget-type-google_search .hs-button.primary:hover {}
.widget-type-google_search .hs-button.primary:focus {}


/* CTA Buttons
   ========================================================================== */

/** 
 * Override global CTA styles by wrapping the CTA module in a module group 
 * that has an ID, and use that ID to prefix your CTA selector. Example shown below.
 *
 * All overriding properties require !important tags. 
*/
#module-group-ID .cta_button {}
#module-group-ID .cta_button:hover {}
#module-group-ID .cta_button:focus {}








/* ==========================================================================
   7. MISCELLANOUS                                        
   ========================================================================== */





/** 
 * Styles that do not fit into available sections above can go here.
 * For example, one would place 3rd party plugin overriding styles here.
 *
 * This section is NOT for 'Custom' styles.  All custom styles must go in the
 * proper sections above.
 *
 * For instance, custom header and footer styles must go in the HEADER and 
 * FOOTER sections.  Custom styles for anything in-between the header and footer 
 * (such as, styles that are unique to the HOMEPAGE only), must go in the 
 * CONTENT section.
*/ 





/* ==========================================================================
   8. MOBILE MEDIA QUERIES                              
   ========================================================================== */



/* ==========================================================================
   RESPONSIVE - mobile first -
   ========================================================================== */
   
   /* Screen sizes smaller than site maxWidth (.page-center)
   ========================================================================== */
   
@media (max-width: 1175px) {
    
   .career-inner .container-fluid .row-fluid .page-center {
        padding-left: 30px;
        padding-right: 30px;
    }
}



@media (max-width: 1600px) {
 
  .contact-info h2, #home-footer .footer-left-side .form-area h3, .abt-content h2 {
        font-size: 2.8em;   
  }
    
    contact-info h2 {
        padding-top: 5%;
    }
    
    .contact-info .lower-content {
        margin-top: 5%;
    }

    .slide-item .align-center {
        height: 200px;
        padding-top: 20%;
    }
    
    .career-inner .inner-content {
        padding: 10% 0 2%;
    }
    
    .lp-page .hero-banner p {
        width: 90%;
    }
    
    #form-login {
        width: 95%;   
    }
    
    .career-form input, #form-login input {
        height: 35px;
        margin-bottom: 10px;
    }
    
    #services-inner-content .navigation-toggle-close {
        left: -7%;
    }
    
    #service-inner-menu ul {
        padding: 20% 10% 5% 5%; 
    }
    
    /* Career */
    
    .career-inner .footer-container-wrapper {
        position: relative;
    }
    
    .career-inner .lp-footer {
        position: absolute;
        bottom: 0;
        top: auto;
    }
    
}

@media (max-width: 1400px) {
    .contact-info .lower-content {
        margin-top: 0%;
    }
    .contact-info h2, #home-footer .footer-left-side .form-area h3, .abt-content h2 {
        font-size: 2.5em;   
    }
    
    #services-inner-content .navigation-toggle-close {
        left: -7.4%;
    }
    
    #home-footer .footer-left-side .form-area .input input {
        width: 84%;
        left: 16%;
    }
    
    #home-footer .footer-left-side .form-area .input select {
        width: 75%;
        left: 25%;
        top: -32px;
    }
    
    .ourteam-partners-right .partner .full-size .container .details {
        right: 2%;
        padding-top: 5%;
    }
    
    #service-inner-menu ul {
        padding: 17% 10% 5% 5%; 
    }
    
    /* .ourteam-directors-left .director .full-size .container .details .description {
        overflow: auto;
        max-height: 45vh;
        direction: rtl;
        text-align: left;
        padding-left: 15px;
    } */
    
    /* .ourteam-directors-left .director .full-size .container .details .description p {
        direction: ltr;
    } */
    
    .ourteam-directors-left .director .full-size .container .details .description li {
        list-style-position: inside;
        /* direction: ltr; */
    }
    
    .publication-item {
        width: 99%;   
    }
    
    #home-services .service-slide {
        position: relative;
        /* height: 150vh; */
        margin-top: 100px;
    }
    
    .ourteam-directors-left .director .thumb .thumb-label p { margin-top: 0; font-size: 12px; }
    
    #cutcher-map {
        height: 300px !important;
    }
    
}

@media (max-width: 1024px) {
    
     .page-center { padding:0 1em;}
     
    .home .scroll-down { display: none !important; }

    .scroll-down { display: none; }
    
    .header {
       /* position: absolute; */
        width: 100% !important;
        padding: 75px 30px 40px;
    }
    
    .home .header.sticky {
        padding: 20px 50px 70px;
    }
    
    .header.sticky {
        padding: 60px 25px 0px;
        position: fixed;
    }
    
    .header .logo {
        position: absolute;
        z-index: 10;
        top: 30px;
    }
    
    .icon-menu {
        text-align: right;
        position: absolute;
        top: 30px;
        right: 30px;
    }
        
    .page-center { padding:0 1em;}
    
    .scroll-down { display: none !important;  }
    
    /* Services */
    
    #home-services .header-services-mobile {
        display: block;
    }
    
    .service-menu-wrap {
        display: block;
        z-index: 100;
    }
    .ser-inner-wrap {
        display: block; 
        overflow-y: auto;
        padding: 5em 20px;
        width: 260px;
    }
    
    #services-inner-content .navigation-toggle-close {
        left: -8.9%;
    }
    
    .services-item h3 {
        margin: 0 auto;
        text-align: center;
        display: table;
    }
    
    #footerv2 .contact-info h2, #footerv2 .form-area h3 {
        font-size: 1.6em;
    }
    #footerv2 .contact-info .upper-content p, #footerv2 .form-area label span {
        font-size: 1em;
    }
    
    #footerv2 .form-area .hs_cos_wrapper_type_form .hs-form-field {
       /* height: 35px; */ 
    }
    
    #footerv2 .fot-soc-content {
        padding-top: 70%;
    }
    
    /* Home */
    
    
    .abt-content h2 {
        font-size: 3em;
        
    }
    
    .abt-content h2, .abt-content p {
        margin: 0;
        padding: 0 10%;
    }
    
    #home-services{
        min-height: 0 !important;
    }
    
    
    #home-footer .footer-left-side .form-area h3, #home-footer h2 {
        font-size: 3em;
    }
    
    #home-footer .form-area {
        padding: 0 5%;
    }
    
    #home-footer .footer-left-side .form-area .input input {
        width: 75%;
        left: 22%;
    }
    
    .contact-info .lower-content {
        margin-top: 5vh;
    }
    
    #home-footer .contact-info {
        padding: 5% 10%;
    }
    
    .contact-info .upper-content p {
        padding-left: 5px;   
    }
    
    .social-footer ul.social-media {
        padding: 0px;
    }
    
    #home-blog h2 span:before, #home-blog h2 span:after {
        width: 100%;
    }
    
    #home-footer .footer-left-side .form-area .input select {
        width: 67%;
        left: 30%;
    }
    
    
    /* Home Services - Center */
    
    #home-services .service-slide {
        height: auto !important; /* By D */
        padding-bottom: 20px;
        margin: 0;   
    }
    
    .services-center-content {
        min-width: 1000px;
    }
    
    .services-center-wrapper ul li.services-itemh {
        padding: 0 10px;   
    }
    
    #home-services .services-area {
        /* opacity: 1;
        z-index: 100; */
        /* height: 75vh; */
        display: block;
    }
    
    .services-center-wrapper {
        display: none;
    }
    
    /* ENd services */
    
    .lower-content .span6 {
        width: 100%;
    }
    
    .slide-item .align-center {
        height: 300px;   
    }
    
    .s-overlay {
        padding: 10%;
    }
    
    /* Services */
    
     #services-area .text-content {
        padding-top: 10%;
        width: 90%;
    }
    
    /* Contact Us */
    
    #contact-area {
        height: auto;
        background-color: #f2f2f2;
        position: relative;
    }
    
    #contact-area .contact-info .span6 {
        width: 100%;
        margin-left: 0;
    }
    
    .cright-area .contact-form h3, .cleft-area .contact-info h2 {
        font-size: 2em;   
    }
    
    #contact-area .cleft-area .contact-info {
       height: auto;
        padding: 9% 20%;
        background: #fff;
    }
    
    #contact-area .cright-area {
        height: 850px;
    }
    
    #contact-area .cleft-area {
        float: left;   
    }
    
    /* Blog */
   
   #blog-main-area {
        padding: 3vh 0;
    }
    
    .inline-blog {
        position: relative;
        top: 0;
    }
    
    /* Publication */
    
    .publication-module-area {
        padding-top: auto;
    }
    
    /* Our Team */
    
    .desc {
        max-width: 100%;
        padding: 0 10%;
    }
    
    .ourteam-partners-right .partner .full-size .container .details, .ourteam-directors-left .director .full-size .container .details {
        position: absolute;
        right: 10%;
        height: 100vh;
        max-width: 100% !important;
        padding-top: 10%;
        width: 65%;
    }
    
    .ourteam-partners-right .partner .full-size .container img.large-pic {
        position: absolute;
        bottom: 0;
        /* left: -25%; */
        left: 5%; /* By DS */
        width: 20%;
    }
    
    .ourteam-partners-right .partner .full-size .container .details .description, .ourteam-directors-left .director .full-size .container .details .description {
        height: calc(85% - 95px); 
    }
    
    .ourteam-partners-right .partner .full-size .container .details .label {
        display: none;   
    }
    
   
    .ourteam-firm-img img {
       
        width: 100%;
    }
    
    .fot-soc-content {
        text-align: left;
    }
   /* .span7.widget-span.widget-type-cell.ourteam-firm-left {
        z-index: 999;
    } */
    
    /* , .ourteam-directors-left .director .full-size .container img.large-pic {
        right: -25%;
        left: auto;
    } */
    
    /* Careers */
    
    .careers-row .row .span2 img {
        max-width: 128px;
    }
    
   
    
    /* Events */
    
    #event-area .current-events, #event-area .past-events {
        width: 100%;   
    }
    

}

@media (max-width: 1000px) {
    #cutcher-map {
        height: 250px !important;
    }
}


@media (max-width: 770px) {
    
    .text-center-mobile {
        text-align: center;
    }
    
    #row-eq-height {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display:         flex;
    }
    
    #footerv2 .contact-info .upper-content p, #footerv2 .form-area label span {
        font-size: 0.9em;
    }
    
    #footerv2 .form-area .hs_submit .actions input {
       font-size: 1em;
    }
    
    ul.social-media li a, .mm-navbar-bottom li a {
        width: 30px;
        height: 30px;
        padding: 6px 8px;
    }
    
    #footerv2 p a {
        font-size: 0.8em;
    }
    
    /* #home-services .service-slide {
        height: 75vh;
    } */
    
    #home-services {
        min-height: 75vh !important;
    }
    
    #services-area .text-content {
        padding-top: 15%;
    }
    
    #services-area .services-item {
        width: 49%;
    }
     
    
    .hero-banner {
        height: 300px;   
    }
    
    
    #footerv2 {
        padding: 5% 1%;
    }
    
    #footerv2 .contact-info .lower-content {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    #footerv2 .fot-soc-content {
        padding-top: 10%;
    }
    
    /* Events */
    
    .events-item {
        height: auto;   
    }
    
    .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
        float: left;
        max-width: 85%;
    }
    
    /* Services */
    
     .services-inner-left {
       padding: 4em 1em;
    }
    .services-inner-right {
       padding: 4em 1em;
    }
    
     #services-inner-content .navigation-toggle-close {
        display: none;   
     }
     
     #service-inner-menu {
         display: none;
     }
     
     #services-inner-content {
         width: 94%;
         padding-left: 8%;
     }
     
     #services-menu {
        display: block;   
     }
     
     #services-inner-content .widget-type-rich_text {
        max-height: inherit;
        overflow-y: inherit;
        width: 100%;
        padding-top: 3em;
    }
    
    /* Career */
    
    .career-inner .footer-container-wrapper {
        position: relative;
    }
    
    .career-inner .lp-footer {
        position: absolute;
        bottom: 0;
        top: auto;
    }
    
    .careers .careers-position .hs_cos_wrapper > div > div > div.span4 {
        margin-bottom: 2em;
    }
    
    .careers .careers-position .hs_cos_wrapper > div > div > div.span4:last-child {
        margin-bottom: 0;
    }
    
    .career-form {
        margin-top: 40px;
    }
    
    .lp-page .inner-content .content-mh {
        padding: 0 15px;   
    }
    
    /* Contact Us */
    
    .hero-banner .text-content {
        padding: 10% 10% 0%;   
    }
    
    /* Publication */
    
    .events-register, .publication-form {
        height: auto;   
    }
    
    /* Our Team */
    
    .ourteam-partners-right .blank, .ourteam-directors-left .blank {
        display: none;
    }
    
    .ourteam-directors, .ourteam-partners {
        height: auto;
    }
    
    
    
}


@media (max-width: 767px) {
    .hero-banner .text-content {
        min-height: 100vh;
        padding: 10% 0%;
    }
    
    .width-50 { width:100% !important;}
        .hs-rss-item { width: 100%; float:none;}
        .pad-r-1,  .mar-r-1 , .mar-l-1     { padding-right:0; margin-right:0; margin-left:0}
        h1 { font-size:2em}
        h2 { font-size:1.5em}
        p { font-size:1em;}
        
    .sec-padding-lg { padding:2.5em 0;}
        
    .align-right, .align-left { text-align:center;}

   .header {
        position: absolute;
        width: 100% !important;
        padding: 20px 30px 0px;
    }
    
    .header .logo {
        position: absolute;
        z-index: 10;
        top: 30px;
        width: 200px;
    }
    
    .icon-menu {
        text-align: right;
        position: absolute;
        top: 20px;
        right: 30px;
    }
        
    .page-center { padding:0 1em;}
    
    .scroll-down { display: none !important;  }
    
    #home-footer .form-area {
        padding: 0 5%;
    }
    
    #footerv2 .contact-info .upper-content p, #footerv2 .form-area label span {
        font-size: 0.9em;
    }
    
    #footerv2 .form-area .hs_submit .actions input {
       font-size: 1em;
    }
    
    #footerv2 .fot-soc-content {
        padding-top: 10%;
    }
        
    /* Home */
    
    #home-blog h2 span:before, #home-blog h2 span:after {
        width: 50px;
    }
    
    
    .hero-banner h1 {
        font-size: 2.7em;    
    }
    
    #about-intro {
        min-height: 0 !important;
    }
    
    #about-intro .abt-left, #about-intro .abt-right {
        float: left;
        height: 550px;
    }
    
    #about-intro .abt-left, #about-intro .abt-budget {
        float: left;
        height: 550px;
    }
    
    .man-image img {
        width: 200px !important;
    }
    
    .abt-content {
        padding: 0 5%;
    }
    
    .abt-content h2 {
        font-size: 2.5em;   
    }
    
    .r-wrap .abt-content p {
        font-size: 12px;   
    }
    
    #home-blog {
        padding: 5vh 0;
    }
    
    #home-blog h2 {
        font-size: 2.5em;   
    }
    
    .abt-content h2 {
        padding: 25px 0 0;
        margin: 0 0 15px;
    }
    
    .abt-content p {
        margin: 0;
        padding: 0;
    }
    
    /* #home-footer .footer-left-side, #home-footer .footer-right-side  {
        float: left;
        height: 100vh;
    }
    
    */
    
    #home-footer .footer-left-side, #home-footer .footer-right-side {
        width: 100%;
        height: auto;
    }
    
    #home-footer .footer-left-side {
        padding-top: 10%;
    }
    
    #other-logo img {
        max-width: 50%;
    }
    
    #home-footer .form-area {
        padding: 0 5%;
    }
    
    #home-footer .footer-left-side .form-area h3 {
        font-size: 2.5em;  
    }
    
    #home-footer .footer-left-side .form-area .input input {
        width: 70%;
        height: 30px;
        left: 30%;
    }
    
    .slide-item .align-center {
        height: 110px;
        width: 70px;
        margin: 0 auto;
    }
    
    #home-footer .footer-left-side .form-area .input select {
        left: 33%;   
    }
    
    .contact-info .lower-content {
        margin-top: 0;
    }
    
    .contact-info .upper-content p {
        font-size: 1em;
    }
    
    #home-footer .contact-info {
        height: auto;
        padding-top: 5%;
    }
    
    .fot-soc-content {
        text-align: left;
    }
    
    #home-footer .footer-left-side .form-area h3, #home-footer h2 {
        font-size: 2.5em;   
    }
    
    /* Contact Us */
    
    #contact-area {
        height: auto;
    }
    
     #contact-area .cright-area {
        height: 850px;
        width: 100%;
    }
    
    #contact-area .cleft-area {
        float: left;  
        width: 100%;
    }
    .cright-area .contact-form h3 {
        font-size: 1.8em;   
    }
   /* Publication */
   
   .inner-wrap .span4 img {
       margin-bottom: 20px;
   }
   
   /* Our Team */
   
   
        .ourteam-partners-left, .ourteam-firm-left, .ourteam-firm-right, .ourteam-directors-left {
            height: auto;
            background: transparent;
        }
        
        .ourteam-firm-left .desc, .ourteam-partners-left .desc, .ourteam-directors-right .desc {
            max-width: 100% !important;
            position: static;
            transform: none;
            padding-top: 5%;
        }
        
        .ourteam-partners-left, .ourteam-directors-left, .ourteam-partners-right, .ourteam-directors-right {
            width: 100% !important;
        }
        
        .ourteam-partners-right, .ourteam-directors-left {
            position: relative;   
        }
        
        
        
        .ourteam-partners-right .partner, .ourteam-directors-left .director  {
            width: 40% !important;
            height: 33vh;
            float: left;
            position: relative;
            margin: 5vh 5% 5vh 5%;
            margin-left: 5% !important;
        }
        
        .ourteam-partners-right .partner .thumb, .ourteam-directors-left .director .thumb {
            height: 33vh;
        }
        
        .ourteam-partners-right .partner .full-size .container .details .label h3, .ourteam-directors-left .director .full-size .container .details .label h3 {
            margin-top: 5px;
            font-weight: bold;
            font-size: 1.5em;
        }
        
        .ourteam-partners-right .partner .full-size .container .details .label, .ourteam-directors-left .director .full-size .container .details .label {
            bottom: 5%;   
        }
        
        
        .ourteam-partners-right .partner .full-size .container img.large-pic, .ourteam-directors-left .director .full-size .container img.large-pic {
            position: absolute;
            bottom: 25px;
            left: -9%;
            width: 47%;
        }
        
        .ourteam-partners-right .partner .full-size .container .details, .ourteam-directors-left .director .full-size .container .details {
            position: absolute;
            right: 3%;
            padding-top: 0;
            width: 60%;
        }
        
        .container .description p {
            font-size: 12px;
        }
        
        .ourteam-firm-left .desc h2, .ourteam-partners-left .desc h2, .ourteam-directors-right .desc h2 {
            font-size: 2em;   
        }
        
        
        .ourteam-partners-right .partner .full-size .container .details .description a, .ourteam-directors-left .director .full-size .container .details .description a {
            padding: 8px;   
        }
        
        .ourteam-partners-right .partner .full-size .container, .ourteam-directors-left .director .full-size .container {
            position: fixed;
            height: 100vh;
            width: 100%;
            z-index: 10;
            background: #fff;
            left: 0;
            top: 0;
            padding: 81px 20px 0px;
        }
        
        .ourteam-firm-img img {
            display: none;
        }
        
        .director .close-fs {
            right: 30px;
        }
        
        .close-fs {
            position: fixed;
            top: 10%;
            left: auto;
            right: 30px;
        }
        
        
    .ourteam-directors .row-depth-1 .row-fluid {
        display: table !important;
    }
    
        
    .ourteam-directors-right {
        display: table-header-group !important;
    }
        
        /* Events */
        
    /* Comment */
    
    #comment-form input[type="text"], #comment-form input[type="email"], #comment-form textarea {
        width: 100%;
    }
        
}

@media ( max-width: 750px) {
   .blog-item {
        margin: 0 0% 30px;
        width: 100%;
    }
    
   .blog-area {
       padding-left: 0px !important;
   } 
    
    
}

@media ( max-width: 680px) {
    .ourteam-partners-right .partner .full-size .container .details .description {
        overflow: auto;
        max-height: 50vh;
    }
    
    .btn-danger {
        margin-bottom: 20px;
    }
    
    
    
}

@media only screen 
    and (min-device-width : 414px) 
    and (max-device-width : 736px) 
    and (orientation : landscape) 
    and (-webkit-min-device-pixel-ratio : 3) 
    { 
        .hero-banner h1 {
            font-size: 3.5em;    
        }
        
        .abt-content h2 {
            font-size: 2.5em;
        }
        
        #about-intro .abt-left {
            height: 730px;
            float: left;
        }
        
        #about-intro .abt-right {
            height: 730px;
        }  
        
        #about-intro .abt-budget {
            height: 730px;
        }
        
        #home-footer .footer-left-side, #home-footer .footer-right-side  {
            height: 720px;
            float: left;
        }
        
        #home-footer .contact-info {
            height: 340px;
        }
        
        /* Our Team */
        
        .ourteam-firm-left .desc, .ourteam-partners-left .desc, .ourteam-directors-left .desc {
            max-width: 100% !important;
            position: static;
            transform: none;
            padding-top: 5%;
        }
        
        .ourteam-partners-left, .ourteam-directors-left, .ourteam-partners-right, .ourteam-directors-right {
            width: 100% !important;
        }
        
        .ourteam-partners-right, .ourteam-directors-left {
            position: relative;   
        }
        
        .ourteam-partners-right .partner, .ourteam-directors-left .director {
            width: 90% !important;
            height: 33vh;
            float: left;
            position: relative;
            margin: 5vh 5% 5vh 5%;
            margin-left: 5% !important;
        }
        
        .ourteam-partners-right .partner .thumb, .ourteam-directors-left .director .thumb {
            height: 33vh;
        }
        
        .ourteam-partners-right .partner .full-size .container .details .label h3, .ourteam-directors-left .director .full-size .container .details .label h3 {
            margin-top: 5px;
            font-weight: bold;
            font-size: 1.5em;
        }
        
        .ourteam-partners-right .partner .full-size .container .details .label, .ourteam-directors-left .director .full-size .container .details .label {
            bottom: 5%;   
        }
        
        
        .ourteam-partners-right .partner .full-size .container img.large-pic, .ourteam-directors-left .director .full-size .container img.large-pic {
            position: absolute;
            bottom: 0;
            left: -9%;
            width: 47%;
        }
        
        .ourteam-partners-right .partner .full-size .container .details,  .ourteam-directors-left .director .full-size .container .details {
            position: absolute;
            right: 3%;
            padding-top: 0;
            width: 60%;
        }
        
        .ourteam-firm-left .desc h2, .ourteam-partners-left .desc h2, .ourteam-directors-right .desc h2 {
            font-size: 2em;   
        }
        
        
        .ourteam-firm-img img {
            width: 30% !important;
        }
        
        .ourteam-partners-right .partner .full-size .container .details .description,  .ourteam-directors-left .director .full-size .container .details .description {
            overflow: auto;
            height: 60vh;
        }
        
        .hero-banner .text-content {
            padding: 10% 10% 0%;
        }
        
 }
 
@media ( max-width: 580px) {
    .home .section {
        min-height: 385px !important;
    }
    
    .home .hero-banner {
        height: 385px;
    }
    
    .header.sticky {
        padding: 15px 25px 0px;
        position: fixed;
    }
    
    #about-intro .abt-right {
        width: 100%;   
    }   
    
    #about-intro .abt-budget {
        width: 100%;   
    }
    
    #about-intro .abt-left {
        display: none;   
    }
    
    .hero-banner .text-content {
        min-height: 50vh;
    }
    
    .abt-content h2, #services-area .text-content h2, .services-center-content h2 {
        font-size: 2em;
    }
    
    .hero-banner h1 {
        font-size: 2em;
        padding-top: 32px;
    }
    
    .home .hero-banner h1 .og {
        font-size: 29px;
    }

    #about-intro .abt-left, #about-intro .abt-right  {
        width: 100%;
    }
    
    #about-intro .abt-left, #about-intro .abt-budget  {
        width: 100%;
    }
    
     /* 
    .blog-item {
        margin: 0 10% 30px;
        width: 82%;
    } */
    
    #home-footer .footer-left-side, #home-footer .footer-right-side  {
        width: 100%;
    }
    
    #home-footer .contact-info {
        height: auto;
        background: #4a5965;
        padding: 10% 5%;
    }
    
    #home-footer .footer-left-side {
        padding-top: 10%;
    }
    
    #home-footer .footer-left-side, #home-footer .footer-right-side {
        height: auto;
    }
    
    .hero-banner p {
        width: 65%;   
    }
    
    #footerv2 {
        padding: 10%;
    }
    
    #footerv2 .contact-info .lower-content {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    #footerv2 .fot-soc-content {
        padding-top: 10%;
    }
    
    #other-logo img {
        max-width: 90%;
    }
    
    .contact-info table {
        width: 100% !important;
    }
    
    .contact-info table td {
        width: 100% !important;
        display: block;
        padding-bottom: 10px;
    }
    

    
    /* Services */
    
    #services-area .services-item {
        width: 98%;
    }
    
    .service-menu-wrap {
        width: 270px;   
    }
    
    .services-inner-left h2, .services-inner-left h3, .services-inner-left h2, #services-inner-content h2, #services-inner-content h3 {
        font-size: 1.5em;
    }
    
    
    .services-inner-left h4 {
        font-size: 1.2em;
        color: #7d0c2a;
        font-weight: bold;
    }
    
    
    
    /* Publication */
    
    .publication-item {
        width: 100%;
        margin: 0 auto 30px;
    }
    
    .publication-item .span4 {
        text-align: center;
    }
    
    
    
    /* Our Team */
    
    .ourteam-partners-right .partner .thumb, .ourteam-directors-left .director .thumb {
        height: 50vh;
    }
    
    .ourteam-partners-right .partner, .ourteam-directors-left .director {
        width: 90% !important;
        height: 50vh;
    }
    
    .close-fs {
        position: fixed;
        top: 13%;
    }
    
    .ourteam-firm-img img {
        width: 40% !important;
    }
    
    .ourteam-firm-img img {
        width: 40% !important;
    }
    
    .ourteam-firm-img img {
        display: none;
    }
    
    .ourteam-partners-right .partner .full-size .container .details .description {
        overflow: auto;
        height: 80vh;
        max-height: 80vh;
        box-shadow: 0px 0px 10px #cccccc;
        padding: 15px;
    }
    
    .ourteam-directors-left .director .full-size .container .details .description {
        height: 80vh;
        max-height: 80vh;
        box-shadow: 0px 0px 10px #cccccc;
        padding: 15px;
    }
    
    .ourteam-directors-left .director .full-size .container .details .label {
        display: none;   
    }
    
    .ourteam-partners-right .partner .full-size .container .details .description li {
        font-size: 12px;
        font-weight: 300;
    }
    
    .ourteam-directors-left .director .full-size .container .details .description li {
        list-style-position: outside;
        font-size: 12px;
        font-weight: 300;
    }
        
    .ourteam-directors {
        height: auto;
    }
    
    .slick-prev, .slick-next {
       top: 20%; 
    }
    
    /* Events */
    
    #event-area h3 {
        font-size: 1.5em;   
    }
    
    #blog-main-area .widget-type-linked_image img {
        max-width: 70%;
    }
    
    /* Career */
    
    .lp-page .inner-content .content-mh {
        margin-bottom: 50px;
    }
    
    .career-form {
        margin-top: 0px;
    }
    
}

/* @media (max-width: 420px) {
    #home-services .slide-item > .s-overlay {
        opacity: 1;
    }
    
    #home-services .slide-item {
        background-color: rgba(109,27,52,0.8);
    }
    
    #home-services .slide-item > .appear-text {
        opacity: 0;
    }
} */

@media ( max-width: 360px) {
    .header .logo {
        width: 140px;   
    }
    
    .hero-banner h1 {
        padding-top: 45px;   
    }
    
    .hero-banner p {
        width: 85%;
    }
    
    .home .hero-banner {
        height: 70vh;
    }
    
    #home-footer .footer-left-side .form-area .input select {
        left: 40%;
        width: 60%;
        font-size: 1.2em;
    }
    
    .initial-content a.button {
        font-size: 0.7em;
    }
    
    /* Our Team */
    
    .ourteam-firm-img img {
        display: none;   
    }
    
    /* Careers */
    
    .careers #careers-area {
        background: #fff;
        padding: 50px 0;
    }
    
    .careers .description {
        padding-bottom: 0;   
    }
    
    /* services */
    
    #services-area .services-item {
        width: 100%;
    }
    
    #services-area .text-content {
        padding-top: 6em;
    }
    
    #services-area .services-item {
        margin-bottom: 50px;
    }
    
    #services-area .services-item p {
        min-height: 10px;   
    }
    
    #home-footer .footer-left-side .form-area h3, #home-footer h2 {
        font-size: 1.7em;
    }
    
    #footerv2 .form-area .input input {
        width: 75%;   
    }
    
    .footer-container .input select {
        top: -24px;   
    }
    
    .middle-footer .hs-form-field {
        margin-bottom: 15px;
    }
    
    #home-footer .footer-left-side .input {
        position: relative;
        height: 15px;
    }
    



}

/* Cross Browser */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
    #menu.mm-menu {
        z-index: 20;   
    }
    
    #home-services {
        padding: 7% 0;
    }
    
    
}


/* December 23, 2016 */
/* Landscape phone to portrait tablet */
@media (max-width: 979px) { 
    .custom-our-team .hero-banner h1 {
        line-height: 3em !important;
    }
}

/* December 28, 2016 */

.lp-page .hero-banner {
    padding: 50px 0;
}

.login-page .lp-footer {
   
    position: relative !important;
    bottom: 0;
    right: 5%;
    min-height: 0 !important;

}
.login-page .social-footer {
    position: absolute;
    right: 5%;
    bottom: 0;
}



@media ( max-width: 979px) {
    .login-page .left-content {
        width: 100% !important;
        overflow: auto !important;
        max-height: 100% !important;
    }
    .login-page .text-content {
        width: 97% !important;
    }
    .career-form, #form-login {
        padding: 3.5% 5%;
    }
    #form-login {
        width: 100%;
    }
    
    .login-page .hero-banner .text-content {
        padding: 10% 4% 0%;
        min-height: auto !important;
    }
    
    .ourteam-partners-left {
        float: none !important;
    }
    
    .ourteam-partners-right {
        float: none !important;
        position: relative; 
    }
    .ourteam-partners-right .partner .full-size .container .details .label {
        display: none;
    }
    
    .ourteam-partners-right .partner .full-size .container {
       overflow-y: auto; 
    }
    
    .ourteam-partners-left .desc, .ourteam-firm-left .desc, .ourteam-directors-right .desc {
        max-width: 800px;  
    }
    
}

@media (min-width: 1025px) and (max-width: 1367px) { 
    .lp-page .hero-banner .text-content {
        padding: 10% 4% 0 !important;
        
    }
}

/* For Desktop Only - Blog */
@media (min-width: 767px) {
    .blog-area .hs_cos_wrapper_widget:nth-last-of-type(1) .blog-item.active .initial-content,
    .blog-area .hs_cos_wrapper_widget:nth-last-of-type(2) .blog-item.active .initial-content,
    .blog-area .hs_cos_wrapper_widget:nth-last-of-type(3) .blog-item.active .initial-content {
        top: auto;
        bottom: 100%;
    }
    
    .blog-area .hs_cos_wrapper_widget:nth-last-of-type(1) .initial-content,
    .blog-area .hs_cos_wrapper_widget:nth-last-of-type(2) .initial-content,
    .blog-area .hs_cos_wrapper_widget:nth-last-of-type(3) .initial-content {
        bottom: 0%;
    }
}


/* Portrait tablet to landscape and desktop */
@media (min-width: 767px) and (max-width: 979px) { 
    /* Careers Page: Apply Now Page */
    
    
    .home .hero-banner .text-content {
        padding: 35% 10% 0;
    }
    
    #about-intro .abt-left  {
       width: 100%;
       height: 45vh;
    }
    
    #about-intro .abt-right {
        height: auto;
        width: 100%;
        padding: 5% 0;
    }
    
     #about-intro .abt-budget {
        height: auto;
        width: 100%;
        padding: 5% 0;
    }
    
    .abt-left .man-image {
        width: 75%; 
    }
    
    .apply-now {
        padding: 14px 90px !important;
    }
    
    
    .hero-banner h1 {
        font-size: 3.5em;
       
    }
    
    .hero-banner p {
        width: 540px !important;
    }
    
    
    /* Our Team */  
    .custom-our-team .ourteam-directors-left, .ourteam-partners-left {
        width: 100% !important;
    }
    .custom-our-team .ourteam-directors-right, .ourteam-partners-right {
         width: 100% !important;
         float: none !important;
    }
    
    .custom-our-team .ourteam-directors-left {
        display: inline-block;
        float: left;
        margin-top: 100% !important;
        margin-left: 0 !important;
        z-index: 22;
    }
    
    
    .ourteam-directors-left .director .full-size .container {
        overflow: hidden;
    }
    
    .ourteam-partners-right .partner .full-size .container .details, .ourteam-directors-left .director .full-size .container .details {
        right: 5%;
    }
    .ourteam-partners-right .partner .full-size .container img.large-pic {
        width: 65%;
        left: -15%;
    }
    
    .custom-our-team .details {
        font-size: 14px;
    }
    .custom-our-team .description h3 {
        font-weight: bold;
    }
    .ourteam-partners-right .partner .full-size .container .details .label h3 {
        font-size: 18px;
    }
    .ourteam-directors-left .director .full-size .container .details .label h3 {
        font-size: 18px;
    }
    
    .ourteam-firm-right {
        display: none !important;
    }
    
    .ourteam-firm-left {
        width: 100% !important;
    }

    /* By DS */
    .ourteam-directors,
    .ourteam-partners {
        height: auto;
    }
    .ourteam-directors-left {
        float: none;
        position: relative;
    }
    .ourteam-directors-left .director .full-size .container img.large-pic,
    .ourteam-partners-right .partner .full-size .container img.large-pic {
        display: none;
    }
    .ourteam-partners-right .partner .full-size .container .details,
    .ourteam-directors-left .director .full-size .container .details {
        width: 90%;
    }
   
    
}

/* iPad in landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 
    .custom-our-team .details {
        font-size: 14px;
    }
    .custom-our-team .description h3 {
        font-weight: bold;
    }
    .ourteam-partners-right .partner .full-size .container .details .label h3 {
        font-size: 18px;
    }
    .ourteam-directors-left .director .full-size .container .details .label h3 {
        font-size: 18px;
    }
    
    /* To fixed issue on services page  */
    #services-area .services-item {
         width: 49%;   
    }
    
}


@media (min-width: 1367px) { 
   /*  .ourteam-directors-left .director .full-size .container img.large-pic {
       right: -25% !important;
   } */
}

/* iPad in Portrait */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) { 
    
    /* To fixed issue on services page  */
    #services-area .services-item {
        width: 49%;   
    }
    
}




/* February 23, 2017 */


/* Services Area */
@media (min-width: 1200px) { 
    /* #services-area .services-item h3 a {
        min-height: 60px;
    } */
    /* .services-itemh h3 {
        min-height: 64px;
    } */
}

@media (max-width: 1200px) { 
    .slide-item .align-center img {
        display: none;
    }
    
}
.services-inner .nav-button a {
    text-align: center;
    background-color: #7d0c2a;
    color: #eaeaea;
   /* width: 50%; */
    height: auto;
   display: inline-block;
   padding: 10px 15px;
}

.services-inner .nav-button a:hover {
    background-color: #ffaf00;
}



.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}


.services-inner-accounting-papers .publication-item .inner-wrap h3 a, .services-inner-accounting-papers .publication-content h3 {
    font-size: 30px;
}

#services-inner-content h4 {
    font-size: 24px;
}
#services-inner-content h5, #services-inner-content h6 {
    font-size: 24px;
}

/* February 2, 2017 */
/*@media only screen and (min-width : 768px) {*/
/*    .forensic-team #services-inner-content {*/
/*        max-height: 795px;*/
/*        overflow-y: auto;*/
/*        width: 72%;*/
/*    }*/

/*}*/

/* March 1, 2017 */
#footerv2 ul.hs-error-msgs.inputs-list {
    background: #ffab00;
    padding: 5px 15px !important;
    border: 1px solid #fff;
}


@media (min-width: 1025px) { 

    .services-item h3,
    .services-itemh h3 {
        /* min-height: 66px; */
        display: table;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

.blog-area {
    padding-left: 30px;
}
.fixed-menu {
    position: fixed !important;
    z-index: 10;
    top: 0;
    height: 100% !important;
}

.absolute-menu {
    position: absolute !important;
    bottom: 0;
    left: 0;
    top: auto !important;
   /* height: 100% !important; */
}

.add-padding-left {
    padding-left: 25%;
    float: none;
    transition: none !important;
    width: 95% !important;
}
#footerv2 {
    position: relative;
    z-index: 20;
}

/* Sub 2017 Css */

/* Miscellaneous */

ul.hs-error-msgs {
    border: 1px solid #fff;
    padding: 5px 15px !important;
    color: #fff;
    background-color: #FFAB00;
}

.footer-left-side form.hs-form .hs-form-field ul.hs-error-msgs {
    background-color: #FFAB00;
}

.services-center-wrapper {
    width: 100%;
    position: relative;
    max-width: 1175px;
    margin: 0 auto;
}

.services-center-content {
    background: #ffffff;
    min-width: 100%;
   /*  position: absolute;
   top: 0px;
   left: 50%;
   transform: translateX(-50%); */
    /* height: 75vh; */
    padding: 20px;
    display: block;
    width: 100%;
}


/* December 15, 2016 */

/* Main Navigation */
#hs_menu_wrapper_module_14794489509437 > ul > li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.mm-vertical.mm-selected.mm-opened > a:nth-child(2) {
    
}
#hs_menu_wrapper_module_14794489509437 > ul > li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.mm-vertical.mm-selected > a:nth-child(2) {
    background: none !important;
}

/* Homepage */
.contact-info h2 {
    margin-bottom: 0.25em !important;
}

/* Homepage Footer Font Size */
@media (max-width: 1366px) { 
    #home-footer .footer-left-side .form-area label span {
        font-size: 18px;
    }
    #home-footer .footer-left-side .form-area .input input {
        font-size: 18px;
    }
    #home-footer .footer-left-side .form-area .input select {
        font-size: 18px;
    }
    #home-footer .footer-left-side .form-area .hs_submit .actions input {
        font-size: 20px;
    }
    .contact-info .upper-content p {
        font-size: 18px;
    }

}

/* Our Team page*/

.ourteam-firm-img img {
    top: 0;
    height: 100%;
}

/*.ourteam-partners-right .partner .full-size .container .details {
    overflow: auto;
}*/

@media (max-width: 1190px) {
    .services-center-content {
        width: 100%;
    }
}

/* Home Banner Slider - 03/14/2017 */

.home .row-number-2 .span12{ min-height: initial; }
.bannerStaticFullHeight { 
  position: relative; 
}
  .bannerSlickSliderContentWrap {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 500px;
  }
  /* .bannerSlickSliderContentWrap:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.8);
  } */
    .bannerSlickSliderContent {
      width: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      color: #fff;
      font-size: 18px;
      font-weight: 300;
      z-index: 15;
      -webkit-transform: translate(0,-50%);
      -moz-transform: translate(0,-50%);
      transform: translate(0,-50%);
    }
      .bannerInnerContent { max-width: initial; }
      .bannerInnerContent h1 {
        color: #fff;
        font-family: 'Open Sans', sans-serif;
        font-size: 54px;
        font-weight: bold;
        line-height: 1.3em;
        margin: 0 0 40px;
      }
        .bannerInnerContent h1 .og { font-size: 71px; }
      .bannerInnerContent p {
        font-size: 16px;
        color: #fff;
        width: 380px;
        margin: 15px auto 30px;
      }

      .bannerInnerContent .bannerCTA {
        color: #fff;
        border: 1px solid #fff;
        border-radius: 0px;
        background-color: transparent;
        text-transform: capitalize;
        text-shadow: none;
        line-height: 1.5em;
        padding: 10px 50px;
        cursor: pointer;
      }
      .bannerInnerContent .bannerCTA:hover {
        background: #FFAB00;
      }

       .bannerInnerContent .bannerCTA_2 {
        color: #fff;
        border: 1px solid #fff;
        border-radius: 0px;
        background-color: transparent;
        text-transform: capitalize;
        text-shadow: none;
        line-height: 1.5em;
        padding: 10px 50px;
        cursor: pointer;
      }
      .bannerInnerContent .bannerCTA_2:hover {
        background: #FFAB00;
      }

  #bannerSlickSlider .slick-arrow, 
  #bannerSlickSlider .slick-arrow {
    filter: initial;
    opacity: 1;
  }
  #bannerSlickSlider .slick-dots { bottom: 50px; }
    #bannerSlickSlider .slick-dots li,
    #bannerSlickSlider .slick-dots li button {
      width: 25px;
      height: 25px;
    }
    #bannerSlickSlider .slick-dots li button:before {
      font-size: 30px;
      line-height: 1;
      color: #fff;
    }
  #bannerSlickSlider.slick-dotted.slick-slider { margin-bottom: 0; }
/*Preloader*/
.preloader {
    position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: rgba(0,0,0,1);
}
.preloader > i {
  position: absolute;
  font-size: 36px;
  line-height: 36px;
  top: 50%;
  left: 50%;
  height: 36px;
  width: 36px;
  margin-top: -15px;
  margin-left: -15px;
  display: inline-block;
}
@media (max-width: 979px) and (min-width: 767px) {
  .bannerInnerContent h1 {
    font-size: 30px;
  }
    .bannerInnerContent h1 .og { font-size: 35px; }
}
@media (min-width: 768px){
  .bannerInnerContent {
    padding: 0 3em;
  }
  .home .row-fluid [class*="span"] { 
  }
}
@media (max-width: 767px){ 
    .noPreloader .preloader {
        display: none;
    }
  .home .row-fluid [class*="span"] { 
    min-height: initial !important;
  }
  .bannerInnerContent h1 {
    font-size: 25px;
  }
    .bannerInnerContent h1 .og { font-size: 30px; }

    #about-intro .abt-left  {
       height: auto;
       float: none;
       display: block;
    }
    
    #about-intro .abt-right {
        height: auto;
        float: none;
        display: block;
        width: 100% !important;
    }
    
    #about-intro .abt-budget {
        height: auto;
        float: none;
        display: block;
        width: 100% !important;
    }
    
    #services-area #mserv .services-item {
        width: 49%;
    }
    
}
@media (max-width: 580px) {
  .bannerInnerContent h1 {
    font-size: 20px;
    /* padding-top: 32px; */
  }
  
  #services-area .text-content h2 {
      margin-top: 30px;
  }
  
  
  .bannerInnerContent h1 .og { font-size: 25px; }
  
  #services-area #mserv .services-item { 
    width: 99%;
    }
  
}


/* March 15, 2017 */

@media only screen and (min-width : 1200px) {
    #services-area .services-item {
        height: 180px !important;
    }
    
}



/* Remove Menu Overflow white space */
html.mm-blocking, html.mm-blocking body {
    overflow: initial !important;
}

@media only screen and (max-width : 1280px) {
    .ourteam-partners-right .partner { background-position: center center !important; }
}

.VisiCalcClass { 
  background:url(/staticAssets/calculators/load.gif) 50% 15% no-repeat; 
  background-size: 80px 80px; 
  min-width: 700px; 
  min-height:900px; 
  margin:0; 
  padding:0; 
} 
 
#Loan_Repayment_Calculator { min-height:750px !important; }  
#Borrowing_Power_Calculator { min-height:850px !important; } 
#Budget_Planner { min-height:2850px !important; } 
#Compound_Interest_Calculator { min-height:850px !important; }  
#Credit_Card_Calculator { min-height:900px !important; } 
#How_Long_to_Repay_Calculator { min-height:750px !important; }        
#Interest_Only_Mortgage_Calculator { min-height:750px !important; } 
#Saving_Calculator { min-height:600px !important; } 
#Split_Loan_Calculator { min-height:800px !important; } 
#Property_Selling_Cost_Calculator { min-height:700px !important; } 
#Reverse_Mortgage_Calculator { min-height:1100px !important; } 
#Stamp_Duty_Calculator { min-height:800px !important; }  
 
#Income_Gross_Up_Calculator{ min-height:900px !important; } 
#Income_Gross_Up_Calculator{ min-height:900px !important; } 
#RentvsBuyCalculator { min-height:1100px !important; } 
#Mortgage_Switching_Calculator { min-height:1100px !important; } 
 
          
       
@media screen and (max-width: 767px) { 
    .VisiCalcClass { 
        min-width: 100%; 
        min-height:1250px; 
        margin:0; 
        padding:0;} 
 
                #Loan_Repayment_Calculator { min-height:1250px !important; } 
                #Borrowing_Power_Calculator { min-height:1800px !important; } 
                #Budget_Planner { min-height:5000px !important; } 
                #Comparison_Rate_Calculator { min-height:1450px !important; } 
                #Compound_Interest_Calculator { min-height:1200px !important; } 

		#Credit_Card_Calculator { min-height:1500px !important; } 
                #Extra_Repayment_Calculator { min-height:1450px !important; } 
                #Home_Loan_Offset_Calculator{ min-height:1400px !important; } 
                #How_Long_to_Repay_Calculator { min-height:1250px !important; } 
                #Interest_Only_Mortgage_Calculator { min-height:1450px !important; } 
                #Saving_Calculator { min-height:1250px !important; } 
                #Introductory_Rate_Loan_Calculator{ min-height:1400px !important; } 
                #Lump_Sum_Repayment_Calculator { min-height:1450px !important; } 
                #Split_Loan_Calculator { min-height:1550px !important; } 
                #Loan_Comparison_Calculator { min-height:1800px !important; } 
                #Property_Buying_Cost_Calculator { min-height:1850px !important; } 
                #Property_Selling_Cost_Calculator { min-height:1650px !important; } 
                #Reverse_Mortgage_Calculator { min-height:1900px !important; } 
                #Stamp_Duty_Calculator { min-height:1250px !important; }        
                #Income_Gross_Up_Calculator{ min-height:1700px !important; } 
                #Income_Gross_Up_Calculator{ min-height:1700px !important; } 
                #RentvsBuyCalculator { min-height:1900px !important; } 
                #Mortgage_Switching_Calculator { min-height:1900px !important; } 
 
                 }               
}

