/*Main Css */

:root {
    --primary: #0F0F0F;
    --secondary: #333333;
    --white: #fff;
    
    --font-heading: 'Vidaloka', serif;
    --font-accent: 'Urbanist', serif;
    --font-body: 'Urbanist', serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
    }
    
    ::selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
    }
    
    ::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
    }
    
    ::-webkit-scrollbar-button:start:decrement,
    ::-webkit-scrollbar-button:end:increment {
    display: none;
    }
    
    ::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    }
    
    ::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: var(--primary);
    }
    
    /* Tabbing CSS */
    
    [class^="box-"] {
    display: none;
    }
    
    [class^="box-"].showfirst {
    display: block;
    }
    
    body {
    font-family: var(--font-body);
    background-color: #e6ddcc;
    overflow-x: hidden;
    font-size: 16px;
    color: var(--body-color);
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    }
    
    body.inner-header {
    padding-top: 100px;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    font-family: var(--font-heading);
    display: block;
    color: var(--secondary);
    text-transform: capitalize;
    }
    
    h1 {
    font-weight: 400;
    font-size: 72.64px;
    line-height: 77.48px;
    }
    
    h2 {
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0%;
    color: var(--primary);
    }
    
    h3{
    font-size: 38px;
    }
    
    h2 span.text-bold {
    font-weight: bold;
    }
    
    h4 {
    font-size: 26px;
    line-height: 1.12;
    }
    
    h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.84px;
    }
    
    .text-primary {
    color: var(--primary) !important;
    }
    
    .text-secondary {
    color: var(--secondary) !important;
    }
    
    .btn {
    padding: 19px 30px;
    text-transform: capitalize;
    font-family: var(--font-body) !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    border-radius: 0;
    }
    
    .btn:focus,
    .btn:active:focus {
    box-shadow: none;
    }
    
    .btn i {
    font-size: 14px;
    font-weight: 600;
    }
    
    .btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
    }
    
    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    }
    
    .btn-white {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--primary) !important;
    }
    
    .btn-white:hover,
    .btn-white:active,
    .btn-white:focus {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
    }
    
    .btn-primary-border {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    }
    
    .btn-primary-border:hover,
    .btn-primary-border:active,
    .btn-primary-border:focus {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
    }
    
    .btn-secondary {
    background-color: #68635C;
    border: 1px solid #68635C;
    color: var(--white) !important;
    }
    
    .btn-secondary:hover,
    .btn-secondary:active,
    .btn-secondary:focus {
    background-color: transparent;
    border: 1px solid #68635C;
    color: #68635C !important;
    }
    
    .btn-dark {
    background-color: var(--dark);
    border: 1px solid var(--dark);
    color: var(--white) !important;
    }
    
    .btn-dark:hover,
    .btn-dark:active,
    .btn-dark:focus {
    background-color: transparent;
    border: 1px solid var(--dark);
    color: var(--dark) !important;
    }
    
    *:hover,
    *:focus,
    * {
    outline: none !important;
    }
    
    img {
    max-width: 100%;
    height: auto;
    }
    
    a,
    input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    }
    
    span {
    display: inline-block;
    }
    
    textarea,
    select,
    input[type],
    textarea,
    select,
    button {
    font-family: var(--font-body);
    font-weight: 400;
    }
    
    ::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
    }
    
    ::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
    }
    
    :-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
    }
    
    :-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
    }
    
    ::-moz-placeholder {
    opacity: 1;
    }
    
    /* Padding Classes */
    .pad-zero {
    padding: 0px;
    }
    
    .pad-l-zero {
    padding-left: 0px;
    }
    
    .pad-r-zero {
    padding-right: 0px;
    }
    
    .ovr-hiddn {
    overflow: hidden;
    }
    
    .overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    }
    
    .overlay {
    display: none;
    }
    
    .overlay.active {
    display: block;
    }
    
    /* Custom Slick Css */
    .slick-list {
    margin: 0 -15px;
    }
    
    .slick-slide {
    margin: 0 15px;
    }
    
    .slick-dots {
    padding: 50px 0 0;
    text-align: center;
    }
    
    .slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
    }
    
    .slick-dots li button:before,
    .slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
    }
    
    .slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
    }
    
    .slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
    }
    
    /*header css*/
    
    /* header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: fixed;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    }
    header.sticky{
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
    } */
    
    .main-header {
    width: 100%;
    padding-top: 22px;
    padding-bottom: 18px;
    position: absolute;
    z-index: 2;
    }
    
    /* .menuWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    } */
    
    .desktop-header .menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
    }
    
    .logo {
    display: inline-block;
    }
    
    .logo img {
    display: block;
    }
    
    /* Hamburger Menu */
    .menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
    }
    
    .menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
    }
    
    .menu-Bar span:nth-child(1) {
    top: 0;
    }
    
    .menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
    }
    
    .menu-Bar span:nth-child(3) {
    top: 16px;
    }
    
    .menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
    }
    
    .menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
    }
    
    .menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
    }
    
    /* Menu Css */
    .menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
    }
    
    .menu-callnow {
    color: var(--primary) !important;
    background: transparent;
    }
    
    .menu-callnow i {
    color: var(--dark) !important;
    line-height: 2;
    }
    
    .menu>li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 30px;
    }
    
    .menu>li>a {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    line-height:
    24px;
    text-transform: uppercase;
    color: #fff;
    }
    
    .btn-header {
    background: var(--primary);
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400 !important;
    }
    
    .btn-header:hover {
    transform: scale(1.03);
    }
    
    .menu>li :hover>a,
    .menu>li.active>a {
    color: #ffffff;
    opacity: .7;
    }
    
    @keyframes scale-display {
    0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    }
    
    100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    }
    }
    
    @keyframes scale-display--reversed {
    0% {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    }
    
    99% {
    display: inline-flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    }
    
    100% {
    display: none;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    }
    }
    
    @keyframes btotreverse {
    0% {
    top: 75px;
    opacity: 1;
    }
    
    100% {
    top: 115px;
    opacity: 0;
    }
    }
    
    @keyframes btot {
    0% {
    top: 115px;
    opacity: 0;
    }
    
    100% {
    top: 40px;
    opacity: 1;
    }
    }
    
    /* Main Banner CSS */
    
    /* Custom Slick Css */
    .slick-list {
    margin: 0 -15px;
    }
    
    .slick-slide {
    margin: 0 15px;
    }
    
    .slick-dots {
    padding: 50px 0 0;
    text-align: center;
    }
    
    .slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
    }
    
    .slick-dots li button:before,
    .slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
    }
    
    .slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
    }
    
    .slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
    }
    
    span.count {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 0.92;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    }
    
    .counter span.text-white {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 0.92;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    }
    
    .form-select,
    .form-select:focus {
    background: transparent;
    border: 1px solid #626262;
    border-radius: 24px;
    padding: 8px 34px 8px 29px;
    color: #ddd;
    font-size: 13px;
    margin-bottom: 18px;
    color: var(--bg-light);
    box-shadow: none;
    }
    
    .slick-center button.slick-prev.slick-arrow {
    position: absolute;
    top: 96%;
    left: 50%;
    font-size: 0px;
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    z-index: 0;
    }
    
    .slick-center button.slick-prev.slick-arrow::before {
    content: "\f177";
    font-size: 25px;
    font-weight: 100;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    }
    
    .index-slider button.slick-next.slick-arrow {
    position: absolute;
    top: 92%;
    right: 4%;
    border: none;
    background-color: transparent;
    font-size: 0px;
    width: 30px;
    height: 30px;
    z-index: 2;
    }
    
    .slick-center button.slick-next.slick-arrow {
    position: absolute;
    top: 96%;
    right: 46%;
    border: none;
    background-color: transparent;
    font-size: 0px;
    width: 30px;
    height: 30px;
    z-index: 0;
    }
    
    .slick-center button.slick-next.slick-arrow::before {
    content: "\f178";
    font-size: 25px;
    font-weight: 100;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    }
    
    .index-slider button.slick-next.slick-arrow::before {
    content: "\f178";
    font-size: 25px;
    font-weight: 100;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    }
    
    /* .slider-for img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 454px;
    margin-bottom: 16px;
    }
    
    .slider-nav img{
    height: 174px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    } */
    
    .slick-center img {
    width: 100%;
    height: 500px;
    }
    
    .slick-center .slick-list.draggable {
    padding: 0 24% 0 !important;
    }
    
    .slick-center .slick-slide {
    margin: 0 70px;
    }
    
    .slick-center .slick-current img {
    position: relative;
    top: -41px;
    }
    
    .sliderDiv {
    background-size: cover;
    height: 1200px;
    width: 100%;
    background-repeat: no-repeat;
    }
    
    .socail-icons {
    display: flex;
    }
    
    ul.socail-icons li i {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    
    }
    
    ul.socail-icons li {
    margin-right: 10px;
    }
    
    a.logo {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 46px;
    line-height: 39px;
    }
    
    /* inner pages */
    
    .inner-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 390px; */
    padding-top:
    200px;
    padding-bottom: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    }
    
    .inner-banner .content h1 {}
    
    /* inner pages */
    
    .footer-border {
    height: 1px;
    margin: 61.5px 83px 29px 177px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    }
    
    ul.footer-social-icons {
    display: flex;
    margin-top: 20px;
    align-items: baseline;
    justify-content: center;
    display: none;
    }
    
    ul.footer-social li a {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: var(--white);
    margin-bottom: 15px;
    }
    
    ul.footer-social li a i {
    color: var(--primary);
    margin-right: 17px !important;
    }
    
    ul.footer-social li a:hover {
    color: var(--primary);
    }
    
    ul.footer-social-icons li {
    margin-right: 12px;
    }
    
    ul.footer-social-icons li a {
    color: var(--white);
    background-color: transparent;
    display: flex;
    align-items:
    center;
    justify-content: center;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    }
    
    ul.footer-social-icons li a i {
    font-size: 22px;
    }
    
    .menu-Bar a.logo {
    font-size: 45px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: left;
    color: #1dd3b0;
    }
    
    .menu>li>a:hover {
    color: var(--white);
    opacity: .7;
    }
    
    ul.breadcrumb-menu {
    display: block;
    text-transform: uppercase;
    }
    
    ul.breadcrumb-menu li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.84px;
    }
    
    ul.breadcrumb-menu li a {
    color: var(--dark-light);
    }
    
    ul.breadcrumb-menu li+li {
    margin-left: 0px;
    }
    
    ul#counter {
    display: flex;
    align-items: center;
    gap: 7rem;
    /* padding: 24px 36px; */
    /* border-radius: 8px; */
    /* box-shadow: 0 10px 33px 0 rgba(130, 130, 130, 0.2); */
    /* background-color: #222; */
    /* margin-top: -112px;*/
    }
    
    .counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
    }
    
    .counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
    }
    
    ul#counter li .counter>div {
    font-weight: 600;
    line-height: 1;
    font-size: 38px;
    color: #fff;
    /* padding-bottom: 10px; */
    flex-shrink: 0;
    }
    
    ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    ul#counter li .counter span.text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: var(--white);
    font-weight: normal;
    }
    
    ul#counter li:nth-child(1) .counter>div {
    color: #ec4e52;
    }
    
    ul#counter li:nth-child(2) .counter>div {
    color: #ebd142;
    }
    
    ul#counter li:nth-child(3) .counter>div {
    color: #62a488;
    }
    
    .counter span.text-dark {
    font-weight: 600;
    font-size: 30px;
    }
    
    /* ------- */
    
    .index-slider-news button.slick-prev.slick-arrow {
    position: absolute;
    top: 23%;
    left: -68px;
    font-size: 0px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background-color: transparent;
    z-index: 2;
    line-height: 0;
    border-radius: 50%;
    }
    
    .index-slider-news button.slick-prev.slick-arrow::before {
    content: "\f104";
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .index-slider-news button.slick-next.slick-arrow {
    position: absolute;
    top: 23%;
    right: -70px;
    border: none;
    background-color: transparent;
    font-size: 0px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background-color: transparent;
    background-color: transparent;
    line-height: 0;
    border-radius: 50%;
    z-index: 2;
    }
    
    .index-slider-news button.slick-next.slick-arrow::before {
    content: "\f105";
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    font-family: "Font Awesome 5 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .form-control {
    border: 1px solid #D2D2D2;
    margin-bottom: 20px;
    border-radius: 0;
    height: 35px;
    }
    
    /* Accordian */
    
    .accordion-list {
    position: relative;
    }
    
    .accordion-list li {
    padding: 0px 0px 22px 2px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border-bottom: 0;
    background: white;
    box-shadow: none;
    border-radius: 0px;
    margin-bottom: 0rem;
    }
    
    ul.accordion-list li span {
    display: flex;
    position: relative;
    }
    
    .accordion-list li h3 {
    color: var(--secondary);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    margin-right: 14px;
    }
    
    .accordion-list li.active h3 {
    color: var(--primary);
    font-size: 20px;
    
    }
    
    ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: var(--secondary);
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 900;
    top: 0;
    }
    
    .accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
    }
    
    ul.accordion-list li.active h3:after {
    content: "\f077";
    color: var(--primary);
    }
    
    .answer p {
    margin-top: 16px;
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    }
    
    /* Accordian */
    
    /* Subscription */
    
    .subscribe {
    border: solid 1px #ffff;
    height: 52px;
    margin-top: 0;
    border-radius: 0;
    position: relative;
    max-width:
    430px;
    margin: auto;
    }
    
    .subscribe button.btn-subscribe {
    text-transform: uppercase;
    display: inline-block;
    height: 52px;
    border-radius: 0;
    border:
    none;
    background: #ffffff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 35px;
    text-align: center;
    color:
    #000000;
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    }
    
    .subscribe input.form-control {
    border: none;
    /* width: 100%; */
    padding: 8px 13px;
    height: 100%;
    margin: 0;
    display:
    inline-block;
    color: #ffffff;
    background-color: transparent;
    padding-right: 10.5rem;
    }
    
    .subscribe input.form-control::placeholder {
    color: #E6E6E6;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    
    }
    
    /* Subscription */
    
    .sec-pad {
    padding-top: 70px;
    padding-bottom: 70px;
    }
    
    /* topbar */
    
    .top-bar {
    padding: 8px 0;
    background: var(--primary);
    }
    
    .top-social-icons {
    display: flex;
    justify-content: end;
    gap: 20px;
    }
    
    .top-contact-info {
    display: flex;
    gap: 22px;
    }
    
    .top-contact-info li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    }
    
    .top-contact-info li a {
    color: var(--white);
    }
    
    .top-social-icons li a i {
    color: var(--white);
    }
    
    /* topbar */
    
    /* contact page */
    
    .contactIconBg li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    }
    
    .contactIconBg .icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    background-color: var(--primary);
    }
    
    /* contact page */
    
    .related-slider span.arr-left {
    top: 35%;
    position: absolute;
    left: -2%;
    font-size: 26px;
    color: var(--secondary);
    cursor: pointer;
    }
    
    .related-slider span.arr-right {
    top: 35%;
    position: absolute;
    right: -2%;
    font-size: 26px;
    color: var(--secondary);
    cursor: pointer;
    }
    
    footer {
    background: #00000080;
    }
    
    footer .border-top {
    border-top: 1px solid #808080 !important;
    }
    
    .f-logo {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 57.65px;
    line-height:
    58.5px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    }
    
    .f-logo:hover {
    color: var(--white);
    }
    
    .f-logo-content {
    margin-top: 7px;
    font-size: 16px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0.5px;
    color: var(--white);
    }
    
    .f-menu {
    margin-top: 30px;
    }
    
    .f-menu .f-icon-box {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
    }
    
    .f-menu .f-icon-box a,
    .f-menu .f-icon-box p {
    color: var(--white);
    }
    
    .f-menu .f-icon-box i {
    color: var(--white);
    }
    
    ul.f-menu li a {
    color: var(--white);
    margin-bottom: 3px;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    }
    
    ul.f-menu li a:hover {
    color: var(--primary);
    }
    
    .footer-content {
    padding-top: 100px;
    padding-bottom: 80px;
    }
    
    footer h6 {
    font-family: var(--font-body);
    color: var(--white);
    position: relative;
    font-weight: 600;
    font-size:
    20px;
    line-height: 26px;
    text-transform: uppercase;
    }
    
    .copyright {
    padding-top: 30px;
    padding-bottom: 28px;
    background: var(--primary);
    }
    
    .copyright p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    display:
    flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    }
    
    .mainBanner {
    height: 780px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
    z-index: 1;
    }
    
    .hero-content p.para {}
    
    .hero-content .btn-primary {}
    
    section.about .content p.para {}
    
    section.about .content .btn-primary {}
    
    .top-bar p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    }
    
    .top-bar p a {
    color: #fff;
    text-decoration: underline;
    }
    
    .top-bar p a:hover {
    /* text-decoration: underline; */
    }
    
    ul.top-icons {
    display: flex;
    gap: 30px;
    }
    
    ul.top-icons li {}
    
    ul.top-icons li a {
    color: #fff;
    font-size: 21px;
    }
    
    .main-header .search {
    max-width: 200px;
    position: relative;
    }
    
    .main-header .search span {
    position: absolute;
    font-size: 0;
    background: transparent;
    left: -21px;
    top: 2px;
    bottom: 0;
    display:
    flex;
    align-items: center;
    }
    
    .search span input[type="submit"] {
    background: transparent;
    border: 0;
    padding: 2px 9px;
    position: absolute;
    left:
    0px;
    z-index: 2;
    }
    
    .search span i {
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #fff;
    }
    
    .search .form-control {
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    }
    
    .search .form-control::placeholder {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #E6E6E6;
    }
    
    .topWrap {
    display: flex;
    align-items: baseline;
    gap: 30px;
    justify-content: end;
    }
    
    .topWrap select.form-control {
    margin-bottom: 0;
    border: 0;
    max-width: 92px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    background: transparent;
    appearance: auto;
    padding: 0;
    }
    
    a.cart {
    position: relative;
    }
    
    a.cart span {
    position: absolute;
    background: #AE2D2D;
    height: 14px;
    width: 14px;
    right: -5px;
    top: 0;
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }
    
    .hero-content h4 {
    font-weight: 400;
    font-size: 51.26px;
    line-height: 64.3px;
    color: #000;
    margin-bottom: 17px;
    }
    
    .hero-content {
    max-width: 595px;
    }
    
    .con-pad {
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 50px;
    padding-right: 50px;
    }
    
    .categoriesWrap {
    /* background: #FFFFFF66; */
    box-shadow: 0px 4px 8px 0px #00000040;
    padding: 30px 60px;
    background: #FFFFFF66;
    }
    
    .categoriesLeft {
    position: relative;
    }
    
    .categoriesLeft p {
    padding: 23px 0 6px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary);
    }
    
    a.btn-more {
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    }
    
    .categoriesLeft .img {
    margin: 14px 0 -150px;
    }
    
    section.categories {
    background: #FFFFFF66;
    margin-top: 70px;
    }
    
    a.categories-card {
    text-align: center;
    background: #FFFFFF80;
    box-shadow: 0px 2px 8px 0px #00000026;
    padding: 30px 34px 28px 34px;
    min-height: 395px;
    }
    
    a.categories-card h6 {
    padding-top: 18px;
    color: #000000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    }
    
    .categoriesImg img {
    display: block;
    }
    
    section .top-sec {
    padding-bottom: 30px;
    }
    
    section .top-sec p {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    }
    
    a.mushroomImg {
    width: 100%;
    }
    
    a.mushroomImg img {
    width: 100%;
    }
    
    .mushroom-card {
    background: #FFFFFF66;
    box-shadow: 0px 1px 6px 0px #00000026;
    position: relative;
    }
    
    .mushroom-card span.badges {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    position: absolute;
    padding: 12px 12px;
    left: 25px;
    top: 25px;
    }
    
    span.badges.blue {
    background: #C1E9FF;
    }
    
    span.badges.pink {
    background: #FFC1C1;
    }
    
    span.badges.yellow {
    background: #FFF9C1;
    }
    
    .mushroom-card p {
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
    padding: 0 12px;
    margin: 8px 0 12px;
    }
    
    .mushroom-card .priceWrap {
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    padding-bottom: 10px;
    margin-top: 12px;
    }
    
    .mushroom-card .priceWrap .price {
    display: flex;
    gap: 10px;
    align-items: baseline;
    }
    
    .mushroom-card .priceWrap .price .p1,
    .mushroom-card .priceWrap .price .p2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 0;
    margin-bottom: 0;
    }
    
    .mushroom-card hr {
    background: #999999;
    padding: 0px 12px;
    opacity: 1;
    max-width: 94%;
    margin: auto;
    }
    
    .bg-light {
    background: #FFFFFF66 !important;
    }
    
    a.wishlist {
    position: absolute;
    right: 29px;
    top: 33px;
    color: #000;
    font-size: 20px;
    }
    
    .mushroom-card .priceWrap .rating a {
    color: #EC9D0F;
    }
    
    .eating-card {
    position: relative;
    }
    
    .eating-card .eatingTxt h6 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    }
    
    .eating-card .eatingTxt p {
    padding: 40px 0 55px;
    color: #fff;
    /* max-width: 500px; */
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    }
    
    a.btn-read {
    color: #0F0F0F;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    background: #F2F2F2;
    padding: 10px 60px;
    }
    
    .eating-card .eatingTxt {
    position: absolute;
    top: 0;
    max-width: 500px;
    left: 78px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    }
    
    a.btn-read:hover {
    color: #F2F2F2;
    background: #000;
    }
    
    .painting-card {
    text-align: center;
    }
    
    .painting-card span {
    font-size: 21px;
    line-height: 48px;
    }
    
    .painting-card p {
    /* color: #E9E9E9; */
    margin: 6px 0 28px;
    }
    
    .paintingWrap {
    background: #e4dfd5;
    border: 1px solid #bebcb7;
    }
    
    .paintingWrap .eatingImg img {
    display: block;
    }
    
    .reviews-card {
    border: 2px solid #999999;
    padding: 30px;
    text-align: center;
    }
    
    .reviews-card .rating i {
    color: #EC9D0F;
    font-size: 16px;
    }
    
    .reviews-card h6 {
    padding: 12px 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    }
    
    .reviews-card p {
    text-align: start;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width:
    453px;
    padding-bottom: 30px;
    margin-bottom: 30px !important;
    border-bottom: 1px solid;
    margin: auto;
    }
    
    .reviews-card span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    }
    
    .reviews-card span strong {
    font-weight: 600;
    }
    
    section.abtFrams .content {
    max-width: 700px;
    }
    
    section.abtFrams .content h2 {
    padding-bottom: 20px;
    }
    
    section.abtFrams .content p {
    margin-top: 12px;
    }
    
    section.abtFrams .content .btn {
    margin-top: 25px;
    }
    
    .happeningWrap {
    padding: 30px;
    background: #FFFFFF66;
    box-shadow: 0px 4px 8px 0px #00000040;
    }
    
    .happeningWrap .txt h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    }
    
    .happeningWrap .txt p {
    padding: 12px 0 30px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    }
    
    .happeningWrap .txt .btn-primary {
    padding: 10px 30px;
    }
    
    .happeningWrap .txt {
    max-width: 320px;
    padding-left: 20px;
    }
    
    .happeningImg img {
    display: block;
    }
    
    section.happening {
    margin-bottom: 50px;
    }
    
    .contact-footer h2 {
    color: #E6DDCC;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    }
    
    p.f-content {
    padding: 12px 0 18px;
    text-align: center;
    color: #fff;
    max-width: 430px;
    margin: auto;
    }
    
    ul.other-links {
    display: flex;
    gap: 30px;
    }
    
    ul.other-links li a {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
    }
    
    ul.other-links li a:hover {
    text-decoration: none;
    }
    
    .swiper {
    width: 100%;
    height: 100%;
    }
    
    /* .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    } */
    
    .swiper-pagination {
    bottom: 0px !important;
    z-index: 2 !important;
    }
    
    .swiper-wrapper {
    padding-bottom: 30px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
    font-size: 12px !important;
    color: #000 !important;
    font-weight: 700 !important;
    }
    
    .swiper .btn1 {
    position: absolute;
    bottom: 14px;
    right: -17%;
    z-index: 3 !important;
    /* background: beige; */
    }
    
    .swiper .btn2 {
    position: absolute;
    bottom: 14px;
    left: -18%;
    z-index: 3 !important;
    }
    
    .border1 {
    position: relative;
    }
    
    .border1::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: dashed;
    z-index: 12 !important;
    top: -15px;
    border-width: 2px;
    /* height: 1px; */
    }
    
    .btnWraping {
    position: relative;
    background: #f6f3ec;
    padding: 17px 40px;
    width: fit-content;
    margin: auto;
    z-index: 14;
    }
    
    .mySwiper1 .btnWraping {
    background: #f0ebe0;
    }
    
    .mySwiper2 .btnWraping {
    background: #f0ebe0;
    }
    
    .inner-banner .hero-content {
    text-align: start !important;
    max-width: 100%;
    }
    
    .inner-banner .hero-content h1 {
    font-size: 52px;
    }
    
    .category-card {
    /* background-color: #fafafa; */
    padding: 40px 10px 30px;
    margin-bottom: 0px;
    }
    
    h4.filter-title {
    color: #100D0C;
    font-size: 32.41px;
    font-weight: 400;
    font-size: 29px;
    line-height: 48px;
    margin-bottom: 26px;
    padding-bottom: 12px;
    border-bottom: 1px dashed;
    border-width: medium;
    }
    
    .category-content ul li a {
    color: #0F0F0F;
    font-weight: 400;
    font-size: 17.51px;
    line-height: 37.8px;
    }
    
    .price-card {
    padding: 0px 10px 80px;
    }
    
    .price-content {
    margin-top: 24px;
    }
    
    .filter-price {
    width: 100%;
    border: 0;
    margin: 0;
    position: relative;
    padding-bottom: 40px;
    }
    
    .price-field {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* background-color: var(--primary); */
    margin-bottom: 16px;
    height: 6px;
    }
    
    .price-field input[type=range] {
    position: absolute;
    }
    
    /* Reset style for input range */
    
    .price-field input[type=range] {
    width: 100%;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    border-radius: 5px;
    pointer-events: none;
    -webkit-appearance: none;
    }
    
    .price-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    }
    
    .price-field input[type=range]:active,
    .price-field input[type=range]:focus {
    outline: 0;
    }
    
    /* Style toddler input range */
    
    .price-field input[type=range]::-webkit-slider-thumb {
    /* WebKit/Blink */
    position: relative;
    -webkit-appearance: none;
    border: 4px solid #222222;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
    box-shadow: 0 2px 4px 0 rgba(9, 87, 203, 0.15);
    background-color: #fff;
    }
    
    /* Style track input range */
    
    .price-field input[type=range]::-webkit-slider-runnable-track {
    /* WebKit/Blink */
    width: 100%;
    height: 5px;
    cursor: pointer;
    border-radius: 22.5px;
    background-color: #222;
    }
    
    /* Style for input value block */
    
    .price-wrap {
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.83;
    justify-content: space-between;
    position: absolute;
    /* bottom: -30px; */
    width: 100%;
    }
    
    .price-wrap-1,
    .price-wrap-2 {
    /* display: flex; */
    background-color: transparent;
    padding: 4px 5px;
    border-radius: 0;
    align-items:
    center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 20px;
    text-align: center;
    color:
    #1c1f23;
    /* border: 1px solid; */
    }
    
    .price-wrap #one,
    .price-wrap #two {
    margin: 0;
    padding: 0;
    background: 0;
    border: 0;
    outline: 0;
    width: 40px;
    text-align: center;
    }
    
    /* Style for active state input */
    
    .price-field input[type=range]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
    }
    
    .price-field input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 0.5px #fff;
    transition-duration: 0.3s;
    }
    
    .category-content label {
    font-family: 'Vidaloka';
    font-weight: 400;
    font-size: 19px;
    line-height: 48px;
    }
    
    .category-content ul li a:hover {
    text-decoration: underline;
    }
    
    .productsInnerWrap {
    padding: 0px 20px;
    }
    
    section.products-inner .mushroom-card {
    margin-bottom: 30px;
    }
    
    .category-card hr {
    border-bottom: 1px dashed;
    border-width: medium;
    opacity: 1;
    background: transparent;
    }
    
    .happeningWrap2 {
    /* padding: 30px; */
    margin-bottom: 60px;
    }
    
    .happeningWrap2 .txt h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    }
    
    .happeningWrap2 .txt p {
    padding: 12px 0 30px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    }
    
    .happeningWrap2 .txt .btn-primary {
    padding: 10px 30px;
    }
    
    .happeningWrap2 .txt {
    max-width: 320px;
    padding-left: 20px;
    }
    
    .happeningImg2 img {
    display: block;
    }
    
    section.events-inner {
    padding-right: 90px;
    padding-left: 90px;
    }
    
    .reviews-inner .reviews-card {
    margin-bottom: 34px;
    }
    
    .productsDetailsSec a.wishlist {
    color: #fff;
    }
    
    .productsDetailsSecTxt h3 {
    font-weight: 400;
    font-size: 39px;
    line-height: 48px;
    vertical-align: middle;
    color: #0f0f0f;
    }
    
    .productsDetailsSecTxt p.price {
    padding-top: 15px;
    color: #0f0f0f;
    font-weight: 500;
    font-size: 30px;
    line-height: 26px;
    }
    
    .productsDetailsSecTxt {
    padding: 80px 0px 0px 40px;
    }
    
    .productsDetailsSecTxt .cate {
    padding: 28px 0 0;
    }
    
    .productsDetailsSecTxt .cate label {
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #0f0f0f;
    }
    
    .productsDetailsSecTxt .cate a {
    color: #0f0f0f;
    text-decoration: underline;
    }
    
    .quantity {
    display: inline-flex;
    gap: 8px;
    margin: 28px 0 0;
    }
    
    .quantity input[type="number"] {
    color: #68635C;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    height: 50px;
    width: 60px;
    text-align: center;
    background: #E6DDCC;
    }
    
    .quantity .btn-quantity {
    background: #68635C;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 53px;
    text-transform: none;
    }
    
    .productsDetailsLeft {
    position: relative;
    }
    
    .productsDetailsLeft span.badges {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    position: absolute;
    padding: 12px 12px;
    left: 25px;
    top: 25px;
    }
    
    .product-sec ul.tab-list {
    display: flex;
    gap: 18px;
    padding-top: 40px;
    border-bottom: 1px dashed;
    text-transform: uppercase;
    margin-bottom: 20px;
    justify-content: start;
    padding-bottom: 12px;
    border-width: medium;
    }
    
    .product-sec ul.tab-list li.active {
    background-color: #f8f8f8;
    color: var(--primary);
    border-bottom: 0px solid;
    background: #E6DDCC;
    }
    
    .product-sec ul.tab-list li {
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    color: #252525;
    padding: 12px 40px;
    cursor: pointer;
    text-transform: capitalize;
    }
    
    .product-sec ul.tab-list li:hover {
    color: var(--primary);
    border-bottom: 0px solid;
    background: #E6DDCC;
    }
    
    .product-sec .box {
    padding-top: 0px;
    padding-left: 5px;
    }
    
    section.related {
    background: #FFFFFF66;
    margin-top: 50px;
    }
    
    section.about-inner .content {
    padding-top: 20px;
    padding-left: 50px;
    }
    
    section.about-inner .content h3 {
    font-weight: 400;
    font-size: 39px;
    line-height: 48px;
    }
    
    section.about-inner .content p {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    padding-top: 15px;
    max-width: 890px;
    }
    
    section.about-inner .content+.content {
    padding-top: 40px;
    }
    
    section.whyChoose{
    margin-top: 50px;
    }
    
    section.whyChoose h3 {
    font-weight: 400;
    font-size: 39px;
    line-height: 48px;
    }
    
    .chooseIcons {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
    }
    
    .chooseIcons .txt p {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 22px;
    line-height: 48px;
    }
    
    .chooseIcons .txt span {
    max-width: 420px;
    }
    
    .healthWrap {
    margin-top: 70px;
    }
    
    .healthWrap .healthTxt h6 {
    font-weight: 400;
    font-size: 22px;
    line-height: 48px;
    }
    
    .healthWrap .healthTxt p {
    max-width: 420px;
    }
    
    .healthWrap .healthTxt {
    padding-left: 15px;
    }
    
    .eventDetailDesc p {
    margin-top: 34px;
    }
    
    .eventDetailDesc .btn-secondary {
    margin-top: 30px;
    }
    
    .eventDetailImg img {
    width: 100%;
    }


    .contactUsTxt {}

.contactUsTxt span {
    color: #777777;
    font-family: 'Lato';
    font-weight: 400;
    font-style: italic;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1.13px;
    padding: 18px 0 28px;
}

.form-control {
    height: 53px;
    background: transparent;
    border: 1px solid #979797;
}

.form-control::placeholder {
    font-family: 'Lato';
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.05px;
}

.form-control:focus {
    background: transparent;
}
 

.contactRight .conTxt {
    padding-top: 22px;
}

.contactRight .conTxt h6 {
    font-weight: 400;
    font-size: 22px;
    line-height: 48px;
}

.contactRight .conTxt a, .contactRight .conTxt p { 
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #010101;
    display: block;
    max-width: 275px;
}
 

textarea.form-control {
    height: 200px;
    padding: 14px;
}

.hero-content h1 {
    color: #000 !important;
}