/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body,
html {
  font-family: Arial;
  font-size: 15px;
}

body {
  background-color: #0b1421 !important;
}

/* header */
.bg-darkblue {
  background-color: #0b1421;
}

.bg-light {
  background-color: #ffffff;
}

/* body */
main > .container-fluid {
  height: 100%;
}

.navbar-nav > .nav-item > .nav-link {
  color: #fff !important;
}

.navbar-nav > .nav-item > .nav-link:hover {
  color: #13f2a1 !important;
}

.bg-square {
  min-height: 740px;
  background: url("../img/bg-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-gradient {
  height: 500px;
  min-height: 420px;
  background: linear-gradient(90deg, #13f2a1 0%, #00d6fd 100%) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .text-title {
  color: #00f799;
  font-size: 2.667em;
}

.hero .text-sub {
  color: #fff;
  font-size: 1.867em;
}

.card {
  border: 1px solid #0b1421 !important;
  color: #fff;
  position: relative;
  min-height: 200px;
  height: 100%;
}

.card-img-top {
  background: #0b1421;
}

.card-body {
  background-color: #0b1421;
}

.card-img-logo {
  height: 40px;
}

.circles {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: -30px;
}

.circles > img {
  height: 17px;
}

.circles.sw {
  background-color: #00d9ff;
}

.circles.sr {
  background-color: #00f799;
}

.circles.si {
  background-color: #15d4c5;
}

a.circles.sw:hover {
  box-shadow: 0px 0px 30px #00d9ff;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

a.circles.sr:hover {
  box-shadow: 0px 0px 30px #00f799;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

a.circles.si:hover {
  box-shadow: 0px 0px 30px #15d4c5;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

/* banner */
.banner_title {
  /* font-size: 1.867em; */
}

.banner_text {
  font-size: 1.453em;
  width: 74%;
}

.banner-con {
  height: 420px;
}

.phone {
  /* position: absolute; */
  /* bottom: 0; */
  /* left:250px; */
}

.banner > .content {
  margin-left: 350px;
}

/* footer */

.footer {
  color: #fff;
}

.footer-text {
  color: #fff;
}

.list-inline {
  color: #fff;
}

.list-inline-item > a {
  color: #fff;
}

.list-inline-item > a:hover {
  color: #00d9ff;
  text-decoration: none;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  main > .container-fluid {
    /* min-height: 780px; */
  }

  .banner_text {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .banner_title {
    font-size: 1em;
  }

  .banner_text {
    font-size: 0.867em;
    width: 100%;
  }

  .app-store {
    width: 150px;
    margin-bottom: 15px;
  }

  .list-inline-item {
    /* font-size:12px; */
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
