/*-----------------------*/
/* Link Text and Hover   */
/*-----------------------*/
a {text-decoration:none!important;color:DarkTurquoise!important}
a:hover
{color:PaleTurquoise!important;font-weight: bold;} /* when hovering */
a:focus {
  border: none;
  outline: none;
} /* Remove link Boxes */

/*-----------------------*/
/* Contact form 7 Button */
/*-----------------------*/
 .wpcf7 input[type="submit"] {    color: DarkTurquoise!important;}

.wpcf7 input:hover[type="submit"] {     color:PaleTurquoise!important;
     font-weight: bold; 
 }


/*-----------------------*/
/* Nav Menu Text & hover */
/*-----------------------*/
.wp-block-navigation .wp-block-navigation-item__content {
    color: DarkTurquoise!Important;
}

.wp-block-navigation a.wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
color:#CBCBCB!Important;
    font-weight: bold;
}

/*-----------------------*/
/* Grow Image on hover   */
/*-----------------------*/
.grow img{
transition: 1s ease;
}

.grow img:hover{
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
transition: 1s ease;
}

/*-----------------------*/
/* Moving Slide in Image */
/*-----------------------*/
.moving-image {
    animation-duration: 3s;
    animation-name: slidein;
}
 
@keyframes slidein {
    from {
        margin-left: 100%;
        width: 100%;
    }
     
    to {
        margin-left: 0;
        width: 100%;
    }
}

/*-----------------------*/
/* Greyscale to Color    */
/*-----------------------*/
.color img{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-webkit-transition: all 1s ease;
}

.color img:hover{
filter: grayscale(0%);
filter: gray;
-webkit-filter: grayscale(0%);
filter: none;
transition: 1s ease;
}


/*-----------------------*/
/* Brighten              */
/*-----------------------*/
.brighten img {
-webkit-filter: brightness(50%);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}

.brighten img:hover {
-webkit-filter: brightness(100%);
}

/*-----------------------*/
/* Nav Button EPK        */       
/*-----------------------*/
.su-menu-button a {
background-color: #442369; 
border: none;
line-height: initial;
color: white;
padding: 5px 5px;
border-radius: 25px;
font-size: 12px;
}

/*-----------------------*/
/* Audio Plyr Transparent*/       
/*-----------------------*/
.mejs-controls {
    background: none !important;
}
.wp-audio-shortcode {
  //width: 50% !important;
  background: none !important;
}
