* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}



body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Poppins-Regular";
}


@font-face {
    font-family: "Poppins-Regular";
    src: url("../font/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../font/Poppins/Poppins-Medium.ttf");
}


@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../font/Poppins/Poppins-SemiBold.ttf");
}


/* Droid font family start  */
@font-face {
    font-family: "Droid-Regular";
    src: url("../font/droid-serif/DroidSerif-Regular.ttf");
}

@font-face {
    font-family: "Droid-Bold";
    src: url("../font/droid-serif/DroidSerif-Bold.ttf");
}

@font-face {
    font-family: "Droid-Italic";
    src: url("../font/droid-serif/DroidSerif-Italic.ttf");
}


ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

:root {
    --black: #000;
    --white: #ffffff;
    --text: #28282C;
    --light-black: #212529;
    --primary: #233f2e;
    --secondary: ;
    --green: #009f3b;
    /* --brown: #660000; */
    --brown: #411613;
    --bg-color: #F8F7F0;
}

/* header css start  */
.header-flex-div {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    justify-content: space-between;
}

.logo-link .header-logo {
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.header-ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-li .header-li-link {
    color: var(--white);
    font-size: 18px;
    line-height: 22px;
    position: relative;
    font-family: "Poppins-Medium";
}

.header-li .header-li-link::after,
.header-li .header-li-link::before {
    content: "";
    height: 2px;
    width: 0;
    opacity: 0;
    background-color: var(--white);
    position: absolute;
    transition: all 0.5s;
}

.header-li .header-li-link:before {
    top: -6px;
}

.header-li .header-li-link:after {
    bottom: -6px;
    right: 0;
}

.header-li .header-li-link:hover:before,
.header-li .header-li-link:hover:after {
    width: calc(100% + 0px);
    opacity: 1;
}

.header-li .header-li-link:hover {
    color: var(--white);
}

.header-section.is-sticky .header-li-link {
    color: var(--light-black);
}

.header-section.is-sticky .header-li-link:hover {
    color: var(--brown);
}

.header-section.is-sticky .header-li .header-li-link::after,
.header-section.is-sticky .header-li .header-li-link::before {
    background-color: var(--brown);
}

.header-btn .btn.btn-primary {
    border: 2px solid var(--white);
    color: var(--white);
}

.header-btn .btn.btn-primary:hover {
    border: 2px solid var(--white);
    color: var(--brown);
    background-color: var(--bg-color);
}

.header-section.is-sticky .header-btn .btn.btn-primary {
    border: 2px solid var(--brown);
    color: var(--brown);
}

.header-section.is-sticky .header-btn .btn.btn-primary:hover {
    border: 2px solid var(--brown);
    color: var(--white);
    background-color: var(--brown);
}

.logo-title {
    display: none;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}

.hero-bg-video-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-video-div .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-video-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-pd {
    position: relative;
    padding: 0 0 60px 0;
    z-index: 9;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-hero {
    margin: auto;
    max-width: 1310px;
    padding: 0 20px;
}

.hero-bg-video-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.5;
    background-color: #000;
}

.hero-contact-div {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 80px;
    text-align: center;
}

.hero-h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Droid-Regular";
}

.hero-h1 {
    color: var(--white);
    font-size: 80px;
    margin: 25px 0 20px 0;
    font-family: "Droid-Bold";
}

.hero-para {
    color: var(--white);
    font-size: 20px;
    font-family: "Poppins-Medium";
}

.hero-scroll-bar {
    max-width: 40px;
    width: 100%;
    height: 40px;
    animation: bounce 1.5s ease-in-out infinite;
}


@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

.header-section.is-sticky {
    position: fixed;
    z-index: 98;
    width: 100%;
    border: none;
    box-shadow: 1px 10px 20px 0px rgb(0 0 0 / 11%);
    /* box-shadow: 1px 10px 20px 0px rgb(0 0 0 / 21%); */
    animation: slideDown 0.50s ease-out;
    background: var(--bg-color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-section.is-sticky .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-section.is-sticky .logo-title {
    display: block;
    font-size: 25px;
    font-family: "Droid-Bold";
    color: #000000cc;
}

.header-section.is-sticky .header-flex-div {
    padding: 6px 25px;
}

.header-section.is-sticky .header-logo {
    max-width: 65px;
    height: 65px;
}

.about-section {
    position: relative;
    padding: 80px 0;
}

.about-contant-div {
    margin: auto;
    text-align: center;
    max-width: 780px;
}

.small-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: "Droid-Regular";
    text-transform: uppercase;
}

.small-title span {
    color: var(--brown);
}

.about-dec {
    font-size: 18px;
    margin-bottom: 20px;
    margin: 0;
}

.btn.btn-primary {
    text-align: center;
    text-transform: uppercase;
    border: 2px solid var(--brown);
    position: relative;
    color: var(--brown);
    background: transparent;
    border-radius: 0;
    padding: 12px 20px;
    width: 100%;
    transition: 0.5s all;
}

.btn.btn-primary:hover {
    color: #453e3c;
    border-color: #453e3c;
}

.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active {
    background: transparent;
}

.about-btn,
.menu-btn {
    margin: auto;
    margin-top: 40px;
    max-width: 200px;
}

.about-side-img {
    position: absolute;
    right: -20px;
    bottom: -80px;
    width: 340px;
    height: 310px;
    object-fit: contain;
}

.menu-section {
    background-image: url(../images/jpg/menu-bg2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* background-attachment: fixed; */
    padding: 80px 0;
}
.menu-contant-div {
    text-align: center;
}

.menu-contant-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 40px;
}

.menu-page-img{
    width: 100%;
    height: auto;
    border: 1px solid #801421;
    object-fit: cover;
}

.menu-title-top {
    margin: auto;
    max-width: 800px;
    margin-bottom: 50px;
}

.menu-row-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
}

.menu-row-card {
    /* background-color: red; */
    transition: all .5s;
}

.menu-card-img .menu-img {
    max-width: 280px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
}

.menu-card-img {
    position: relative;
}

.menu-row-card:hover {
    transform: translateY(-10px);
}

.menu-card-img:hover:before {
    opacity: 1;
    margin: 0;
}

.menu-card-img::before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    height: 85px;
    width: 85px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/png/coffee-mug.png);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    margin-top: 100px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.menu-para {
    font-size: 18px;
    color: var(--light-black);
}

.coffee-title {
    font-size: 25px;
    color: var(--light-black);
    transition: 0.5s all;
    text-transform: capitalize;
}

.menu-card-link:hover .coffee-title {
    color: var(--brown);
}

.coffee-type-section {
    padding: 80px 0 30px 0;
    background-color: var(--brown);
}

.slider-coffee-type .owl-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-coffee-type .owl-item.active {
    opacity: 1;
}

.slider-coffee-type .owl-dots {
    padding-top: 50px;
    display: flex;
    gap: 10px;
    justify-content: center;
}


.owl-carousel.slider-coffee-type .owl-dots .owl-dot.active {
    background-color: var(--bg-color);
    opacity: 1;
}

.owl-carousel.slider-coffee-type .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.2;
    background-color: var(--bg-color);
    transition: 0.5s all;
}

.top-wood-img {
    max-width: 205px;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.coffee-type-title {
    font-size: 66px;
    line-height: 70px;
    font-family: "Droid-Regular";
    color: var(--white);
}

.coffee-center-text {
    font-size: 26px;
    margin: 20px 0;
    line-height: 38px;
    color: var(--white);
    font-family: "Droid-Regular";
}

.coffee-type-para {
    max-width: 380px;
    font-size: 15px;
    color: var(--white);
}

.coffee-type-btn {
    max-width: 220px;
    margin-top: 30px;
}

.coffee-type-btn .btn-primary {
    border: 2px solid var(--white);
    color: var(--white);
}

.coffee-type-btn .btn-primary:hover {
    color: var(--bg-color);
    border-color: var(--bg-color);
}

.coffee-type-img {
    max-width: 100%;
    width: 100%;
    height: 500px;
    object-fit: contain;
}

#backToTop {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: none;
    /*Hiddenbydefault*/
    background-color: #211f1e;
    border: none;
    padding: 10px;
    transition: 0.5s all;
    height: 50px;
    z-index: 99;
    width: 50px;
    cursor: pointer;
    animation: bounceSmooth 2s ease-in-out infinite;
}

@keyframes bounceSmooth {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

#backToTop:hover {
    background-color: var(--brown);
}

.back-to-top-icon {
    height: 20px;
    width: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(229deg) brightness(106%) contrast(101%);
    object-fit: contain;
}

.blog-section {
    padding: 80px 0;
}

.blog-title-top {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
}

.blog-btn {
    max-width: 200px;
    width: 100%;
}

.blog-row-div {
    margin-top: 50px;
}

.blog-card-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card-main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.25s ease-in-out;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.182) 35%, rgb(0 0 0 / 96%) 90%);
    border-radius: 10px;
}

.blog-card {
    width: 100%;
    height: 100%;
}

.blog-card .blog-img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-link,
.blog-date-div {
    width: 100%;
    position: absolute;
    padding: 20px;
    bottom: 0;
    left: 0;
}

.blog-date {
    padding: 4px 10px;
    max-width: max-content;
    color: var(--brown);
    font-size: 13px;
    line-height: 18px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: capitalize;
    background-color: #F8F7F0;
}

.blog-title {
    font-size: 23px;
    line-height: 32px;
    color: var(--white);
    transition: 0.5s all;
    font-family: "Droid-Regular";
}

.blog-link:hover .blog-title {
    color: #d7ccb1;
}

.small-blog .blog-card-main {
    max-width: 130px;
    width: 100%;
    height: 122px;
}

.small-blog .blog-date-div {
    margin: auto;
    padding: 10px;
    right: 0;
    text-transform: capitalize;
}

.small-blog .blog-date {
    margin-bottom: 0;
}

.small-blog-title {
    font-size: 17px;
    line-height: 25px;
    color: var(--text);
    transition: 0.5s all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Droid-Regular";
}

.small-blog-title:hover {
    color: var(--brown);
}

.small-blog {
    gap: 20px;
    display: flex;
    align-items: center;
}

.btn-blog-small {
    margin-top: 10px;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--brown);
    border: none;
}

.btn-blog-small:hover {
    color: var(--brown);
}

.small-blog-amin {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.pd-footer {
    background-color: var(--bg-color);
    padding: 60px 0;
    border-top: 1px solid #85342e;
}

.footrer-logo-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    max-width: 70px;
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo-title {
    font-size: 25px;
    font-family: "Droid-Bold";
    color: #000000cc;
}

.footer-logo-text {
    max-width: 400px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
}

.footer-colunm {
    padding-top: 15px;
}

.footer-colunm-title {
    font-size: 22px;
    max-width: max-content;
    position: relative;
    line-height: 30px;
    margin-bottom: 10px;
    color: var(--black);
    font-family: "Poppins-Medium";
}

.ul-footer {
    padding-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-direction: column;
}

.ul-footer .li-footer {
    padding-left: 15px;
    position: relative;
}

.ul-footer .li-footer::before {
    content: "";
    margin: auto;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    background-color: var(--brown);
}


.link-footer,
.number-text {
    font-size: 16px;
    line-height: 14px;
    color: var(--black);
    /* transition: 0.3s all; */
    text-transform: capitalize;
}

.link-footer:hover,
.number-text:hover {
    color: var(--black);
}

.address-div .mail-text {
    text-transform: lowercase;
}

.footer-colunm .address-div-custom {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-colunm .address-div-custom.address-div {
    align-items: flex-start;
    text-transform: capitalize;
}

.footer-icon-div {
    max-width: 40px;
    width: 100%;
    height: 35px;
    border-radius: 4px;
    display: flex;
    background-color: var(--brown);
    align-items: center;
    justify-content: center;
}

.footer-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-bottom-div {
    padding: 10px 0;
    background-color: var(--brown);
}

.footer-bottom-text,
.footer-bottom-text a {
    color: var(--white);
    font-size: 14px;
    line-height: 18px;
}

.social-ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link .footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}









.common-hero-section {
    background-attachment: fixed;
    background-size: 100% 100%;
    /* background-image: url(../images/jpg/stores-hero.jpg); */
}

.common-hero-pd {
    padding: 90px 0 160px;
}

.common-hero-title {
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    font-family: "Droid-Regular";
}

.store-section {
    padding: 80px 0;
}

.common-title-top {
    text-align: center;
    margin-bottom: 30px;
}

.custom-nav-ul {
    gap: 15px;
    justify-content: center;
}

.custom-nav-ul .custom-nav-link.active {
    background-color: var(--brown);
    color: var(--white);
}

.custom-nav-ul .custom-nav-link,
.custom-nav-link:focus,
.custom-nav-lin:hover {
    color: var(--text);
    font-family: "Poppins-Medium";
}

.store-card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--bg-color);
}

.store-img-div .store-img {
    max-width: 100%;
    width: 100%;
    height: 260px;
    border-radius: 10px;
    object-fit: cover;
}

.store-card-conatnt {
    padding: 20px 15px;

}

.store-card-link {
    font-size: 18px;
    color: var(--black);
    text-transform: uppercase;
    font-family: "Poppins-SemiBold";
}

.store-card-link:hover {
    color: var(--brown);
}

.tab-content-div {
    padding-top: 20px;
}

.store-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

.store-card-icons-div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.store-card-link-box {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brown);
}

.store-card-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.store-card-conatnt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-btn-div {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-header-div,
.humble-menu {
    display: none;
}