/*
Site Wide Styles
******************************************************************************/

  /********************************************
  general
  ********************************************/
    
    .one-half{
      min-height: 1px;
    }

    @media screen and (max-width: 1200px){
      .site-inner {
        margin-top: 80px;
      }
    }

  /********************************************
  typography
  ********************************************/
    
    body{
      font-family: 'Libre Franklin', sans-serif;
    }

    strong{
      font-weight: 700;
    }

    h1, .h1,
    h2, .h2, 
    h3, .h3,
    h4, .h4,
    h5, .h5,
    h6, .h6
    {
      font-family: 'Crimson Text', cursive;
      color: #0e4823;
      font-weight: 700;
      text-transform: none;
    }

    .h1 {
      font-size: 42px;
      font-size: 4.2rem;
    }

    .h2 {
      font-size: 36px;
      font-size: 3.6rem;
    }

    .h3 {
      font-size: 30px;
      font-size: 3rem;
    }

    .h4 {
      font-size: 24px;
      font-size: 2.4rem;
    }

    .h5 {
      font-size: 20px;
      font-size: 2rem;
    }

    .h6 {
      font-size: 18px;
      font-size: 1.6rem;
    }

    .title,
    .welcome-wide .widget-title,
    .entry-title,
    .archive-title,
    .front-page-2 h4,
    .front-page-3 h4,
    .front-page-4 h4{
      font-family: 'Crimson Text', cursive;
      font-style: italic;
    }

    .title,
    .welcome-wide .widget-title,
    .entry-title,
    .entry-title a,
    .archive-title,
    .archive-title a,
    .front-page-2 h4,
    .front-page-3 h4{
      color: #0e4823;
    }

    .front-page-4 h4{
      color: #b1a065;
    }

    .entry-title{
      padding-bottom: 30px;
      margin-bottom: 70px;
      text-align: center;
      position: relative;
      border-bottom: 3px solid #b1a065;
    }

    .entry-title:after{
      content: "";
      display: block;
      width: 120px;
      height: 52px;
      background: #ffffff url(img/title-logo.png) no-repeat center center;
      position: absolute;
      left: 50%;
      bottom: -26px;
      margin-left: -60px;
    }

    @media screen and (min-width: 1100px){
      .entry-title{
        font-size: 70px;
      }
    }

    .entry-content a{
    }

    .entry-content a:hover,
    .entry-content a:focus{
      color: #0e4823;
    }

    ul.indent li,
    ol.indent li{
      margin-left: 35px;
    }

    @media screen and (min-width: 630px){
      .two-col-list li{
        float: left;
        width: 48.717948717948715%;
        margin-bottom: 20px;
        margin-left: 2.564102564102564%;
      }

      .two-col-list li:nth-child(odd){
        clear: both;
        margin-left: 0;
      }
    }

    hr{
      display:block;
      border:0;
      height: 5px;
      margin: 1.563rem 0 3.126rem;
      background: #4998c3; 
    }

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

    .inline{
      display: inline-block;
    }

    .credit{
      display: block;
      text-align: right;
      font-size: 16px;
    }

    img.img-trim,
    .img-trim img{
      padding: 3px;
      border: 3px solid #B1A065;
    }

  /********************************************
  buttons
  ********************************************/

    /****general****/
      a.btn{
        display: inline-block;
        padding: 20px 50px;
        background: #0e4823;
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: center;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
      }

      a.btn:hover,
      a.btn:focus{
        color: #fff;
      }

      a.btn:after{
        content: "";
        display:block;
        width: 0%;
        height: 100%;
        z-index: -1;
        background: rgba(0, 0, 0, 0.4);
        position: absolute;
        left: 0;
        top: 0;
        moz-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
      }

      a.btn:hover:after,
      a.btn:focus:after{
        width: 100%;
      }

      a.btn.gold{
        background: #b1a065;
      }

      @media screen and (min-width: 600px){
        a.btn{
          font-size:20px;
        }
      }


    /***gform button style***/

      button, 
      input[type="button"],
      input[type="reset"],
      input[type="submit"]{
        background: #0e4823;
      }

  /********************************************
  styles
  ********************************************/

    /****backgrounds****/
      
      .green-bg{
        background-color: #0e4823;
        color: #fff;
      }

      .gold-bg{
        background-color: #b1a065;
        color: #fff;
      }

    /****width adjustments****/
      
      .med-width{
        margin: 0 auto;
        max-width: 900px;
      }

      .small-width{
        margin: 0 auto;
        max-width: 675px;
      }

    /****service blocks****/
      
      fieldset.highlight {
        border: 3px solid #b1a065;
        margin: 0;
        padding: 40px;
        text-align: center;
        background-repeat: no-repeat;
        background-position: center 3px;
        background-size: cover;
        position: relative;
        z-index:1
      }

      fieldset.highlight:before{
        content:"";
        display:block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 23px;
        z-index: -1;
        left: 0;
        background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 5%, rgba(255,255,255,0) 100%);
        background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 5%,rgba(255,255,255,0) 100%);
        background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 5%,rgba(255,255,255,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );

      }

      fieldset.highlight legend {
        padding: 0 30px;
        font-size: 30px;
        font-family: 'Crimson Text';
        font-weight: 700;
        font-style: italic;
        color: #b1a065;
      }

      .merge{
        background-image: url(img/merge-home.jpg);
      }

      .sell{
        background-image: url(img/sell-home.jpg);
      }

      .buy{
        background-image: url(img/buy-home.jpg);
      }

      .valuation{
        background-image: url(img/valuation-home.jpg);
      }
    
    /****service pages numerated list****/

      dl.list{
        clear: both;
        counter-reset: list-counter;
      }

      dl.list dt{
        display: block;
        position: relative;
        z-index: 1;
        padding-left: 40px;
        padding-top: 30px;
        box-sizing: border-box;
      }

      dl.list dt:before{
        content: counter(list-counter, decimal-leading-zero);
        counter-increment: list-counter;
        display: block;
        font-size: 70px;
        font-family: 'Crimson Text';
        font-weight: 700;
        font-style: italic;
        color: #b1a065;
        opacity: 0.3;
        z-index: -1;
        position: absolute;
        top: -30px;
        left: 0;
      }

      @media screen and (min-width: 768px){
        dl.list dt{
          float: left;
          width: 48.717948717948715%;
          margin-bottom: 40px;
          margin-left: 2.564102564102564%;
        }

        dl.list dt:nth-child(odd){
          clear: both;
          margin-left: 0;
        }
      }

    /****cta area****/

      .cta-area{
        padding: 5%;
        background: #B1A065 url(img/gold-bg.jpg);
        color: #fff;
        text-align: center;
      }

      .cta-area h2{
        color: #fff;
        font-style: italic;
      }

      .cta-area a.btn,
      .cta-area a.btn:hover,
      .cta-area a.btn:focus{
        color: #fff;
      }

  /********************************************
  header
  ********************************************/

    /****main header****/
      .site-header,
      .site-header.light,
	  .tampa-page .site-header.light,
      .front-page .site-header.light{
        background: #0e4823 url(img/green-bg.jpg);
      }

      @media screen and (max-width: 1200px){
        .site-header{
          position: static;
        }
      }

      @media screen and (min-width: 1200px){

        .front-page .site-header{
          background: transparent;
          transition: all 0.3s ease-out;
        }
		
		 .tampa-page .site-header{
          background: rgba(0,0,0,0.5);
        }
		
      }

      @media only screen and (max-width: 960px){
        .site-header .wrap {
            padding: 0 3%;
        }
      }

    /****logo****/

      .title-area{
        width: 230px;
      }

      @media screen and (min-width: 1200px){
        .header-image .site-title > a{
          height:118px;
        }
      }

      @media screen and (max-width: 1200px){
        .title-area{
          width: 100%;
        }

        .header-image .site-title > a{
          background-position: center !important;
        }
      }

      @media screen and (max-width: 1023px){
        body .header-image .title-area, 
        body .header-image .site-header.light .title-area {
          padding: 0 0 15px;
        }
      }

    /****navigation links****/

      .header-image .site-title > a{
        margin-top: 6px;
      }

      .genesis-nav-menu a{
        padding: 40px 9px;
      }

      .genesis-nav-menu .sub-menu a{
        line-height: 16px;
      }

      @media only screen and (min-width: 1200px){
        .genesis-nav-menu a{
          padding: 55px 9px;
        }
      }

      @media only screen and (max-width: 1200px){
        .nav-primary .genesis-nav-menu{
          float: none;
        }
      }
      
      @media only screen and (max-width: 1023px){
        body .genesis-nav-menu a, 
        body .site-header.light .genesis-nav-menu a {
            padding: 20px 10px 20px;
        }
      }
        
    /****navigation tab fix****/
    
      .menu .menu-item:focus { 
        position: static; 
      }
      .menu .menu-item > a:focus + ul.sub-menu, 
      .menu .menu-item.sfHover > ul.sub-menu { 
        left: auto; opacity: 1; 
      }  
      
    /****phone cta****/
      .ph-number a{
        padding: 30px 0;
      }

      .ph-number a span{
        font-weight: 700;
        font-family: 'Crimson Text';
        font-style: italic;
        font-size: 17px;
        background: #B1A065 url(img/gold-bg.jpg);
        padding: 13px 15px 10px;
      }

      .ph-number a:hover,
      .ph-number a:focus{
        color: #0E4823;
      }

  /********************************************
  footer
  ********************************************/

    .site-footer{
      background: #0e4823 url(img/green-bg.jpg);
    }
    
    /****highforge link****/

      footer a.hf-icon-highforge:hover{
        color: #3678bb;
      }

      @font-face {
        font-family: 'highforge';
        src:url('../fonts/highforge.eot?-vtv5le');
        src:url('../fonts/highforge.eot?#iefix-vtv5le') format('embedded-opentype'),
          url('../fonts/highforge.woff?-vtv5le') format('woff'),
          url('../fonts/highforge.ttf?-vtv5le') format('truetype'),
          url('../fonts/highforge.svg?-vtv5le#highforge') format('svg');
        font-weight: normal;
        font-style: normal;
      }

      [class^="hf-icon-"], [class*=" hf-icon-"] {
        

        
      }

      .hf-icon-highforge:before {
        content: "\e600";
        font-family: 'highforge';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;

        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }




/*
Page Specific Styles
******************************************************************************/

  /*******************************************
  home page
  *******************************************/

    /****site inner****/

      .front-page .site-container .site-inner{
        display: none;
      }

    /****home page 2****/
      .front-page-2 h4{
        font-size: 54px;
        font-size: 5.4rem;
        text-transform: none;
        color: #fff;
      }

      body .front-page-2 .image-section{
        background: #B1A065 url(img/gold-bg.jpg);
      }

    /****home page 3****/
      @media screen and (max-width:768px){
        .front-page-3 .flexible-widgets{
          padding-bottom: 60px;
        }
      }

  /*******************************************
  blog page
  *******************************************/

    /*
    .archive-title{
      padding-bottom: 20px;
      margin-bottom: 70px;
      border-bottom: 3px solid #b1a065;
      font-size:36px;
    }
    */

    .archive-title{
      display: none;
    }

    .blog .entry-title{
      font-size: 30px;
      text-align: left;
      padding-bottom: 5px;
      margin-bottom: 20px;
      font-style: normal;
      border-bottom-width: 1px;
    }

    .blog .entry-title:after{
      display:none;
    }

/*
Media queries
******************************************************************************/


/*
Screen Reader Text
******************************************************************************/

  .screen-reader-text,
  .screen-reader-text span,
  .screen-reader-shortcut {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
  }

  .screen-reader-text:focus,
  .screen-reader-shortcut:focus,
  .genesis-nav-menu .search input[type="submit"]:focus,
  .widget_search input[type="submit"]:focus  {
    clip: auto !important;
    height: auto;
    width: auto;
    display: block;
    font-size: 1em;
    font-weight: bold;
    padding: 15px 23px 14px;
    color: #333;
    background: #fff;
    z-index: 100000; /* Above WP toolbar. */
    text-decoration: none;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
  }

  .more-link {
    position: relative;
  }



  