html {
    box-sizing: border-box;
    font-size: 16px;
  }
  
*, *:before, *:after {
    box-sizing: inherit;
  }
  
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: 'Roboto', arial, sans-serif;
  }

ol, ul {
    list-style: none;
  }

button, input, optgroup, select, textarea {
      font-family: inherit;
  }

/* DEFINING CUSTOM VARIABLES */
:root{
  --agav-dk-grey: rgb(58, 58, 58);
  --agav-lt-green: rgb(65,227,11);
  --agav-blue: rgb(34, 37, 227);
  --agav-lt-grey: rgb(170, 170, 170);

  --agav-orange: rgb(227, 98, 34);
  --agav-red: rgb(194, 0, 0);

  --ah-dk-grey: hsl(0,0%,19.6%); /* #323232 */


  /* Blue */
  /* --ah-yellow: #3e6af1; */
  /* turqouise */
  /* --ah-yellow: #0cb5a0; */
  /* green */
  /* --ah-yellow: #4fef97; */
  --ah-yellow: hsl(48.9,73.5%,51.2%); /*   #e3bf29 */

  --white-text: rgb(221, 221, 221);
}
  
h2 {
    display: inline-block;
    width: 100%;
    font-size: 2.3rem;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 20px;
    color: var(--agav-red);
}

a {
    text-decoration: none;
}

header {
    /* padding-top: 10px; */
    position: sticky;
    top: 0px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    padding-bottom: 10px;
    background-color: hsl(0 0% 100% / .8);
}

section {
    text-align: center;
    padding: 0px 20px;
    max-width: 900px;
    margin: 0px auto;
}

/**********************/
/*   LOGO ANIMATION   */
/**********************/

.logo {
    padding-top: 20px;
    animation: movein 2s linear;
}

@keyframes movein {
    0% {
        transform: translateX(-150px);
    }
    
}

#plugLeadPath {
    stroke-dasharray: 860;
    stroke-dashoffset: 0;
    animation: draw1 4s linear;
}

@keyframes draw1 {
    0%, 65% {
        stroke-dashoffset: -860;
    }

    90% {
        stroke-dashoffset: 0;
    }
}

#micLeadPath {
    stroke-dasharray: 750;
    stroke-dashoffset: 0;
    animation: draw2 4s linear;
}

@keyframes draw2 {
    0%, 65% {
        stroke-dashoffset: 750;
    }

    90% {
        stroke-dashoffset: 0;
    }
}

#a {
    animation: opacitya 4s linear;
}

@keyframes opacitya {
    0%, 55% {
        opacity: 0%;
    }

    56% {
        opacity: 100%;
    }
}

#u1 {
    animation: opacityu1 4s linear;
}

@keyframes opacityu1 {
    0%, 57.5% {
        opacity: 0%;
    }

    58.5% {
        opacity: 100%;
    }
}

#d {
    animation: opacityd 4s linear;
}

@keyframes opacityd {
    0%, 60% {
        opacity: 0%;
    }

    61% {
        opacity: 100%;
    }
}

#iDot,
#iStalk {
    animation: opacityi 4s linear;
}

@keyframes opacityi {
    0%, 62.5% {
        opacity: 0%;
    }

    63.5% {
        opacity: 100%;
    }
}

#micHead {
    animation: bounceMicHead 4s;
}

@keyframes bounceMicHead {

    0% {transform: translateY(350px);
        opacity: 0;}
    7.5%  {transform: translateY(0); opacity: 1; animation-timing-function: ease-in;}
    22.5%, 37.5%, 50% {transform: translateY(0); animation-timing-function: ease-in;}
    15%, 30%, 45% {transform: translateY(350px);}
    92% {transform: scale(1);}
    96% {transform: scale(1.2) translate(-7.3%, -3%);}
    100% {transform: scale(1);}

}

@keyframes swell {
    90%, 100%{
        transform: scale(1);
    }

    95% {
        transform: scale(2);
    }
    
}

#g {
    animation: opacityg 4s linear;
}

@keyframes opacityg {
    0%, 65% {
        opacity: 0%;
    }

    66% {
        opacity: 100%;
    }
}

#u2 {
    animation: opacityu2 4s linear;
}

@keyframes opacityu2 {
    0%, 67.5% {
        opacity: 0%;
    }

    68.5% {
        opacity: 100%;
    }
}

#y {
    animation: opacityy 4s linear;
}

@keyframes opacityy {
    0%, 70% {
        opacity: 0%;
    }

    71% {
        opacity: 100%;
    }
}
.splash_image {
    width: 100%;
    height: 300px;
    background-image: url("../images/SQ-6-Front-High.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}

.portrait-container {
    position: relative;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background-image: url("../images/CraigPortraitBackground.jpg");
    background-repeat:no-repeat;
    background-size:contain;
    overflow: hidden;
}

.portrait-container img {
    margin-bottom: -5px;
}

.bio{
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--agav-dk-grey);
    padding-top: 15px;;
}
.services {
    background-color: black;
    margin-top: 20px;
    text-align: center;
    min-width: 200px;
    flex-grow: 1;
}

.services ul {
    color: var(--white-text);
    padding-bottom: 10px;
}

.button{
    display: inline-block;
    width: 80%;
    padding: 5px 0px;
    /* margin-left: 10%; */
    color: white;
    background-color: var(--agav-red);
}


.contact{
    font-size: 1.3rem;
    color: var(--white-text);
    padding: 20px;
}


input {
    margin-left: auto;
}


.aboutus img {
    width: 100%;
    /* padding: 0px 10px; */
}

.showcase_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.showcase_element {
    padding: 20px 0px;
}
.showcase_element img{
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 5px 5px 5px rgba(97, 97, 97, 0.5);
}

.contactus {
    background-color: var(--white-text);
    text-align: center;
    margin-top: 10px;
}

.contactus h3, .contactus h4{
    padding-top: 10px;
}

.contactus h4{
    padding-bottom: 10px;
}

.telephone{
    padding-top: 10px;
    padding-bottom: 20px;
}

.telephone a{
    font-size: 1.3rem;
    color: var(--agav-red);
}

.partners{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #999;
    /* padding: 30px; */
}

.sponsor{
    width: 200px;
    margin: 10px;
    padding: 10px;
    border-radius: 0.75em;
    transition-duration: 0.3s;
    background: rgb(50,50,50);
    background: linear-gradient(12deg, var(--ah-dk-grey) 50%, var(--ah-yellow) 50%);
}

.sponsor:hover {
    transform: scale(1.025);
    -webkit-box-shadow: 3px 3px 10px 3px #4d4d4d; 
    box-shadow: 3px 3px 10px 3px #4d4d4d;
}

.sponsor:hover .sponsorlogo {
    transform: scale(1.075);
}

.sponsorlogo {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px;
    margin: 10px 0px;
    min-height: 150px;
    background-color: hsl(0 0% 100% / .85);
    border-radius: 5px;
    transition-duration: 0.3s;
    /* border: solid 1px black; */
}

/* .sponsorlogo img{
    max-width: 140px;
} */

.sponsor_title {
    font-weight: 900;
    display: inline-block;
    text-transform: uppercase;
    min-height: 40px;
    color: var(--ah-dk-grey);

}

.sponsor_description,
.sponsor_link {
    display: inline-block;
    min-height: 40px;
    color: var(--ah-yellow);
}

footer{
    font-size: 0.8rem;
    background-color: black;
    color: var(--white-text);
}

footer a {
    color: var(--white-text);
}

.copyright{
    padding: 20px 50px 0px 50px;
}
.website_credit{
    padding: 10px 50px 30px 50px;
}

.copyright {
    margin-right: auto;
}



@media only screen and (min-width: 700px) {

    @keyframes movein {
        0% {
            transform: translateX(-400px);
        }
        
    }

    .splash {
        display: flex;
    }
    .splash_image, .services{
        width: 50%;
    }

    .showcase_section {
        /* display: flex; */
        flex-wrap: nowrap;
        /* justify-content: space-around; */
    }

    .showcase_element {
        margin: 0px 5px;
        /* max-width: 430px; */
    }

    footer{
        display: flex;
    }
    
    .copyright, .website_credit{
        font-size: 0.9rem;
        padding: 20px 50px 30px 50px;
    }
    


}