/*-------------------------------------------------------------*/
/* Fonts */
@font-face {
    font-family: 'alegreyasans';
    font-style: normal;
        src: url('../fonts/alegreyasans.eot'); /* IE9 Compat Modes */
      src: url('../fonts/alegreyasans.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('https://www.innovativepropertysolutions.com/fonts/alegreyasans.woff') format('woff'), /* Modern Browsers */
           url('../fonts/alegreyasans.ttf')  format('truetype'); /* Safari, Android, iOS */
  }
  
  @font-face {
    font-family: 'ubuntu';
    font-style: normal;
        src: url('../fonts/ubuntu.eot'); /* IE9 Compat Modes */
      src: url('../fonts/ubuntu.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('https://www.innovativepropertysolutions.com/fonts/ubuntu.woff') format('woff'), /* Modern Browsers */
           url('../fonts/ubuntu.ttf')  format('truetype'); /* Safari, Android, iOS */
  }
  
  @font-face {
    font-family: 'Open_Sans';
    font-style: normal;
        src: url('../fonts/Open_Sans.eot'); /* IE9 Compat Modes */
      src: url('../fonts/Open_Sans.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('../fonts/Open_Sans.woff') format('woff'), /* Modern Browsers */
           url('../fonts/Open_Sans.ttf')  format('truetype'); /* Safari, Android, iOS */
  }
  
  @font-face {
    font-family: 'archivonarrow';
    font-style: normal;
        src: url('../fonts/archivonarrow.eot'); /* IE9 Compat Modes */
      src: url('../fonts/archivonarrow.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('../fonts/archivonarrow.woff') format('woff'), /* Modern Browsers */
           url('../fonts/archivonarrow.ttf')  format('truetype'); /* Safari, Android, iOS */
  }
  
  .ubuntu {
      font-family: 'ubuntu', 'Trebuchet MS', Sans-Serif;
  }
  
  .opens {
      font-family: 'Open_Sans', 'Trebuchet MS', Sans-Serif;
  }
  
  .alegreya {
      font-family: 'alegreyasans', 'Trebuchet MS', Sans-Serif;
  }
  
  .archivonarrow {
      font-family: 'archivonarrow', 'Trebuchet MS', Sans-Serif;
  }
  
  
  
  
  /*-------------------------------------------------------------*/
  /* General */
  
  body {
      margin: 0;
      padding: 0;
      font-family: 'Open_Sans', 'Trebuchet MS', Sans-Serif;
      color: #666666;
      background: #007cb6;
      background-attachment: fixed;
      background: -webkit-radial-gradient(circle at top right, #07cbc2, #007cb6); /* Safari 5.1 to 6.0 */
      background: -o-radial-gradient(circle at top right, #07cbc2, #007cb6); /* For Opera 11.6 to 12.0 */
      background: -moz-radial-gradient(circle at top right, #07cbc2, #007cb6); /* For Firefox 3.6 to 15 */
      background-image:
      radial-gradient(
        circle at top right,
        #07cbc2,
        #007cb6
      );
  
      overflow-x: hidden;
  }
  
  
  
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Navigation */
  .navWrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
      display:inline-block;
    width: 100vw;
      z-index: 2000;
  }
  
  
  .logo{
      display:inline-block;
      float: left;
      vertical-align: middle;
  }
  
  .logo a{
      text-decoration:none;
      border: none;
  }
  
  .logo a img{
      border: none;
      width: 243px;
      height: 75px;
    padding: 5px 0 5px 15%;
  }
  
  
  .logox a img{
    -webkit-transition: all 0.9s ease;
      -moz-transition: all 0.9s ease;
      -o-transition: all 0.9s ease;
      transition: all 0.9s ease;
      width: 243px;
      height: 75px;
    padding: 5px 0 2px 15%;
  }
  
  .logoclr {
    display: none;
  }
  
  .navbar { display: none; }
  
  @media only screen and (min-width: 950px){
  
    .navbar { display: block; }
    .navbar{
      width: auto;
      text-align: right;
      font-size: 0.9em;
      font-weight: bold;
      margin-right: 3%;
      margin-top: 1%;
    }
    .navbar a{
      text-decoration:none;
      padding: 0px 10px;
      color: #FFFFFF;
    }
    ul#nav, ul#nav ul.sub_menu {
      padding: 0px;
      margin: 0px;
    }
    ul#nav li, ul#nav ul.sub_menu li {
      list-style-type: none;
      display: inline-block;
    }
  
    ul#nav li a, ul#nav li ul.sub_menu li a {
      text-decoration: none;
      display:inline-block;
      height: 30px;
      text-align: center;
      padding: 10px 10px;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
    }
  
    ul#nav li {
      position: relative;
    }
    ul#nav li a:hover{
      color: #427377;
      text-decoration: underline;
    }
  
    ul#nav li, .navActive{
      color: #007cb6;
      text-decoration: underline;
  
    }
    ul#nav li ul.sub_menu {
      display:none;
      position: absolute;
      text-align:left;
      width: auto;
    }
  
    ul#nav li:hover ul.sub_menu {
      display:block;
    }
  
    ul#nav li:hover ul.sub_menu li:hover a {
      text-decoration:none;
    }
    .no_select {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
  
  }
  
  
  
  .menu_icon{
      position: fixed;
      display: none;
    right: 2%;
      font-size: 0.8em;
      text-align: center;
      cursor: pointer;
      z-index: 2002;
  }
  .menu_icon img{
      padding-top: 10px;
      width: 25px;
  }
  
  
  
  .mlogo{
      display:inline-block;
      padding: 3px;
    width: 100%;
    text-align: center ;
      vertical-align: middle;
  }
  
  .mlogo a{
      text-decoration:none;
      border: none;
      color: #000000;
  }
  
  .mlogo a img{
      border: none;
      width: 50px;
      height: 50px;
    padding-left: 3px;
  }
  
  
  
  .menu{
      position: fixed;
      top: 0;
      bottom: 0;
    right: 0;
    width: 80%;
      z-index: 2001;
      text-align: left;
      display: none;
  }
  
  .menu a{
      text-decoration:none;
      color: #FFFFFF;
  }
  
  .menuOption{
      width: 100%;
      padding: 2% 0 2% 5%;
    font-weight: bold;
  }
  
  .menuOption:hover {
    color: #007cb6;
      background: #FFFFFF;
  }
  
  
  /*-------------------------------------------------------------*/
  /* Page Formatting */
  
  
  
  .backWrapper {
      text-align: center;
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: -998;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      overflow: hidden;
  }
  
  
  .contentWrapper{
    position: relative;
    width: 100vw;
    max-width:100%;
    overflow: hidden;
  }
  
  .newPage {
    min-height: 100vh;
    width: 100%;
    overflow:hidden;
  }
  .newPage-short {
    min-height: 5vh;
    width: 100%;
    overflow:hidden;
  }
  .newTitlePage {
    min-height: 75vh;
    width: 100%;
    overflow:hidden;
  }
  .wideWrapper {
    width: 100%;
    margin: 0 auto;
  }
  
  .largeTitle {
    display: inline-block;
    color: #FFFFFF;
    width: 100%;
    font-size: 3em;
    /* margin: 25% auto 5% auto; */
    text-align: center;
  }
  
  .titleDesc {
    display: inline-block;
    color: #FFFFFF;
    padding: 10px;
    font-size: 1.6em;
    vertical-align: top;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .smallMemo {
    display: inline-block;
    color: #FFFFFF;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    width: 100%;
    margin: 5% auto;
  }
  
  .smallMemo a img {
    width: 65px;
    height: 65px;
  }
  
  .smallMemo a img:hover {
    opacity: 0.5;
  }
  
  .introTitle{
    margin-top: 100px;
  }
  
  .introTitle img {
    padding-top: 30px;
    width: 80vw;
    height: auto;
  }
  
  @media only screen and (min-width: 950px){
    .largeTitle {
      font-size: 3.5em;
      width: auto;
      min-width: 300px;
      padding: 7% 0 10px 0;
      /* margin: 0 0 0 10%; */
      text-align: center;
    }
  
  
    .introTitle img {
      width: 50vw;
      height: auto;
      margin-top: 0;
    }
  
    .titleDesc {
      padding: 20px 0;
      margin-left: 15%;
      font-size: 2.5em;
      width: 100%;
      text-align: justify;
    }
  
    .smallMemo {
      width: 100%;
      margin: 20px auto;
    }
  }
  
  
  
  
  
  .infoWrapper {
    width: 100%;
    margin: 2% auto;
    text-align: center;
  }
  
  .infoBlock{
    display: inline-block;
      width: 80%;
      min-width: 225px;
    margin: 10px 5px;
    vertical-align: top;
    overflow: hidden;
    padding: 5px;
  }
  
  .infoBlock iframe{
    height: 300px;
  }
  
  .infoBlock2 {
    display: inline-block;
      width: 90%;
      min-width: 225px;
    margin: 10px 5px;
    vertical-align: top;
    overflow: hidden;
    padding: 5px;
  }
  
  .infoBlock a {
    text-decoration: none;
  }
  
  .infoDesc ul {
    list-style: none;
    margin-top: -5px;
  }
  
  ul.checks li {
      text-align: left;
      padding: 0 0 0 40px;
      margin-left: -30px;
      background-image: url(../images/checkbox.png);
      background-position-y: 6px;
      background-repeat: no-repeat;
      line-height: 34px;
      font-weight: bold;
      font-size: 1em;
  }
  
  .infoPic{
    width: 100%;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    overflow: hidden;
    padding: 5px;
  }
  
  .infoPic img {
    width: 60px;
    vertical-align: bottom;
    padding: 0 3px 0 3px;
  }
  .infoDesc{
    width: 100%;
  }
  .ttlTxt{
    text-align: center;
    padding: 10px;
    font-family: 'ubuntu', 'Trebuchet MS', Sans-Serif;
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .ttlTxtR{
    text-align: center;
    padding: 10px;
    font-family: 'ubuntu', 'Trebuchet MS', Sans-Serif;
    font-size: 1.5em;
    font-weight: bold;
  }
  .descTxt {
    text-align: left;
    padding: 15px;
    text-align: center;
  }
  
  .emph {
    text-decoration: underline;
    font-weight: bold;
    color: #007cb6;
  }
  
  
  @media only screen and (min-width: 950px){
    .infoBlock, .infoBlock2{
          width: 35%;
    }
  }
  
  .loginButton {
    display: inline-block;
      width: 80%;
      max-width: 350px;
    min-height: 100px;
    padding: 5px;
    border-radius: 5px;
    background: #007cb6;
    cursor: pointer;
  }
  .loginButton:hover {
    background: #6BBD40;
  }
  
  .loginTxt {
    vertical-align: middle;
    font-size: 2em;
    line-height: 100px;
  }
  
  
  .referButton {
    display: inline-block;
    margin-top: 20px;
      width: 80%;
      max-width: 350px;
    min-height: 50px;
    padding: 5px;
    border-radius: 5px;
    background: #007cb6;
    cursor: pointer;
  }
  .referButton:hover {
    background: #6BBD40;
    color: #FFFFFF;
  }
  
  .referTxt {
    vertical-align: middle;
    font-size: 1.4em;
    line-height: 55px;
  }
  
  
  @media only screen and (min-width: 950px){
    .loginButton{
          width: 300px;
    }
    .referButton{
      margin-top: 75px;
      width: 250px;
      min-height: 55px;
    }
  }
  
  
  
  /* Our team Stuff */
  
  .fillContainer {
      width: 100%;
      height: 100%;
      padding-top: 50px;
  }
  
  .fillContainer iframe {
    width: 90%;
    height: 100vh;
    border: none;
  }
  
  .detailWrapper {
      width: 100%;
      text-align:center;
  }
  .detailWrapper2 {
      width: 100%;
      text-align:center;
    margin-top: 10%;
  }
  
  .detailBlock {
    width: 80%;
    margin: 0 auto;
      text-align: center;
  }
  
  .detailHeader {
    color: #007cb6;
  }
  
  .detailHeader h1{
      padding: 5px 0;
      font-size: 2.6em;
      font-weight: bold;
  }
  
  .detailHeader h2{
      padding: 5px 0;
      font-size: 2.5em;
      font-weight: bold;
  }
  
  .detailHeader2 {
    color: #007cb6;
  }
  
  .detailHeader2 h2{
    padding: 0 0 30px 0;
      font-size: 2.5em;
      font-weight: bold;
  }
  
  .detailHeader3 {
    color: #007cb6;
  }
  
  .detailHeader3 h2{
    padding: 0 0 40px 0;
      font-size: 2em;
      font-weight: bold;
  }
  
  .detailCaption {
      font-size: 2em;
      padding: 10px 0;
    color: #007cb6;
  }
  
  
  .teamWrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .teamMemberBlock{
    display: inline-block;
      width: 80%;
      min-width: 225px;
    margin: 10px 5px;
    vertical-align: top;
    overflow: hidden;
    cursor: pointer;
  }
  .teamMemberBlock:hover {
        border-bottom: 3px solid #007cb6;
  }
  
  .teamMemberPic{
    width: 100%;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    overflow: hidden;
  }
  
  .teamMemberPic img {
    width: 100%;
    max-width: 400px;
    height: auto;
    vertical-align: bottom;
  }
  .teamMemberPic img:hover{
    opacity: 0.8;
  }
  .teamMemberBio{
    width: 100%;
    display: none;
  }
  .nameTxt{
    color: #222222;
    text-align: center;
    padding: 10px;
    font-family: 'ubuntu', 'Trebuchet MS', Sans-Serif;
  }
  .bioTxt {
    color: #222222;
    text-align: left;
    padding: 15px;
  }
  
  @media only screen and (min-width: 950px){
    .teamMemberBlock{
          width: 25%;
    }
  }
  
  
  
  
  
  /* Investments */
  
  
  .sectionWrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .sectionBlock{
    display: inline-block;
      width: 80%;
      min-width: 225px;
    margin: 50px 5px;
    vertical-align: top;
    overflow: hidden;
  }
  .sectionBlockTitle {
    text-align: left;
    padding: 10px;
    font-size: 1.5em;
  }
  .sectionBlockTxt {
    text-align: left;
    padding: 10px;
    font-size: 1.2em;
  }
  
  .sectionBlockPic {
    width: 100%;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    overflow: hidden;
  }
  
  .sectionBlockPic img {
    width: 100%;
    max-width: 400px;
    height: auto;
    vertical-align: top;
  }
  
  
  @media only screen and (min-width: 950px){
    .sectionBlock{
          width: 35%;
    }
  }
  
  
  
  .iframeVid iframe{
    padding: 30px 0;
    width: 80%;
    max-height: 350px;
  }
  
  
  .fullWrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  
  .fullWrapperV {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .fullWrapperListings {
    width: auto;
    margin: 0 auto;
    text-align: center;
    overflow: visible;
  }
  
  .fullBlock{
    display: inline-block;
      width: 90%;
      min-width: 225px;
    margin: 0px 5px;
    vertical-align: top;
    overflow: hidden;
  }
  .fullBlockTitle {
    text-align: left;
    padding: 10px;
    font-size: 2em;
    font-weight: bold;
  }
  .fullBlockTxt {
    text-align: justify;
    padding: 5px;
    font-size: 1.2em;
  }
  
  .fullBlockTxt2 {
    text-align: left;
    padding: 10px;
    font-size: 2em;
    text-align: center;
    font-weight: bold;
  }
  
  .fullBlockTxt a {
    text-decoration: none;
    color: #6BBD40;
  }
  
  .fullBlockPic {
    width: 100%;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    overflow: hidden;
  }
  
  .fullBlockPic img {
    width: 100%;
    max-width: 400px;
    height: auto;
    vertical-align: top;
  }
  
  .fullBlockTxt ul {list-style: none;}
  .fullBlockTxt ul li::before {
    content: "Â»";
    display: inline-block;
    width: 1em;
    margin-left: -1em
  }
  
  .fullWrapper iframe{
    width: 110%;
    height: 90vh;
  }
  
  .fullWrapperListings iframe{
    width: 130%;
    height: 90vh;
  }
  
  
  @media only screen and (min-width: 950px){
    .iframeVid iframe{
      width: 560px;
      height: 315px;
    }
  
    .fullWrapper iframe{
      width: 97%;
      height: 350vh;
    }
    .fullWrapperListings iframe{
      width: 97%;
      height: 350vh;
      min-width: 10%;
    }
  
    .fullBlockTxt {
      text-align: left;
      padding: 10px;
      font-size: 1.4em;
    }
  }
  
  .analysisWrapper
  {
      position: fixed;
      padding: 10px 0px;
      bottom: 0;
      width: 100%;
      text-align: center;
      display: inline-block;
      height: auto;
    overflow: hidden;
    z-index: 2002;
    border-top: solid 1px #72a2b9;
  }
  
  .analysisButton {
      display: inline-block;
      cursor: pointer;
      color: #FFFFFF;
      font-weight: bold;
      background: #6BBD40;
      width: auto;
      border-radius: 5px;
  }
  
  .analysisButton:hover {
    color: #007cb6;
    background: #FFFFFF;
  }
  .analysisTxt {
    text-align: center;
    padding: 10px;
    line-height: 30px;
    font-size: 0.8em;
  }
  
  
  .analysisClose {
    display: inline-block;
    cursor: pointer;
    background: #FFFFFF;
    border-radius: 3px;
    opacity: 0.3;
    color: #444444;
    width: 23px;
    font-weight: bold;
    margin-left: 10px;
  }
  .analysisClose:hover{
    opacity: 1;
  }
  
  .analysisBlock {
    display: none;
  }
  @media only screen and (min-width: 950px){
    .analysisBlock {
      display: inline-block;
      font-size: 0.7em;
      color: #FFFFFF;
      padding: 0 10px;
      vertical-align: middle;
      text-align: left;
    }
    .analysisBlock a{
      text-decoration: none;
      color: #FFFF;
    }
  }
  
  
  /*-------------------------------------------------------------*/
  /* Video/background Stuff */
  
  .vidwrapper {
    display: none;
  }
  .imgwrapper {
    position: fixed;
    top: 0;
    width:100%;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 124, 182, 1));
  }
  
  .imgwrapper img {
    /*object-fit: contain;*/
    /*       object-fit: fill; */
    /*       object-fit: cover; */
    object-fit: fill;
    width:auto;
    height:100vh;
    opacity: 0.08;
  }
  
  .vidOverlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2003;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
  }
  
  audio:-webkit-full-page-media, video:-webkit-full-page-media {
      max-height: 100%;
      max-width: 100%;
  }
  
  
  .vidContainer{
    width: 75%;
    height: auto;
    margin: 0 auto;
  }
  
  .vidContainer video {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  .closeBar {
    display: inline-block;
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
  }
  .closeBar a {
    text-decoration: none;
  }
  
  @media only screen and (min-width: 950px){
    .vidwrapper {
      display: block;
    }
    .vidContainer{
      width: 50%;
    }
    .imgwrapper {
      display: none;
    }
    .vidwrapper {
      position: fixed;
      top: 0;
      width:100%;
      overflow: hidden;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 124, 182, 1));
    }
  
    .vidwrapper video {
      /*object-fit: contain;*/
      /*       object-fit: fill; */
      /*       object-fit: cover; */
      object-fit: fill;
      width:100%;
      height:100%;
      opacity: 0.08;
    }
  
  }
  
  
  
  /*-------------------------------------------------------------*/
  /* ### */
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Colors */
  
  .backSlate {
      background: #6A9DA3;
  }
  .backSlateD {
      background: #427377;
  }
  .backGray {
      background: #dee5ed;
  }
  .backGrayL {
      background: #f2f8ff;
  }
  .backTurq {
      background: #005d63;
  }
  .backWhite {
      background: #FFFFFF;
  }
  .backBlue {
    background: #007cb6;
  }
  .backBlueGray {
    background: #607080;
  }
  .backGreen {
    background: #6BBD40;
  }
  .backBlack {
      background: #000000;
  }
  .backTrans {
    background: rgba(255, 255, 255, 0.7);
  }
  .txtWhite {
      color: #FFFFFF;
  }
  .txtBlue {
      color: #007cb6;
  }
  .txtGreenB {
      color: #6BBD40;
    font-weight: bold;
  }

  .txtGreen {
    color: #6BBD40;
  }

  .txtGray {
      color: #222222;
  }
  
  .txtDkBlue {
    color: #607080;
  }
  
  .clearTxt a {
    font-size: 1.3em;
    text-decoration: none;
        color: #6BBD40;
  }
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Pic Backgrounds */
  
  
  .picBackMobileMenu {
      background-image: linear-gradient(
        rgba(3, 72, 103, 0.85),
        rgba(1, 20, 29, 1)
      ), url(../images/jax-park-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack0 {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 124, 182, 1));
      background-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 124, 182, 0.90)
      ), url(https://www.innovativepropertysolutions.com/images/vid_screenshot1.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack1 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.90)
      ), url(../images/bluebridge.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  
  .picBack2 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/jax-park-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  
  .picBack3 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/laura-ashley.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  
  .picBack4 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/st-johns-river-bw.jpg);
        background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  
  .picBack5 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/sanmarco-bw.jpg);
        background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack6 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/jax-beach-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack7 {
      background-image: linear-gradient(
        rgba(255, 255, 255, 0.75),
        rgba(255, 255, 255, 1)
      ), url(../images/laura-ashley.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack8 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.90)
      ), url(../images/bluebridge-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack9 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/jax-park-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack10 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/cummer-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  .picBack11 {
      background-image: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
      ), url(../images/sanmarco-square-bw.jpg);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
  
  .picBack-gradient {
      background: #007cb6;
      background-attachment: fixed;
      background: -webkit-radial-gradient(circle at top right, #07cbc2, #007cb6); /* Safari 5.1 to 6.0 */
      background: -o-radial-gradient(circle at top right, #07cbc2, #007cb6); /* For Opera 11.6 to 12.0 */
      background: -moz-radial-gradient(circle at top right, #07cbc2, #007cb6); /* For Firefox 3.6 to 15 */
      background-image:
      radial-gradient(
        circle at top right,
        #07cbc2,
        #007cb6
      );
  }
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Line Effects */
  
  .orangeLine{
      height: 3px;
      width: 150px;
      border-bottom: 3px solid #F06D06;
      vertical-align: top;
      text-align: center;
      margin: 0 auto;
  }
  
  
  .blueLine{
      height: 3px;
      width: 150px;
      border-bottom: 3px solid #007cb6;
      vertical-align: top;
      text-align: center;
      margin: 0 auto;
  }
  
  .whiteLine{
      height: 3px;
      width: 80%;
      border-bottom: 1px solid #FFFFFF;
      vertical-align: top;
      text-align: center;
      margin: 0 auto;
  }
  
  
  .aquaLine{
      height: 3px;
      width: 80%;
      border-bottom: 1px solid #06696f;
      vertical-align: top;
      text-align: center;
      margin: 0 auto;
  }
  
  .largeWhiteLine{
      width: 80%;
      border-bottom: 5px solid #FFFFFF;
      vertical-align: top;
      text-align: center;
      margin-left: inherit;
    margin-right: inherit;
  }
  
  .orangeBottom{
      height: 3px;
      width: 100%;
      border-bottom: 3px solid #F06D06;
      vertical-align: top;
      text-align: center;
      margin: 0 auto;
  }
  
  .greenBottom{
      border-bottom: 3px solid #6BBD40;
  }
  
  .blueBottom{
      border-bottom: 3px solid #007cb6;
  }
  
  
  
  
  .blankdiv {
    min-height: 15vh;
  }
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Effects */
  .boxShadow {
      box-shadow: 0px 3px 5px #888888;
  }
  
  .linearWhiteFadeOut {
    background: none; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); /*Safari 5.1-6*/
    background: -o-linear-gradient(right,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); /*Opera 11.1-12*/
    background: -moz-linear-gradient(right,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); /*Fx 3.6-15*/
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.2)); /*Standard*/
  }
  
  
  .navWhite {
    -webkit-transition: all 0.9s ease;
      -moz-transition: all 0.9s ease;
      -o-transition: all 0.9s ease;
      transition: all 0.9s ease;
      background: #FFFFFF;
  }
  
  .navNone {
    -webkit-transition: all 0.9s ease;
      -moz-transition: all 0.9s ease;
      -o-transition: all 0.9s ease;
      transition: all 0.9s ease;
      background: none;
  }
  
  /*Hover Transitions */
  
  .hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -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;
    -webkit-transition-duration: 1.8s;
    transition-duration: 1.8s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  
  @-webkit-keyframes hvr-pulse-shrink {
    to {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      opacity: 0.3;
    }
  }
  
  @keyframes hvr-pulse-shrink {
    to {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      opacity: 0.3;
    }
  }
  
  .hvr-pulse-shrink {
    display: inline-block;
    vertical-align: middle;
    -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;
  }
  
  .hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
    -webkit-animation-name: hvr-pulse-shrink;
    animation-name: hvr-pulse-shrink;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }
  
  @-webkit-keyframes hvr-pop {
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  @keyframes hvr-pop {
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  .hvr-pop {
    display: inline-block;
    vertical-align: middle;
    -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;
  }
  .hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
    -webkit-animation-name: hvr-pop;
    animation-name: hvr-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .hvr-rotate {
    display: inline-block;
    vertical-align: middle;
    -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;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
      -ms-transform: rotate(30deg); /* IE 9 */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Rate Slider stuff */
  
  
  .rate-block{
    display: inline-block;
      width: 90%;
      min-width: 225px;
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
  
  .rate-wrapper{
    display: inline-block;
    position: relative;
    width: 75%;
  }
  
  #rate-slider{
    margin: 0 auto;
  }
  
  .ui-slider .ui-slider-handle {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    margin-top: -10px;
    background: #6BBD40;
      -ms-touch-action: none;
      touch-action: none;
    -moz-box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .4), inset -2px -2px 2px rgba(0, 0, 0, .4);
    -webkit-box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .4), inset -2px -2px 2px rgba(0, 0, 0, .4);
    box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .4), inset -2px -2px 2px rgba(0, 0, 0, .4);
  }
  .ui-slider .ui-slider-handle:hover {
    background: #007cb6;
  }
  
  .rate-amount {
    border: 0;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 5px 0 25px 0;
  }
  
  .rate-range {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 0.8em;
    color: #a6a6a6;
  }
  .rate-min {
    display: inline-block;
    position:absolute;
    top: 0;
    left: 0;
  }
  .rate-max {
    display: inline-block;
    position:absolute;
    top: 0;
    right: 0;
  }
  
  
  .savings-wrapper {
    font-size: 1.5em;
    padding: 30px 0 10px 0;
  }
  
  .savings-amount-wrap {
    width: 100%;
  
  }
  .savings-amount {
    display: inline-block;
    border: 0;
    padding: 0;
    font-size: 0.7em;
    text-align: left;
  }
  
  
  @media only screen and (min-width: 950px){
    .rate-block{
        width: 70%;
    }
    .savings-amount {
      font-size: 1em;
    }
  }
  
  
  
  
  .compare-wrapper {
    width: 100%;
    margin: 1% auto;
    text-align: center;
  }
  
  .compare-row{
    display: inline-block;
      width: 95%;
  }
  .compare-feat {
    display: inline-block;
      width: 100%;
      min-width: 225px;
    padding: 5px;
  }
  .compare-compet {
    display: inline-block;
      width: 40%;
    padding: 5px;
  }
  .compare-ips {
    display: inline-block;
      width: 40%;
    padding: 5px;
    font-weight: bold;
  }
  .compare-ips img {
    display: inline-block;
    height: 25px;
    width: auto;
    vertical-align: middle;
  }
  
  .compare-txt {
    border: 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    background: none;
  }
  .compare-txt2 {
    display: inline-block;
    border: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    background: none;
  }
  .compare-txt-small {
    font-size: 0.8em;
    font-weight: normal;
  }
  
  .txtBold {
    font-weight: bold;
  }
  
  
  @media only screen and (min-width: 950px){
    .compare-ips img {
      height: 40px;
      width: auto;
    }
    .compare-row{
    }
    .compare-feat {
        width: 35%;
      text-align: left;
    }
    .compare-compet {
        width: 25%;
    }
    .compare-ips {
        width: 25%;
    }
  }
  
  
  
  
  
  
  .pricing-wrapper {
    width: 100%;
    margin: 80px auto;
    text-align: center;
  }
  
  
  .pricing-wrapper-mobile {
    width: 100%;
    margin: 30px auto;
    text-align: center;
  }
  
  
  .checkMark{
    display: inline-block;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    color: #FFFFFF;
    line-height: 28px;
    margin: 0 auto;
  }
  
  
  .pricing-leasing-only {
    display: inline-block;
  }
  .pricing-full-service {
    display: inline-block;
    margin: 20px 0 0 0;
  }
  
  .pricing-title-cell {
    vertical-align: middle;
    text-align: center;
    height: 100px;
    font-weight: bold;
    border-bottom: solid 0.5px #DDDDDD;
  }
  .pricing-title {
    border: 0;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    background: none;
  }
  .pricing-txt-small {
    font-size: 0.9em;
    font-weight: normal;
  }
  
  
  .pricing-column{
    display: inline-block;
    border-radius: 4px;
    width: 90%;
    overflow: hidden;
  }
  
  .pricing-cell {
    vertical-align: middle;
    font-size: 0.9em;
    font-weight: normal;
    text-align: center;
    height: 45px;
    padding: 0 5px;
    border-bottom: solid 0.5px #DDDDDD;
  }
  .get-started-cell {
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    line-height: 50px;
  }
  
  .get-started-cell:hover {
    color: #6BBD40;
    background: #f2f8ff;
  }
  
  @media only screen and (min-width: 950px){
  
    .pricing-full-service {
      font-weight: bold;
      margin: 0 0 0 -10px;
      box-shadow: -5px 7px 47px #999999;
    }
    .pricing-column{
      display: inline-block;
        width: 20%;
      text-align: center;
      vertical-align: top;
      border-radius: 4px;
      overflow: hidden;
    }
    .pricing-cell-t {
      vertical-align: middle;
      text-align: left;
      height: 45px;
      border-bottom: solid 0.5px #DDDDDD;
    }
    .pricing-cell {
      vertical-align: middle;
      font-size: inherit;
      font-weight: inherit;
      text-align: center;
      height: 45px;
      border-bottom: solid 0.5px #DDDDDD;
    }
    .get-started-cell {
      vertical-align: middle;
      text-align: center;
      cursor: pointer;
      line-height: 50px;
    }
    .get-started-feat-cell {
      vertical-align: middle;
      text-align: center;
      line-height: 50px;
    }
  
    .pricing-cell-x{
      padding-top: 10px;
      border: none;
      width: 70%;
      text-align: right;
    }
  
  }
  
  
  
  /*-------------------------------------------------------------*/
  /* Social */
  .social img{
    width: 35px;
    height: auto;
    padding: 3px;
  }
  
  .social, .mSocial a{
    border: 0;
  }
  .social, .mSocial a img:hover {
    opacity: 0.6;
  }
  .mSocial {
    width: 100%;
    margin: 0 auto;
    text-align: center ;
  }
  .mSocial img{
    width: 35px;
    height: auto;
    padding: 10px 3px;
  }
  
  
  
  /*-------------------------------------------------------------*/
  /* affiliate */
  .affiliate img{
    width: 75px;
    height: auto;
    padding: 3px;
  }
  
  .affiliate a img{
    border: 0;
    opacity: 1;
    vertical-align: middle;
  }
  .affiliate a img:hover {
    opacity: 0.8;
  }
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* FAQ */
  
  
  .faqWrapper{
      width: 100%;
      height: auto;
      text-align:center;
      padding: 50px 0px;
  }
  
  .faqBlock{
      display: inline-block;
      position: relative;
      margin: 0px 10px;
      width: 90%;
      min-width: 225px;
      vertical-align:top;
      height: auto;
    min-height: 100px;
      color: #FFFFFF;
      text-shadow: 1px 1px 2px #222222;
      background: #037083;
  }
  
  
  .faqBlockBlank{
      display: none;
      position: relative;
      margin: 0px 10px;
      width: 90%;
      min-width: 225px;
      vertical-align:top;
      height: auto;
    min-height: 100px;
      color: #FFFFFF;
    background: none;
  }
  
  
  .faqBlock:hover{
      background: #04A4BF;
  }
  
  .faqQuest {
      width: 100%;
      cursor: pointer;
      font-size: 1em;
      font-weight: bold;
      margin-top: 5px;
  }
  
  .faqQuest img {
      display: inline-block;
      vertical-align: top;
      margin: 0 auto;
      height: 30px;
      width: 30px;
      padding: 0 5px 0 0;
  }
  
  .faqAns {
      display: none;
      margin-top: 10px;
  }
  
  .faqAns a {
      color: #6BBD40;
    font-weight: bold;
  }
  
  .faqBlocktxt {
      padding: 5px 35px 25px 25px;
      text-align: left;
      line-height: 30px;
  }
  
  @media only screen and (min-width: 900px){
      .faqBlock {
          width: 28%;
          margin-top: 20px;
      }
    .faqBlockBlank{
        display: inline-block;
          width: 28%;
          margin-top: 20px;
      }
  }
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Form Stuff */
  
  
  
  .inputContainer {
    width: 100%;
    text-align: center;
      font-size: 1.1em;
  }
  
  .inputWrap {
    width: 90%;
    margin: 0 auto;
      text-align: center;
  }
  
  .inputBlock {
    width: 90%;
      padding: 5px 0px;
    margin: 0 auto;
      text-align: center;
  }
  .userInput{
      font-size: 1em;
      color: #FFFFFF;
      border: none;
      border: solid 1px #AAAAAA;
      background: rgba(0,0,0,0.2);
    height: 40px;
    width: 100%;
    min-width: 300px;
    display: inline-block;
    padding-left: 15px;
  }
  .userInput:hover{
  background: rgba(103, 103, 103, 0.4);
  }
  
  .bigTextBox
  {
      height: 130px;
  }
  
  .reqiredInput {
  border: solid 1px #007cb6;
  }
  
  input::-webkit-input-placeholder {
  color: #FFFFFF !important;
  opacity: 0.5;
  font-weight: normal;
  }
  
  input:-moz-placeholder { /* Firefox 18- */
  color: #FFFFFF !important;
  opacity: 0.5;
  font-weight: normal;
  }
  
  input::-moz-placeholder {  /* Firefox 19+ */
  color: #FFFFFF !important;
  opacity: 0.5;
  font-weight: normal;
  }
  
  input:-ms-input-placeholder {
  color: #FFFFFF !important;
  opacity: 0.5;
  font-weight: normal;
  }
  
  textarea::-webkit-input-placeholder {
  color: #FFFFFF !important;
  opacity: 0.5;
  font-family: 'Open_Sans';
  }
  
  textarea:-moz-placeholder { /* Firefox 18- */
  color: #FFFFFF !important;
  opacity: 0.5;
  font-family: 'Open_Sans';
  }
  
  textarea::-moz-placeholder {  /* Firefox 19+ */
  color: #FFFFFF !important;
  opacity: 0.5;
  font-family: 'Open_Sans';
  }
  
  textarea:-ms-input-placeholder {
  color: #FFFFFF !important;
  opacity: 0.5;
  font-family: 'Open_Sans';
  }
  
  input[type="date"]:before {
    content: attr(placeholder) !important;
    color: #FFFFFF !important;
    font-family: 'Open_Sans';
    margin-right: 0.5em;
    opacity: 0.5;
  }
  input[type="date"]:focus:before,
  input[type="date"]:valid:before {
    content: "";
  }
  
  .owneronly, .tenantonly {
    display: none;
  }
  
  .submitButton{
      padding: 10px;
      margin: 10px 0px;
      border: none;
      display: inline-block;
      color: #000000;
      background: #FFFFFF ;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
  }
  
  
  .submitButton:hover{
      color: #FFFFFF;
      background: #6BBD40;
  }
  
  
  
  .leftTxt {
      text-align: left;
  }
  
  .centerTxt {
      text-align: center;
  }
  
  @media only screen and (min-width: 950px){
    .userInput {
      width: 25vw;
    }
    .inputWrap {
      width: 35%;
    }
  }
  
  
  
  
  
  
  /*-------------------------------------------------------------*/
  /* Blog */
  
  
  .feedSectionBlock {
      display: inline-block;
      width: 100%;
      margin: 10px 0;
  }
  .feedBlock {
      display: inline-block;
      width: 100%;
      padding: 35px 0px;
      color: #000000;
    text-align: center;
      border-bottom: solid #007cb6 1px;
  }
  
  .feedTxtWrapper {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    padding: 0px 10px;
    width: 100%;
  }
  .feedSectionTitle {
    display: inline-block;
    font-weight: bold;
    font-size: 1.2em;
    padding: 0px 10px;
    color: #5394b3;
  }
  
  .feedSectionTitle:hover{
    color: #a4c6d6;
  }
  .feedSectionTxt {
    padding: 10px;
    text-align: left;
    font-size: 0.9em;
    font-weight: bold;
  }
  .feedSectionDt {
    padding: 10px;
    font-weight: bold;
    font-size: 0.9em;
  }
  
  .feedImg {
    display: inline-block;
    width: 90vw;
    max-height: 70vw;
    overflow: hidden;
  }
  .feedImg img {
    width: 90vw;
    height: auto;
  }
  
  .blog_icon {
    display: block;
    padding-left: 10px;
  }
  
  .blog_icon img {
    width: 25px;
    height: 25px;
  }
  
  @media only screen and (min-width: 950px){
  
    .feedSectionBlock {
        width: 70%;
    }
  
    .feedBlock {
        display: inline-block;
        width: 100%;
      text-align: left;
    }
    .feedTxtWrapper {
      width: 40vw;
      margin-left: 10px;
    }
  
    .feedSectionDt {
      padding: 15px 10px;
    }
  
    .feedSectionTitle {
      font-size: 1.5em;
      padding: 15px 10px;
    }
    .feedImg {
      display: inline-block;
      width: 20vw;
      height: 14vw;
      overflow: hidden;
    }
    .feedImg img {
      width: 20vw;
      height: auto;
    }
  
  }
  
  
  
  /*-------------------------------------------------------------*/
  /* Footer */
  
  .bottomWrapper
  {
      position: relative;
      padding: 30px 0px 20px 0px;
      bottom: 0;
      width: 100%;
      text-align: center;
      display: inline-block;
      height: auto;
    overflow: hidden;
      background: #05151c;
    color: #06696f;
  }
  
  .footer{font-family: "Times New Roman", Times, serif; font-size: 0.9em; padding:20px 0 90px 0; text-align:center;}
  
  
  .full-footer-wrap {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
  }
  .full-footer-wrap iframe {
    width: 70%;
    height: 25vh;
  }
  
  .full-footer-block{
    display: inline-block;
      width: 80%;
    margin: 5px;
    vertical-align: top;
    text-align: center;
  }
  .full-footer-block a {
    text-decoration: none;
    color: #6BBD40;
  }
  .full-footer-block a:hover {
    color: #FFFFFF;
  }
  .full-footer-title {
    text-align: center;
    padding: 10px 0;
    font-size: 2.2em;
    font-weight: bold;
    color: #FFFFFF;
  }
  .full-footer-txt {
    text-align: center;
    color: #FFFFFF;
  }
  
  
  
  @media only screen and (min-width: 950px){
    .full-footer-block{
      width: auto;
      max-width: 20%;
      margin: 20px;
    }
    .full-footer-txt {
      text-align: left;
    }
    .full-footer-wrap iframe {
      width: 100%;
    }
  }
  
  .servicePackage {
    background-color: white;
    padding-bottom: 5%;
  }

  .serviceContainer {
    padding-top: 5%;
    width: 80%;
    margin: auto;
  }
  
  .titlePlanBlock {
    margin-top: 4em !important;
    background-color: #05b3aa;
    color: white;
    border-bottom: 2px solid #6bbd40;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  
  .serviceContainer td {
    width: 50%;
    border-bottom: 1px solid #ecf0f1;
    padding: 1em !important;
    color: #676767 !important;
    font-size: 1.3em;
  }

  @media only screen and (max-width: 768px) {
    #serviceTable td {
      border-bottom: 1px solid #ecf0f1 !important;
      padding-top: 15px !important;
      padding-bottom: 15px !important;
    } 

    #serviceTable tr {
      border-bottom: 0px solid black !important;
      border-top: 0px solid black !important;
      box-shadow: none !important;
      padding: 0px !important;
    }
  }

  #serviceTable tr {
    border-bottom: 0px solid black !important;
    border-top: 0px solid black !important;
  }

  .servicePackage table {
    margin-top: 0px !important;
    border-radius: 0px !important;
    border-right: 0px !important;
    border-left: 0px !important;
    border-bottom: 0px !important;
  }
  
  .planContainer td {
    padding-top: 20px !important;
    padding-bottom: 20px !important; 
    border-bottom: 2px solid #ecf0f1;
    border-top: 0px solid black !important;
  }

  .tableDesc {
    display: inline !important;
    padding-left: 20px;
  }

  .pricingButton {
    width: 90% !important;
  }

  .goldButton {
    background-image: linear-gradient(#07cbc2, #007cb6 ) !important;
  }

  .pricingButton, .goldButton {
    height: 40px;
    line-height: 40px !important;
  }

  .resourcesBar {
    border-top: 1px solid #6bbd40;
  }

  /* Mobile Pricing Table */

  #mobilePlan .items .image {
    padding-right: 5%;
  }

  #mobilePlan .items {
    border-bottom: 2px solid #ecf0f1;
  }

  .mx-auto {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #mSilverPlan, #mGoldPlan, #mPlatinumPlan {
    margin-bottom: 10%;
  }

  #mGoldPlan .goldButton {
    width: 90%;
  }



  #mobilePlan {
    margin-top: 2%;
    display: none;
  }

  @media screen and (min-width: 768px) and (max-width: 924px) {
    #mobilePlan .item {
      padding: 0.75rem;
    }
  }

  @media screen and (max-width: 924px) {
    .pricingDiagram {
      display: none;
    }
    #mobilePlan {
      display: block;
    }
  }

  @media screen and (min-width: 924px) {
    .pricingDiagram {
      display: block;
    }
  }



  /* END MOBILE PRICING TABLE */

  /* NEW TABLE */

  .pricingDiagram {
    margin-top: 325px;
  }

  .pricingDiagram .table {
    margin-bottom: 100px !important;
  }

  .leftImage {
    margin-left: auto !important;
    margin-right: 1px !important;
    position: absolute !important;
    bottom: 15px !important;
    right: 0 !important;
  }

  .centerImage {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: absolute !important;
    bottom: 0 !important;
  }

  .rightImage {
    margin-left: 1px !important;
    margin-right: auto !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
  }
  
  .headerRow > th {
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    border: none !important;
  }

  .tableBody td {
    border-left: 0px solid black;
    border-right: 0px solid black;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .tenantTable td {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .customth {
    width: 348px !important;
  }

  /* END NEW TABLE */

  .tenantPlacement {
    padding: 1em 0em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #007cb6;
    color: white;
  }

  .tenantButton {
    padding: 1rem !important;
    width: 30%;
  }
  
  
  /*-------------------------------------------------------------*/
  /* Display Modes */
  .deskview { display: none !important; }
  .mobileview { display: inline-block !important; }
  
  .hideIt { display: none !important; }
  
  @media only screen and (min-width: 950px){
      .deskview { display: inline-block !important; }
      .mobileview { display: none !important; }
  }
  


  /* listings pdf */
  .benefits-download {
    padding-top: 2%;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    border: 1px solid #007cb6;
    background-color: white;
    opacity: 1;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
  }

  .benefits-download i {
    font-size: 3em !important;
  }

  .benefits-download:hover {
    opacity: 0.5;
  }