/* ----- Twitter Section ----- */
section#twitter-feed h1{
    position: relative;
    color: #565656;
    font-family: 'Museo-light', sans-serif;
    font-size: 32px;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
section#twitter-feed h1 span{
    color: #5f8abd;
    display: block;
    font-family: 'Museo-bold', sans-serif;
    text-transform: uppercase;
    padding-top: 10px;
}
section#twitter-feed h1::before{
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #5f8abd;
}
section#twitter-feed h1::after{
    position: absolute;
    content: '';
    bottom: -2px;
    width: 100px;
    left: 0;
    height: 8px;
    background: #5f8abd;
}
section#twitter-feed .tweet-col{
	display: block;
	color: #fff;
	margin-bottom: 20px;
	text-decoration: none;
	transition: 0.3s ease-in-out;
	word-break: break-word;
    font-family: 'Museo-semi-bold', sans-serif;
}
section#twitter-feed .tweet-col .profile-col{
    position: relative;
	margin-bottom: 20px;
}
section#twitter-feed .tweet-col .profile-col .fab{
    position: relative;
    width: 60px;
    height: 60px;
    color: #fff;
    background: #5f8abd;
    border: 2px solid #fff;
    font-size: 32px;
}
section#twitter-feed .tweet-col .profile-col .fab::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section#twitter-feed .tweet-col .tweet{
    position: relative;
}
section#twitter-feed .tweet-col .image{
    position: relative;
	height: 300px;
	background-size: cover;
	background-position: center;
	margin: 10px 0px;
    padding: 10px;
}
section#twitter-feed .tweet-col .image-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(86, 86, 86, 0.4);
    z-index: 0;
    transition: 0.3s;
}
section#twitter-feed .tweet-col:hover .image-overlay{
    background-color: #39306f;
}
section#twitter-feed .tweet-col .image-overlay::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 8px;
    width: 50%;
    background: #7e779e;
    transition: 0.3s;
}
section#twitter-feed .tweet-col:hover .image-overlay::before{
    width: 100%;
}
section#twitter-feed .twitter-btn, section#twitter-feed .news-btn{
    color: #7e779e;
}
section#twitter-feed .twitter-btn:hover, section#twitter-feed .news-btn:hover{
    text-decoration: none;
}
section#twitter-feed .twitter-btn .far, section#twitter-feed .news-btn .far{
    position: relative;
    top: 9px;
    left: 10px;
    color: #5f8abd;
    width: 30px;
    height: 30px;
    border: 2px solid #5f8abd;
    border-radius: 50%;
    font-size: 24px;
    transition: 0.3s;
}
section#twitter-feed .news-btn .far{
    left: -10px !important;
}
section#twitter-feed .news-btn .far::before{
    left: 59% !important;
}
section#twitter-feed .twitter-btn .far::before, section#twitter-feed .news-btn .far::before{
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
section#twitter-feed .twitter-btn:hover .far{
    left: 15px;
}
section#twitter-feed .news-btn:hover .far{
    left: -15px !important;
}

/* ----- Twitter Section END ----- */

/*----- Responsive Styles -----*/
@media(min-width: 768px) {
    section#twitter-feed h1{
        font-size: 38px;
    }
}
@media(min-width: 1024px) {
    section#twitter-feed{
    background: url(../img/welcome-bg.png) no-repeat 0% 0%/500px, url(../img/welcome-bg.png) no-repeat 100% 100%/500px;
    }
    section#twitter-feed h1{
    font-size: 42px;
    }    
    section#twitter-feed .twitter-btn{
    float: right;
    margin-right: 10px;
    }
    section#twitter-feed .news-btn{
    margin-left: 10px;
    }
}
@media(min-width: 1280px) {
    section#twitter-feed{
    background: url(../img/welcome-bg.png) no-repeat 0% 0%/800px, url(../img/welcome-bg.png) no-repeat 100% 100%/800px;
    }    
    section#twitter-feed h1{
    font-size: 48px;
    }
}

