@charset "UTF-8";

/*
 Theme Name: Jeeves Computer Repair
 Description: CSS for the Jeeves Computer Repair website
 Template:jeevescomputerrepair.com
 Author:Thomas Federico
 Author URI:https://www.fullstackdesigner.co
 Version:1.0.0
*/

/* ---------------------------------------------------------
  CSS SUMMARY
  0. =@IMPORTS........(DOCUMENT)
  1. =RESET BOX.......(DOCUMENT)
  2. =HTML/BODY.......(DOCUMENT)
  3. =GENERAL STYLES..(DOCUMENT)
  4. =FX..............(TRANSITION CLASS)
  5. =HEADER..........(TOP BAR)
  6. =NAVIGATION......(TOP NAV)
  7. =MAIN............(CONTAINER FOR SECTIONS)
  8. =QUOTES..........(BETWEEN SECTIONS)
  9. =SECTIONS
  10. =FOOTER
  11.=MODALS
  12.=MEDIA QUERIES
--------------------------------------------------------- */

/*------------------------------------------------------- */
/* ========= Theme customization starts here ============ */
/*------------------------------------------------------- */

/* === 0. @IMPORTS === */



/* === 1. RESET BOX === */

/*!
 * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */

*,::after,::before, :root{box-sizing:border-box}
html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:flex}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}

ul { display:flex;margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    padding:0}

/* === 2. HTML/BODY (DOCUMENT) === */
* {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


html, body
{
  position: relative;
  transition: all .2s ease;
  font-family: 'Bebas Neue', sans-serif;
  height:100vh; /*Important to add "definite" height, otherwise overflow-x: hidden!important; is not gonna work at all as explained here: https://uxdesign.cc/position-stuck-96c9f55d9526 > Add a fixed height (in this case 80vh)*/
 -webkit-font-smoothing: antialiased;
}

html
{
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body
{
 margin:0!important;
 padding:0!important;
 width:100%;
 -ms-touch-action: manipulation;
 touch-action: manipulation;
 -webkit-overflow-scrolling: hidden!important;
 overflow-x: hidden!important;
 color:#F9F1BA!important;
 background: #0a0a14;
 scrollbar-color:#F9F1BA #0a0a14!important;

}

/* Only Chrome */

body::-webkit-scrollbar {
  width: 14px;
  border-radius:0;
}
body::-webkit-scrollbar-track {
  background: #0a0a14;
  border-radius:0;
  border:2px solid #F9F1BA ;
}
body::-webkit-scrollbar-thumb {
  background: #E8DB78;
  border-radius:0;
  border:2px solid #F9F1BA;
}

/* !important is needed sometimes */
body::-webkit-scrollbar {
width: 14px !important;
border-radius:0!important;
}

body::-webkit-scrollbar-thumb:win:;dow-inactive {
background: #E8DB78!important;
border-radius:0!important;
border:2px solid #F9F1BA!important;

}

/* Only IE */
html {scrollbar-face-color: #0a0a14; scrollbar-shadow-color: #F9F1BA; scrollbar-highlight-color: #F9F1BA  ;}
/* Only FireFox */
html {scrollbar-color: #0a0a14 #F9F1BA!important;}



body.modal-open
{

  overflow-y: hidden;
}

body.modal-closed
{
  overflow-y: scroll;
}


/* Strangely, it prevents the no delay on iPad without being affiliated to anything */
.no-delay {
  touch-action: manipulation;
}

/*.faded {visibility: hidden;}*/

#app{ z-index: 1;}

#small-screens { position: fixed; z-index:0; width:100vw;height:100vh; color:#fff; }

/* === 3. COMMON ELEMENTS / CLASSES === */

  a, a:visited
  {
    color:#fff;
    text-decoration:none!important;
    cursor:pointer;
  }

  a:hover
  {
    color:#fff;
    text-decoration: none;
  }

  img
  {
    width:100%;
    height:auto;
  }

  /* Hide lazyload images if JavaScript is not supported */
  .no-js .lazy {
   display: none;
  }

  /* Avoid empty images to appear as broken */
  img:not([src]):not([srcset]) {
   visibility: hidden;
  }

  /* Fix for images to never exceed the width of the container */
  img
  {
   width:100%;
   flex-shrink: 0;
   height:auto;
  }

  .transition { transition:all .25s ease; }

  .pos-r
  {
    position: relative;
  }

  .f-center
  {
    display:flex;
    width:100%;
    margin:0 auto;
  }

  .v-center
  {
    align-items: center;
    align-content: center;
    justify-content: center;
  }

  .b-center
  {
    align-items: flex-end;
    align-content: center;
    justify-content: center;
  }

  .t-center
  {
    text-align: center;
  }

  .fldr-r
  {
    flex-direction: row;
  }

  .fldr-c
  {
    flex-direction: column;
  }

  .l-align
  {
    align-items: flex-start;
    align-content: center;
    justify-content: center;
  }
  .r-align
  {
    align-items: flex-end;
    align-content: center;
    justify-content: center;
  }

  ul, li, p, img {
    font-family: 'Arial, Segoe UI', sans-serif!important;
  }
  /*
  img
  {
    word-wrap: break-word;
    text-align: left;
  }*/


  .max-w
  {
    max-width: 1200px!important;
  }

  .max-w-684
  {
    max-width: 684px!important;
  }


  /**
   * Sticky navigation
   */
  .sticky {
    background-color:#171D25;
    position: sticky!important;
    position: -webkit-sticky!important;
    top: 0;
    z-index: 999!important;
    will-change: transform;
  }

  .shadow
  {
    box-shadow: 0px 6px 3px 0px rgba(0,0,0,0.16)!important;
    -webkit-box-shadow: 0px 6px 3px 0px rgba(0,0,0,0.16)!important;
    -moz-box-shadow: 0px 6px 3px 0px rgba(0,0,0,0.16)!important;
  }

  .shadow-bot
  {
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.2)!important;
    -webkit-box-shadow: 0 4px 2px -2px rgba(0,0,0,.2)!important;
    -moz-box-shadow: 0 4px 2px -2px rgba(0,0,0,.2)!important;
  }

  .txt-shadow
  {
    text-shadow: 0px 4px 4px rgba(0,0,0,0.75);
  }

  /**
   * Layout
   */


  .sections
  {
    /*min-height: 10000px;*/
    z-index: 0!important;
  }

  .section {
    overflow: hidden;
    color: #000;
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex-direction: column;
    margin:0 auto;
    padding:0 5%;
  }

  h1 {
    width:90%;
    font-size:3rem;
    padding:3rem 0;
    color:#929292;
  }

  h1:nth-child(n+2)
  {
    padding:0 0 3rem;
  }

  h2 {
    font-size:2rem;
    color:#dc1918;
  }

  h3
  {
    font-size:1.5rem;
  }


/* HOME */

#job-title, #tagline, .i18nelement
{
  color:#F9F1BA!important;
}

li { list-style:none;}

#langSelector { height:60px; position:sticky; -webkit-position:sticky; top:0;  }

#langSelector ul {  }

#langSelector li { margin:0 1rem 0 0!important; }

#langSelector li:last-of-type { margin:0 auto!important;}

#langSelector a { padding:1rem; background:red;}

#langSelector a.active { background:green;}

