@font-face {
  font-family: 'Roboto-Black';
  src: url(../ui/fonts/Roboto-Black.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
	font-family: 'Roboto-Regular';
	src: url(../ui/fonts/Roboto-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto-Light';
	src: url(../ui/fonts/Roboto-Light.ttf);
	font-weight: normal;
	font-style: normal;
}

body {
  background: #f2f2f2;
  padding: 0px 0px 0px 0px;
  margin: 0px;
  font-family: Roboto-Regular;
}

body > .header {
  /*position: fixed;*/
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100vw;
  height: 50px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 -1px 1px -1px rgba(0,0,0,.12);
  background: #f5f5f5;
  line-height: 50px;
  text-align: center;
  z-index: 2;
}
body > .header > .menu_items .menu_option {
  display: inline-block;
  padding: 0px 10px;
  font-family: Roboto-Black;
  cursor: pointer;
}
body > .header > .menu_items .menu_option.selected {
  color: #f5f5f5;
  background: #a5ce39;
  padding: 0px 15px;
  text-shadow: 0.5px 0.5px #8e8e8e;
}

body > .header > .logo {
  width: 64px;
  height: 64px;
  background-image: url(../images/fabtg_logo.png);
  background-size: 100% 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
}
body > .header > .logo:after {
    content: 'FabTG';
    position: absolute;
    left: 100%;
    bottom: 8px;
    font-family: Roboto-Light;
    font-size: 14pt;
    color: #147fcc;
    text-shadow: 0.5px 0.5px #84b1e8;
}

@media screen and (max-width: 500px) {
  body > .header > .logo:after {
      content: '';
  }
}

body > .slider {
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 -1px 1px -1px rgba(0,0,0,.12);
  background: #3d3d3d;
  height: 400px;
  overflow: hidden;
}
body > .slider > .slide img {

  min-height: 100%;
  min-width: 100%;

  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);

  z-index:  0;

}

body > .slider > .slide {
  position: relative;
  height: 100%;
  text-align: center;
}

body > .slider > .slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    z-index: 1;
}

body > .slider > .slide > .title,
body > .slider > .slide .desc {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px;
  max-width: calc(100vw - 70px);
  color: #fff;
  border-radius: 2px;
  /*background: rgba(0, 0, 0, 0.65);*/
}

body > .slider > .slide > .title:before {
  /*content: '';*/
  position: absolute;
  top: -20px;
  left: 0px;
  height: 20px;
  width: 100%;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.55+100 */
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#8c000000',GradientType=0 ); /* IE6-9 */

}

body > .slider > .slide > .title:after {
    /*content: '';*/
    position: absolute;
    right: -10px;
    top: 9px;
    height: calc(100% - 20px);
    width: 10px;
    background: -moz-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
}

body > .slider > .slide > .title {
  font-size: 40px;
  margin: 80px 0px 0px 0px;
  /*border: 1px solid #606060;*/
}
body > .slider > .slide .desc {
    font-size: 14pt;
    font-family: Roboto-Regular;
    margin: 10px 0px 0px 0px;
    width: 650px;
    letter-spacing: 0.25px;
    /*background: rgba(255, 255, 255, 0.8);*/
    /*color: #000;*/
}

body > .slider > .slide > .desc_container {
  text-align: center;
}

body > .slider > .slide > .button {
  position: relative;
  z-index: 1;
  margin: 20px 0px 0px 0px;
}

@media screen and (max-width: 700px) {
  body > .slider {
    height: auto;
  }
  body > .slider > .slide > .title {
    font-size: 23pt;
    margin: 40px 0px 40px 0px;
  }
  body > .slider > .slide .desc {
    font-size: 12pt;
    margin: -20px 0px 0px 0px;
  }
  body > .slider > .slide > .button {
    margin: 20px 0px 40px 0px;
  }
}

.button {
  height: 40px;
  padding: 0px 15px;
  line-height: 40px;
  color: #303f09;
  background: #a5ce39;
  display: inline-block;
  border-radius: 7px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 -1px 1px -1px rgba(0,0,0,.12);
  cursor: pointer;
  font-family: Roboto-Black;
}

.icons_text {
  padding: 0px 0px 30px 0px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 -1px 1px -1px rgba(0,0,0,.12);
}
.icons_text > .title {
  font-family: Roboto-Black;
  text-align: center;
  font-size: 40px;
  padding: 30px 0px 30px 0px;
}
.icons_text > .desc {
  font-family: Roboto-Light;
  text-align: center;
  font-size: 12pt;
  max-width: 100%;
  width: 750px;
  margin-left: 50%;
  transform: translate3d(-50%, 0, 0);
  padding: 0px 0px 40px 0px;
}

.icons_text > .icons {
  text-align: center;
  font-family: Roboto-Light;
  font-size: 12pt;
}
.icons_text > .icons > .icon {
  display: inline-block;
  width: 205px;
  padding: 10px;
  vertical-align: top;
}
.icons_text > .icons > .icon > img {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  border-radius: 2px;
  /*background-color: rgba(0, 0, 0, 0.3);*/
}
.icons_text > .icons > .icon > .title {
  font-family: Roboto-Black;
  display: block;
  padding: 10px 0px 0px 0px;
}
.icons_text > .icons > .icon > .desc {
  display: block;
  padding: 10px 0px 0px 0px;
}

@media screen and (max-width: 955px) {
  .icons_text > .icons > .icon {
    width: 172px;
  }
  .icons_text > .icons > .icon > img {
    display: block;
    width: 96px;
    height: 96px;
  }
}

.image_text {
  box-shadow: 0 1px 3px 0 rgba(255,255,255,.2),0 1px 1px 0 rgba(255,255,255,.14),0 -1px 1px -1px rgba(255,255,255,.12);
  background: #3d3d3d;
  text-align: center;
  padding: 0px 10px 30px 10px;
  max-width: 100%;
}
.image_text > .title {
  color: #f5f5f5;
  font-family: Roboto-Black;
  text-align: center;
  font-size: 40px;
  padding: 30px 0px;
}

.image_text > img {
  display: inline-block;
  width: 450px;
  border-radius: 3px;
  padding: 10px;
  background-color: #f5f5f5;
  vertical-align: top;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 -1px 1px -1px rgba(0,0,0,.12);
  margin-bottom: 20px;
  max-width: calc(100% - 20px);
}

.image_text > .desc {
  display: inline-block;
  color: #f5f5f5;
  font-family: Roboto-Light;
  width: 450px;
  padding: 0px 20px;
  vertical-align: top;
  text-align: left;
  font-size: 12pt;
  max-width: calc(100% - 40px);
}

.image_text > .contact_button_container {
  padding: 10px 0px 0px 0px;
}

@media screen and (max-width: 986px) {
  .image_text > .contact_button_container {
    padding: 10px 0px 0px 0px;
    margin: 20px 0px 0px 0px;
  }
}

.footer {
  text-align: center;
  font-family: Roboto-Light;
  font-size: 11pt;
  line-height: 25px;
  padding: 10px 0px;
  background: #f2f2f2;
}

span.spacer {
    display: inline-block;
    width: 3px;
    height: 12pt;
    background: #c3c3c3;
    margin: 0px 20px;
    vertical-align: middle;
}

.footer .footer_menu {
  padding: 0px 0px 0px 0px;
  color: #147fcc;
  display: inline-block;
}
.footer .footer_menu > .footer_menu_option {
  display: inline-block;
  cursor: pointer;
}
.footer .footer_menu > .footer_menu_option:hover {
  text-decoration: underline;
}

.footer > .copyright_design {
  padding-top: 15px;
}
.footer .contact_details {
  font-size: 40px;
  color: #147fcc;
  cursor: pointer;
  padding: 20px 0px;
}

@media screen and (max-width: 666px) {
  .footer .contact_details span.spacer {
      display: none;
  }
  .footer .contact_details {
    line-height: 50px;
  }
  .footer .contact_details > * {
    display: block;
  }
}

@media screen and (max-width: 950px) {
  .footer .copyright_design > span.spacer {
      display: none;
  }
  .footer .copyright_design > * {
    display: block;
  }
}

span.bold {
  font-family: Roboto-Regular;
}

body > .privacy {
  width: 1000px;
  max-width: calc(100vw - 20px);
  margin: 0 auto;
  font-family: Roboto-Light;
  line-height: 24pt;
}
body > .privacy > h1 {
  font-family: Roboto-Black;
  text-transform: uppercase;
  font-size: 25pt;
  margin: 30px 0px 10px 0px;
  color: #333333;
}
body > .privacy > h2 {
  font-family: Roboto-Black;
  text-transform: uppercase;
  font-size: 20pt;
  margin: 30px 0px 10px 0px;
  color: #4c4c4c;
}
body > .privacy > h3 {
  font-family: Roboto-Regular;
  text-transform: uppercase;
  font-size: 14pt;
  margin: 10px 0px;
}
body > .privacy > ul {
  margin: 10px 0px;
  padding: 0px 0px 0px 40px;
}
body > .privacy > p {
  margin: 3px 0px;
  padding: 0px 0px 0px 0px;
}

.not_found {
  text-align: center;
}


h1 {
  font-family: Roboto-Black;
  text-transform: uppercase;
  font-size: 25pt;
  margin: 30px 0px 10px 0px;
  color: #333333;
}
h2 {
  font-family: Roboto-Black;
  text-transform: uppercase;
  font-size: 20pt;
  margin: 30px 0px 10px 0px;
  color: #4c4c4c;
}
h3 {
  font-family: Roboto-Regular;
  text-transform: uppercase;
  font-size: 14pt;
  margin: 10px 0px;
}

a {
  text-decoration: none;
  color: inherit;
}

textarea,
input {
  display: block;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 -1px 1px -1px rgba(0,0,0,.12);
  padding: 0px 5px;
  width: calc(100% - 10px);
  border: none;
}
textarea {
  min-height: 100px;
  font-family: Roboto-Light;
}
label {
  font-family: Roboto-Black;
  margin: 5px 0px 0px 0px;
  display: block;
}

body > .contact_us {
  width: calc(100vw - 20px);
  max-width: 550px;
  padding: 0px 10px;
  margin: 40px auto;
}

body > .contact_us textarea,
body > .contact_us input {
  margin: 10px 0px;
  width: calc(100% - 10px);
  resize: vertical;
}

body > .contact_us .button {
  width: calc(100% - 30px);
  text-align: center;
  margin-top: 10px;
}

.invalid {
  border: 2px solid red;
	background: #ffd6d6;
}

.form_error {
  display: none;
  color: red;
  font-size: 12pt;
  font-family: Roboto-Black;
}

.address {
  text-align: center;
  font-family: Roboto-Light;
  line-height: 18pt;
}
