.announcement_bar {
    background: linear-gradient(90.09deg, #858C73 0.03%, #DE7B5F 214.89%);
}

.announcement_bar .marquee {
    height: 44px;
    align-items: center;
}

.announcement_bar .marquee__item {
    display: flex;
    align-items: center;
}

.announcement_bar p {
    color: rgba(var(--light-white), 1);
    padding-inline: 60px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2%;
}

.announcement_bar svg {
    height: 16px;
    width: 16px;
    fill: rgba(217, 217, 217, 1);
}

/* ==============================
          Header :start
============================== */

.navbar {
    padding-block: 24px;
}

.navbar-brand {
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}


/* ==============================
          Header : end
============================== */


/* ==============================
section-1 :start
============================== */

.home-section-1 {
    background-image: url(../images/landing-page/bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    /* height: 100vh; */
}

.banner-content {
    width: calc(290px + (619 - 290) * ((100vw - 320px) / (1920 - 320)));
}

.banner-content h1 {
    color: rgba(var(--light-white), 1);
}

.banner-content p {
    padding-top: 11px;
    color: rgba(var(--subfont-color), 1);
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
}

.banner-content button {
    padding: 10px 20px;
    margin-top: calc(24px + (60 - 24) * ((100vw - 320px) / (1920 - 320)));
    background-color: rgba(var(--theme-default), 1);
    border-radius: 3px;
    font-size: 20px;
    color: rgba(var(--light-white), 1);
    font-weight: 500;
}

.banner-content button:hover {
    background-color: rgba(var(--theme-default), 1);
    color: rgba(var(--light-white), 1);
}

.banner-images {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* or a fixed height if needed */
}

.banner-images .bg-screen-1 {
    width: 600px;
    height: 603px;
}

.banner-images .bg-screen-2 {
    width: 300;
    height: 351px;
    position: absolute;
    bottom: 15%;
    right: 28px;
    z-index: 4;
    animation: movebounce 3.2s linear infinite;
}

.banner-images .bg-screen-3 {
    width: 300px;
    height: 351px;
    z-index: 2;
    position: absolute;
    top: 25.8%;
    right: 41.6%;
    z-index: 1;
    animation: movebounce 3.2s linear infinite;
}

.banner-images img {
    width: 100%;
}

@keyframes movebounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.header-landing.sticky .navbar {
    padding-block: 10px;
}

.header-landing.sticky .navbar form button {
    background-color: rgba(var(--light-white), 1);
    color: rgba(var(--theme-default), 1);
}

.burger-menu i {
    color: rgba(var(--light-white), 1);
    line-height: 1;
    font-size: 16px;
}

.header-landing .navbar .navbar-toggler:hover .burger-menu i {
    color: rgba(var(--light-white), 1);
}

.header-landing.sticky .navbar .main-nav .navbar-nav .nav-item a {
    color: rgba(var(--light-white), 1);
}

@media screen and (max-width:1400px) {
    .banner-images .bg-screen-1 {
        width: 500px;
        height: unset;
    }

    .banner-images .bg-screen-3 {
        right: 39.6%;
        width: 245px;
        height: unset;
    }

    .banner-images .bg-screen-2 {
        height: unset;
        width: 245px;
    }
}

@media screen and (max-width:1200px) {
    .banner-images .bg-screen-1 {
        width: 360px;
    }

    .banner-images .bg-screen-3 {
        right: 40%;
        top: 18%;
        width: 170px;
    }

    .banner-images .bg-screen-2 {
        bottom: 18%;
        right: 6%;
        width: 170px;
    }
}

@media screen and (max-width:992px) {
    .banner-content {
        width: 100%;
        text-align: center;
    }

    .banner-images .bg-screen-3 {
        top: 45%;
        right: 65%;
        width: 142px;
    }

    .banner-images .bg-screen-2 {
        right: 24%;
        bottom: 14%;
        width: 142px;
    }
}

@media screen and (max-width:768px) {
    .banner-images .bg-screen-3 {
        top: 45%;
        right: 68%;
    }

    .banner-images .bg-screen-2 {
        right: 12%;
        bottom: 12%;
    }
}

@media screen and (max-width:575px) {
    .banner-images .bg-screen-1 {
        width: 310px;
        height: 320px;
    }

    .banner-images .bg-screen-3,
    .bg-screen-2 {
        width: 146px;
        display: none;
    }
}

/* -----bog marquee--- */

.big-marquee-section .marquee {
    overflow: hidden;
    position: relative;
    padding-top: 70px;
    margin-bottom: -30px;
}

.big-marquee-section .marquee__inner {
    display: flex;
    width: max-content;
    animation: scrolling 40s linear infinite;
}

.big-marquee-section .marquee__item {
    flex: 0 0 auto;
    padding: 0 40px;
}

.big-marquee-section .animation-text {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 60px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #fff;
    -webkit-background-clip: text;
    background-image: linear-gradient(26deg, rgb(0, 102, 102), rgba(13, 126, 126, 0.19));
    -webkit-text-stroke: 2px transparent;
    text-align: center;
}

@keyframes scrolling {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ----password-modal----- */
