@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Oswald:wght@300;400;500&family=Poppins:wght@300;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap"); */

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --third-font: "Inter", sans-serif;
    /* --secondary-font: "Oswald", sans-serif; */
    --primary-color: #153448;
    --primary-color-light: #f5fbff;
    --secondry-color: #dfd0b8;
    --secondry-light: #fbf2e4;
    --third-color: #948979;
    --fourth-color: #3c5b6f;
    --white: #fff;
    --black: #181717;
    --btn-bg-dark: linear-gradient(
        90deg,
        rgba(21, 52, 72, 1) 0%,
        rgba(85, 127, 154, 1) 50%
    );
    --btn-bg-light: radial-gradient(
        circle,
        rgba(223, 208, 184, 1) 0%,
        rgba(185, 163, 132, 1) 100%
    );
}

:root {
    --light-green: #eef5f1;
    --medium-green: #26714e;
    --dark-green: #16402c;
    --light-golden: #b8aa7e;
    --dark-golden: #b49c30;
    --bright-yellow: #e9c748;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* desktop menu Start */

body {
    font-family: var(--primary-font);
}

html {
    --top-spacing: 140px;
    scroll-padding-top: var(--top-spacing);
}

a{
    text-decoration:none;
}

.topbar {
    position: relative;
    width: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    transform: none;
    z-index: 3;
    animation: fixedheader 1s forwards;
    border-radius: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    box-shadow: 1px 0px 3px 0px #31704e;
}

.fixed-nav {
    position: fixed;
}

@keyframes fixedheader {
    0% {
        transform: translateY(-28px);
    }

    100% {
        transform: translateY(0px);
    }
}

.topbar .container {
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.header_layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mn-logo {
    /* padding: 5px 0px;
      max-width: 230px; */
    padding: 5px 0px;
    /* max-width: 274px; */
    display: flex;
    height: 60px;
    gap: 0px;
    font-weight: 550;
    line-height: 1.2;
    color: black;
    font-size: 17px;
    align-items: center;
}

.mn-logo img {
    /* max-width: 100%; */
    height: 80%;
    width: auto;
}

.mn-logo a {
    display: block;
}

.mob-menu-icon {
    display: none;
    text-align: right;
}

.mob-menu-icon .fa-bars {
    font-size: 25px;
    /* color: var(--secondry-color); */
    font-weight: 700;
    cursor: pointer;
    color: #8a7c60;
}

.navmenu .justify-center {
    display: flex;
    justify-content: space-between;
}

.navmenu ul {
    margin: 0px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style-type: none;
    gap: 0px;
    min-height: 42px;
}

.navmenu ul li.dropdown {
    position: relative;
    /* margin-right: 20px; */
}

.navmenu ul li.dropdown a {
    position: relative;
    padding: 24px 14px;
}

.navmenu ul li a {
    /* font-family: var(--primary-font); */
    font-weight: 400;
    text-transform: uppercase;
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    display: block;
    transition: all 0.14s ease 0s;
    padding: 15px;
    font-weight: 550;
    /* font-family: var(--primary-font); */
}

.navmenu ul li:hover > a {
    color: var(--third-color);
}

.navmenu ul li.dropdown > a::before {
    font-family: "FontAwesome";
    font-weight: 600;
    color: #333;
    position: absolute;
    right: 0;
    top: 48%;
    font-size: 10px;
    content: "\f078";
    transform: translateY(-50%);
}

.navmenu ul li.dropdown ul.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    display: block;
    background-color: var(--white);
    min-width: 220px;
    border-top: 3px solid var(--secondry-color);
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
    z-index: 9;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navmenu ul li.dropdown:hover ul.submenu {
    opacity: 1;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    z-index: 9;
}

.navmenu ul li.dropdown ul.submenu li a {
    text-transform: inherit;
    /* padding: 5px 15px; */
    padding: 10px 15px;
    font-weight: 400;
    display: block;
    border-top: 1px solid #eee;
    text-align: left;
}

.navmenu ul li.dropdown ul.submenu li a:hover {
    background-color: var(--secondry-color);
    color: var(--black);
}

.navmenu ul li .heasder_btn {
    transition: 0.5s;
    background: linear-gradient(90deg, rgb(75 135 103) 0%, rgb(36 104 67) 50%);
    border: 1px solid var(--secondry-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 30px;
    transition: 0.3s ease;
}



.navmenu ul li .heasder_btn:hover {
    /* color: var(--white); */
    background: linear-gradient(90deg, rgb(110 102 52) 0%, rgb(145 137 85) 50%);
    color:white;
}

.mobile-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    height: 100%;
    background: #f9f6f1;
    background: white;
    z-index: 11;
    transition: 0.7s ease;
}

/* desktop menu  End*/

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    /* background: var(--primary-yellow);
color: var(--text-dark); */
    background: var(--dark-golden);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.header-nav {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu {
    background-color: #b8860b;
    padding: 1rem 5%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* mobile Menu Start  */

.ovelays.active {
    display: block;
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5294117647);
}

body.fixed-body {
    overflow: hidden;
}

.mobile-menu.tettx {
    max-width: 320px;
    left: 0;
}

.closeMenu {
    color: var(--white);
    position: absolute;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 5px 10px;
    cursor: pointer;
}

.mobile-menu .mn-logo {
    /* background-color: var(--secondry-color); */
    background-color: #d3dfdc;
    box-shadow: -3px 1px 5px 0px #659389;
    width: 100%;
    text-align: center;
    padding: 13px;
    max-width: inherit;
    height: 80px;
    line-height: 1.7;
}

.mobile-menu .mn-logo img {
    max-width: 150px;
}

.mobile-menu ul li {
    display: block;
    position: relative;
}

.mobile-menu ul li a {
    /* color: var(--white); */
    text-decoration: none;
    display: block;
    padding: 11px 24px;
    color: #1b402c;
    font-size: 17px;
    font-weight: 500;
    /* border-bottom: 1px solid #ddd; */
}

.mobile-menu ul li a:not(.active):hover {
    background: #f5f3f0;
}

/* .drop-down {
      position: absolute;
      right: 10px;
      top: 25px;
      transform: translateY(-50%);
      color: var(--white);
    } */
.drop-down {
    position: relative;
}

.drop-down.active {
    background: #e1d7c7;
}

.drop-down::after {
    content: "\f078";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "FontAwesome";
}

.drop-down.active::after {
    content: "\f077";
}

.submenu-mob {
    display: none;
}

.submenu-mob.mob {
    display: block;
    /* padding-left: 20px; */
    /* background-color: var(--secondry-color); */
    border-left: 2px solid #78938d;
    margin-left: 30px;
    margin-top: 3px;
}

.submenu-mob.mob li a {
    /* border-bottom: 1px solid var(--primary-color); */
    color: var(--primary-color);
    /* padding: 0px; */
    padding-left: 25px;
    /* padding-bottom: 8px; */
    padding-top: 8px;
    height: auto;
    font-weight: 400;
}

.submenu-mob li a {
    /* transition: 2s; */
    height: 0;
}

.mobile-menu .social-icons {
    margin-top: 20px;
}

.mobile-menu .social-icons ul {
    display: flex;
    gap: 10px;
    padding-left: 10px;
}

.mobile-menu ul {
    margin: 0px;
    padding: 0px;
    padding-left: 0px;
    max-height: 71%;
    overflow-y: auto;
    margin-top: 14px;
}

.mobile-menu ul li {
    display: block;
    position: relative;
}

.mobile-menu .social-icons ul li a {
    border-bottom: none;
    width: 40px;
    height: 40px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondry-color);
    border-radius: 50%;
}
.mobile-menu .social-icons img {
    object-fit: cover;
}

/* mobile Menu End  */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
    .navmenu {
        display: none;
    }

    .mob-menu-icon {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: right;
    }

    .mobile-menu .mn-logo {
        text-align: left;
    }

    .mn-logo {
        gap: 0px;
        font-size: 15px;
    }

    .mn-logo img {
        width: auto;
    }
}

@media (max-width: 400px) {
    .topbar .container {
        padding: 0 5px;
    }

    .topbar {
        padding: 0px 5px;
    }
}
