        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        
        body {
            width: 100%;
            height: 100%;
            font-family: "Montserrat", sans-serif;
        }
        
        a {
            text-decoration: none;
        }
        
        ul,
        li {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
        }
        
        .container-fluid,
        .container {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .row {
            margin-left: -15px;
            margin-right: -15px;
        }
        
        .row>* {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        @media(min-width:1450px) {
            .container {
                max-width: 1330px;
            }
        }
        
        @media(min-width:1550px) {
            .container {
                max-width: 1430px;
            }
        }
        
        @media(min-width:1650px) {
            .container {
                max-width: 1530px;
            }
        }
        
        @media(min-width:1750px) {
            .container {
                max-width: 1630px;
            }
        }
        
        .sub-heading h2 {
            font-size: 56px;
            margin-bottom: 15px;
            color: #000;
        }
        
        .sub-heading p {
            font-size: 22px;
            line-height: 32px;
            color: #000;
        }
        /*TopBar Css*/
        
        .top-bar {
            background-color: #fffff4;
            padding: 20px 0;
        }
        
        .top-bar .tpbr-link {
            display: inline-block;
            color: #000;
        }
        
        .top-bar-logo {
            display: inline-block;
        }
        
        .top-bar-logo img {
            width: 150px;
        }
        /*Header Css*/
        
        .theme-header {
            background-color: #fffff4;
            width: 100%;
        }
        
        .theme-header .navbar-brand {
            display: none;
        }
        
        .theme-header .navbar {
            padding: 20px 0;
            border-top: 1px solid #e8e8de;
            border-bottom: 1px solid #e8e8de;
        }
        
        .theme-header .container-fluid {
            padding-left: 30px;
            padding-right: 30px;
        }
        
        .theme-header .nav-link {
            font-size: 16px;
            color: #000;
            padding: 0!important;
            margin: 0 15px;
        }
        
        .theme-header .dropdown-menu {
            border-radius: 0;
            padding: 15px;
            border: none;
        }
        
        .theme-header .dropdown-menu li a {
            font-size: 16px;
            color: #000;
            white-space: nowrap;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .theme-header .dropdown-menu li:last-child a {
            margin-bottom: 0;
        }
        
        .theme-header .navbar .navbar-toggler {
            width: 46px;
            height: 50px;
            padding: 0 10px;
            border-radius: 4px;
            text-align: center;
            border: none;
            outline: none;
            z-index: 110;
            background-color: transparent;
            box-shadow: none;
        }
        
        .theme-header .navbar .navbar-toggler span {
            width: 29px;
            height: 3px;
            background: #000;
            display: block;
            margin: 3px auto 3px auto;
            position: relative;
            top: 0;
            opacity: 1;
            float: right;
            transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
            border-radius: 10px;
        }
        
        .theme-header .navbar .navbar-toggler span:nth-child(2) {
            width: 25px;
        }
        
        .theme-header .navbar .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg);
            position: relative;
            top: 9px;
        }
        
        .theme-header .navbar .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }
        
        .theme-header .navbar .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg);
            position: relative;
            top: -9px;
        }
        
        .theme-header.sticky-header {
            background-color: #fff;
            box-shadow: 0 3px 7px rgba(0, 0, 0, .15);
            position: fixed;
            left: 0;
            top: 0;
            animation: headerSlideDown .95s ease 0s 1 normal forwards running;
            z-index: 99;
        }
        
        .theme-header.sticky-header .navbar-brand {
            display: inline-block;
        }
        
        .theme-header.sticky-header .navbar-brand img {
            width: 100px;
        }
        
        @keyframes headerSlideDown {
            0% {
                margin-top: -15rem
            }
            to {
                margin-top: 0
            }
        }
        
        @media(max-width:991px) {
            .theme-header .navbar-collapse {
                flex-basis: 100%;
                flex-grow: 1;
                align-items: center;
                background-color: #fff;
                padding: 20px;
            }
            .theme-header .nav-link {
                font-size: 18px;
                margin: 5px 0px;
                color: #000!important;
            }
            .theme-header .h-social-lnks .tel-link {
                color: #000!important;
            }
        }
        
        .slick-prev-custom,
        .slick-next-custom {
            color: #0c143a;
            border: none;
            font-size: 3rem;
            cursor: pointer;
            background-color: transparent;
            outline: none;
        }
        
        .slick-prev-custom {
            position: absolute;
            top: 50%;
            left: -100px;
            z-index: 1;
            transform: translateY(-50%);
        }
        
        .slick-next-custom {
            position: absolute;
            top: 50%;
            z-index: 1;
            transform: translateY(-50%);
            right: -100px;
        }
        /*Footer Css*/
        
        .theme_ftr {
            background-color: #f7f7f7;
            padding-top: 60px;
            padding-bottom: 80px;
        }
        
        .theme_ftr .theme_ftr_logo {
            width: 180px;
            margin-bottom: 20px;
        }
        
        .theme_ftr_itm p {
            font-size: 20px;
            line-height: 34px;
            color: #000;
        }
        
        .theme_ftr_itm p i {
            margin-right: 15px;
            font-size: 22px;
            margin-top: 5px;
        }
        
        .theme_ftr_itm h4 {
            color: #000;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .theme_ftr_itm ul li a {
            display: inline-block;
            color: #000;
            margin-bottom: 10px;
        }
        
        .copy_right_txt {
            background-color: #2b2b2b;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        .copy_right_txt p {
            font-size: 16px;
            color: #fff;
        }
        
        .copy-right-social-lnks {
            display: flex;
            justify-content: center;
            column-gap: 15px;
        }
        
        .copy-right-social-lnks a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            color: #2b2b2b;
            font-size: 20px;
            background-color: #fff;
            border-radius: 50%;
        }
        
        .copy_right_txt ul {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .copy_right_txt ul li {
            margin-left: 20px;
        }
        
        .copy_right_txt ul li a {
            font-size: 16px;
            color: #fff;
        }
        /*Footer Css*/
        /* Home Page Banner*/
        
        .hmg-bnr-home {
            padding-top: 160px;
            padding-bottom: 90px;
            background-color: #fffff4;
            background-image: url('../images/hmg-bnr-home-img.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }
        
        .hmg-bnr-home h1 {
            font-size: 66px;
            display: inline-block;
            color: #000;
            background-color: rgb(255 255 229 / 50%);
            font-family: "Cormorant", serif;
            font-weight: 600;
            text-align: center;
            max-width: 600px;
            padding: 20px;
            margin: auto;
            margin-bottom: 100px;
        }
        
        .hmg-bnr-home p {
            font-size: 22px;
            color: #000;
            max-width: 600px;
            margin: auto;
        }
        
        .fnd-perfect-section {
            background-image: url(../images/fnd-perfect-img.jpg);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        
        .fnd-perfect-section .form-select {
            background-color: rgb(0 0 0 / 50%);
            color: #6f6f6f;
            border: 1px solid #6f6f6f;
            box-shadow: none;
            height: 56px;
            padding: 10px 20px;
            border-radius: 30px;
        }
        
        .fnd-perfect-section .show-my-gift {
            background-color: rgb(0 0 0 / 50%);
            color: #6f6f6f;
            border: 1px solid #6f6f6f;
            box-shadow: none;
            height: 56px;
            padding: 10px 20px;
            border-radius: 30px;
            width: 100%;
        }
        
        .bst-seling-section {
            padding-top: 100px;
            padding-bottom: 100px;
        }
        
        .bst-seling-section .nav-tabs {
            justify-content: center;
            border: none;
            column-gap: 20px;
            padding-top: 20px;
            margin-bottom: 40px;
        }
        
        .bst-seling-section .nav-tabs .nav-item .nav-link {
            background-color: #dadada;
            color: #000;
            border: none;
            font-size: 20px;
            padding-left: 30px;
            padding-right: 30px;
            border-radius: 30px;
            height: 56px;
            min-width: 200px;
        }
        
        .bst-seling-section .nav-tabs .nav-item .nav-link.active {
            background-color: #ffeec7;
            color: #070707;
        }
        
        .bst-slng-itm-img img {
            height: 600px;
            object-fit: cover;
            object-position: top;
        }
        
        .bst-slng-itm-contnt {
            margin-top: 25px;
        }
        
        .bst-slng-itm-contnt h3 {
            font-size: 30px;
            margin-bottom: 15px;
        }
        
        .bst-slng-itm-contnt .rating-bst-slng {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .bst-slng-itm-contnt .rating-bst-slng span {
            font-size: 14px;
            display: inline-block;
            margin-left: 10px;
        }
        
        .bst-slng-itm-contnt h5 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .bst-slng-itm-contnt h5 span {
            font-size: 18px;
            display: inline-block;
            margin-left: 10px;
            font-weight: 400;
        }
        
        .add-to-cart-btn {
            display: block;
            background-color: #efefef;
            font-size: 20px;
            color: #000;
            height: 56px;
            border: 1px solid #8b8b88;
            border-radius: 30px;
            width: 100%;
        }
        
        .add-to-cart-btn:hover {
            background-color: #8b8b88;
            color: #fff;
        }
        
        .corporate-sec {
            background: #f7f7f7;
            padding-top: 100px;
            position: relative;
            padding-bottom: 200px;
        }
        
        .corporate-sec p {
            margin-bottom: 20px;
        }
        
        .btn-get-started {
            display: inline-block;
            background: #111;
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 22px;
            transition: all 0.3s ease;
            margin-top: 40px;
            border: none;
        }
        
        .btn-get-started:hover {
            background: #333;
        }
        
        .corporate-sec-img {
            width: 700px;
            position: absolute;
            right: 100px;
            bottom: 100px;
        }
        
        .get-in-touch-sec {
            padding-top: 100px;
            padding-bottom: 100px;
        }
        
        .get-in-touch-sec form .sub-heading h2 {
            margin-bottom: 20px;
            font-size: 44px;
        }
        
        .get-in-touch-sec form .sub-heading p {
            margin-bottom: 30px;
        }
        
        .get-in-touch-sec form .form-control,
        .get-in-touch-sec form .form-select {
            min-height: 56px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }
        
        .why-choos-us-sec {
            background-color: #f7f7f7;
            padding-top: 100px;
            padding-bottom: 100px;
        }
        
        .why-choos-us-sec .sub-heading h2 {
            font-size: 44px;
            margin-bottom: 30px;
        }
        
        .why-choos-us-sec .sub-heading p {
            margin-bottom: 25px;
        }
        
        .why-choos-us-sec ul li {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .why-choos-us-sec ul li i {
            margin-right: 20px;
        }
        
        .raising-sec {
            padding-top: 100px;
            padding-bottom: 100px;
        }
        
        .raising-sec .sub-heading h2 {
            margin-bottom: 45px;
        }
        
        .hoots-sec {
            padding-bottom: 100px;
        }
        
        .hoots-sec-itm img {
            width: 100%;
            height: 450px;
            margin-bottom: 15px;
        }
        
        .hoots-sec-itm h3 {
            font-size: 30px;
        }
        
        .hoots-sec-itm p {
            font-size: 18px;
            text-align: justify;
        }
        
        .news-letr-section {
            background-image: url(../images/news-letr-section-img.jpg);
            background-size: cover;
            background-position: right;
            padding-top: 100px;
            padding-bottom: 100px;
            background-repeat: no-repeat;
        }
        
        .news-letr-section .form-control {
            min-height: 56px;
            border-radius: 30px;
            border: 1px solid #ccc;
            box-shadow: none;
            padding: 10px 20px;
        }
        
        .news-letr-section h2 {
            font-size: 66px;
            font-family: "Cormorant", serif;
            line-height: 70px;
            font-weight: 900;
            margin-bottom: 30px;
        }
        
        .testimonial-slider-sec {
            padding-top: 100px;
            padding-bottom: 100px;
        }
        
        .testimonial-slider-sec .sub-heading h2 {
            margin-bottom: 40px;
        }
        
        .testimonial-slider-itm {
            background-color: #f7f7f7;
            padding: 40px;
            border-radius: 12px;
        }
        
        .testimonial-slider-itm img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: auto;
            margin-bottom: 20px;
        }
        
        .testimonial-slider-itm p {
            font-size: 20px;
            line-height: 34px
        }
        
        .testimonial-slider-itm h3 {
            font-size: 30px;
            font-family: "Cormorant", serif;
            font-weight: 900;
            margin-bottom: 15px;
        }
        
        .testimonial-slider-itm h5 {
            font-size: 20px;
            margin-bottom: 0;
            font-weight: 400;
        }
        
        .join-section-hmg {
            padding-bottom: 100px;
        }
        
        .join-section-hmg .sub-heading h2 {
            font-size: 44px;
            margin-bottom: 20px;
        }
        
        .join-section-hmg .sub-heading {
            margin-bottom: 30px;
        }
        
        .join-section-hmg .form-control {
            min-height: 56px;
            border-radius: 30px;
            border: 1px solid #ccc;
            box-shadow: none;
            padding: 10px 20px;
        }