@import url('https://fonts.googleapis.com/css2?family=Adamina&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');

/***** General CSS *****/

body {
    overflow-x: hidden;
    word-break: break-word;
    color: var(--textColor);
    font: 15px/25px 'Poppins', sans-serif;
    background-image: url(../images/body-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #514f4f;
    --themeColor: #261501;
    --themeColor2: #fca446;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--textColor);
}

a:hover,
a:focus {
    color: var(--themeColor);
    text-decoration: none;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

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

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 82px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Adamina';
    text-transform: uppercase;
}

h2 {
    margin: 0 0 0px;
    font-size: 55px;
    font-weight: 500;
    font-family: 'Adamina';
    text-transform: uppercase;
    color: var(--headingColor);
}

h3 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Adamina';
    text-transform: uppercase;
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Adamina';
    text-transform: uppercase;
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Adamina';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.theme-btn-1 {
    gap: 10px;
    display: flex;
    font-size: 20px;
    border-width: 1px;
    padding: 25px 50px;
    width: max-content;
    border-style: solid;
    border-radius: 50px;
    align-items: center;
    font-family: 'Poppins';
    transition: ease-in-out;
    justify-content: center;
    color: var(--themeColor);
    text-transform: uppercase;
    transition-duration: 0.5s;
    border-color: var(--themeColor2);
    background-color: var(--themeColor2);
}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-2:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-2 {
    gap: 10px;
    display: flex;
    font-size: 20px;
    border-width: 1px;
    padding: 25px 50px;
    width: max-content;
    border-style: solid;
    color: var(--white);
    border-radius: 50px;
    align-items: center;
    font-family: 'Poppins';
    transition: ease-in-out;
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    border-color: var(--textColor);
    background-color: var(--themeColor);
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}


.loader {
    inset: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    height: 100vh;
    position: fixed;
    align-items: center;
    background: var(--white);
    justify-content: center;
    backdrop-filter: blur(3px)
}

.pan,
.panWrapper {
    height: fit-content;
    display: flex
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    transition: .5s
}

.panWrapper {
    width: 200px;
    position: relative;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    gap: 20px
}

.pan {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    animation: 1.7s infinite cooking
}

@keyframes cooking {
    0% {
        transform: rotate(0);
        transform-origin: top right
    }

    10% {
        transform: rotate(-4deg);
        transform-origin: top right
    }

    50% {
        transform: rotate(20deg)
    }

    100% {
        transform: rotate(0)
    }
}

.food {
    position: absolute;
    width: 40%;
    height: 6px;
    background: linear-gradient(to bottom, #522121, #c86a6a);
    left: 10px;
    border-radius: 50%;
    animation: 1.7s infinite flip;
    z-index: 2
}

@keyframes flip {
    0% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-100px) rotate(180deg)
    }

    100% {
        transform: translateY(0) rotate(360deg)
    }
}

.panBase {
    z-index: 3;
    width: 50%;
    height: 22px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: linear-gradient(to top, var(--themeColor), var(--themeColor2))
}

.panHandle {
    width: 40%;
    background: linear-gradient(to bottom, #121212, #4a4a4a);
    height: 10px;
    border-radius: 10px
}

.panShadow {
    width: 70px;
    height: 8px;
    background-color: rgba(0, 0, 0, .21);
    margin-left: 15px;
    border-radius: 10px;
    animation: 1.7s infinite shadow;
    filter: blur(5px)
}

@keyframes shadow {

    0%,
    100% {
        transform: scaleX(.7)
    }

    50% {
        transform: scaleX(1)
    }
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 2px;
    position: relative;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    color: var(--themeColor);
    text-transform: uppercase;
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--themeColor);
}

.menuSec ul li a::before {
    left: 0;
    width: 0px;
    height: 2px;
    content: '';
    right: 100%;
    bottom: 10px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.menuSec ul li a.active::before,
.menuSec ul li a:hover::before {
    left: 0;
    right: 0;
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec ul li a:not(:hover)::before {
    left: auto;
    right: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSection {
    top: 0;
    left: 0px;
    z-index: 9;
    width: 100%;
    padding: 20px 0px;
    position: absolute;
}

.menuSection .row {
    align-items: center;
}

.header-logo {
    height: 85px;
}

.header-logo a {
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.haeder-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}




/*header css start */


/*banner css start */


.main_slider {
    overflow: hidden;
    position: relative;
    padding: 130px 0px 120px;
    background-image: url(../images/banner-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main_slider::before {
    top: -5%;
    left: -5%;
    width: 110%;
    content: '';
    height: 110%;
    opacity: 0.03;
    position: absolute;
    animation: shakeBg 20s infinite ease-in-out;
    background-image: url(../images/banner-before.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@keyframes shakeBg {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-5%, 5%);
    }

    50% {
        transform: translate(5%, -5%);
    }

    75% {
        transform: translate(-5%, -5%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.banner_img {
    display: flex;
    height: 650px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.banner_img img {
    z-index: 3;
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
    object-position: bottom;
}

.banner_img::before {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    border-radius: 50%;
    background-image: url(../images/banner-img-before.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner_img_before {
    top: -70px;
    z-index: 1;
    left: -70px;
    width: auto;
    height: 800px;
    position: absolute;
    aspect-ratio: 1 / 1;
    transform: rotate(-45deg);
}

.banner_img_before::before {
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    width: 100vw;
    position: absolute;
    background-color: #3a2003;
    border-radius: 500px 0px 0px 500px;
    box-shadow: inset 0px 0px 50px 14px rgba(0, 0, 0, 0.55);
}

.main_slider .row {
    z-index: 1;
    position: relative;
}

.banner_text ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
    justify-content: flex-start;
}

.banner_text h1 .theme-color-1 {
    color: var(--themeColor2);
}

.banner_text h1 .theme-color-2 {
    color: var(--themeColor);
}

.banner_text h1 {
    margin-bottom: 20px;
}

.banner_text p {
    font-size: 14px;
    max-width: 550px;
    font-weight: 500;
    color: #525151;
    margin-bottom: 20px;
}

.banner_img img.main-img.img-fluid {
    max-width: 120%;
    width: 120%;
    right: 10%;
}

/*banner css end*/

/* inner banner */

.main_slider.inner-banner .custom-height {
    height: 430px;
}

.main_slider.inner-banner .banner_img img {
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
}

.main_slider.inner-banner .banner_img::before {
    display: none;
}

.main_slider.inner-banner .banner_text {
    margin-top: 30px;
}

.main_slider.inner-banner .banner_text h1 {
    font-size: 72px;
    margin-bottom: 0px;
}

/* inner banner */

/* category-sec */

.category-sec {
    padding: 100px 0px;
}

.category-box {
    gap: 15px;
    z-index: 1;
    display: flex;
    padding-left: 10px;
    min-height: 240px;
    position: relative;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.category-box::before {
    top: 0;
    right: 0;
    width: 80%;
    z-index: -1;
    content: '';
    height: 100%;
    position: absolute;
    border-radius: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
    border: 1px solid var(--themeColor);
}

.category-box:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.category-box:hover h4 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.category-box img {
    width: 45%;
    height: 100%;
    flex-shrink: 0;
    object-fit: contain;
}

.category-box-text {
    padding: 10px;
}

.category-box-text h4 {
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.category-box-text .theme-btn-1 {
    font-size: 12px;
    margin-top: 20px;
    font-weight: 600;
    padding: 13px 25px;
}






/* category-sec */


/* about-sec */

.about-sec {
    padding-bottom: 100px;
}

.about-text {
    gap: 10px;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text .theme-btn-2 {
    margin-top: 10px;
}

.about-img {
    height: 630px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.about-img::before {
    top: 60px;
    bottom: 0;
    right: 30%;
    height: 65%;
    content: '';
    margin: auto;
    width: 100vw;
    position: absolute;
    background-color: var(--themeColor2);
    box-shadow: inset 0px 0px 28px 1px rgba(0, 0, 0, 0.5);
}

.about-img img {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
    animation: floatY 4s ease-in-out infinite;
}

.about-sec.inner-about-sec {
    padding: 100px 0px;
}



/* about-sec */






/* menu-sec */

.menu-sec {
    padding: 0px 2%;
}

.menu-wrap {
    overflow: hidden;
    padding: 100px 6%;
    position: relative;
    border-radius: 40px;
    background-image: url(../images/menu-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.menu-wrap::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.9;
    position: absolute;
    background-color: var(--themeColor);
}

.menu-wrap .row {
    z-index: 1;
    position: relative;
}

.menu-wrap .section-heading h2 {
    color: var(--white);
}

.menu-box {
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    padding: 20px 20px 10px;
}

.menu-box::before {
    left: 0.3px;
    width: 100%;
    height: 80%;
    content: '';
    bottom: 30px;
    position: absolute;
    border-radius: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: #fdf0e2;
    clip-path: polygon(89% 0, 100% 0, 100% 100%, 0 100%, 0 45%);
}

.menu-box::after {
    left: 16px;
    top: 127px;
    width: 106%;
    content: '';
    height: 197px;
    position: absolute;
    border-radius: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    transform: rotate(-29deg);
    background-color: #fdf0e2;
}

.menu-box:hover::after {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.menu-box:hover::before {
    bottom: 0;
    height: 90%;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
    clip-path: polygon(89% 0, 100% 0, 100% 100%, 0 100%, 0 43%);
}

.menu-box:hover h5 {
    color: var(--black);
}

.menu-box:hover .theme-btn-2 {
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.menu-box:hover .theme-btn-2:hover {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--headingColor2);
}

.menu-box:hover .menu-box-img {
    top: -10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menu-box-img {
    top: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menu-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-box-text {
    gap: 15px;
    z-index: 1;
    display: flex;
    margin-top: 25px;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.menu-box-text h5 {
    color: var(--themeColor2);
}

.menu-box-text .theme-btn-2 {
    font-size: 12px;
    padding: 13px 25px;
    border: 1px solid var(--white);
}


.menu-sec.inner-menu-sec {
    padding: 100px 0px;
}


/* menu-sec */

/* permimum-sec */


.permimum-sec {
    padding: 100px 0px;
}

.permimum-box h2.left-side {
    width: 50%;
    font-size: 95px;
    margin-bottom: -250px;
}

.permimum-box-img {
    width: 780px;
    height: 760px;
    display: flex;
    margin: 0px auto;
    position: relative;
    align-items: center;
    justify-content: center;
}

.permimum-box-img img.permimum-main-img {
    left: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.permimum-box-img .float-been-1 {
    top: 0;
    left: 31%;
    right: 0;
    z-index: 1;
    width: 100px;
    margin: auto;
    height: 85px;
    position: absolute;
}

.permimum-box-img .float-been-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}

.permimum-box-img .float-been-2 {
    top: 80px;
    left: 0;
    right: 60px;
    z-index: 1;
    width: 90px;
    height: 90px;
    margin: auto;
    position: absolute;
}

.permimum-box-img .float-been-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}

.permimum-box-img .float-been-3 {
    top: 80px;
    left: 17.5%;
    bottom: 0;
    z-index: 1;
    width: 80px;
    height: 90px;
    margin: auto;
    position: absolute;
}

.permimum-box-img .float-been-3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}

.permimum-box-img .float-been-4 {
    top: 220px;
    right: 7%;
    bottom: 0;
    z-index: 1;
    width: 100px;
    height: 90px;
    margin: auto;
    position: absolute;
}

.permimum-box-img .float-been-4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}

.permimum-box-img .float-been-5 {
    left: 32%;
    bottom: 0;
    z-index: 1;
    width: 90px;
    height: 110px;
    margin: auto;
    position: absolute;
}

.permimum-box-img .float-been-5 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}

.permimum-box-img .float-been-6 {
    left: 28%;
    width: 90px;
    height: 70px;
    bottom: 140px;
    position: absolute;
}

.permimum-box-img .float-been-6 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}

.permimum-box-img .float-been-7 {
    bottom: 40px;
    right: 170px;
    height: 100px;
    position: absolute;
}

.permimum-box-img .float-been-7 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite
}


.permimum-box h2.right-side {
    left: 4%;
    width: 38%;
    font-size: 110px;
    position: relative;
    margin: -250px 0px 0px auto;
}

/* permimum-sec */


/*book start*/

section.book form input {
    width: 100%;
    outline: none;
    padding: 15px 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    color: var(--black);
    border: 1px solid #dcd9d8;
    background-color: var(--white);
}

section.book form select {
    width: 100%;
    background: #fff url(../images/arrow.png) no-repeat right;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 15px 15px;
    outline: none;
    color: #565555;
    border-radius: 5px;
    -webkit-appearance: auto;
    border: 1px solid #dcd9d8;
}

section.book form textarea {
    width: 100%;
    resize: none;
    height: 200px;
    outline: none;
    color: var(--black);
    padding: 15px 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #dcd9d8;
    background-color: var(--white);
}

section.book {
    padding: 150px 0px;
}

section.book form input::placeholder,
section.book form textarea::placeholder {
    color: #565555;
}

.text-center button {
    width: 100%;
    font-size: 25px;
    max-width: 650px;
    margin: 0px auto;
    background-color: #381f03;
}

/*book end*/

/* prodcut-detail-sec */

.prodcut-detail-sec {
    padding: 100px 0px;
}

.prodcut-detail-img {
    width: 95%;
    height: 535px;
    overflow: hidden;
    border-radius: 15px;
}

.prodcut-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page-tab-sec {
    padding: 0px 0px;
}

.prodcut-detail-text {
    gap: 15px;
    z-index: 1;
    display: flex;
    min-height: 100%;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.prodcut-detail-text h2 {
    font-size: 48px;
}

.prodcut-detail-text h3 {
    font-size: 35px;
    color: var(--themeColor2);
}

.prodcut-detail-text p {
    font-size: 14px;
    color: #868686;
    line-height: 30px;
    margin-bottom: 15px;
}

.prodcut-detail-text .theme-btn-1 {
    font-size: 16px;
    padding: 20px 30px;
}

.prodcut-detail-tab .nav {
    margin-bottom: 25px;
    padding-bottom: 35px;
    border-bottom: 1px solid #cac7c4;
}

.prodcut-detail-tab .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    color: var(--black);
    border-radius: 50px;
}

.prodcut-detail-tab .nav-link.theme-btn-1.active {
    color: var(--black);
    background-color: var(--themeColor2);
}

.productSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.productSlider .slick-prev,
.productSlider .slick-next {
    width: 40px;
    height: 35px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
}

.productSlider .slick-prev::before,
.productSlider .slick-next::before {
    content: '\f104';
    color: var(--white);
    font-family: "FontAwesome";
}

.productSlider .slick-next {
    right: -50px;
    transform: rotate(180deg);
}

.productSlider .slick-prev {
    left: -50px;
}

/* prodcut-detail-sec */

/*Contact us start*/

.contatc-form {
    padding: 35px 30px;
    border-radius: 10px;
    background-color: #fefaf6;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.contatc-form h2 {
    font-size: 48px;
}

.contatc-form input {
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 20px;
    background: #fefaf6;
    border: 1px solid #c4c4c4;
}

.contatc-form textarea {
    width: 100%;
    resize: none;
    height: 150px;
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 30px;
    background: #fefaf6;
    border: 1px solid #c4c4c4;
}

.contatc-form input::placeholder,
.contatc-form textarea::placeholder {
    color: #9d9a9a;
}

.contact-text h2 {
    font-size: 35px;
    line-height: 40px;
}

.contact-text p {
    max-width: 400px;
}

.contatc-form button {
    width: 100%;
    max-width: 300px;
}

.contact_page_sidbar h6 {
    font-size: 13px;
    color: #8b8a8a;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.contact_page_sidbar h4 {
    font-size: 18px;
    line-height: 23px;
    color: #000000;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins';
}

.contact_page_sidbar i {
    width: 55px;
    height: 55px;
    display: flex;
    font-size: 25px;
    margin: 0 20px 0 0;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
}

.contact_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e51921;
    color: #ffffff;
    border-radius: 0;
    margin: 0 10px 0 0;
    font-size: 22px;
}

.contact_social a:hover {
    background-color: #e51921;
    color: #fff;
}

.contact_map {
    padding-bottom: 100px;
}

.contact_map iframe {
    width: 100%;
    height: 600px;
    filter: grayscale(1);
}

.contact_page_main {
    padding: 100px 0px;
}

ul.contact_page_sidbar {
    margin-bottom: 50px;
}

.social-links a:hover {
    transform: scale(0.9) rotate(360deg);
    border-radius: 50%;
}

.social-links {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.social-links a {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    color: var(--black);
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background: transparent;
    transition: 0.2s ease-in-out;
    border: solid 1px var(--themeColor);
}

.contatc-form button.btn10 {
    width: 38%;
}

.contact_page_main {
    /* background: #f6f4ec; */
    width: 100%;
    height: 100%;
    background-size: cover;
}

/*Contact us end*/

/* quality-sec */

.quality-sec {
    padding: 0px 2%;
}

.quality-main-box {
    padding: 80px 4%;
    overflow: hidden;
    position: relative;
    border-radius: 40px;
    background-image: url(../images/quality-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.quality-main-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.85;
    position: absolute;
    background-color: var(--themeColor);
}

.quality-box {
    gap: 10px;
    z-index: 1;
    display: flex;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.quality-box h2 {
    font-size: 72px;
    margin-bottom: 10px;
    color: var(--white);
}

.quality-box .theme-btn-1 {
    font-size: 16px;
    padding: 17px 35px;
}

.review-sec {
    padding: 100px 0px;
}



/* quality-sec */

/* review-sec */

.review-sec {
    padding: 100px 0px;
}

.reviwe-img {
    height: 360px;
    min-height: 90%;
    overflow: hidden;
    border-radius: 30px;
}

.reviwe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewImageSlider {
    width: 50%;
    margin: 0px 0px 0px auto;
}

.reviewImageSlider .slick-slide {
    opacity: 1;
    margin: 0px 5px;
}

.review-img-box {
    width: 100%;
    height: auto;
    max-width: 100px;
    overflow: hidden;
    min-height: 100%;
    margin: 0px auto;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.review-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.reviewSlider .slick-dots {
    left: 40px;
    width: 120px;
    bottom: -71px;
}

.reviewSlider .slick-slide {
    margin: 0px;
    opacity: 1;
}

.reviewSlider .slick-prev,
.reviewSlider .slick-next {
    top: unset;
    bottom: -80px;
}

.review-text h3 {
    margin-bottom: 30px;
}

.reviwe-text-box {
    margin-bottom: 10px;
}

.reviwe-text-box-scroll {
    height: 150px;
    overflow-y: scroll;
    margin-bottom: 20px;
    padding-right: 20px;
}

.reviwe-text-box-scroll p {
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    text-align: justify;
}

.reviwe-text-box-scroll::-webkit-scrollbar {
    width: 4px;
    background-color: var(--white);
}

.reviwe-text-box-scroll::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 100px;
}

.reviwe-text-box-scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgb(0 0 0 / 55%);
}

.reviewSlider .slick-prev {
    left: 0px;
}

.reviewSlider .slick-next {
    left: 180px;
    right: unset;
}

.reviewSlider .slick-next::before {
    font-size: 14px;
    content: '\f054';
    color: var(--black);
    font-family: 'FontAwesome';
}

.reviewSlider .slick-prev::before {
    font-size: 14px;
    content: '\f053';
    color: var(--black);
    font-family: 'FontAwesome';
}

.reviewSlider .slick-dots li button:before {
    font-size: 10px;
    color: var(--themeColor2);
}

.reviewSlider .slick-dots li.slick-active {
    opacity: 1;
}

.reviewSlider .slick-dots li.slick-active button:before {
    color: var(--themeColor);
}

.review-heading {
    margin-bottom: 50px;
}

.review-heading h2 {
    max-width: 550px;
}

/* review-sec */

/*News Sec Css Starts*/

.news-txt h3 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    color: var(--black);
    text-transform: uppercase;
}

.news-txt h5 {
    font-size: 21px;
    line-height: 26px;
    margin: 10px 0 0 0;
    text-transform: uppercase;
}

.news-input-main {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.news-input {
    width: 100%;
    height: 100%;
}

.news-input input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 190px 0 20px;
    background-color: #0000;
}

.news-input input::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #484746;
    font-family: "Poppins";
}

.news-btn {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
}

.news-btn button {
    border: none;
    height: 100%;
    font-size: 18px;
    padding: 0 40px;
    line-height: 25px;
    color: var(--white);
    font-family: "Poppins";
    text-transform: uppercase;
    background-color: #3a2003;
}

.news-btn button:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.news-sec .news-bg {
    z-index: 9;
    padding: 40px;
    position: relative;
    border-radius: 20px;
    margin-bottom: -70px;
    background-color: var(--themeColor2);
}

/*News Sec Css Ends*/

/*Footer Sec Css Starts*/

footer {
    position: relative;
    padding: 110px 0 30px 0;
    background-image: url(../images/footer-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

footer::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.95;
    position: absolute;
    background-color: #3a2003;
}

footer .row {
    z-index: 1;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.footer-logo a {
    width: 210px;
    height: 210px;
    display: block;
}

.footer-logo a img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
    object-fit: contain;
}

.footer-logo p {
    color: var(--white);
}

.footer-links h5 {
    position: relative;
    margin: 0 0 15px 0;
    color: var(--white);
    padding: 0 0 10px 0;
    transition: ease-in;
    display: inline-flex;
    text-transform: uppercase;
    transition-duration: 0.2s;
}

.footer-links h5::before {
    left: 0;
    bottom: 0;
    width: 40%;
    content: "";
    position: absolute;
    transition: ease-out;
    transition-duration: 0.2s;
    border-bottom: 2px solid var(--themeColor2);
}

.footer-links:hover h5::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-links ul {
    gap: 0px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.footer-links ul li a {
    gap: 10px;
    display: flex;
    font-size: 16px;
    line-height: 45px;
    align-items: baseline;
    color: var(--white);
    transition: ease-in;
    justify-content: start;
    transition-duration: 0.2s;
}

.footer-links ul li a:hover {
    transition: ease-out;
    color: var(--themeColor2);
    transition-duration: 0.2s;
}

.footer-links ul li p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-bottom {
    padding: 30px 0;
    background-color: var(--themeColor);
}

.footer-bottom-txt p {
    color: #fff;
    text-transform: uppercase;
}

.footer-bottom-txt p a {
    position: relative;
    padding: 0 0 5px 0;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-bottom-txt p a::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #fff;
    width: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-bottom-txt p a:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-bottom-links ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.footer-bottom-links ul li a {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    border-radius: 100px;
    font-family: "Poppins";
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    z-index: 0;
    text-transform: uppercase;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}

.footer-bottom-links ul li a:hover {
    transition: ease-in;
    color: var(--black);
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}

.footer-bottom-links ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid var(--themeColor2);
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.footer-bottom-links ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-bottom-links ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background-color: var(--themeColor2);
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.footer-bottom-links ul li a:hover::after {
    height: 100%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}

.form_table td {
    font-size: 16px;
}

.form_table button.btn {
    font-size: 14px;
}

/*Footer Sec Css Ends*/

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/