@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

:root {
    --primary-color: #b1d4f1;
    --overlay-color: #e6dcd3;
    --black-color: #141414;
    --front-color: #f1ddcf;
    --white-color: #ffffff;
    --menu-speed: 1.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    height: fit-content;
    font-family: "Noto Serif Bengali", serif;
    font-family: "Mooli", sans-serif;
    overflow-x: hidden;
    background-color: var(--primary-color);
    scroll-behavior: smooth;

}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.main {
    width: 100%;
    overflow-x: hidden;
    height: auto;
}

/* ANIMATIONS-------------------------------------------------------------------------------- */

/* Navbar------------------------------------------------------------------------------------- */
.navbar {
    width: 100%;
    height: 6em;
    padding: 2em;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Right Side Logo------------------------------------------------------------------- */
.logo img {
    cursor: pointer;
    width: 7rem;
    height: auto;
    transition: all 0.4s ease-in-out;
}

.logo img:hover {
    scale: 1.2;
}

/* MENU STYLES----------------------------------------------------------------------------- */
.menu-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.menu-wrap .toggler {
    position: fixed;
    z-index: 9999999;
    cursor: pointer;
    width: 5.5em;
    height: 5em;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: fixed;
    z-index: 999999;
    width: 4.5em;
    height: 4.5em;
    padding: 1em;
    background: transparent;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line------------------------------------------------------------------------------ */
.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 999;
    top: -10px;
    width: 150%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down---------------------------------------------------------------------------- */
.menu-wrap .hamburger>div::after {
    top: 10px;
}

/* Toggler Animation--------------------------------------------------------------------------- */
.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg);
}

/* Turns Lines Into X----------------------------------------------------------------------------- */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Rotate On Hover When Checked------------------------------------------------------------- */
.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

/* Show Menu----------------------------------------------------------------------------------- */
.menu-wrap .toggler:checked~.menu {
    visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    position: absolute;
    z-index: 9999;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
    background-position: center;
    background-size: cover;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul {
    margin-top: 5em;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 2.2em;
    padding: 0.1em;
    margin-left: -20em;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
    letter-spacing: 7px;
    transition: 0.4s ease-in-out;
}

.menu-wrap .menu>div>div>ul>li>a:hover {
    letter-spacing: 0;
    text-shadow: 0.5px 0.5px 1px var(--black-color);
}

/* Menu Part End-------------------------------------------------------------------------------- */






header {
    text-align: center;
    padding: 1em 4em;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1em;
    color: #664242;
    animation: Color 2s linear infinite;
    -webkit-animation: Color 2s ease-in-out infinite;
    text-shadow: 2px 2px var(--black-color);
}

@keyframes Color {
    0% {
        color: #935727;
    }

    25% {
        color: #cfc4b1;
    }

    50% {
        color: #141414;
    }

    75% {
        color: #676127;
    }

    100% {
        color: #803407;
    }
}


.news-body {
    width: 100%;
    height: auto;
    padding: 0 2em;
    position: relative;
}

.container {
    width: 100%;

}

.container p {
    width: 90%;
    height: fit-content;
    padding: 2em;
    margin: 0 auto;
    margin-bottom: 1em;
    font-size: 1.2em;
    text-align: justify;
    transition: all 0.4s ease-in-out;
    -webkit-box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 88px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0.5em;
}


.paper-image {
    width: 100%;

}

.img-container {
    margin: 0 auto;
    width: 100%;
    padding: 1em 2em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.container__img-holder {
    cursor: pointer;
}

.container__img-holder img {
    width: 250px;
    height: 180px;
    display: block;
    border-radius: 0.5em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


/* Popup Styling */
.img-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.img-popup img {
    width: 80vw;
    height: 98vh;
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}

.close-btn {
    width: 35px;
    height: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.close-btn .bar {
    height: 4px;
    background: var(--primary-color);
}

.close-btn .bar:nth-child(1) {
    transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.opened {
    display: flex;
}

.opened img {
    animation: animatepopup 1s ease-in-out .8s;
    -webkit-animation: animatepopup .3s ease-in-out forwards;
}

@keyframes animatepopup {

    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

}


.last-sec {
    padding: 2em 6em;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.left {
    border-radius: 0.5em;
    width: 100%;
    height: auto;
    background-color: #4f5464;
    /* backdrop-filter: blur(250px); */
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.left:hover {
    box-shadow: 1px 1px 10px 2px #000000;
    background-color: var(--black-color);
}

.left .header-img>img {
    width: 100%;
    height: 22em;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 0.4em;
    border-top-right-radius: 0.4em;
    transition: all 0.5s ease-in-out;
}

.left:hover .header-img>img {
    scale: 1.02;
}

.header-text {
    display: flex;
    flex-direction: column;
    margin: 2em 0;
    padding: 0 2em;
    justify-content: center;
    align-items: center;
}

span.header-title {
    width: 100%;
    font-size: 1.2em;
    margin-bottom: 1em;
    text-transform: uppercase;
    color: #cccccc;
    transition: all 0.5s ease-in-out;
}

.left:hover .header-title {
    color: #ffffb1;
    text-decoration: underline;
}

.header-text p {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 1em 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


#container {
    width: 100%;
    margin: 0 auto;
    justify-content: start;
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 3s;
}

.button {
    position: absolute;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    width: 150px;
    margin-top: 2em;
    border-radius: 0.5em;
    border: 2px solid #cccccc;
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1em;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.button a {
    color: #cccccc;
    text-decoration: none;
    letter-spacing: 1px;
}

#button-2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#button-2 a {
    position: relative;
    transition: all .35s ease-Out;
}

#slided {
    width: 100%;
    height: 100%;
    left: -400px;
    background: #ccc;
    position: absolute;
    transition: all .35s ease-Out;
    bottom: 0;
}

#button-2:hover #slided {
    left: 0;
}

#button-2:hover a {
    color: var(--black-color);
}







/* Footer Part Start---------------------------------------------------------------------------------- */
.footer {
    width: 100%;
    background-color: #141414;
    color: var(--primary-color);
    padding: 2em 4em;
}

.footer-logo img {
    cursor: pointer;
    width: 7em;
    transition: all 0.4s ease-in-out;
}

.footer-logo img:hover {
    scale: 1.2;
}

.footer-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-content {
    margin: 2em 0;
    display: flex;
    justify-content: space-between;
}

.footer-menu {
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    align-items: center;
    display: inline-block;
    margin-top: 1em;
    margin-right: 3em;
    color: var(--primary-color);
}

.footer-menu li:last-child {
    margin-right: 0;
}

.footer-menu a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.footer-menu a:hover {
    color: var(--overlay-color);
    text-shadow: 0px 0px 5px var(--overlay-color);
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    margin-top: 1em;
    display: inline-block;
    margin-right: 2em;
}

.social-icons li:last-child {
    margin-right: 0;
}

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5em;
    transition: all 0.4s ease-in-out;
}

.social-icons a:hover {
    color: var(--overlay-color);
    text-shadow: 0px 0px 8px var(--overlay-color);
}

.footer-bottom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--front-color);
    font-size: 0.8em;
}

.footer-bottom p a {
    text-decoration: none;
    color: var(--front-color);
}

.footer-bottom p a:hover {
    color: var(--primary-color);
}

/* Footer Part End------------------------------------------------------------------------------- */




@media only screen and (min-width:200px) and (max-width:321px) {

    /* CSS styles for extra small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 4em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 4em;
        height: 2em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 3.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -8px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 8px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 6.5em 15em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.1em;
        font-size: 1.5em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 1em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 0.5em;
        font-size: 0.8em;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 1.2em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        padding: 0;
    }

    .container__img-holder img {
        width: 300px;
        height: 200px;
    }

    .img-popup img {
        width: 95vw;
        height: 40vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 20px;
        right: 5px;

    }

    .close-btn .bar {
        height: 1.5px;
    }


    .last-sec {
        padding: 1em;
        flex-direction: column;
        gap: 1em;
    }


    .left .header-img>img {
        width: 100%;
        height: 12em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 0 1em;
        text-align: center;
    }

    span.header-title {
        width: 100%;
        font-size: 1em;
        margin-bottom: 0.5em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 0.7em;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 30px;
        width: 120px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 0.8em;
    }



    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width:321px) and (max-width:376px) {

    /* CSS styles for small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 4em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 4em;
        height: 2em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 3.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -8px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 8px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 9em 15em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.2em;
        font-size: 1.8em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */



    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 1em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 0.5em;
        font-size: 1rem;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 1.5em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        padding: 0;
    }

    .container__img-holder img {
        width: 300px;
        height: 200px;
    }

    .img-popup img {
        width: 95vw;
        height: 45vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 20px;
        right: 5px;

    }

    .close-btn .bar {
        height: 1.5px;
    }


    .last-sec {
        padding: 1em;
        flex-direction: column;
        gap: 1em;
    }


    .left .header-img>img {
        width: 100%;
        height: 12em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 0 1em;
        text-align: center;
    }

    span.header-title {
        width: 100%;
        font-size: 1.2rem;
        margin-bottom: 0.5em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 30px;
        width: 120px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 0.8em;
    }


    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width:377px) and (max-width:426px) {

    /* CSS styles for small devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 4em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 5em;
        height: 2.5em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 4em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -9px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 9px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 10em 18em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.2em;
        font-size: 2em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */



    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 1em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 0.7em;
        font-size: 1rem;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 1.5em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        padding: 0;
    }

    .container__img-holder img {
        width: 320px;
        height: 200px;
    }

    .img-popup img {
        width: 95vw;
        height: 48vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 20px;
        right: 5px;

    }

    .close-btn .bar {
        height: 1.5px;
    }


    .last-sec {
        padding: 1em;
        flex-direction: column;
        gap: 1em;
    }


    .left .header-img>img {
        width: 100%;
        height: 12em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 0 1em;
        text-align: center;
    }

    span.header-title {
        width: 100%;
        font-size: 1.2rem;
        margin-bottom: 0.5em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 35px;
        width: 120px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 0.9em;
    }


    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width: 426px) and (max-width:597px) {

    /* CSS styles for minitab devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 4em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 5em;
        height: 2.5em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 4em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -9px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 9px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 48.JPG);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 6.5em 15em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.1em;
        font-size: 1.5em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */


    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 1em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 0.5em;
        font-size: 0.8em;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 1.5em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0 auto;
        flex-wrap: wrap;
        align-items: center;
        gap: 1em;
        padding: 1em;
    }

    .container__img-holder img {
        width: 274px;
        height: 200px;
    }

    .img-popup img {
        width: 95vw;
        height: 60vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 20px;
        right: 5px;

    }

    .close-btn .bar {
        height: 1.5px;
    }


    .last-sec {
        padding: 1em;
        gap: 1em;
    }

    .left {
        height: 25em;
    }

    .left .header-img>img {
        width: 100%;
        height: 12em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 0 1em;
        text-align: center;
    }

    span.header-title {
        width: 100%;
        font-size: 1em;
        margin-bottom: 1em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 0.7em;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 30px;
        width: 120px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 0.8em;
    }



    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: row;
        gap: 1em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width: 598px) and (max-width:769px) {

    /* CSS styles for tablet devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 4em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 5em;
        height: 2.5em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 4em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -9px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 9px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 5em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.1em;
        font-size: 1.5em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */



    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 1em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 0.5em;
        font-size: 0.8em;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 1.5em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0 auto;
        flex-wrap: wrap;
        align-items: center;
        gap: 1em;
        padding: 1em;
    }

    .container__img-holder img {
        width: 234px;
        height: 180px;
    }

    .img-popup img {
        width: 95vw;
        height: 70vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 20px;
        right: 5px;

    }

    .close-btn .bar {
        height: 1.5px;
    }


    .last-sec {
        padding: 1em;
        gap: 1em;
    }

    .left {
        height: 25em;
    }

    .left .header-img>img {
        width: 100%;
        height: 12em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 0 1em;
        text-align: center;
    }

    span.header-title {
        width: 100%;
        font-size: 1em;
        margin-bottom: 1em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 0.7em;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 30px;
        width: 120px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 0.8em;
    }




    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-menu {
        padding-bottom: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: row;
        gap: 3em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-bottom: 2rem;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width: 769px) and (max-width:1024px) {

    /* CSS styles for laptop devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 4em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 6em;
        height: 3em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1.7em;
        left: 1.2em;
        width: 3em;
        height: 2.8em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 4em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -9px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 9px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 4em 3em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.1em;
        font-size: 1.7em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 2em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 1em;
        font-size: 1em;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 1.8em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0 auto;
        flex-wrap: wrap;
        align-items: center;
        gap: 1em;
        padding: 1em;
    }

    .container__img-holder img {
        width: 234px;
        height: 180px;
    }

    .img-popup img {
        width: 95vw;
        height: 85vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 10px;
        right: 1px;

    }

    .close-btn .bar {
        height: 2px;
    }


    .last-sec {
        padding: 1em;
        gap: 1em;
    }


    .left .header-img>img {
        width: 100%;
        height: 15em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 0 1em;
    }

    span.header-title {
        width: 100%;
        font-size: 1em;
        margin-bottom: 1em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 0.7em;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 30px;
        width: 120px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 0.8em;
    }


    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: 1.5em;
        justify-content: space-evenly;
    }

    .footer-menu {
        padding-top: 1rem;
        justify-content: center;
        display: flex;
        flex-direction: row;
        gap: 1.5em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1rem;
    }

    .social-icons {
        padding-top: 1rem;
        align-items: center;
        gap: 1em;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width: 1025px) and (max-width:1440px) {

    /* CSS styles for large laptop devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 6em;
        padding: 0.5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 1rem;
        top: 1.5em;
        width: 7em;
        height: 4em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 0.7em;
        left: 1.1em;
        width: 4.5em;
        height: 5em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 1em;
        left: 0.5em;
        width: 4.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -10px;
        width: 150%;
        height: 1.5px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 10px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 6em 3em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.15em;
        font-size: 2.2em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */

    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 2.8rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 2em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 1.5em;
        font-size: 1.2em;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 2em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0 auto;
        flex-wrap: wrap;
        align-items: center;
        gap: 1em;
        padding: 1em;
    }

    .container__img-holder img {
        width: 260px;
        height: 200px;
    }

    .img-popup img {
        width: 85vw;
        height: 98vh;
    }

    .close-btn {
        width: 25px;
        height: 20px;
        top: 20px;
        right: 5px;

    }

    .close-btn .bar {
        height: 2px;
    }


    .last-sec {
        padding: 2em;
        gap: 2em;
    }


    .left .header-img>img {
        width: 100%;
        height: 20em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 1.5em 0;
        padding: 0 1.5em;
    }

    span.header-title {
        width: 100%;
        font-size: 1.5em;
        margin-bottom: 1em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 1em;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 40px;
        width: 140px;
        margin-top: 1em;
        border-radius: 0.5em;
        border: 1px solid #cccccc;
        font-size: 1em;
    }




    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 1em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 7em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: row;
        padding: 1em 3em;
        justify-content: space-between;
    }

    .footer-menu {
        padding-top: 1rem;
        justify-content: center;
        display: flex;
        flex-direction: row;
        gap: 3em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 1.1rem;
    }

    .social-icons {
        padding-top: 1rem;
        align-items: center;
        gap: 3em;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2em;
    }

    .footer-bottom p {
        color: var(--front-color);
        font-size: 0.8em;
        font-weight: 500;
        text-align: center;
    }

}

@media only screen and (min-width: 1441px) and (max-width:2561px) {

    /* CSS styles for 4k devices */
    /* Navbar------------------------------------------------------------------------------------- */
    .navbar {
        width: 100%;
        height: 10em;
        padding: 2em 5em;
        position: relative;
    }

    /* Navbar Right Side Logo------------------------------------------------------------------- */
    .logo img {
        position: fixed;
        right: 8rem;
        top: 2em;
        width: 12em;
        height: 7em;
    }

    /* MENU STYLES----------------------------------------------------------------------------- */
    .menu-wrap .toggler {
        position: fixed;
        top: 1em;
        left: 5em;
        width: 9.5em;
        height: 9em;
        opacity: 0;
    }

    /* Hamburger Line------------------------------------------------------------------------------ */
    .menu-wrap .hamburger {
        position: fixed;
        top: 3em;
        left: 5em;
        width: 6.5em;
        height: 3.5em;
    }

    /* Hamburger Lines - Top & Bottom----------------------------------------------------------- */
    .menu-wrap .hamburger>div::before,
    .menu-wrap .hamburger>div::after {
        top: -20px;
        width: 150%;
        height: 3px;
    }

    /* Moves Line Down---------------------------------------------------------------------------- */
    .menu-wrap .hamburger>div::after {
        top: 20px;
    }

    .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-wrap .menu>div {
        position: fixed;
        z-index: 9999999;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: scale(0);
        transition: all 0.4s ease;
    }

    .menu-wrap .menu>div>div {
        text-align: center;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        position: fixed;
        background-image: url(./Assets/Images/Working/Image\ -\ 34.jpg);
        background-position: center;
        background-size: cover;
        transition: opacity 0.4s ease;
    }

    .menu-wrap .menu>div>div>ul {
        width: 100%;
        margin: 8em 4em;
        text-align: center;
    }

    .menu-wrap .menu>div>div>ul>li {
        list-style: none;
        color: #ffffff;
        font-weight: 500;
        padding: 0.15em;
        font-size: 4em;
    }

    /* Menu Part End-------------------------------------------------------------------------------- */


    header {
        text-align: center;
        padding: 0.5em;
    }

    header h1 {
        font-size: 5rem;
        margin-bottom: 0.5em;
    }

    .news-body {
        padding: 0 2em;
    }

    .container {
        width: 100%;

    }

    .container p {
        width: 100%;
        padding: 1.5em;
        font-size: 2em;
        font-weight: 600;
    }

    .paper-image {
        width: 100%;
    }

    .paper-image>header>h1 {
        font-size: 3.5em;
        margin-left: 0;
        text-align: center;
        text-shadow: 1px 1px var(--black-color);
    }

    .img-container {
        top: 0;
        left: 0;
        margin: 0 auto;
        flex-wrap: wrap;
        align-items: center;
        gap: 2em;
        padding: 2em;
    }

    .container__img-holder img {
        width: 473px;
        height: 380px;
    }

    .img-popup img {
        width: 92vw;
        height: 90vh;
    }

    .close-btn {
        width: 45px;
        height: 40px;
        top: 40px;
        right: 1px;

    }

    .close-btn .bar {
        height: 4px;
    }


    .last-sec {
        padding: 2em;
        gap: 2em;
    }


    .left .header-img>img {
        width: 100%;
        height: 40em;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        margin: 2em 0;
        padding: 0 2em;
    }

    span.header-title {
        width: 100%;
        font-size: 2.5em;
        margin-bottom: 1em;
    }

    .header-text p {
        color: #cccccc;
        font-size: 2em;
        line-height: 1.5;
        margin: 0;
    }

    .button {
        height: 80px;
        width: 320px;
        margin-top: 2em;
        border-radius: 0.5em;
        border: 2px solid #cccccc;
        font-size: 2em;
    }




    /* Footer Part================================ */

    .footer {
        background-color: #141414;
        padding: 2em 3em;
    }

    .footer-logo {
        align-self: center;
        padding-bottom: 1rem;
    }

    .footer-logo img {
        width: 17em;
    }

    .footer-content {
        margin: 0;
        display: flex;
        flex-direction: row;
        padding: 1em;
        justify-content: space-between;
    }

    .footer-menu {
        padding-top: 2rem;
        justify-content: center;
        display: flex;
        flex-direction: row;
        gap: 4em;
    }

    .footer-menu li {
        align-items: center;
        display: block;
        margin: 0em;
        padding: 0;
    }

    .footer-menu a {
        padding: 0;
        margin: 0;
        font-size: 2.8rem;
    }

    .social-icons {
        padding-top: 3rem;
        align-items: center;
        gap: 4em;
        display: flex;
    }

    .social-icons li {
        margin: 0em;
        display: block;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .social-icons li a {
        font-size: 3em;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap-reverse;
        justify-content: center;
        align-items: center;
        gap: 2em;
    }

    .footer-bottom p {
        margin: 0.5em;
        color: var(--front-color);
        font-size: 2.2em;
        font-weight: 500;
        text-align: center;
    }

}