body>header {
    background-color: rgb(228, 2, 45);
}
body>header>div:first-child {
    /* height: 85px; */
    height: 80px;
    display: none;
}
.welcome-container {
    position: absolute;
    top: 0px;
    right: 15px;
}
.welcome {
    /* font-family: 'Permanent Marker', cursive; */
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2px;
    padding-top: 12px;
    margin-bottom: 0px;
}
.welcome a {
    /* color: rgb(228, 2, 45); */
    color: white;
}
.welcome a {
  /* background: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(228,2,45,1) 11%, rgba(255,255,255,1) 12%); */
  background: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(200,200,200,1) 11%, rgba(255,255,255,1) 12%);
  background-repeat: no-repeat;
  background-size: 1400%;
  background-position:100%;
  animation: animate 10s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

#Sitetitle {
    margin: 0px;
    padding: 0px;
    position: absolute;
    right: 15px;
    top: 15px;
}
#Sitetitle img {
    height: 50px;
    width: auto;
}
.menubar {
    background-color: rgb(228, 2, 45);
}
body.sticky .menubar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
body.sticky .slick-content {
    margin-top: 60px;
}
body.sticky .content {
    margin-top: 77px;
}
.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 12px;
    /* background-color: #e4022d; */
    font-family: 'Protipo W05', sans-serif;
    font-weight: 500;
}
.navbar .dropdown-menu {
    background-color: rgba(0,0,0, 0.2);
}

.navbar .navbar-nav .nav-link,
.navbar .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,1);
    padding: 10px;
    transition: background-color 200ms ease-in-out;
}
.navbar .dropdown-menu .dropdown-item.active, 
.navbar .dropdown-menu .dropdown-item:active,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .navbar-nav .active>.nav-link, 
.navbar .navbar-nav .nav-link.active, 
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.show, 
.navbar .navbar-nav .show>.nav-link {
    color: rgba(255,255,255,1);
    background-color: rgba(0,0,0,0.4);
}
.navbar-light .navbar-toggler {
    margin: 10px 0px;
    color: rgba(255,255,255,1);
    border-color: rgba(255,255,255,1);
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 576px) {
    
}
@media (min-width: 768px) {
    
}
@media (min-width: 992px) {
    header>div:first-child {
        /* height: 145px; */
    }

    .welcome {
        padding-top: 32px;
        font-size: 40px;
    }
    
    #Sitetitle {
        top: 15px;
        transition: top 500ms;
    }
  
    #Sitetitle img {
        height: 100px;
        transition: height 500ms;
        width: auto;
    }
  
    .navbar .dropdown-menu {
        -webkit-box-shadow: inset 0px 10px 10px -10px rgba(0,0,0,0.5);
        -moz-box-shadow: inset 0px 10px 10px -10px rgba(0,0,0,0.5);
        box-shadow: inset 0px 10px 10px -10px rgba(0,0,0,0.5);
        background-color: rgba(228, 2, 45, 0.8);
        top: 100%;
        margin-top: 0px;
    }
    .navbar-expand-lg .navbar-nav .nav-item .nav-link {
        display: inline-block;
        padding: 10px 15px;
    }
    .nav-link {
        font-size: 16px;
    }
}
@media (min-width: 1200px) {
    .nav-link {
        font-size: 18px;
    }
}