/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Balerno-Regular:wght@200;300;400;500;600;700&display=swap');

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Poppins:wght@200;300;400;500;600;700&display=swap');


/* FONTS FAMILY
 @font-family: 'Antic Didone', serif;
 @font-family: 'Balerno-Regular', sans-serif;
 @font-family: 'Gambetta', serif;
 */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800);
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);


 @font-face{
    font-family: Balerno-Regular;
    src: url(../Fonts/Balerno-Serif-Family/Balerno-Rg.otf);
 }


* {
    box-sizing: border-box;
}

/*::-webkit-scrollbar {
    display: none;
}*/

a {
    text-decoration: none !important;
}


html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
    margin: 0;
}

.desktophide {
    display: none;
}

@media only screen and (max-width: 600px) {
    .new {
        display: flex;
        flex-flow: column-reverse;
    }

    .mobilehide {
        display: none;
    }

    .mobileshow {
        display: block;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}


/*-------------------------------------------------------- NAVBAR ----------------------------------------------*/
.first-order1 {
    font-family: 'Gambetta';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
}


.first-order {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
}

.nav-hover .first-order:hover {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
    text-decoration: underline !important;
    transition: 0.2s ease-out;
}


/* .nav-hover:hover{
    text-decoration: underline;
    text-decoration-color: red !important;
} */


.navbar-bg {
    background: #FFFFFF;
    opacity: 0.95;
}

@media screen and (min-width:768px) {
    .navbar-brand-centered {
        position: absolute;
        left: 50%;
        display: block;
        width: 160px;
        text-align: center;
    }

    .navbar > .container .navbar-brand-centered,
    .navbar > .container-fluid .navbar-brand-centered {
        margin-left: -80px;
    }
}


/* CORE STYLES */
:root {
    /* --primary-color: rgba(13, 110, 139, 0.75); */
    --overlay-color: rgba(24, 39, 51, 0.85);
    --menu-speed: 0.75s;
}


.showcase {
    color: #fff;
    height: 100vh;
}

    .showcase:before {
        content: '';
        background: url(../img/istockphoto-508019156-640_adpp_is\ 1.png) no-repeat center center/cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .showcase .showcase-inner {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: center;
        text-align: center;
        height: 100%;
    }

/* .showcase h1 {
     font-size: 4rem;
 } */

/* .showcase p {
    font-size: 1.3rem;
  } */

.btn {
    display: inline-block;
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.3rem;
    margin-top: 1rem;
    transition: opacity 1s ease-in-out;
    text-decoration: none;
}

    .btn:hover {
        opacity: 0.7;
    }

/* MENU STYLES */
.menu-wrap {
    top: 0;
    left: 0;
    z-index: 1;
}

    .menu-wrap .toggler {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        cursor: pointer;
        width: 50px;
        height: 50px;
        opacity: 0;
    }

    .menu-wrap .hamburger {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 60px;
        height: 70px;
        padding: 1rem;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        /* Hamburger Line */
        .menu-wrap .hamburger > div {
            position: relative;
            flex: none;
            width: 100%;
            height: 2px;
            background: #323232;
            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: 1;
                top: -10px;
                width: 100%;
                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;
            }

.nav-menu-bg-1 {
    content: url(../img/nav-menu-bg.png);
    object-fit: contain;
    background-repeat: no-repeat;
}



.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 {
        background: #986C50;
        height: 100vw;
        display: flex;
        flex: none;
        align-items: center;
        justify-content: center;
        transform: scale(0);
        transition: all 0.4s ease;
    }

        .menu-wrap .menu > div > div {
            text-align: center;
            max-width: 90vw;
            max-height: 100vh;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

            .menu-wrap .menu > div > div > ul > li {
                list-style: none;
                color: #fff;
                font-size: 1.5rem;
                padding: 1rem;
            }

                .menu-wrap .menu > div > div > ul > li > a {
                    color: inherit;
                    text-decoration: none;
                    transition: color 0.4s ease;
                }


.product-page-bg {
    background: #ffffff;
}



.btn-top4-signup {
    cursor: pointer;
    clear: both;
    padding: 12px 50px;
    display: inline-block;
    margin: 0 20px;
    transition: all 0.8s, color 0.3s 0.3s;
    cursor: pointer;
    background: #F6BB3A;
}

/* .btn-top4-signup:hover {
     cursor: pointer;
     clear: both;
     padding: 12px 50px;
     display: inline-block;
     margin: 0 20px;
     transition: all 0.8s, color 0.3s 0.3s;
     cursor: pointer;
     border: 1.5px solid #F0252F;
     margin-left: -1px;
 }

 a:hover,
 .btn-top4-signup:hover {
     color: rgb(217, 43, 43);
 }

 .btn-top3-signup:hover {
     box-shadow: 0 150px 0 0 rgba(240, 37, 47, 1)inset;
 } */

.viewalll1-signup {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-decoration-line: underline;
    color: #07060C;
}

.viewalll1-signup1 {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-decoration-line: underline;
    color: #07060C;
}

.signup-text1 {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 10px;
    letter-spacing: -0.02em;
    color: #07060C;
}


.signup-text {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #07060C;
}

.signup-form {
    background-color: #FFFFFF;
    border: 0.705598px solid #07060C;
    border-radius: 8px;
}



.promise-text1-signup {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #07060C;
}

.promise-text2-signup {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #343230;
}


/* MOBILE SCREEN */
@media only screen and (max-width: 600px) {

    .promise-text1-signup {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 22px;
        color: #07060C;
    }

    .promise-text2-signup {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        color: #343230;
    }
}




/*------------------------------------------------------- FOOTER -------------------------------------------------------*/
.footer-bg {
    background: #0F0F33;
}

.footer-text {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #ffffff;
}


.newstext1 {
    font-family: 'Balerno-Regular';
    .promise-text2-signup font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: 0.02em;
    color: #ffffff;
    background-color: transparent;
}

.form-control-footer {
    background: #0F0F33;
}

.newstext2 {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.newletter1 {
    border: 1px solid #ffffff;
    border-radius: 0px;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.btn-primary1 {
    background: #F6BB3A;
    border-radius: 0px;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #07060C;
    margin-top: -1px;
}

    .btn-primary1:hover {
        background: #F6BB3A;
        border-radius: 0px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #07060C;
        margin-top: -1px;
    }


/* .btn-primary1:hover {
     background: rgb(178, 118, 80);
     color: #fff;
 } */


.footer-bg2 {
    background: #0C0C29;
    border-radius: 18px;
}

.section-head {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.footer,
li {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.rightreserved {
    font-family: 'Gambetta';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.rightreserved1 {
    font-family: 'Gambetta';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-decoration-line: underline !important;
    color: #ffffff;
}

    .rightreserved1:hover {
        color: #ffffff;
    }

.flex-column li .nav-link {
    color: #ffffff;
    ;
}

    .flex-column li .nav-link:hover {
        color: #ffffff;
    }

.aligned {
    display: flex;
    align-items: center;
}


#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

    #btn-back-to-top .btn {
        background-color: none !important;
    }

.scroll-top {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #000000;
}

.btn-top {
    background-color: none;
}

.newsletter-align {
    margin-left: 10rem;
}




/* MOBILE SCREEN */
@media only screen and (max-width: 600px) {
    .btn-primary1 {
        background: #F6BB3A;
        border-radius: 0px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 21px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #07060C;
        margin-top: 20px;
    }

    .newsletter-align {
        margin-left: 0rem;
    }
}
/*------------------------------------------------------- FOOTER -------------------------------------------------------*/




/*------------------------------------------------------- NAV & HEADER -------------------------------------------------------*/
.first-order {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
}

    .first-order:hover {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
        text-decoration: none!important;
        color: #07060C;
    }

.first-order {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
}

.nav-hover .first-order:hover {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
    text-decoration: none !important;
}


.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #07060C;
}

    .hover-underline-animation:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #07060C;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }




.callout {
    position: relative;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}


.nav-menu-bg-1 {
    content: url(../img/nav-menu-bg.png);
    object-fit: contain;
    background-repeat: round;
    height: 100vh;
    width: fit-content;
}



.nav-menu-text {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #07060C;
}


    .nav-menu-text:hover {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 38px;
        color: #07060C;
    }

/*------------------------------------------------------- NAV & HEADER -------------------------------------------------------*/




.newletter1 {
    border: 1px solid #ffffff;
    border-radius: 0px;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #ffffff;
}



.btn-primary1 {
    background: #F6BB3A;
    border-radius: 0px;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #07060C;
    margin-top: -1px;
}

    .btn-primary1:hover {
        background: #F6BB3A;
        border-radius: 0px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #07060C;
        margin-top: -1px;
    }

/* MOBILE SCREEN */
@media only screen and (max-width: 600px) {
    .btn-primary1 {
        background: #F6BB3A;
        border-radius: 0px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #07060C;
        margin-top: 20px;
    }

    .newsletter-align {
        margin-left: 0rem;
    }
}

.nav-menu-bg-1 {
    content: url(../New-IMG/New-homepgae/new-menu.webp);
    object-fit: contain;
    background-repeat: round;
    height: 100vh;
    width: fit-content;
}

.footer-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #ffffff;
}

.footer,
li {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.newstext2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .newstext2 {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        text-align: center;
        color: #ffffff;
    }
}