@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root{
    --color1: #fff;
    --color2: #000;
    --color3: #5b1714;
    --color4: #686444;
    --color5: #a08c74;
    --color6: #e0d6c1;
    --color7: #512a1a;
    --font1: "Playfair Display", serif;
    --font2: "Lato", sans-serif;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: var(--font2) !important;
    background: var(--color6) !important;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--font1) !important;
    font-weight: 600 !important;
}
.padd{
    padding: 80px 0;
}
.row .col-paddY{
    padding: 50px 0;
}
.row .col-paddX{
    padding: 0px 50px;
}
.padd_top{
    padding-top: 80px;
}
.padd_bottom{
    padding-bottom: 80px;
}
.row .mb-5{
    margin-bottom: 50px;
}
.row .mt-5{
    margin-top: 50px;
}
.container{
    max-width: 1380px;
    margin: 0 auto ;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.col-md-12{width: 100%; padding: 0 12px;}
.col-md-11{width: 91.666667%; padding: 0 12px;}
.col-md-10{width: 83.333333%; padding: 0 12px;}
.col-md-9{width: 75%; padding: 0 12px;}
.col-md-8{width: 66.666667%; padding: 0 12px;}
.col-md-7{width: 58.333333%; padding: 0 12px;}
.col-md-6{width: 50%; padding: 0 12px;}
.col-md-5{width: 41.666667%; padding: 0 12px;}
.col-md-4{width: 33.333333%; padding: 0 12px;}
.col-md-3{width: 25%; padding: 0 12px;}
.col-md-2{width: 16.666667%; padding: 0 12px;}
.col-md-1{width: 8.333333%; padding: 0 12px;}
.justify-content-between{justify-content: space-between;}
.justify-content-end{justify-content: end;}
.justify-content-start{justify-content: start;}
.justify-content-center{justify-content: center;}
.align-center{align-items: center;}
.align-end{align-items: end;}
.text-right{
    text-align: right;
}
.text-center{text-align: center;}
img{width: 100%;}
a{text-decoration: none !important;}
p {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.4em;
    color: var(--color2);
}

p.light{
    color: var(--color6);
}
.para2{
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.4em;
    color: var(--color2);
}
.p-0{
    padding: 0;
}
.section_title_dark {
    font-size: 49px;
    margin-bottom: 20px;
    color: var(--color7);
    font-weight: 400;
}
.section_title_light {
    font-size: 49px;
    margin-bottom: 20px;
    color: var(--color6);
    font-weight: 400;
}
.section_title span{
    color:var(--color3)
}
.mobile_header, .mobile_menu{
    display: none;
}
.banner_title {
    font-size: 76px;
    color: var(--color6);
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 170px;
    text-transform: uppercase;
}
.inner_banner_title {
    font-size: 76px;
    color: var(--color6);
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}
.theme-btn {
    background: var(--color3);
    padding: 12px 30px;
    font-size: 23px;
    border-radius: 30px;
    color: var(--color6);
    margin-top: 15px;
    display: inline-block;
}
/* ======= Menu Bar css start ======= */
.menu_bar{
    position: absolute;
    transition: 0.4s;
    height: 100px;
    /* background: var(--color6); */
    width: 100%;
    z-index: 100;
    top: 43px;
}
.menu_bar .container {
    /* max-width: 1380px; */
    width: 100%;
    margin: auto;
    border-radius: 50px;
    padding: 0 30px;
    background: var(--color6);
    transition: 0.4s;
}
.menu_bar .col-md-2{
    position: relative;
}
.menu_bar .logo {
    position: absolute;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
}
.navbar .nav_item a {
    color: var(--color2);
    font-size: 20px;
    margin: 0 23px;
    padding: 14px 0;
    display: block;
}
/* ======= Menu Bar css end ======= */
@media (max-width:767px){
   .mobile_menu{
    transform: translateX(-100%);
    transition: 0.5s;
    position: fixed;
    z-index: 100;
    width: 100%;
    display: block;
   }
   .mobile_menu.active{
    transform: translateX(0);
   }
    .mobile_header{
        display: block;
        position: sticky;
        top: 0;
        background: var(--color6);
        z-index: 100;
    }
    .menu_bar{
        display: none;
    }
    .mobile_row{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }
    .mobile_logo {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        overflow: hidden;
    }
    .bar_iconbox {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: end;
    }
    .bar_icon {
        height: 2px;
        display: inline-block;
        width: 30px;
        background: black;
    }
    .mobile_menu {
        background: #68644478;
    }
    .mobile_menu .container {
        background: var(--color4);
        width: 78%;
        margin: 0;
    }
    .mobile_nav {
        list-style: none;
        padding: 17px;
        height: 100vh;
    }
    a.mobile_navItem {
        color: var(--color6);
        padding: 10px 0;
        display: inline-block;
        font-size: 18px;
    }
}
/* ======= Sticky Menu Bar css start ======= */
.menu_bar.sticky {
    position: sticky;
    top: 0;
    left: 0;
    transform: translateX(0%);
    width: 100%;
    z-index: 100;
    transition: 0.4s;
    animation: slideDown 0.7s ease;
}
.menu_bar.sticky .container{
    border: 1px solid var(--color5);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ======= Sticky Menu Bar css end ======= */

/* ======= footer css start ======= */
footer{
    background: var(--color6);
}
.footer_title {
    font-size: 28px;
    color: var(--color1);
    margin-bottom: 25px;
}
footer ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 31px;
    border-bottom: 1px solid var(--color5);
}
footer ul li{
    margin-bottom: 15px;

}
footer ul li a {
    color: var(--color7);
    font-size: 20px;
}
footer .logo {
    width: 140px;
    border-radius: 50%;
    overflow: hidden;
    height: 140px;
    margin: auto;
}
/* ======= footer css end ======= */

/* ======= inner baner css start ======= */
.inner_banner {
    height: 470px;
    position: relative;
    padding-top: 250px;
}
.inner_banner .innerimg {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/* ======= inner baner css end ======= */

/* ====== CTA css start ====== */
.cta-container{
    background-image: url(../images/autumn-leaves-composition.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    isolation: isolate;
    padding: 80px 40px !important;
    border-radius: 20px;
    overflow: hidden;
}
.cta-container::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(270deg, #68644438 -1%, #686444f0 63%);
}
.cta-container .theme-btn {
    background: var(--color3);
    padding: 12px 55px;
    font-size: 23px;
    color: var(--color6);
}
/* ====== CTA css end ====== */
.coming_soon {
    text-align: center;
}
.innter_banner_subtitle {
    text-align: center;
    color: var(--color6);
}

.menu_bar.sticky {
    background-color: var(--color6);
    border-bottom: 1px solid var(--color5);
    box-shadow: 0px 8px 6px #c3b49152;
}
.menu_bar.sticky .container {
    border: none;
    background-color: transparent;
}
.menu_bar.sticky .logo {
    transform: unset;
    position: relative;
    height: 100px;
    border-radius: inherit;
    width: 100%;
    top: 0;
    left: 0;
}
.menu_bar.sticky .logo > a {
    height: 100%;
    width: 100%;
    display: block;
}
.menu_bar.sticky .logo > a > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.headerright {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.loginareaheader > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color2);
    color: var(--color2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 20px;
    transition: all 0.3s ease;
}
.loginareaheader > a:hover {
    background: var(--color3);
    color: var(--color1);
}