.announcements {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcements .wrapper {
    padding: 0 18px;
}

.announcements .wrapper .announcement-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.announcements .img-cont {
    max-width: 610px;
    padding: 100px 60px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.announcements .img-cont::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
}

.announcements .img-cont .content-section {
    position: relative;
    z-index: 1;
    text-align: center;
}

.announcements .content-section .title-cont {
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.announcements .content-section h4,
.announcements .content-section h4 a {
    font-size: 42px;
    color: #fff;
    line-height: 48px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.announcements .content-section h4 span {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

.announcements .content-section .title-cont::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 53%;
    height: 1px;
    background-color: #fff;
}

.announcements .content-section p {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 35px;
}

.announcements .content-section .learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    background-color: #db6027;
    padding: 9px 18px;
    border-radius: 7px;
    text-transform: uppercase;
}

.announcements .img-cont .close-announcement {
    background-color: transparent;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 640px) {
    .announcements .img-cont {
        padding: 37px 30px 50px;
        max-width: 380px;
    }

    .announcements .img-cont::before {
        top: 8px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .announcements .content-section .title-cont {
        padding-bottom: 13px;
        margin-bottom: 12px;
    }

    .announcements .content-section h4,
    .announcements .content-section h4 a {
        font-size: 26px;
        line-height: 22px;
        letter-spacing: 1px;
    }

    .announcements .content-section h4 span {
        font-size: 13px;
        line-height: 28px;
    }

    .announcements .content-section p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 25px;
    }

    .announcements .content-section .learn-more {
        font-size: 13px;
        font-weight: 400;
        padding: 7px 16px;
    }

    .announcements .img-cont .close-announcement {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}