/************************************/
/*        Custom Css Starts         */
/************************************/
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');
@media(min-width: 1500px) {
    .container {
        max-width: 90%;
    }
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    font-family: 'SF Pro Display', sans-serif;
    color: #141414;
}
section {
    padding: 80px 0;
}
input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}
figure {
    margin-bottom: 0;
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6,p {
    margin-bottom: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.card {
    border-radius: 0;
    border: none;
}
.main_heading {
    color: #2D8C1E;
    font-size: 42px;    
}
.heading{
    font-size: 36px;
    font-weight: 500;
}

.section_main_heading {
    font-size: 20px;
}

.section_sub_heading {
    font-size: 16px;
}
.heading24{
    font-size: 24px;
    color: #fff;
}
.heading28{
    font-size: 28px;
    font-weight: 700;
}

.section_bg_image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.btn_1 {
    border-radius: 4px;
    background-color: #2D8C1E;
    padding: 12px 40px;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #2D8C1E;
}

.btn_2 {
    border-radius: 4px;
    background-color: #fff;
    padding: 12px 60px;
    color: #8C6239;
    font-weight: 700;
    font-size: 22px;
    border: 1px solid #fff;
}

.btn_3 {
    border-radius: 4px;
    background-color: #8C6239;
    padding: 12px 40px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #8C6239;
}
.btn_4 {
    border-radius: 4px;
    background-color: #141414;
    padding: 12px 40px;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #141414;
}
#back_to_top {
    display: inline-block;
    background-color: #FF9800;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
    border: 2px solid #fff;
    outline: 2px solid #FF9800;
    overflow: hidden;
}
#back_to_top::before{
    background-color: #2D8C1E;
    content: '';
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    border-radius: 100px;
    /* border: 2px solid #fff; */
    transition: all .3s ease-in-out;
        
}
#back_to_top:hover::before{
    top: 0;
    cursor: pointer;    
    z-index: 0;
}

#back_to_top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
    color: #fff;
    z-index: 111;
}
#back_to_top.show {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}


/*---------Top bar start------------*/
.top_bar {
    padding: 30px 0;
    border-bottom: 1px solid #E3E3E3;
}
.search_bar{
    width: 100%;
}
.search_bar input{
    width: 100%;
    background: #F5F5F5;
    border: none;    
}
.search_bar input::placeholder{
    color: #707070;
}
.search{
    display: flex;
    align-items: center;
    background: #F5F5F5;
    /* padding: 10px; */
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    position: relative;
    margin-right: 20px;
}
.header_left {
    display: flex;
    align-items: center;
    width: 70%;
    margin-left: auto;
    justify-content: space-between;
}
.cart{
    display: flex;
    align-items: center;
}
.header_left .dropdown-toggle::after {
    display: none;
    
}
.search .dropdown{
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #E3E3E3;
    /* height: 100%; */
    padding: 10px;
    padding-right: 30px;
}
.search .dropdown-menu.show {
    display: block;
    transform: translate3d(0px, 45px, 0px) !important;
    border-radius:0;
    padding: 0;
}
.search .dropdown li {
    border-bottom: 1px solid #ccc;
    /* padding: 5px 0; */
}
.search .dropdown li:focus{
    outline: none;
}
.search .dropdown li:last-of-type{
    border: none;
}
.search .dropdown a{
    color: #707070;
    padding: 8px;
}
.search_icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #2D8C1E;
    padding: 10px;
    height: 100%;
    border-radius: 0 5px 5px 0;
    color: #fff;
    cursor: pointer;
    border: 1px solid #2D8C1E;
    display: flex;
    align-items: center;
}
.search .dropdown-toggle::after {
    display: block;
    content: '\f107';
    font-family: FontAwesome;
    border: none;
    position: absolute;
    right: 20px;
    transform: translate(10px, -50%);
    top: 50%;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: transparent;
}
.header_left span i,
.header_left span a i,
.header_left .dropdown a i{
    color: #707070;
    font-weight: 500;
}
.cart  span{
    margin-right: 20px;
}
.cart .cart_text p{
    line-height: 1;
    color: #707070;
    font-weight: 400;
}
.cart .cart_text p strong{
    color: #141414;
}
.header_left .dropdown-menu.show {
    display: block;
    transform: translate3d(20px, 34px, 0px) !important;
    border-radius: 0;
    padding:0 ;
}

.header_left .dropdown li {
    border-bottom: 1px solid #ccc;
}
.header_left .dropdown li:focus{
    outline: none;
}
.header_left .dropdown li:last-of-type{
    border: none;
}
/*---------Top bar End------------*/
/*---------Nav bar start------------*/
.side-bar{
    background: #1b1a1b;
    backdrop-filter: blur(15px);
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -250px;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: left;
    z-index: 11111111;
   }
   .side-bar::-webkit-scrollbar {
     width: 0px;
   }   
   .side-bar.active{
    left: 0;
   }   
   .side-bar .menu{
    width: 100%;
    margin-top: 50px;
   }
   
   .side-bar .menu .item{
    position: relative;
    cursor: pointer;
   }
   .side-bar .menu .item a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 10px 22px;
    /* line-height: 60px; */
    position: relative;
   }   
   .side-bar .menu .item a:hover{
    background: #33363a;
    transition: 0.3s ease;
   }
   
   .side-bar .menu .item i{
    margin-right: 15px;
   }   
   .side-bar .menu .item a .dropdown{
    position: absolute;
    right: 0;
    /* margin: 20px; */
    transition: 0.3s ease;
    top: 35%;
    /* transform: translate(-50%, -50%); */
   }   
   .side-bar .menu .item .sub-menu{
    background: #262627;
    display: none;
   }   
   .side-bar .menu .item .sub-menu a{
    padding-left: 80px;
   }   
   .rotate{
    transform: rotate(90deg);
   }   
   .close-btn{
    position: absolute;
    color: #fff;   
    font-size: 23px;
    right:  0px;
    margin: 15px;
    cursor: pointer;
   }   
   .menu-btn{
    font-weight: 500;
    position: absolute;
    color: #141414;
    font-size: 20px;
    cursor: pointer;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 18px;
   }   
   .main{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #FBAE36;
    position: relative;
    display: flex;
    align-items: center;
   }
   
   .main h1{
    color: rgba(255, 255, 255, 0.8);
    font-size: 60px;
    text-align: center;
    line-height: 80px;
   }
   
@media (max-width: 900px){
    .main h1{
      font-size: 40px;
      line-height: 60px;
    }
   }
 
   
a.nav-link {
    color: #fff;
    text-transform: uppercase;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: #fff;
}
nav.navbar.navbar-expand-lg {
    background: #2D8C1E;
    padding: 0;
}

.navbar-toggler {
   border: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
.nav_menu{
    display: flex;
    position: relative;
}
.main h2{
    font-size: 16px;
    text-transform: uppercase;
    color: #141414;
    margin-left: 20px;
}
/*---------Nav bar End------------*/

header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0 2px 4px -4px black;
    -moz-box-shadow: 0 2px 4px -4px black;
    box-shadow: 0 2px 4px -4px black;
    background: #fff;
    z-index: 111111;
}

/*------------Footer starts------------*/
.footer {
    /* background-image: linear-gradient(to right, #0A1310 , #112232); */
    padding: 80px 0 100px;
    margin-top: -1px;
    background: #fff;
}
.footer_social_icon {
    display: flex;
}

.footer_social_icon span:last-of-type{
    margin-right: 0;
}

.footer_social_icon span i {
    color: #242424;
    font-size: 24px;
    margin-right: 20px;
    color: #FBAE36;
}

.footer_heading h3 {
    color: #141414;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer_heading_1{
    padding-left: 50px;
}
.footer_heading ul li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer_heading ul li a {
    color: #141414;
    font-size: 16px;
    font-weight: 400;
}

.footer_heading span i {
    font-size: 24px;
    margin-right: 20px;
}

.footer .footer_heading a span {
    font-weight: 700;
    font-size: 18px;
}
.footer .footer_heading a span i{
    color: #2D6542;
}
.footer .footer_heading a p{
    margin-bottom: 20px;
}
.footer .detail {
    margin: 30px 0;
}
.footer_heading {
    width: 80%;
    margin-left: auto;
    margin-top: 15px;
}
div#top {
    margin: auto 0;
}
.nav_login i.fa-light.fa-user {
    color: #e5e5e5;
}
.nav_login .dropdown-menu[data-bs-popper] {
    top: 29px;
    left: -73px;
    padding: 0;
    border-radius: 0;
    background-color: #2D8C1E;
}
.nav_login .dropdown-item {
    border-bottom: 1px solid #e5e5e5;    
    color: #e5e5e5;
}
.nav_login {
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    margin-left: auto;
}

.navbar-toggler-icon {
    filter: invert(160%) sepia(2%) saturate(914%) hue-rotate(284deg) brightness(120%) contrast(100%);
}
.header_left a.dropdown-item {
    color: #707070;
}
.navbar .nav-link:focus, .nav-link:hover {
    color: #fff;
}
.navbar li.nav-item {
    margin: 0 30px;
}
/*------------Footer end------------*/
