/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * 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
   ========================================================================== */

.btn-info { font-weight:600!important; background-color:#07b8cf!important; }
    
    .btn-success { border-color:#07b8cf!important; font-weight:600!important; background-color:#07b8cf!important; }
    #btnContactUs { border-color:#07b8cf!important; font-weight:600!important; background-color:#07b8cf!important; }
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
   ========================================================================== */















/* ==========================================================================
   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
 */

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

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

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

/*
 * 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.
   ========================================================================== */

body {
  overflow: hidden;
  background-color: #333333;
  font-family: 'Rajdhani', sans-serif;
  background-image: url('../img/background.png');
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  background-position: left top;
  background-repeat: repeat-x;
  background-size: cover;
  font-size: 18px;
}


@media (max-width: 767px) {
  body {
    background-repeat: no-repeat;
    background-size: 1904px;
  }
}

.vc {
  display: flex;
  align-items: center;
  height: 100vh;
}

@media (max-width: 767px) {
  .vc {
    display: block;
    height: auto;
  }
}

.content {
  z-index: 1;
  position: relative;
  padding-left: 160px;
  padding-right: 100px;
  width: 100%;
}

  @media (max-width: 1100px) {
    .content {
      padding-left: 100px;
      padding-right: 50px;
    }
  }


.brandmark {
  max-width: 742px;
  position: absolute;
  right: -120px; bottom: -60px;
  z-index: 0;
}

.logo,
.social,
.content-details {
  display: block;
  position: relative;
  transition: all .3s ease-in-out;
  -webkit-transform: translate(-20px, 0);
  -moz-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  visibility: hidden;
  opacity: 0;
}

.logo-visible .logo,
.content-visible .social,
.content-visible .content-details {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
}


.brandmark {
  display: block;
  transition: all .3s ease-in-out;
  -webkit-transform: translate(20px, 20px);
  -moz-transform: translate(20px, 20px);
  transform: translate(20px, 20px);
  visibility: hidden;
  opacity: 0;
}

.brandmark-visible .brandmark {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
}

.abn {
  display: block;
  margin-top: 1rem;
  font-weight: 400;
  color: #a7a9ac;
  transition: all .15s ease-in-out;
}

.abn strong {
  font-weight: 600;
}

.logo img {
  max-width: 452px;
  height: auto;
  width: 100%;
}

.lead {
  color: #07b8cf;
  font-size: 35px;
  position: relative;
  margin: 15px 0 20px 0;
  text-transform: uppercase;
  font-weight: 600;
}

  .lead span {
    color: #07b8cf;
  }

  .lead:after {
/*    content: '';
    width: 150px;
    background-color: #130c0e;
    position: absolute;
    left: 2px; bottom: -10px;
    height: 2px;*/
  }

p {
  color: #ffffff;
  margin: 15px 0 15px 0;
}

p a {
  color: #ffffff;
  text-decoration: none;
}

p a:hover {
  color: #07b8cf;
}


.social {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

    .social li {
        display: inline-block;
    }
    .social li + li {
        margin-left: 4px;
    }
    
    .social li a {
        display: block;
        border: 2px solid #07b8cf;
        border-radius: 42px;
        position: relative;
        height: 32px;
        width: 32px;
    }
    
    .social li a:hover {
        opacity: 0.6;
    }
    
    .social li svg {
        position: absolute;
        left: 50%; top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        
        height: 16px;    
        width: 16px;
    }

.author {
    color: #07b8cf;
    font-size: 20px;
    font-weight: 600;
}

 .contact-list {
   list-style: none;
   padding: 0;
   margin: 5px 0 0 0;
 }

   .contact-list li {
     font-weight: 600;
     position: relative;
     padding-left: 26px;
     margin-bottom: 4px;
     display: block
   }

   .contact-list li strong {
     font-weight: normal;
     font-style: italic;
     color: #07b8cf;
   }
   
   .contact-list li svg {
       display: block;
       position: absolute;
       left: 0; top: 50%;
       margin-top: -10px;
       height: 20px;
       width: 20px;
   }

   .contact-list li a {
     text-decoration: none;
     color: #ffffff;
   }

   .contact-list li a:hover {
     text-decoration: none;
     color: rgba(255, 255, 255, 0.6);
   }

.social-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

  .social-list li {
      font-weight: 600;
    display: inline-block;
    margin-right: 5px;
  }

  .social-list li img {
    height: 35px;
    width: 35px;
  }

  .associations {
    margin-top: 30px;
  }

  .associations span {
    font-size: 8px;
    margin-top: 10px;
    display: block;
    color: #07b8cf;
  }

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding-left: 14px;
  position: relative;
  display: block;
  width: 100%;
}

.service-list li:before {
  content: '';
  background-color: #373d42;
  position: absolute;
  left: 2px; top: 8px;
  height: 4px;
  width: 4px;
  margin-bottom: 30px;
}


.service-list li + li {

}

a {
  transition: all .15s ease-in-out;
}

a:hover {
  opacity: 0.8;
}


@media (max-width: 810px) {

  .content {
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  .logo img {
    max-width: 537px;
    width: 100%;
    height: auto;
  }
  .lead {
    font-size: 26px
  }

  .social-list li img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1450px) {
  .brandmark {
    bottom: -120px;
    right: -300px;   
  }
}
@media (max-width: 1150px) {
  .brandmark {
    bottom: -160px;
    right: -320px;
    opacity: 0.2;
    z-index: 0;
  }
}

@media (max-width: 767px) {
    p, li {
        font-size: 14px;
    }
  .lead {
      font-weight: 400;
    font-size: 20px;
  }
  body {
    display: block;
    align-items: baseline;
    padding: 40px 0 0;
  }
  .brandmark {
    bottom: -100px;
    right: -100px;
  }

  .logo img {
    max-width: 320px;
  }

}

@media (max-height: 700px) {
  .brandmark {
    display: none;
  }
}

@media (max-width: 1400px) {
  .brandmark-visible .brandmark {
    opacity: 0.2;
  }
}

@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 */
        -webkit-box-shadow: none !important;
        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:
     * 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;
    }
}
