﻿@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1;
    }
}

.logo {
  order: 0;
  width: 50px;
  height: 50px;
}

    .logo img {
        width: 250px;
        height: 100px;
        margin: 5px 0 0 5px;
    }

.text-logo {
    height: 100px;
   /* margin-left: -210px;*/
}

.swoosh {   
    color: var(--yellow);
}

.text-logo h1 {
    position: relative;
    text-transform: uppercase;
    font-style: italic;
    font-size: 1.50rem;
    margin-top: 15px !important;
}

    /* We create a pseudo element and blur it using the SVG filter. We’ll grab the content from the custom HTML attribute. */

    .text-logo h1:before {
        position: absolute;
        left: 0;
        top: 0;
        content: attr(filter-content);
        filter: url(#motion-blur-filter);
    }

/* We hide the SVG filter element from the DOM as it would take up some space */

svg {
    display: none;
}


/**** Small devices (landscape phones, 576px and up) **/
@media (min-width: 576px) {
    .logo img {
        width: 350px;
        height: 100px;
        margin: 5px 0 0 25px;
    }

}

/**** Medium devices (tablets, 768px and up) **/
@media (min-width: 768px) {
}

/**** Large devices (desktops, 992px and up) **/
@media (min-width: 992px) {
  .logo img {
    width: 350px;
    height: 100px;
    margin: 5px 0 0 75px;
  }

 
}

/**** Extra large devices (large desktops, 1200px and up) **/
@media (min-width: 1200px) {
}
