
/* CORE ELEMENTS */

body {

    font-family: 'Spartan', sans-serif;
    font-size: 1.2em;
    color: #454545;
    background: linear-gradient(145deg, #FF0000, #FFAA00, #4b4389);
    animation: color-change-2x 2s linear infinite alternate both;
    margin:0;
    padding:0;
    border:0;
    max-width:100vw;
    min-height:100vh;
    scroll-behavior: smooth;
    /* animation: color-change-bg 2s linear alternate both; */
}

h1, h2, h3, h4 {
    font-family: 'Spartan', sans-serif;
}

.headerbit {
    height: auto;
    min-height:30vh;
    float:left;
    width:100%;
}

.contentbit {
    color: #FFF;
 text-align:center;
    padding: 0;
    min-height: 40vh;
    float:left;
    width:100%;
    text-align:center;
    padding:0;
    font-weight:bold;
    font-size: 15vmin;
}

.importantbit {
    text-align:center;
    padding:0;
    font-weight:bold;
    font-size: 5vmin;
}
.footerbit {
    color: #FFF;
text-align:center;
    padding: 5vh 0;
    min-height:5vh;
    animation: color-change-2x 2s linear infinite alternate both;
    float:left;
    width:100%;
}

/* GLOBAL DECORATION */

.realbox {
    border-radius: 10px;
    background: linear-gradient(145deg, #5600e6, #6700ff);
    box-shadow:  5px 5px 10px #5200d9, 
                -5px -5px 10px #6e00ff;
}

.realbox a {
    color: #FFF;
    padding-bottom: 1vmin;
    width: 100%;
    float: left;
    padding-top: 1vmin;
}

.realboxtitle{
    width:100%;
    float:left;
    min-height:7vmin;
    font-weight:bold;
    font-size:1.5em;
}

.threecol{
    width:26vw;
    float:left;
    margin:1vw;
    padding: 2vh 1vw;
    min-height:20vh;
}




/* SECONDARY */

.headerbit h1{
    padding:0;
    margin:0;
}


.headerbit logo{
    height: 4vmin;
    min-height:30px;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


.headerbit img {
    height: auto;
    width: 40vw;
    padding: 0 29vw 0 29vw;
    margin: 0;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;

}



.importantbit img {
    max-width:1500px;
    width: 96vw;
    padding: 0 1vw 0 1vw;
    margin: 0;
}

.wordybit {
    text-align:center;
    font-size:2vmin;
}

.listylist {
    padding: 0 4vw 5vmin 4vw;
    float:left;
    width:90.3vw;
}

.listmore {
    float: left;
    width: 40%;
    padding-bottom: 5%;
}

.whiteBox {
    padding: 0 0 5vmin 0;
    float:left;
    width:100%;
    background:#FFF;
    color: #000;
}

.whiteBox h2,
.whiteBox h3{
    color:#4b4389;
}

.whiteBoxContent {
    padding: 5vmin;
    text-align: left;
    max-width: 1200px;
    margin: auto;
    font-size: 1em;
    line-height:2;
}

.whiteBoxPointFull {
    float:left;
}


.whiteBoxPointLeft {
    float:left;
    width:50%;
}

.whiteBoxPointRight {
    float:left;
    width:45%;
    padding-left:5%;
}


.iconlinks{
    width:4vmin;
    text-decoration:none;
    min-width:50px;
}
.icons{
    width:4vmin;
    font-size:40px;
    min-width:50px;
}

.footerbit a {
    color: #FFF;
}

.footerbit img {
    max-height:10vh;
}

.bottomlist{
    padding: 2vmax 0 0 0;
    font-size: 0.75vmax;
}


/* BG SLideshow */

.slider{
    position:relative;
    overflow:hidden;
    height:100%;
}

.crossfade > figure {
    animation: imageAnimation 30s linear infinite 0s;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center center;
    /* color: transparent; */
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 0;
    padding:0;
    margin:0;
    float:left;
  }

.figureTitle {
    position:relative;
    top:35%;
    background-color: rgba(96, 0, 255, .75);
    padding:1vmax 0;
}

.crossfade > figure:nth-child(1) { 
    background-image: url('../goat/banner_strategy.png'); 
}

.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../goat/banner_data.jpg');
}

.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../goat/banner_music.jpg');
}

.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../goat/banner_aws.jpg');
}

.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('../goat/banner_ecom.jpg');
}

/*ANIMATIONS*/

@keyframes 
imageAnimation {  0% {
 animation-timing-function: ease-in;
 opacity: 0;
}
 8% {
 animation-timing-function: ease-out;
 opacity: 1;
}
 17% {
 opacity: 1
}
 25% {
 opacity: 0
}
 100% {
 opacity: 0
}
}

@-webkit-keyframes bounce-in-top{
     0%{
            -webkit-transform:translateY(-500px);
            transform:translateY(-500px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
            opacity:0
        }
    40%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out;
            opacity:1
        }
    55%{
            -webkit-transform:translateY(-65px);
            transform:translateY(-65px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
        }
    70%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    80%{
            -webkit-transform:translateY(-28px);
            transform:translateY(-28px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
        }
    90%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    95%{
            -webkit-transform:translateY(-8px);
            transform:translateY(-8px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
        }
    100%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    }
@keyframes bounce-in-top{
     0%{
            -webkit-transform:translateY(-500px);
            transform:translateY(-500px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
            opacity:0
        }
    40%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out;
            opacity:1
        }
    55%{
            -webkit-transform:translateY(-65px);
            transform:translateY(-65px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
        }
    70%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    80%{
            -webkit-transform:translateY(-28px);
            transform:translateY(-28px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
        }
    90%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    95%{
            -webkit-transform:translateY(-8px);
            transform:translateY(-8px);
            -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
        }
    100%{
            -webkit-transform:translateY(0);
            transform:translateY(0);
            -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out
        }
    }
@-webkit-keyframes color-change-2x{
     0%{
            background:#FF0000
        }
    100%{
            background:#FF9900;
        }
    }
@keyframes color-change-2x{
      0%{
            background:#FF0000
        }
    100%{
            background:#FF9900;
        }
    }
@-webkit-keyframes color-change-bg{
        0%{
               background:#6000ff
           }
       100%{
               background:#FFF
           }
       }
@keyframes color-change-bg{
         0%{
               background:#6000ff
           }
       100%{
               background:#FFF
           }
       }

 @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @media (max-width: 800px) {
    body {
        font-size: 1em;
    }
    .threecol{
    width:86vw;
    float:left;
    margin:2vw;
    padding: 2vh 1vw;
    height:100%;
    }
    .realboxtitle{
        font-size:1em;
    }
    .whiteBoxPointLeft {
        width:100%;
    }
    .whiteBoxPointRight {
        width:100%;
    }
}
  