@import url(https://fonts.googleapis.com/css?family=Cabin);@import url(https://fonts.googleapis.com/css?family=Arimo);@import url(https://fonts.googleapis.com/css?family=Lato);@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);/* Using global sytles is not recommended, prefer local styles via CSS Modules */

/*
 * box model like it should be
 *
 * http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
html { box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit;
}

/*
 * kill document defaults margin & padding. We all do that all the time, right ?
 */
html,
body {
  margin: 0;
  padding: 0;
}

/*
 * page styles
 */
html {
  min-height: 100%;
  background: rgb(250, 253, 255);
}

body {
  color: #333;
  font-size: 1rem;
  line-height: 1.5rem;

  /* system font https://medium.com/designing-medium/system-shock-6b1dc6d6596f */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/*
 * .phenomic-HeadingAnchor
 *
 * anchors for markdown headings, generated via markdown renderer, so require
 * global styling
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
}

.phenomic-HeadingAnchor {
  display: inline-block;
  text-align: center;
  margin-left: -1.8rem;
  margin-right: 0.4rem;
  width: 1.4rem;
  line-height: 1.4rem;
  text-decoration: none;
  opacity: 0.1;
  transition: opacity 0.2s
}

h1:hover .phenomic-HeadingAnchor,
h2:hover .phenomic-HeadingAnchor,
h3:hover .phenomic-HeadingAnchor,
h4:hover .phenomic-HeadingAnchor,
h5:hover .phenomic-HeadingAnchor,
h6:hover .phenomic-HeadingAnchor{ opacity: 1; }

/* minimal styling, prefer removing this and use local styles */
a {
  color: inherit;
  text-decoration: none
}
a:hover{ text-decoration: underline; }

hr {
  border: 0;
  height: 1px;
  background: #8C8D91;
  opacity: 0.2;
  margin: 2rem 0;
}

body {
  font-family: 'Lato', sans-serif;
}

.card {
  max-width: 350px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  margin: auto;
  text-align: center;
  display: inline-block;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  vertical-align: top;
}

.card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
}
.about-card {
  max-width: 500px;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
  margin: auto;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}

.card-content {
  text-align: justify;
  vertical-align: top;
  padding: 10px;
}

.card-image {
  padding: 10px;
  height: 120px;
  text-align: left;
}

.card-image > img {
  clip-path: polygon(75% 0, 100% 50%, 75% 100%, 0% 100%, 0 0, 50% 0);
}

.product-tag {
  text-align: center;
  background: #111;
  width: 80px;
  left: 0;
  color: #ddd;
  margin-bottom: 30px;
  border-radius: 50px;
}

.product-img {
  text-align: left;
  margin-bottom: 30px;
}

.product-container {
  text-align: right;
  margin: auto;
  background: #fefefe;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1), 3px 5px 20px rgba(0, 0, 0, .2);
  width: 768px;
  /*height:550px;*/
  position: relative;
  padding: 30px;
}

.product-title {
  text-align: right;
  max-width: 80%;
  margin-left: auto;
  font-family: 'Cabin', sans-serif;
}

.product-detail {
  margin-left: auto;
  direction: rtl;
  text-align: justify;
  max-width: 80%;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-header {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: x-large;
  font-family: 'Cabin', sans-serif;
}

@media only screen and (max-width: 800px) {
  .product-container {
    text-align: right;
    margin: auto;
    background: #fefefe;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1), 3px 5px 20px rgba(0, 0, 0, .2);
    height: inherit;
    width: 100%;
    position: relative;
    padding: 30px;
  }
  .product-header, .product-title {
    text-align: center;
    margin-right: auto;
  }
  .product-detail {
    margin-left: auto;
    text-align: center;
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact-map {
    height: 350px;
  }
}

#overlay {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 8000;
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.gmap { /* Safari 6.0 - 9.0 */
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.44882000000000005 0.50064 0.05054 0 0 0.14882 0.80064 0.05054 0 0 0.14882 0.50064 0.35054 0 0 0 0 0 1 0" /></filter></svg>#filter');
  filter: grayscale(70%);
}

.c-logo {
  min-height: 40px;
  max-height: 100px;
  margin: 10px;
  vertical-align: middle;
}

.genieagent-logo-container {
  max-width: 300px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.genieagent-logo {
  max-width: 100%;
}

.subtitle {
  font-size: 25px;
  margin-top: 20px;
}

.header-title {
  height: 35px;
  display: inline-block;
  padding-left: 10px;
  position: absolute;
  margin-top: 6px;
}

.ga-mini-logo {
  width: 35px;
  height: 35px;
}

.ga-subtitle {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

/**
 * You can try all official Highlight.js theme here
 *
 * https://highlightjs.org/static/demo/
 *
 * More themes here
 *
 * https://github.com/isagalaev/highlight.js/tree/master/src/styles
 */

/*

Atom One Dark by Daniel Gamage
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax

base:    #282c34
mono-1:  #abb2bf
mono-2:  #818896
mono-3:  #5c6370
hue-1:   #56b6c2
hue-2:   #61aeee
hue-3:   #c678dd
hue-4:   #98c379
hue-5:   #e06c75
hue-5-2: #be5046
hue-6:   #d19a66
hue-6-2: #e6c07b

*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #abb2bf;
  background: #282c34;
}

.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}

.hljs-doctag,
.hljs-keyword,
.hljs-formula {
  color: #c678dd;
}

.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
  color: #98c379;
}

.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}

.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
  color: #d19a66;
}

.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
  color: #61aeee;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}
._2Mf6m {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
._2gGRo {
  position: absolute;
  /* stretch */
  right: 0;
  padding-top: 10px;
  padding-right: 20px;
  color: #FBFCFC;
}

._2frUm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-width: 61rem;
  margin: 0 auto;
  padding: 0;
  line-height: 3rem;
}

._37D8R,
._3VLYQ {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}

.uzQo7 {
  display: none;
}

.Ezg15 {
  margin-right: 5px;
  margin-left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 0.5rem;
  color: inherit;
  text-decoration: none !important;
  opacity: 0.6;
  transition: 0.4s all;
  border-bottom: 1px solid transparent;
  font-size: small;
  font-family: "Cabin";
}

.Ezg15:hover,
  .Ezg15:focus {
  opacity: 1;
  border-bottom-color: #FBFCFC;
}

.Ezg15 svg {
  fill: currentColor;
  opacity: 0.5;
  margin-right: 0.5rem;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

._1jItr {
  color: #fff;
  letter-spacing: 2px;
  border: 1px solid;
  border-color: white;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.zKxbF {
  position: absolute;
  background-color: #333;
  margin-top: 0px;
  margin-left: 0px;
  display: none;
  top: 59px;
  z-index: 10000;
}

#zKxbF:hover {
  display:block;
}

._2ZhNn {
  display: block;
  margin-right: 5px;
  margin-left: 5px;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0.5rem;
    color: inherit;
    text-decoration: none !important;
    opacity: 0.6;
    border-bottom: 1px solid transparent;
    font-size: small;
    font-family: "Cabin";
}

._2ZhNn:hover {
  color: white;
  opacity: 1;
}

@media only screen and (max-width: 480px) {
  ._2gGRo {font-size: 10px;}
  ._37D8R {
    display: none;
  }
  .uzQo7 {
    display: block;
    width: 100%;
    font-size: 24px;
  }
  ._341t2:hover {
    cursor: pointer;
    background-color: #aaa;
  }
  ._341t2 {
    width: 50px;
    text-align: center;
    border-radius: 2px;
    margin-right: -10px;
  }

  ._30cnQ {
    display: none;
    position: fixed;
    right: -200px;
    top: 0px;
    padding-top: 80px;
    font-size: 16px;
    padding-right: 10px;
    background: #333;
    color: #fff;
    padding-left: 20px;
    height: 100vh;
    width: 200px;
    opacity: 0.9;
    z-index: 9999;
    font-family: "Cabin";
  }

  ._1QWtx {
    cursor: pointer;
    display: block;
  }

  ._3SoED {
    z-index: 10000;
    position: absolute;
    top: 10px;
    right: 20px;
    display: none;
  }
  #_29xU5 {
    width: 100%;
    height: 100vh;
  }
  .zKxbF {
    position: relative;
    top: 0px;
  }
}
._116Tm {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-direction: column;
      flex-direction: column;
}
._1Ustb {
  text-align: center;
  height: 10vh;
}

.qN61N {
  padding-top: 10px;
}

.z5b4Q {
  font-size: large;
  padding-left: 2px;
  padding-right: 2px;
}

._21LuU {
  font-size: 0.75rem;
  opacity: 0.6;
  color: inherit;
  text-decoration: none;
}

.MMp-P {
  font-weight: 100;
}
._1KhX5 {
  display: -ms-flexbox;
  display: flex;
  height: 25vh;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

._3i5XI {
  height: 5vh;
  min-height: 5rem;
  width: 5vh;
  min-width: 5rem;
  border: 6px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  border-radius: 100%;
  animation: _3H5Gy 0.6s infinite linear 0.25s;

  /* the opacity is used to lazyload the spinner, see animation delay */
  opacity: 0;
}

@keyframes _3H5Gy {
  from {
    opacity: 1;
    transform: rotate(0);
  }

  to {
    opacity: 1;
    transform: rotate(359deg);
  }
}
.sFWsg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.hOK0m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  width: 100%;
  max-width: 60rem;
  padding: 1rem 0.75rem;
}

._3p2ZP {
  /* fallback, mainly visible when hero image is loading */
  background-color: #46BE77;
  /* fallback when there is no hero image */
  background: radial-gradient(
      ellipse at 50% 50%,
      rgb(108, 203, 148) 15%,
      #46BE77 70%
    );
}

._3wrxV {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 5vh 0;
  text-align: center;
  background: #111;
}

._1Tkeg {
  color: #FBFCFC;
  text-shadow: 0 0 10px #107491,
    0 0 6px #111,
    0 0 2px #111;
  letter-spacing: 1px;
}

.mlJD2 {
  margin-top: 2rem;
}

._1z1n5 {
  margin: 1rem 0;
  text-align: justify;
}

._30RKo {

  /* handy for content */
}

._30RKo a {
  color: #007acc;
  transition: all 0.2s;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

._30RKo a:hover {
  opacity: 1;
  color: rgb(0, 107, 179);
  border-bottom-color: #007acc;
}

._30RKo img {
  max-width: 90%;
}

._1wzLk {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}
._1Zu4s {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 50vh;
  padding: 1rem 0;
}

._2vfNd {
  font-size: 4rem;
  line-height: 4rem;
  color: #ddd;
}

._3DufC {
  margin: 4rem 0;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
}

._2LPjX {
  font-size: 14px;
}
._1mmZb {
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 1rem;
  line-height: 2rem;
  font-weight: 100;
  text-align: center;
  border-radius: 3px;

  transition: .2s all;

  color: #007acc;
  border: 1px solid #007acc;
  background: rgba(251, 252, 252, 0.2)
}

._1mmZb:hover {
  text-decoration: none;
  color: #107491;
  border: 1px solid #107491
}

._1w6mX {
  color: #46BE77;
  border: 1px solid #46BE77
}

._1w6mX:hover {
  color: #22846C;
  border: 1px solid #22846C
}

._2zz8t {
  color: #FBFCFC;
  border: 1px solid #FBFCFC
}

._2zz8t:hover {
  color: #FBFCFC;
  border: 1px solid #FBFCFC;
  background: rgba(251, 252, 252, 0.3)
}


._35BEo {
  font-size: 1.5rem;
  padding: 0 2rem;
  line-height: 3rem;
}
._1eeKI {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  max-width: 40rem;
  margin: 1rem auto;
  padding: 1rem 0;
}

._2mH_g {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 1.2rem;
  font-weight: 900;
}

._2l2N1 {
  font-size: 0.75rem;
  opacity: 0.6;
}

._1-sEy {
  font-size: 0.85rem;
}

.niUXw {
  /* align-self: center; */
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 3px;
  font-size: 0.8rem;
  text-align: center;
  border-bottom: 0 !important;
  text-decoration: none !important;
}
.lfRQE {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;

  list-style: none;
  padding: 0;
}
._1vSY4 {
  text-align: center;
}
._2BJ2- {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0.6;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
@font-face {
	font-family: 'longshot';
	src: url('/assets/Long_Shot.ttf');
} 

@font-face {
	font-family: 'genieagent';
	src: url('/assets/genieagent.ttf');
} 

.sl9-7 {
	text-align: center;
	font-family: "genieagent";
	font-size: 80px;
	margin-top: 200px;
	color: #FBFCFC;
    text-shadow: 0 0 10px #107491,
      0 0 6px #111,
      0 0 2px #111;
    letter-spacing: 1px;
}

._1-JQX {
	font-family: 'Arimo';
	margin-top: -30px;
	font-size: 24px;
}

.hOHdN {
	height: 90vh;
	background-color: #111;
}

@media only screen and (max-width: 700px) {
	.sl9-7 {font-size: 50px; margin-top: 200px;}
	._1-JQX {margin-top: -15px;}
}

@media only screen and (max-width: 480px) {
	.sl9-7 {font-size: 30px; margin-top: 180px;}
}