/*-------------------------------*\
    EEE Accountancy Custom Styles
\*-------------------------------*/

/*
    ------ NOTES ------
    1.  iPad screens (sm) uses the same code as iPhone screens (xs) for the home page. This gives iPad portrait views the same view
        layout as iPhone view. For this reason, the code in the SM section will have -xs suffixes as it's all exactly the same.
*/


html {
  position: relative;
  min-height: 100%;
  font-family: "Helvetica Neue", 'SourceSansR', sans-serif;
}
body {
  min-height: 100%;
  /* Margin bottom by footer height */
  margin-bottom: 240px;
  font-family: "Helvetica Neue", 'SourceSansR', sans-serif;
  font-size: 15px;
}
h1 {
  font-size: 1.7em;
  margin-bottom: 1em;
}
p {
    font-family: "Helvetica Neue", 'SourceSansR', sans-serif;
    color: #3c3c3c;
    line-height: 1.5em;
    margin-bottom: 1.5em;
}
a {
    color: #312e74;
}
    a:hover {
        color: #312e74;
        text-decoration: underline;
    }

.navbar-static-top {
  margin-bottom: 19px;
  z-index: 100000;
}

.navigation {
  font-size: 1em;
}

.navbar {
  min-height: 30px;
}

.navbar-right {
    padding-right: 15px;
}

.navbar-default {
  background-color: #181651;
  border: none;
}
.navbar-default .navbar-brand {
  color: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #f7f8f8;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #f7f8f8;
}
.navbar-default .navbar-nav > li > a {
  color: #f7f8f8;
  padding: 0.5em 1em;
}
    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus {
      color: #f7f8f8;
      background-color: #312e74;
    }
.dropdown-nav > li > a {
    color: #181651;
    font-size: 15px;
}
    .dropdown-nav > li > a:hover,
    .dropdown-nav > li > a:focus {
        color: #f7f8f8;
        background-color: #312e74;
    }
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #f7f8f8;
  background-color: #312e74;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #f7f8f8;
  margin-top: 12px;
  margin-bottom: 12px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #3c3c3c;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #f7f8f8;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #3c3c3c;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #727272;
  color: #f7f8f8;
}
@media (max-width: 767px) {
    .navbar-default .navbar-nav > li > a {
      color: #f7f8f8;
    }
    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus {
      color: #f7f8f8;
      background-color: #727272;
    }  
    
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #f7f8f8;
    font-size: 1em;
  }
  
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #f7f8f8;
    background-color: #3c3c3c;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #f7f8f8;
    background-color: #3c3c3c;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #f7f8f8;
}
.navbar-default .navbar-link:hover {
  color: #f7f8f8;
}


.jumbotron {
  padding: 0;
  margin-top: -20px;
  background-color: #181651;
  background: -webkit-linear-gradient(#312e74, #181651); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#312e74, #181651); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#312e74, #181651); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#312e74, #181651); /* Standard syntax (must be last) */
  border: none;
}

.header-area {
  padding: 3em 1em;
}
  .header-area-xs {
    margin: 0 auto;
    padding: 2.6em 1em;
  }

.logo {}

.contact-details {
  font-size: 1.5em;
  text-align: right;
  margin-top: 0.9em;
}
  .contact-details p {
    color: #f7f8f8;
    font-size: 1.6em;
    font-family: 'SourceSansL', sans-serif;
  }
  .contact-details a {
    padding: 0.5em 1em;
    border: 2px solid #1b5481;
    background: #1b5481;
    color: #f7f8f8;
    text-decoration: none;
    font-size: 0.9em;
    margin-right: 1.3em;
  }
  .contact-details a:hover {
    background: #e48a31;
    border-color: #e48a31;
    color: #f7f8f8;
    text-decoration: none;
  }
p.contact-details-top {
  font-size: 1.1em;
  text-align: right;
  margin-left: 3em;
  margin-top: 1em;
  margin-bottom: -2.5em;
}

.contact-details-main-nav {
  font-size: 1.5em;
  text-align: right;
  margin-top: 2.5em;
}
a.main-nav {
  padding: 0.5em 0.8em 0.4em 0.8em;
  border: 2px solid #9b9b9b;
  background: #9b9b9b;
  color: #f7f8f8;
  text-decoration: none;
  font-size: 0.85em;
  font-family: 'MontserratR', sans-serif;
  /*margin-right: 0.5em;*/
  margin-bottom: -1em;
  text-transform: uppercase;
}
a.main-nav:hover {
  background: #838383;
  border-color: #838383;
  color: #f7f8f8;
  text-decoration: none;
}
  a.last {margin-right: 0;}

.side-img {
  border-radius: 10px;
}

.main-content {
  margin-bottom: 1.5em;
}

.main-content h1, .main-content-xs h1 {
  font-family: 'SourceSansSb', sans-serif;
  color: #312e74;
  text-transform: uppercase;
  font-size: 2em;
  margin-bottom: 0.6em;
  margin-top: 0;
}
.main-content h2, .main-content-xs h2 {
  font-family: 'SourceSansSb', sans-serif;
  color: #312e74;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1.2em;
  margin-bottom: 0.6em;
  margin-top: 0;
}
.main-content h3, .main-content-xs h3 {
  font-family: 'SourceSansSb', sans-serif;
  color: #312e74;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 0.6em;
  margin-top: 0;
}

.map-container {
  width: 100%;
  height: 250px;
  margin-bottom: 2em;
}

.main-content-xs {
}

.xs-left {
  text-align: left;
}

.highlight {
  color: #312e74;
}

.jumbotron .main-content-xs {
  margin-top: 2em;
}
  .jumbotron .main-content-xs p {
    margin: 2em 0;
    color: #f7f8f8;
  }
  .jumbotron .main-content-xs a {
    color: #f7f8f8;
    border-bottom: 1px solid #f7f8f8;
    padding-bottom: 1px;
  }
    .jumbotron .main-content-xs a:hover,
    .jumbotron .main-content-xs a:focus {
      color: #f7f8f8;
      text-decoration: none;
    }

.jumbotron-xs {
  margin-bottom: 0;
  background: #312e74;
  text-align: center;
}

a.read-more {
  padding: 0.5em 1em;
  background: #312e74;
  color: #f7f8f8;
  text-decoration: none;
  margin-bottom: 1em;
  display: inline-block;
}
  a.read-more:hover {
    background: #e48a31;
    color: #f7f8f8;
    text-decoration: none;
  }

.google-maps {
  position: relative;
  padding-bottom: 100%; /* This is the aspect ratio */
  height: 0;
  overflow: hidden;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.input {  /* this is for anything clicked on - text areas etc */
  margin-top: 0.5em;
    
  padding: 0.5em;
  text-shadow: 0px 1px 0px #fff;
  outline: none;
    
  font-family: sans-serif;
  font-size: 0.9em;
    
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
    
  border: 1px solid #ccc;
    
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

    .input:focus {
      border: 1px solid #e48a31;
      -webkit-box-shadow: 0px 0px 6px #e48a31;
      -moz-box-shadow: 0px 0px 5px #e48a31;
      box-shadow: 0px 0px 5px #e48a31;
    }
  
.styled-select {        
  font-family: sans-serif;
  font-size: 1em;
    
   -webkit-border-radius: 0.2em;
   -moz-border-radius: 0.2em;
  border-radius: 0.2em;
    
  border: 0.07em solid #ccc;
    
  width: 220px;
    
  margin-bottom: 1.5em;
}
.styled-select select {
  outline: none;
    
  border: 0.07em solid #fff;
  
  background: transparent;
  width: 220px;
  padding: 0.5em;
}
.send-button {
  padding: 0.2em 0.5em;
  outline: none;
    
  color: #f7f8f8;
    
  border: 1px solid #174d77;
    
  background: #123c5c;
}

    .send-button:hover {
      background: #e48a31;
      border: 1px solid #e48a31;
    }
    
    .send-button:active {
      box-shadow: inset 0 0 4px #8d5012;
      -moz-box-shadow: inset 0 0 4px #8d5012;
      -webkit-box-shadow: inset 0 0 4px #8d5012;
    }

.supporting-tyler {
  margin-top: 1em;
}

.supporting-tyler p {
  margin-top: 1em;
}
.supporting-tyler a:link {
  font-weight: bold;
  text-decoration: underline;
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 240px;
  background-color: #eee;
}
.footer-xs {
  width: 100%;
  background: #eee;
  margin-bottom: -240px;
}
.footer p, .footer-xs p {
  color: #3c3c3c;
  font-size: 0.9em;
  margin: 0;
  margin-bottom: 1.5em;
}
.footer a, .footer-xs a {
  color: #0c4676;
  text-decoration: none;
}
  .footer a:hover, .footer a:hover {
    color: #0c4676;
    text-decoration: underline;
  }
.footer-sec {
    margin-top: 30px;
}
.footer-title {
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #3c3c3c;
}
.footer a.social:hover {
    text-decoration: none;
}
a.remotesupport {
  color: #fff;
  font-size: 1.1em;
  padding: 0.5em 0.8em;
  background: #1b5481;
  border-radius: 0.5em;
  display: inline-block;
  margin-bottom: 1em;
}
  a.remotesupport:hover {
    color: #fff;
    text-decoration: none;
    background: #2c75af;
  }


/* FONTS */

@font-face {
  font-family: 'MontserratB';
  src: url('../fonts/montserrat/bold/Montserrat-Bold-webfont.eot');
  src: url('../fonts/montserrat/bold/Montserrat-Bold-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/montserrat/bold/Montserrat-Bold-webfont.woff') format('woff'),
       url('../fonts/montserrat/bold/Montserrat-Bold-webfont.ttf') format('truetype'),
       url('../fonts/montserrat/bold/Montserrat-Bold-webfont.svg#source_sans_prolight_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MontserratR';
  src: url('../fonts/montserrat/regular/Montserrat-Regular-webfont.eot');
  src: url('../fonts/montserrat/regular/Montserrat-Regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/montserrat/regular/Montserrat-Regular-webfont.woff') format('woff'),
       url('../fonts/montserrat/regular/Montserrat-Regular-webfont.ttf') format('truetype'),
       url('../fonts/montserrat/regular/Montserrat-Regular-webfont.svg#source_sans_prolight_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

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

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

@font-face {
  font-family: 'SourceSansBlI';
  src: url('../fonts/sourcesans/black/sourcesanspro-blackit-webfont.eot');
  src: url('../fonts/sourcesans/black/sourcesanspro-blackit-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/sourcesans/black/sourcesanspro-blackit-webfont.woff') format('woff'),
       url('../fonts/sourcesans/black/sourcesanspro-blackit-webfont.ttf') format('truetype'),
       url('../fonts/sourcesans/black/sourcesanspro-blackit-webfont.svg#source_sans_problack_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: 'SourceSansBI';
  src: url('../fonts/sourcesans/bold/sourcesanspro-boldit-webfont.eot');
  src: url('../fonts/sourcesans/bold/sourcesanspro-boldit-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/sourcesans/bold/sourcesanspro-boldit-webfont.woff') format('woff'),
       url('../fonts/sourcesans/bold/sourcesanspro-boldit-webfont.ttf') format('truetype'),
       url('../fonts/sourcesans/bold/sourcesanspro-boldit-webfont.svg#source_sans_probold_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: 'SourceSansElI';
  src: url('../fonts/sourcesans/extralight/sourcesanspro-extralightit-webfont.eot');
  src: url('../fonts/sourcesans/extralight/sourcesanspro-extralightit-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/sourcesans/extralight/sourcesanspro-extralightit-webfont.woff') format('woff'),
       url('../fonts/sourcesans/extralight/sourcesanspro-extralightit-webfont.ttf') format('truetype'),
       url('../fonts/sourcesans/extralight/sourcesanspro-extralightit-webfont.svg#source_sans_proXLtIt') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SourceSansI';
  src: url('../fonts/sourcesans/italic/sourcesanspro-it-webfont.eot');
  src: url('../fonts/sourcesans/italic/sourcesanspro-it-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/sourcesans/italic/sourcesanspro-it-webfont.woff') format('woff'),
       url('../fonts/sourcesans/italic/sourcesanspro-it-webfont.ttf') format('truetype'),
       url('../fonts/sourcesans/italic/sourcesanspro-it-webfont.svg#source_sans_proitalic') format('svg');
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: 'SourceSansLI';
  src: url('../fonts/sourcesans/light/sourcesanspro-lightit-webfont.eot');
  src: url('../fonts/sourcesans/light/sourcesanspro-lightit-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/sourcesans/light/sourcesanspro-lightit-webfont.woff') format('woff'),
       url('../fonts/sourcesans/light/sourcesanspro-lightit-webfont.ttf') format('truetype'),
       url('../fonts/sourcesans/light/sourcesanspro-lightit-webfont.svg#source_sans_prolight_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: 'SourceSansSbI';
  src: url('../fonts/sourcesans/semibold/sourcesanspro-semiboldit-webfont.eot');
  src: url('../fonts/sourcesans/semibold/sourcesanspro-semiboldit-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/sourcesans/semibold/sourcesanspro-semiboldit-webfont.woff') format('woff'),
       url('../fonts/sourcesans/semibold/sourcesanspro-semiboldit-webfont.ttf') format('truetype'),
       url('../fonts/sourcesans/semibold/sourcesanspro-semiboldit-webfont.svg#source_sans_proSBdIt') format('svg');
  font-weight: normal;
  font-style: normal;
}