
/* this file for color & font & navbar & footer */
 
/* 
color
#1c2426 dark gray
#9b9b9a light gray
#f0f0f0 light light gray
#ff7e28 orange
#92b339 green
#333333 brown

*/


/* icon color
#3a5ea8
#9d1e65
#ee7624
#f4c400
#008996
#2b7152
*/


body {
      font-family: "Poppins";
      color: #9b9b9a;
      font-size: 14px;
      line-height: 34px;
      letter-spacing: -0.02em;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      text-transform: uppercase;
      background-color: #f5f8ff;
      /* background-color: green; */
    }

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

h1{
  color: #9b9b9a;
  padding: 28px 0;
  text-align: center;
  font-weight: 100;

}



/* navbar */
.navbar{
  width: 100%;
  background-color: rgba(0,0,0,.2);
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}




.logo,
.menu,
.language{
  height: 50px;
  /* border: 1px solid red; */
}

.logo{
  text-align: center;
  position: relative;
}

 
.logo img{
  max-height: 100%;
  width: auto;
}

.logo .menu-bars{
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.language{
  color: white
}

.language .flag{
  position: relative;
}

.language .flag img{
  max-height: 100%;
}


.language .flag .inner-flag{
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f0f0f0;
  z-index: 999;
  padding: 0 10px;
  border-radius: 4px;
  display: none;
}

.language .flag:hover > .inner-flag{
  display: block;
}

.language .flag .inner-flag > li{
  width: 40px;
  height: 40px;
  transition: all .5s ease-in-out;
}

.language .flag .inner-flag > li:hover{
  opacity: .7;
}

.language .flag .inner-flag > li > a{
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.language .flag .inner-flag li a img{
  width: 100%;
  height: auto;
}

 
.flag-triangle-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  top: -30px;
  width: 0;
  height: 0;
  border-width: 20px;
  border-style: solid;
  border-color: transparent transparent #f0f0f0 transparent;
  clear: both;
}

.inner-flag
.donate,
.search,
.tl,
.flag{
  position: relative;
}


.donate a,
.search i,
.tl i,
.flag img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.language .tl i{
  font-size: 20px;
}

.donate{
  position: relative;
}
.donate .donate-btn{
  text-align: center;
  background-color: #ff7e27;
  border-radius: 5px;
  color: white;
  transition: all .5s ease-in-out;
  width: 100%;
}

.donate .donate-btn:hover{
  opacity: .9;
}
 

.search i:hover{
  cursor: pointer;
}

.language .tl{
  position: relative;
}

.language .tl .inner-tl{
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f0f0f0;
  z-index: 999;
  padding: 0 3px;
  border-radius: 4px;
  display: none;
}

.language .tl:hover > .inner-tl{
 display: block;
}

.language .tl .inner-tl li{
  width: 58px;
  display: block;
  border-bottom: 1px solid #9b9b9a;
}

.language .tl .inner-tl li:last-child{
  border-bottom: unset;
}

.language .tl .inner-tl li a{
  display: block;
    text-align: center;
    color: #1c2426;
    transition: all .5s ease-in-out;
}

.language .tl .inner-tl li a:hover{
  opacity: .5;
}


 
.navbar-white{
  background-color: white;
  padding: 0;
  
}

.navbar-white .menu .menu-ul > li > a{
  color: #1c2426;
}

.navbar-white .menu .menu-ul > li > a:hover{
  color: #92b339
}

.navbar-white .search,
.navbar-white .language .tl{
  color: #92b339
}


.navbar-white .logo .menu-bars{
  color: #1c2426
}

/* menu */
.menu .menu-{
  padding: 0;
}

.menu .menu-ul{
  /* border: 1px solid red; */
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  text-align: center;
  
}

.menu .menu-ul li{
  padding: 0;
  display: inline-block;
  white-space: nowrap;
  margin: 0 1%;
  position: relative;

}

.menu .menu-ul li a{
  display: block;
  width: 100%;
  height: 100%;
  text-align: right;
  color: white;
  text-decoration: none;
  line-height: 1;
  transition: all .5s ease-in-out;
  padding: 18px 3px;
  white-space: break-spaces;

}

.menu .menu-ul li a:hover{
  color: #92b339;
  
  
}

.menu .menu-ul li > ul{
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #92b339;
  padding: 0;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 6px 15px #1c2426;
  display: none;
  transition: all 1s ease-in-out;
}

.menu .menu-ul li > ul > li ul{
  left: 100%;
  top: 0;
}
 

.triangle-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  top: -30px;
  width: 0;
  height: 0;
  border-width: 20px;
  border-style: solid;
  border-color: transparent transparent #92b339 transparent;
  clear: both;
}

.menu .menu-ul li > ul > li{
  width: 100%;
  margin: 0;
  display: block;
}

.menu .menu-ul li:hover > ul{
  display: block;
}

.menu .menu-ul li > ul > li:hover{
  opacity: .9;
}

.menu .menu-ul li > ul > li > a{
  text-align: center;
  color: white;
}

.menu .menu-ul li > ul > li > a:hover{
  /* color: #1c2426; */
  color: white!important;
  border-bottom: 1px solid white;
  background-color: #7f9c31;
}


/* small-menu */
/* .navbar .small-menu{
  height: 0;
  overflow: hidden; */
  /* overflow-y: scroll; */
  /* position: relative;
  background-color: rgba(0,0,0,.5);
} */

 
/* .navbar .small-menu li{
  height: 65px;
  line-height: 65px;
  position: relative;
}
.navbar .small-menu li a{
  display: block;
  text-align: center;
  color: white;
}

.small-menu .sub-nav-btn{
  border: 1px solid white;
  border-radius: 7px;
  margin: 0 5px;
  position: absolute;
  right: 5%;
  top: 18px;
  height: 30px;
  width: 30px;
  font-size: 10px;
  line-height: 30px;
}


.small-menu .sub-ul{
  height: 0;
  overflow: hidden;
}


.navbar .small-menu a:hover{
  color: #92b339;
} */



/* small-menu */
.small-menu{
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  position: fixed;
  top: 0;
  right: -100%;
  padding: 0;
}

.small-menu .inner-small-menu{
width: 300px;
height: 100%;
background-color: white;
right: -100%;
top: 0;
position: absolute;

}

.btn-small-menu{
  width: 100%;
  height: auto;
  /* border: 1px solid red; */
  text-align: right;
  font-size: 24px;
  padding: 10px 15px;
  transition: all .5s ease-in-out;
}

.small-menu .small-menu-ul li a{
  text-align: left!important;
  position: relative;
  padding: 12px 0 12px 28px;
  cursor: pointer;

}


.small-menu .small-menu-ul li a i{
  position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.btn-small-menu span{
  transition: all .5s ease-in-out;
  /* border: 1px solid red; */
    padding: 5px 10px;
    color: #d8d4d4;
}


.btn-small-menu span:hover{
  cursor: pointer;
  color: #ca1e1e;
  
}

.small-menu .small-menu-ul li a{
  color:#404040;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
}

/* .small-menu .small-menu-ul li a i{
    border: 1px solid #92b339;
    padding: 5px;
    border-radius: 3px;
    
} */


.small-menu .small-menu-ul li a{
  transition: all .5s ease-in-out;
}

.small-menu .small-menu-ul li a i{
  color: #d8d4d4;
}

.small-menu .small-menu-ul li a:hover{
  color: #92b339;
  border-bottom: 1px solid #92b339;
  background-color: #efeaea;
}


.small-menu .small-menu-ul .sub-menu {
    height: 0;
    /* border: 1px solid red; */
    overflow: hidden; 
}

/* .small-menu .small-menu-ul  .sub-menu li a{
  color: #ff7e28!important
} */

.social-tap{
  width: auto;
  height: auto;
  position: fixed;
  right: 0;
  background-color: #92b339;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
 
}

.social-tap a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 3px solid white;
  color: white;
  display: block;
}

.social-tap a:hover{
  opacity: .7;
}

.social-tap a:last-child{
  border-bottom: unset;
}


.footer{
  width: 100%;
  /* min-height: 425px; */
  height: auto;
  background-color: #333333;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.footer .inner-footer{
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  margin: 0; */
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .footer .inner-footer{
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    width: 100%;
  }

  .footer .inner-footer .second:after{

    border-right: unset!important;
  }
   .footer .inner-footer .second:before{

     border-right: unset!important;
   }


}

.footer .inner-footer .first,
.footer .inner-footer .second,
.footer .inner-footer .third{
  
  height: 300px;
  margin: 0;
}

 
.footer .inner-footer .second{
  /* border-right: 1px solid #9b9b9a;
  border-left: 1px solid #9b9b9a; */
  position: relative;
 }

 .footer .inner-footer .second:after{
   content: '';
   border-right: 1px solid #9b9b9a;
   position: absolute;
   top: 50%;
   right: 7%;
   height: 80%;
   transform: translateY(-50%);
 }

 .footer .inner-footer .second:before{
  content: '';
  border-right: 1px solid #9b9b9a;
  position: absolute;
  top: 50%;
  left: 7%;
  height: 80%;
  transform: translateY(-50%);
}


 .footer .inner-footer .second div{
  text-align: center;
  height: 50%;
  position: relative;
 }
 .footer .inner-footer .second div .btn{
   background-color: #9b9b9a;
   color: white;
   position: absolute;
   top: 65%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 1.5em;
   width: 70%;
   transition: all .5s ease-in-out;
   /* opacity: 0; */
   
 }

 .footer .inner-footer .second div .btn:hover{
  box-shadow: 0 6px 15px #1c2426;
  opacity: .9;
  background-color: #ff7e28;
 }

 .footer .inner-footer .second .footer-social{
   position: relative;
 }
 .footer .inner-footer .second .footer-social > div{
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
 }
 .footer .inner-footer .second .footer-social p{
   color: white;
 }

 .footer .inner-footer .second .footer-social a{
   color: #92b339;
   font-size: 22px;
   margin: 0 5px;
   /* opacity: 0; */
   transition: all .5s ease-in-out;
 }

 .footer .inner-footer .second .footer-social a:hover{
   opacity: .7!important;
  
 }

 .footer .inner-footer .first{
  font-size: 14px;
  padding: 0;
 }

 .footer .inner-footer .first div{
   padding: 0;
 }

 .footer .inner-footer .first .phones-email span{
   color: #92b339;
   border-right: 2px solid #92b339;
   padding-right: 10px;
   margin-right: 5px;
   

 }

 .footer .inner-footer .first .phones-email p{
  font-size: .9em;
 }

 .footer .inner-footer .first .address{
   position: relative;
 }
 .footer .inner-footer .first .address p{
   
   text-align: center;
 }

 .footer .inner-footer .first .address span{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   border-bottom: 1px solid #9b9b9a;
 }

 .footer .inner-footer .first .address mark{
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  background: #333333;
  padding: 0 7px;

 }

 .footer .inner-footer .first .address mark i{
  color: #92b339;
 }

 .footer .inner-footer .third p{
   color: #f0f0f0;
 }

 .footer .inner-footer .third .logos{
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
 }

 /* .footer .inner-footer .third .logos div{ */
   /* width: calc(100% / 6); */
   /* float: left; */
   /* text-align: center; */
 /* } */

 .footer .inner-footer .third .logos div img{
  max-width: 100%;
 }


 .footer .inner-footer .third .form-div label{
   color: #92b339;
   display: inline;
   font-size: 12px;
 }

 .footer .inner-footer .third .form-div .btn{
   background-color: #f0f0f0;
   transition: all .5s ease-in-out;
 }

 .footer .inner-footer .third .form-div .btn:hover{
   background-color: #92b339!important;
   color: white;
 }

 .footer .inner-footer .third .form-div input:first-child{
  background-color: #464646;
  outline: unset;
  border: unset;
 }


 .top-page{
   width: 35px;
   height: 35px;
   text-align: center;
   line-height: 35px;
   color: white;
   background-color: #92b339;
   position: fixed;
   right: 10px;
   bottom: 12px;
   z-index: 500;
   border-radius: 3px;
   transition: all .5s ease-in-out;
   /* display: none; */
   opacity: 0;
 }


 .top-page:hover{
   cursor: pointer;
   opacity: .8;
 }



   .subslider{
     width: 100%;
     height: 250px;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     position: relative;
     
   }

   
   .subslider:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    top: 0px;
    right: 0px;
    background-color: rgb(28,36,38,.3);
   }

   .subslider .h2-subpage,
   .subslider .a-subpage{
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: white;
     /* background-color: rgba(0,0,0,.2); */
     padding: 4px 25px;
     font-weight: 600;
   }

   .subslider .h2-subpage{
    font-size: 3em;
   }

   .subslider .a-subpage{
    top: 63%;
    font-weight: unset;
   }

   .subslider .a-subpage a{
    color: white;
   }



   .auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}


.continue-button{
  background-color: #ff7e28;
  color: white;
  transition: all .5s ease-in-out;
  opacity: .9;
  width: auto;
  border-radius: 27px;
  height: 44px;
  line-height: 2;
  padding-right: 9%;
  padding-left: 9%;

}

.continue-button:hover{
  opacity: 1;
  box-shadow: 0 0 3px gray;
  transition: all .5s ease-in-out;
  color: white;
}


.addtocart-active{
  background-color: #ff7e28!important;
}


.icon-item-count{
  position: absolute;
    top: -14px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff7e27;
    line-height: 30px;
    font-weight: 600;
}


.pagination li{
  position: relative;
    display: inline-block;
    margin: 0px 8px 8px 0px;
}


/* paginate */
.paginate-div{
  text-align: center;
}

.paginate-div ul{
  display: inline-block;
}

.page-link{
	position:relative;
	display:inline-block;
  height: 40px;
  line-height: 1.5;
	font-size: 18px;
	min-width:40px;
	color:#243559;
	font-weight:400;
	text-align:center;
	background:#f5f8ff;
	border:2px solid #243559;
	text-transform:capitalize;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
}

.page-item.active .page-link{
  color: #ffffff;
    border-color: #333333;
    background-color: #333333;

  
    height: 40px;
    line-height: 1.5;
    /* border: 1px solid red; */
    font-size: 18px;
}