/*!
Theme Name: Discovering Grayslake Podcast

*/

.content .send-button p{
    background-color: var(--main-color);
    color: var(--text-color);
    font-family: inherit;
    padding: 15px 62px 15px 24px;
   
    border-radius: 100px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--main-color);
    overflow: hidden;
    position: relative;
    font-family: 'poppins';
    cursor: pointer;
    position: relative;
    min-width: 210px;
    width: auto;
    
}
.content .send-button input{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    text-align: left;
    padding:15px 62px 15px 24px;
    background: transparent;
    text-transform: uppercase;

    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
	font-family: 'Nunito', sans-serif;
}
.content .send-button .wpcf7-spinner{
    display:none;
} 


.content .send-button .icon {
    background: hsla(0, 0%, 0%, 0.12);
    margin-left: 1em;
    position: absolute;
    height: 46px;
    width: 46px;
    border-radius: 100px;
    box-shadow: inset 0 0 12px hsla(0, 0%, 0%, 0.50);
    right: 0.3em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content .send-button .icon i {
    font-size: 20px;
    transition: transform 0.3s;
    color: var(--text-color);
}


.content .send-button p:hover .icon {
    width: calc(100% - 0.6em);
    background: var(--text-color);
    box-shadow: none;
    z-index: 1;
}
.content .send-button p:hover .icon i {
    color: var(--main-color);
}


.content .send-button p:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 0;
}

.content .send-button p:hover::after{
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.content .send-button p:hover input{
    z-index: 9;
    opacity: 0;
}
.blog-list-img{
    height: 450px;
}
.blog-list-img img{
    object-fit: cover;
}


.navbar-toggler{
    border-color: #fff !important;
}
.navbar-light .navbar-toggler-icon {
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-light .navbar-toggler-icon i {
    color: white;
}   

