/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
  height: 340px; }

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10; }

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 340px;
  background-color: #777; }

.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 340px; }

.carousel-control {
  width: 5%; }
  .carousel-control.left, .carousel-control.right {
    background: none;
    -webkit-transition: color, 0.2s;
         -o-transition: color, 0.2s;
            transition: color, 0.2s; }

.carousel-inner > .item img {
  width: 100vw;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover; }

.carousel .carousel-indicators {
  bottom: 5px; }
.carousel .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
.carousel .actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -5px; }
  .carousel .actions .btn {
    margin: 0 0 0 5px;
    border: 4px solid rgba(69, 183, 209, 0.73);
    background: rgba(255, 255, 255, 0.73);
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px;
    font-size: 1.5rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    color: #45b7d1;
    -webkit-transition: color 0.2s, background 0.2s, border-color 0.2s;
         -o-transition: color 0.2s, background 0.2s, border-color 0.2s;
            transition: color 0.2s, background 0.2s, border-color 0.2s; }
    .carousel .actions .btn:hover {
      background: rgba(69, 183, 209, 0.73);
      color: #fff;
      border-color: transparent; }

.carousel-caption {
  bottom: 0;
  padding-bottom: 0;
  text-align: left;
  text-shadow: none;
  position: relative;
  padding: 0;
  margin: 0;
  left: inherit;
  right: inherit;
  max-width: 80%;
  margin: auto; }
  .carousel-caption h1 {
    background: rgba(47, 109, 168, 0.73);
    margin: 0 0 5px 0;
    font-weight: normal;
    text-shadow: none;
    font-size: 2.2rem;
    padding: 20px;
    color: #fff; }
  .carousel-caption .content {
    padding: 10px 20px;
    margin: 0 0 5px 0;
    background: rgba(69, 183, 209, 0.73); }
    .carousel-caption .content p {
      font-size: 1.5rem;
      margin: 5px 0; }

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 768px) {
  /* Bump up size of carousel content */
  .carousel-caption {
    max-width: 500px; }
    .carousel-caption p {
      margin-bottom: 20px;
      font-size: 21px;
      line-height: 1.4;
      margin: 0; } }

@media (min-width: 970px) {
  .carousel-caption {
    margin-left: 0; } }

/*	-----------------------------------------------------------------------------------------------
 *	Author: Kit Whyte, kit@aeski.net, www.aeski.net
 *	Copyright: Kit Whyte
 *
 *	Date: 10 February 2016
 *	File: style.css
 *
 *	This file may not be copied or modified without the expressed permission from the author
 *	-----------------------------------------------------------------------------------------------
*/
html, body {
  margin: 0;
  padding: 0; }

body {
  width: 100vw;
  height: 100vh;
  background: #000 url('../../images/colour-bg-cropped.jpg') center center no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  font-family: avenir, arial, helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-background-size: cover;
          background-size: cover; }

#page {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: rgba(95, 104, 76, 0.71);
  -webkit-transition: background 2s;
       -o-transition: background 2s;
          transition: background 2s; }
  #page:hover {
    background: rgba(104, 84, 76, 0.7); }

#logo-wrapper {
  margin: auto; }

#aeski-logo {
  width: 200px; }
  #aeski-logo .lettering {
    fill: #fff; }

a:link, a:visited {
  color: #cdcdcd;
  text-decoration: none;
  -webkit-transition: color, 0.3s;
       -o-transition: color, 0.3s;
          transition: color, 0.3s; }

a:hover {
  color: #fff; }

p {
  margin: 0; }

h3 {
  font-size: .9rem;
  margin: 0;
  font-weight: 400; }
  h3:first-child {
    margin-top: 10px; }
