@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'The Foregen Rough One';
    src: url('../fonts/TheForegenRoughOne.woff2') format('woff2'), url('../fonts/TheForegenRoughOne.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Foregen Rough One';
    src: url('../fonts/TheForegenRoughOne.woff2') format('woff2'), url('../fonts/TheForegenRoughOne.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

a {
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: "Oswald", sans-serif;
}

.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;
}

.learn-more-btn {
    display: inline-block;
    background-color: #ffbc51;
    border: none;
    color: #271c14!important;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
}

.learn-more-btn:hover {
    background-color: #c7913b;
}


/*Header Css*/

.theme-header {
    background-color: #271c14;
    width: 100%;
}

.theme-header .navbar {
    padding: 20px 0;
}

.theme-header .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.theme-header .nav-link {
    color: #ffbc51;
    padding: 0!important;
    margin: 0 15px;
    text-transform: uppercase;
}

.theme-header .navbar .srch-header-h {
    column-gap: 15px;
    background-color: #1d140e;
    padding: 5px 15px;
    border-radius: 30px;
}

.theme-header .navbar .srch-header-h a {
    color: #fff;
}

.theme-header .dropdown-menu {
    border-radius: 0;
    padding: 15px;
    border: none;
    background-color: #271c14;
}

.theme-header .dropdown-menu li a {
    font-size: 16px;
    color: #ffbc51;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.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: #ffbc51;
    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 {
    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: #fff;
    border: none;
    font-size: 32px;
    cursor: pointer;
    background-color: #c8c8c8;
    outline: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.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: #271f18;
    padding-top: 60px;
    padding-bottom: 80px;
}

.theme_ftr .theme_ftr_logo {
    width: 180px;
}

.theme_ftr_itm p {
    font-size: 20px;
    line-height: 34px;
    color: #fff;
    font-weight: 200;
}

.theme_ftr_itm p i {
    margin-right: 15px;
    font-size: 22px;
    margin-top: 5px;
    color: #ffbc51;
}

.theme_ftr_itm h4 {
    color: #ffbc51;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.theme_ftr_itm ul li a {
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 200;
}

.ftr-social-lnks {
    display: flex;
    justify-content: flex-end;
    column-gap: 15px;
}

.theme_ftr_logo_sec {
    margin-bottom: 50px;
}

.ftr-social-lnks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #271f18;
    font-size: 26px;
    background-color: #ffbc51;
    border-radius: 50%;
}

.copy_right_txt {
    background-color: #1a1a1a;
    padding-top: 15px;
    padding-bottom: 15px;
}

.copy_right_txt p {
    font-size: 16px;
    color: #fff;
}

.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: 120px;
    padding-bottom: 60px;
    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: 162px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'The Foregen Rough One';
    line-height: 162px;
}

.hmg-bnr-home p {
    font-size: 26px;
    color: #fff;
    font-weight: 200;
    margin-bottom: 55px;
}

.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;
}

.btn-get-started {
    display: inline-block;
    background: #271f18;
    color: #ffbc51;
    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;
}

.prodct-hmg-sec {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #271c14;
}

.prodct-hmg-sec .sub-heading h2 {
    color: #ffbc51;
    margin-bottom: 40px;
    font-size: 82px;
}

.prodct-sec-itm {
    background-color: #fffdec;
    padding: 35px 30px;
    border-radius: 30px;
    text-align: center;
}

.prodct-sec-itm img {
    width: 100%;
    height: 450px;
    margin-bottom: 15px;
    object-fit: contain;
    border-radius: 30px;
}

.prodct-sec-itm h3 {
    font-size: 42px;
    color: #271c14;
}

.prodct-sec-itm p {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.prdct-itm-rating {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.prodct-sec-itm .prdct-itm-rating i {
    color: #f97a05;
    margin-right: 10px;
}

.prodct-sec-itm .prdct-itm-price {
    display: inline-block;
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 600;
}

.testimonial-slider-sec {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f0e2d4;
}

.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: 26px;
    line-height: 40px;
    margin-bottom: 30px;
}

.testimonial-slider-itm h3 {
    font-size: 30px;
    font-family: "Cormorant", serif;
    font-weight: 900;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #f97a05;
    margin-bottom: 15px;
    font-size: 28px;
}

.testimonial-slider-itm h5 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 400;
}

.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 h2 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #271c14;
}

.news-letr-section p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #271c14;
}

.news-letr-section .btn-get-started {
    font-size: 26px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    padding: 15px 40px;
    font-weight: 600;
}

.news-letr-section .team-ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-letr-section .team-ul li img {
    border-radius: 25px;
    width: 100%;
}

.join-section-hmg {
    padding-bottom: 100px;
    padding-top: 100px;
    background-color: #f3e8db;
}

.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;
    background-color: transparent;
}

.join-section-hmg-frm-sec {
    display: flex;
    align-items: center;
}

.unlock-the-power-sec {
    background-color: #f1e2d2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.unlock-the-power-sec img {
    border-radius: 45px;
}

.unlock-the-power-sec .sub-heading h2 {
    font-size: 72px;
    margin-bottom: 30px;
    color: #271c14;
}

.unlock-the-power-sec .sub-heading p {
    font-weight: 300;
    margin-bottom: 20px;
}

.product-sec-hmg {
    position: relative;
    background-color: #271c14;
    padding-bottom: 50px;
    padding-top: 50px;
}

.product-sec-hmg img {
    width: 100%;
    margin-top: -100px;
}

.product-sec-hmg ul li {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.product-sec-hmg ul li i {
    margin-right: 20px;
    color: #ffbc51;
}

.product-sec-hmg ul li:last-child {
    margin-bottom: 0;
}

.premium-sec {
    background-color: #eadaca;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.premium-sec-contnt {
    flex: 0 0 auto;
    width: 50%;
    padding: 50px;
    text-align: center;
}

.premium-sec-img-sec {
    flex: 0 0 auto;
    width: 50%;
}

.premium-sec-img-sec img {
    width: 100%;
    height: 100%;
}

.made-hmg-sec.premium-sec {
    background-color: #271c14;
}

.made-hmg-sec.premium-sec .btn-get-started {
    background-color: #ffbc51;
    color: #271c14;
}