* {
    margin: 0;
    padding: 0x;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: auto;
    background-color: black;
    color: white;
    overflow-x: hidden;
}

.NewsLetter {
    width: 100vw;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.badg-news {
    background:
        linear-gradient(0deg, #0147FF, #0147FF),
        radial-gradient(63.11% 63.11% at 31.97% 19.67%,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0) 70%);
    background-blend-mode: overlay;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 3px 7px;
    margin-bottom: 5px;
}

.image-container {
    background-image: url("../images/navbar/waves.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
    position: relative;
    padding: 5% 10% 0% 10%;
    display: flex;
    justify-content: space-between;
}

.left-con-news {
    width: 50%;
}

.New-era {
    width: 90%;
}

.right-con-news {
    justify-content: end;
    width: 50%;
}

.mans-tab {
    width: 80%;
    /* height: 80%; */
}

.website-link {
    margin-top: 30px;
    text-align: center;
}

.content {
    padding: 8px 10%;
}

/* ==== RESPONSIVE IMAGE DOWN ==== */
.box-contents {
    font-size: 23px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4vw;
}

.upper-box,
.bottom-box {
    display: flex;
    gap: 3vw;
}

.box-one,
.box-two {
    border-left: 2px solid gray;
    padding: 1.3vw;
    width: 100%;
}

.purpose {
    margin-top: 4vw;
}

.visit {
    padding: 1vw 2vw;
    background:
        linear-gradient(0deg, #0147FF, #0147FF),
        radial-gradient(63.11% 63.11% at 31.97% 19.67%,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0) 70%);
    background-blend-mode: overlay;
    border: none;
    color: white;
    font-size: 16px;
    padding: 6px 12px;
    margin-bottom: 1vw;
}

.visit a {
    text-decoration: none;
}

/* ==== MEDIA QUERIES ==== */
@media(max-width:1200px) {
    .mans-tab {
        width: 100%;
        height: 80%;
    }
}

@media(min-width:1025px) and (max-width:1200) {
    .mans-tab {
        width: 100%;
        height: 80%;
    }
}

@media (max-width: 1024px) {
    .image-container {
        flex-direction: column;
        height: auto;
        padding: 120px 5%;
        text-align: center;
    }

    .content {
        padding: 8px 5%;
    }

    .left-con-news,
    .right-con-news {
        width: 100%;
        /* Full width both sides */
        padding: 0;
    }

    .New-era {
        width: 100%;
        /* Heading full width */
        margin: 0 auto;
    }

    .right-con-news {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .mans-tab {
        width: 80%;
        /* Resize image */
        max-width: 320px;
    }

}

@media (max-width: 991px) {
    .image-container {
        flex-direction: column;
        height: auto;
        padding: 30px 5%;
        text-align: center;
    }

    .left-con-news,
    .right-con-news {
        width: 100%;
        padding: 0;
    }

    .New-era {
        width: 100%;
        /* Heading full width */
        margin: 0 auto;
    }

    .box-contents {
        gap: 0vw;
    }

    .right-con-news {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .mans-tab {
        width: 80%;
        /* Resize image */
        max-width: 320px;
    }

    .upper-box,
    .bottom-box {
        display: flex;
        flex-direction: column;
        gap: 0vw;
    }

    .box-one,
    .box-two {
        border-left: 0px !important;
        padding: 0px;
        margin-bottom: 30px;
    }

    .purpose {
        margin-top: 0px;
    }
}