/* CSS Stylesheet for astrant.be Created by Fishandbird.be 
Current Version 1.0 */

/* ***** reset settings responsiveness ***** */

*, *:after, *:before {
    box-sizing: border-box;
}
/* Settings for responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* ***** einde reset settings responsiveness ***** */

/* ***** settings grid ***** */

html, body {
    height: 100%;
}

/* Vertically centering the grid */
.ghostGrid {
    text-align: center;
    height: 90%;
    font-size: 0;
    /*background-color: black;*/
}
/* The ghost, nudged to maintain perfect centering */
.ghostGrid:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  /*margin-right: -0.25em;*/ /* Adjusts for spacing */
}

/* The container. The purpose is to set the width of the entire grid */
.grid {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    width: 95%;
    max-width: 1080px;
    /*background-color: chartreuse;*/
}
.grid:after {
    content: '';
    display: table;
    clear: both;
}
/* ***** einde settings grid ***** */

/* ***** general settings  -portrait ***** */

body {
    font-family: 'Monserrat', sans-serif;
    color: #ffa500;
    background-color: #000;
}
a:focus {
    outline: none;
}
.oneCol {
    float: left;
    width: 50%;
    height: 12em;
    padding: 10px;
    /*background-color: aliceblue;*/
    /*border: solid 1px;*/
}
.fulColl {
    float: left;
    width: 100%;
    padding: 10px;
    /*border: solid 1px;*/
}
.bigRow {
    height: 12em;
}
.smallRow {
    height: 2em;
    padding: 1em;
    font-variant: small-caps;
}
.bigRow .colContent img {
    width: 50%;
    margin: 0 auto;
}
.colContent {
    /*background-color: blue;*/
}
.tagline {
    width: 100%;
    font-size: 50%;
    float: left;
    padding: 0.5em;
    color: #fff;
    text-align: center;
}
footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 2em auto;
    padding: 0 2em;
    font-size: 50%;
    text-align: center;
    color: #fff;
}

/* ***** einde general settings -portrait ***** */

/* ***** adaptions ***** */

/* **** bigger screens -portrait ***** */

@media only screen and (orientation : portrait) and (min-width : 410px) {
    .smallRow {
        padding: 2.55em;
    }
}

/* ***** tablet -portrait ***** */
@media only screen and (orientation : portrait) and (min-width : 480px) {
    .bigRow {
        height: 25em;
    }
}
/* ***** einde   tablet -portrait ***** */

/* **** einde bigger screens -portrait ***** */

/* ***** -landscape ***** */
@media only screen and (orientation : landscape) {
    .oneCol {
        /*border: solid 1px;*/
        width: 50%;
        height: 6.75em;
        float: right;
        padding: 0;
    }
    .fullCol {
        /*border: solid 1px;*/
        width: 50%;
        float: left;
        vertical-align: middle;
    }
    .bigRow {
        height: 10em;
    }
    .bigRow .colContent img {
        width: 65%;
    }
    .smallRow {
        height: 1em;
        padding: 0;
        font-size: 75%;
    }
    .oneCol .colContent {
        /*background-color: blue;*/
        width: 50%;
        margin: 0 auto;
    }
    .topOne {
        padding-top: 1em;
    }
}
/* ***** einde -landscape ***** */

/* ***** tablet -landscape ***** */
@media only screen and (orientation : landscape) and (min-width : 800px) {
    .oneCol {
        /*border: solid 1px;*/
        height: 15em;
    }
    .bigRow {
        height: 30em;
    }
    .bigRow .colContent img {
        width: 75%;
    }
    .oneCol .colContent {
        width: 65%;
    }
    .smallRow {
        font-size: 100%;
    }
    .tagline {
        font-size: 100%;
    }
    footer {
        font-size: 100%;
    }
}
/* ***** einde tablet -landscape ***** */

/* ***** einde adaptions ***** */

/* ***** animations ***** */
/* TX to Danile Eden - animate.css -http://daneden.me/animate for tricks and inspiration */
/* TX to Nick Pettit -https://github.com/nickpettit/glide for tricks and inspiration */
.animateFirst {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animateSecond {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}


/* ***** anilmations ***** */
