/* Announcement Bar */
.announcement-bar {
	background-color: #DE4836;
	color: #fff;
    display:none;
    @media (min-width: 1000px) {
        display:block;
    }
}
.announcement-bar .inner-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.announcement-bar .text-holder {
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-self: center;
    align-items: center;
    gap: 1rem;
}
.announcement-bar .img-holder {
	height: 63px;
	width: auto;
}
.announcement-bar .img-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.announcement-bar span {
	font-family: 'SF Super 05', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    @media (min-width: 1200px) {
        font-size: 31px;
    }
}
.announcement-bar a {
    color: #FFF;
    font-family: "Dharma Gothic E";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.56px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #FFF;
    &:hover, &:focus {
        text-decoration: none;
        border-bottom: 1px solid transparent;
        opacity: 0.8;
    }
    @media (min-width: 1200px) {
        font-size: 28px;
    }
}
