/*=============================================
		Theme defaultt css            
=============================================*/
:root {
  --primary-green: #008459;
  --secondary-green: #bde0d4;
}

.content-div {
  padding: 50px 100px;
}

.mobile-display,
.no-display {
  display: none !important;
}

.general-btn {
  border: 1px solid var(--primary-green);
  background: var(--primary-green);
  font-weight: 500;
  border-radius: 3px;
  padding: 5px 18px;
}

.bg-grey {
  background-color: #f1f1f1;
}

.bg-green {
  background: var(--secondary-green);
}

.title {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 50px;
}

.zoom {
  transition: transform .7s;
}

.zoom:hover {
  -ms-transform: scale(1.03); /* IE 9 */
  -webkit-transform: scale(1.03); /* Safari 3-8 */
  transform: scale(1.03); 
}



/*=============================================
		Header            
=============================================*/
#header-top {
  background-color: var(--primary-green);
  height: 55px
}

#header-top * {
  color: #fff;
}

#header-top .content-div {
  padding: 0 100px;
  height: 100%;
}

#header-top button {
  margin-left: 20px;
  border-color: #fff;
  background: #fff;
  color: #000;
}

#header {
  height: 100px;
  background: #fff;
  box-shadow: 0 5px 5px -5px #ccc;
}

#header .content-div {
  padding: 10px 100px;
}

#header .content-div,
#header .col-md-3:first-child,
#header a,
#header img {
  height: 100%;
}

#header ul {
  display: inline-flex;
}

#header ul li {
  margin: 0 10px;
  font-weight: 500;
}

#header i:hover {
  cursor: pointer;
  color: var(--primary-green);
}

#header #searchDiv {
  position: absolute;
  top: 155px;
  z-index: 1;
  width: calc(100vw - 200px);
}

#header #searchDiv .card-body {
  background: rgba(0,0,0,0.9);
}

#header #searchDiv .header-advance-search {
  position: relative;
  background-color: #ffffff;
  border-radius: 50px;
  width: 60%;
  margin: auto;
  padding: 10px 20px;
}

#header #searchDiv .header-advance-search button {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
}

#header #profile {
  background: #d4e7e1;
    padding: 20px;
    width: 220px;
    max-width: 100%;
    position: absolute;
    top: 36px;
    right: -52px;
    z-index: 999;
}

#header #profile #arrow {
  color: var(--primary-green);
  position: absolute;
  top: -10px;
  left: 93px;
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

#header #profile h5 {
  font-weight: 500;
  background: var(--primary-green);
  color: #fff;
  margin: -20px -20px 10px;
  padding: 15px 20px;
}

#header #profile ul {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-green);
}

#header #profile li {
  margin: 3px 0;
}

#header #profile i {
  font-size: 18px;
  vertical-align: middle;
  font-weight: 500;
}

#header #profile-toggle:hover + #profile,
#header #profile:hover {
  display: block !important;
}



/*=============================================
		Home      
=============================================*/
#home #section1 .col-md-12 {
  padding: 0;
}

#home #section2 .box {
  background: var(--secondary-green);
  border-radius: 2px;
  height: 260px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0 30px;
}

#home #section2 .col-md-12:last-child {
  margin-top: 50px;
}

#home #section2 .col-md-12:last-child {
  margin-top: 20px;
}

#home #section2 .cat-icon {
  background: #fff;
  border-radius: 50%;
  height: 76px;
  width: 76px;
  padding: 16px;
  margin-bottom: 15px;
}

#home #section2 .cat-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}

#home #section3 .col-md-2 {
  margin-bottom: 30px;
}

#home #section3 .box {
  background: none;
  border-radius: 2px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #fff;
}

#home #section3 img {
  width: 100%;
  height: 170px;
  max-height: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

#home #section3 .pname {
  font-weight: 500;
}

#home #section3 .price {
  color: var(--primary-green);
}

#home #section4 img {
  width: 100%;
  height: auto;
  max-width: 1100px;
}

#home #section5 img {
  max-width: 100%;
  width: 150px;
  height: auto;
  margin: 0 30px;
}



/*=============================================
		Footer      
=============================================*/
#footer {
  border-top: 1px solid #e8e8e8;
}

#footer #logo {
  max-width: 100%;
  width: auto;
  height: 60px;
  margin-bottom: 15px;
}

#footer .fa {
  background-color: #6c757d;
  height: 30px;
  width: 30px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}

#footer .top {
  height: 60px;
  margin-bottom: 15px;
}

#footer #copyright {
  padding: 0 100px 20px 100px;
}



/*=============================================
		Responsive Code     
=============================================*/
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .content-div {
    padding: 30px 20px;
  }
  
  .mobile-no-display {
    display: none !important;
  }
  
  .mobile-display {
    display: block !important;
  }
  
  #header-top .col-md-6 {
    justify-content: center !important;
  }
  
  #header .content-div {
    padding: 0 10px;
  }
  
  #header img {
    max-height: 100%;
    height: 55px;
  }
  
  #header #menu {
    position: absolute;
    top: 155px;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  
  #header #menu .card {
    background: var(--secondary-green);
  }
  
  #header #menu .card .d-flex {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }
  
  #header #menu .card h5 {
    font-weight: 600;
    font-size: 16px;
  }
  
  #header #menu ul li {
    margin: 0 0 10px 0;
  }
  
  #header #menu a i {
    vertical-align: middle;
  }
  
  #header #menu .header-advance-search {
    margin: 15px 0 0 0;
  }
  
  #header #menu .header-advance-search input {
    padding: 13px;
    margin-top: 0;
    border-radius: 50px;
  }
  
  .title {
    margin-bottom: 30px;
  }
  
  #home #section2 .box {
    margin-bottom: 30px;
    height: 180px;
  }

#home #section5 img {
  margin: 15px 5px;
}
  
  .breadcrumb-area {
    padding: 0 20px;
  }
  
  .shop-header .col-lg-4,
  .shop-header .col-lg-8 {
    justify-content: center !important;
    align-items: center !important;
  }
  
  #reg {
    margin-bottom: 30px;
  }
  
  #footer #copyright {
    padding: 0 20px 20px 20px;
  }
}