/******************************
01=== navbar-section
    
******************************/

/*----------------------------------------*/
/*  00 - Home
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
	background-color: #ffffff;
}

/* -------------------------navbar-------------------------------------------- */
/* .nav_button{
    cursor: pointer;
    font-size: 16px;
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
  }
  
 
  .navigation-menu__overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: 0.3s;
  }
  
  body.open .navigation-menu__overlay {
    visibility: visible;
    opacity: 1;
  }
  .hamburger-menu {
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 10;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 0px;
    background: transparent;
  }
  
  #close-icon {
    display: none;
  }
  .site-identity-logo {
    margin-left: 100px;
    padding: 0;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
  }
  .navigation-menu__labels li .phone{
    color: #000;
  }
  .navigation-menu__labels {
    position: fixed;
    visibility: hidden;
    margin-right: 100px;
    z-index: 3;
    top: 0px;
    left: 0;
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: #000000;
    transition: translate 0.3s;
    translate: -100% 0;
  }
  .navigation-menu__labels :hover {
    color: #737373;
  }
  .navigation-menu__labels li a{
  text-decoration: none;
  color: #ffffff;
  }
  body.open .navigation-menu__labels {
    translate: 0 0;
    visibility: visible;
  }
  
  .navigation-menu__labels > button {
    color: #000000;
    background: transparent;
    padding: 0 8px;
  }
  
  .navigation-menu__labels > button.active {
    color: inherit;
  }
  @media only screen and (min-width: 768px) {
    .navigation-menu {
      justify-content: space-between;
      padding: 0 16px;
    }
  }
  @media only screen and (min-width: 768px) {
    .navigation-menu__overlay {
      display: none;
    }
  }
  @media only screen and (min-width: 768px) {
    .hamburger-menu {
      display: none;
    }
  }
  @media only screen and (min-width: 768px) {
    .navigation-menu__labels {
      position: static;
      top: 0;
      left: 0;
      translate: 0 0;
      width: auto;
      background: transparent;
      flex-direction: row;
      visibility: visible;
    }
  }
   */
   .logo{
    padding-left: 50px;

   }
   nav.black .nav-menu .menu-item a{
    color: #000000;
    line-height: 60px;
}
   nav.black {
    background:#ffffff;
    height: 80px;
    padding: 10px 50px;
    color: #000;
    box-shadow: 0px 1px 12px 0px #7a7171;
    z-index: 1000;
}
.nav__link{
    position: relative;
}
.nav__link.active{
    color: #20ae4b;
}
.nav-active::before{
    transition: 300ms;
    height: 5px;
    content: "";
    position: absolute;
    background-color: #20ae4b;
    width: 100%;
    bottom: 10px;
   }
   .nav__link::before {
    transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #20ae4b;
  width: 0%;
  bottom: 10px;
  }
  .nav__link:hover::before{
   
    width: 100%;
  }
   .navigation-menu {
    padding:0px 50px;
    box-sizing: border-box;
    min-width: 100%;
    margin: 0;    
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-family: "Cambria";
  }

  
  .push-left {
    margin-left: auto;
  }
  
  /* Menu */
  .hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    outline: none;
    height: 24px;
    position: relative;
    width: 20px;
    z-index: 1000;
  }

  .hamburger-line {
    background: #272727;
    height: 3px;
    position: absolute;
    left: 0;
    transition: all 0.2s ease-out;
    width: 100%;
  }
  .hamburger:hover .hamburger-line {
    background: #000000;
  }
  .hamburger-line-top {
    top: 3px;
  }
  .menu-active .hamburger-line-top {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
  }
  .hamburger-line-middle {
    top: 50%;
    transform: translatey(-50%);
  }
  .menu-active .hamburger-line-middle {
    left: 50%;
    opacity: 0;
    width: 0;
  }
  .hamburger-line-bottom {
    bottom: 3px;
  }
  .menu-active .hamburger-line-bottom {
    bottom: 50%;
    transform: rotate(-45deg) translatey(50%);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.25s ease-in;
  }

  .nav-menu .menu-item a {
    color: #000000;
    display: block;
    line-height: 60px;
    margin: 0px 10px;
    text-decoration: none;
  }
  .nav-menu .menu-item a:hover {
    color: #20ae4b;
    /* border-bottom: 2px solid green; */
  }
  
  .nav__link:hover + .sub-nav {
    display: block;
  }
  
  .sub-nav:hover {
    display: block;
  }
  
  .sub-nav {
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 5px 5px;
    list-style: none;
    width: 230px;
  }
  @media screen and (max-width: 768px) {
    .sub-nav {
      position: relative;
      width: 100%;
      display: none;
      background-color: rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }
    .nav-active::before{
      transition: 300ms;
      height: 5px;
      content: "";
      position: absolute;
      background-color: #ffffff;
      width:0%;
      bottom: 10px;
     }
     .nav__link::before {
      transition: 300ms;
    height: 5px;
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: 0%;
    bottom: 10px;
    }
  }
  @media screen and (max-width: 768px) {
    .nav-menu .menu-item a {
      font-size: 20px;
      margin: 8px;
      color: #000;
    }
  }
  @media screen and (max-width: 768px) {
    .nav-menu {
      background: #fff;
      flex-direction: column;
      justify-content: center;
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      height: 100vh;
      left: 0;
      transform: translatey(-100%);
      text-align: center;
    }
    .menu-active .nav-menu {
      transform: translatey(0%);
      opacity: 1;
    }
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: inline-block;
    }
  }
  .act{
  color: #028835 !important;
}

/* =====================================================HOMEPAGE===============================================================================

================================================================================================================================================ */
  /* ----------------------------banner--------------------------------- */
 #banner{
    background: linear-gradient(168.85deg, #FFFFFF 5.66%, rgba(211, 211, 211, 0.43) 227.2%);
      /* height: auto; */
  }
  .b_sec{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .banner-img{
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .banner-text{
    /* padding-top: 190px; */
    padding-left: 100px;
    padding-right: 30px;
}
  .pm-0{
    margin:0;
    padding: 0;
  }
  .banner-text p{
    color: #20ae4b;
  }
 
  .banner-text h1{
     color: #000000;
      font-style: normal;  
  }
  .banner-text h6{
      padding: 10px 0px 30px 0px;
      color: #000000;
      font-style: normal;
      font-weight: 400;

  }

  /* ----------------------------advartising-------------------------------- */
  #advertising{
    height:500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size:contain ;
    padding:50px 0px 50px 0px;
  }
  .ad_box{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
  }
  .ad_text p{
    color: #ffffff;
    float: left;
    width: 57%;
    font-size: 20px;
  }
  .ad_content{
    position: absolute;
    top: 50%;
    left: 55px;
  }
  .ad_button{
    position: absolute;
    top: 100%;
    margin-top: 34px;
  }
  .ad_button a{
    background-color: #000000;
  }
  .ad_button a:hover{
    color: #20ae4b;
  }

  /* ============================================CATOGORIES========================================= */
  #catogories{
    background-color: #20ae4b;
  }
  .title h4{
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    padding-left: 7px;
  }
 
 .cat_icon_box{
    background-color: #fff;
    color: #000000;
    display: flex;
    flex-wrap: nowrap;
    /* justify-content:  space-around;     */
    align-items:center ;
    padding: 8px 10px 8px 10px;
    margin-top: 20px;
    border-radius:7px;
  }
  .cat_icon_box img{
    width: 55px;
    margin-right: 10px;
  }
  .cat_icon_box :hover{
    transform: scale(1.1);
  }
  /* ===========================================news-section========================================= */
  
  #news_section{
    background-color: #000000;
    height: 100vh;
  }

  .ag-format-container {
    width: 1142px;
    margin: 0 auto;
  }
  
  
  .ag-filter-cat-block {
    padding: 30px 0;
  }
  .ag-filter_title {
    padding: 0 0 15px;
  
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 48px;
  }
  
  .ag-filter-cat-tab_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: flex-start;
  
    margin: 0 0 30px;
  }
  .ag-filter-cat-toggle_btn {
    display: none;
  
    padding: 10px 15px;
    border: 1px solid var(--color);
  
    cursor: pointer;
    
    position: relative;
  }
  
  .js-ag-filter-cat-toggle_name {
    display: block;
    margin-right: 10px;
  
    text-transform: uppercase;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    color: #c1c1c1;
  }
  .js-ag-filter-str-toggle_icon {
    position: absolute;
    top: 13px;
    right: 8px;
  }
  .js-ag-filter-str-toggle_icon:before {
    content: "";
    height: 12px;
    width: 12px;
    background-repeat: no-repeat;
    background-position: 0 0;
  
    position: absolute;
    top: 0;
    right: 0;
  }
 
  
  .ag-filter-cat-tab_list {
    display: none;
    max-width: 100%;
  }
  .js-ag-filter-cat-tab_item {
    padding: 10px 25px;
    cursor: pointer;
    font-size: 11px;
    background-color: #ffff;
    color: #000000;
    text-align: center;
   

  
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
  }
  
  .jss{
        grid-template-columns: repeat(4, 25%) !important;

  }
  /* grid block */
  .ag-grid_list {
    display: -ms-grid;
    display: grid;
  
    margin: 0 0 30px;
  
    position: relative;
  }
  .js-ag-grid_list__large {
    -ms-grid-columns: (12.5%)[8];
     grid-template-columns:repeat(8, 12.5%);
  }
  .ag-grid_item img{
    width: 100%;
  }
  .ag-grid_item {
    display: block;
  
    margin: 0 10px 10px 0;
  
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0px;
  }
  /* /grid block */
  
  @media only screen and (max-width: 1161px) {
    .js-ag-grid_list__large {
      -ms-grid-columns: (16.66%)[6];
      grid-template-columns: repeat(6, 16.66%);
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
    .ag-filter_title {
      font-size: 28px;
    }
  
    .ag-filter-cat-tab_box {
      display: table;
      min-width: 200px;
      margin: 0 auto 20px;
  
      position: relative;
    }
    .ag-filter-cat-toggle_btn {
      display: block;
    }
    .ag-filter-cat-tab_list {
      padding: 10px 15px;
      background-color: #FFF;
  
      z-index: 1000;
      position: absolute;
      top: 32px;
      left: 0;
      right: 0;
    }
  
    .js-ag-grid_list__large {
      -ms-grid-columns: (25%)[4];
      grid-template-columns: repeat(4, 25%);
    }
  }
  
  @media only screen and (max-width: 639px) {
  
  }
  
  @media only screen and (max-width: 479px) {
  
  }
  
  @media (min-width: 768px) and (max-width: 979px) {
    .ag-format-container {
      width: 750px;
    }
  
  }
  
  @media (min-width: 980px) and (max-width: 1161px) {
    .ag-format-container {
      width: 960px;
    }
  
  }
  
  @media screen and (min-width: 768px) {
    .ag-filter-cat-tab_list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
  
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
  
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
  
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .js-ag-filter-cat-tab_item {
      margin-right: 25px;
    }
    .js-ag-filter-cat-tab_item.js-ag-cat__active
     {
      background-color: #20ae4b;
      font-size: 13px;
      -webkit-transition: all 0.1s ease-in;
      -moz-transition: all 0.1s ease-in;
      -o-transition: all 0.1s ease-in;
      transition: all 0.1s ease-in;
    }
    .js-ag-filter-cat-tab_item:last-child {
      margin-right: 0;
    }
  
  }

  /* =======================================testimonial============================================= */
  #testimonial{
    /* position: relative; */
    height: auto;
    background-color: #ffffff;
  }
  .test_ab{
    position: absolute;
    left: 0px; 
  }
  .test_card{
    background-color: #20ae4b;
    border-radius: 10px;
    height: 100px;
  }
  #testimonial .title{
    padding-top: 80px;
  }

  .testimonial {
    border-radius: 28px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 15px 30px 25px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    background-color: #fff;
  }
  .testimonial .pic {
    display: inline-block;
    width: 80px;
    height: 65px;
    overflow: hidden;
    /* position: absolute;
    top: 60px;
    left: 20px; */
  }
  .testimonial .pic img {
    width: 100%;
    height: auto;
  }
  .testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #6f6f6f;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .testimonial .title_s {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
    margin: 0;
  }
  .testimonial .post {
    font-size: 16px;
    color: #677471;
  }
  .five_star{
    float: right;
    font-size: 15px;
    color: #FFDF00;
  }
  .owl-theme .owl-controls .owl-page span {
    border: 2px solid #028835;
    background: 
    #F4F4F4!important;
    border-radius: 21px !important;
    opacity: 1;
  }
  .owl-theme .owl-controls .owl-page.active span
   {
    background: #028835 !important;
    border-color:transparent;
  }

  .owl-theme .owl-controls .owl-page span {
    display: block;
    width: 60px !important;
    height: 10px !important;
    margin: 5px 4px !important;
  }
  @media only screen and (max-width: 767px) {
    .testimonial {
      padding: 20px;
      text-align: center;
    }
    .testimonial .pic {
      display: block;
      position: static;
      margin: 0 auto 15px;
    }
  }


  /* ====================================stories======================================== */
 #stories{
    height: 100vh;
    padding-bottom: 30px;
  }
  .str_block{
    padding: 60px 30px !important;
  }
  .stttr{
    grid-template-columns: repeat(4, 20%) !important;

  }
  
  .before_s .title h4 {
    color: #000;
    position: relative;
  }
  .before_s .title h4::before {
    transition: 300ms;
    height: 21px;
    content: "";
    position: absolute;
    background-color: #20ae4b;
    width: 5px;
    bottom: 9px;
    left: -6px;
  }
 

  .ag-format-container {
    width: 1142px;
    margin: 0 auto;
  }
  
  
  .ag-filter-cat-block {
    padding: 60px 0;
  }
  .ag-filter_title {
    padding: 0 0 15px;
  
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 48px;
  }
  
  .ag-filter-tab_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: flex-start;
  
    margin: 0 0 30px;
  }
  .ag-filter-toggle_btn {
    display: none;
  
    padding: 10px 15px;
    border: 1px solid var(--color);
  
    cursor: pointer;
    
    position: relative;
  }
  
  .js-ag-filter-toggle_name {
    display: block;
    margin-right: 10px;
  
    text-transform: uppercase;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    color:#c1c1c1;
  }
  .js-ag-filter-toggle_icon {
    position: absolute;
    top: 13px;
    right: 8px;
  }
  .js-ag-filter-toggle_icon:before {
    content: "";
    height: 12px;
    width: 12px;
    background-repeat: no-repeat;
    background-position: 0 0;
  
    position: absolute;
    top: 0;
    right: 0;
  }
  
  
  .ag-filter-tab_list {
    display: none;
    max-width: 100%;
  }
  .js-ag-filter-tab_item {
    padding: 10px 55px;
    cursor: pointer;
    font-size: 14px;
    background-color: #ffff;
    color: #000000;
    text-align: center;
    border: 1px solid #A9A9A9;

  
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
  }
  
 
  /* grid block */
  .ag-grid_list {
    display: -ms-grid;
    display: grid;
  
    margin: 0 0 30px;
  
    position: relative;
  }
  .js-ag-grid_list__large {
    -ms-grid-columns: (12.5%)[8];
    grid-template-columns:repeat(4, 12.5%);
  }
 .ag-grid_item img{
   
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ag-grid_item {
    display: block;
  
    margin: 0 10px 10px 0;
  
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0px;
  }
  /* /grid block */
  
  @media only screen and (max-width: 1161px) {
    .js-ag-grid_list__large {
      -ms-grid-columns: (16.66%)[6];
      grid-template-columns: repeat(6, 16.66%);
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
    .ag-filter_title {
      font-size: 28px;
    }
  
    .ag-filter-tab_box {
      display: table;
      min-width: 200px;
      margin: 0 auto 20px;
  
      position: relative;
    }
    .ag-filter-toggle_btn {
      display: block;
    }
    .ag-filter-tab_list {
      padding: 10px 15px;
      background-color: #FFF;
  
      z-index: 1000;
      position: absolute;
      top: 32px;
      left: 0;
      right: 0;
    }
  
    .js-ag-grid_list__large {
      -ms-grid-columns: (25%)[4];
      grid-template-columns: repeat(4, 25%);
    }
  }
  
  @media only screen and (max-width: 639px) {
  
  }
  
  @media only screen and (max-width: 479px) {
  
  }
  
  @media (min-width: 768px) and (max-width: 979px) {
    .ag-format-container {
      width: 750px;
    }
  
  }
  
  @media (min-width: 980px) and (max-width: 1161px) {
    .ag-format-container {
      width: 960px;
    }
  
  }
  
  @media screen and (min-width: 768px) {
    .ag-filter-tab_list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
  
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
  
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
  
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .js-ag-filter-tab_item {
      margin-right: 0px;
    }
    .js-ag-filter-tab_item.js-ag-active
     {
      background: linear-gradient(99.41deg, #21AE48 -3.39%, #56DD66 84.11%);
      font-size: 13px;
      -webkit-transition: all 0.1s ease-in;
      -moz-transition: all 0.1s ease-in;
      -o-transition: all 0.1s ease-in;
      transition: all 0.1s ease-in;
    }
    .js-ag-filter-tab_item:last-child {
      margin-right: 0;
    }
  
  }
  /* ====================================brands============================== */
  #brands{
    height: auto;
    padding: 10px 0px 50px 0px;

  }
  #brands .title h4{
    color: #000;
  }
  @media (max-width: 767px) {
		.carousel-inner .carousel-item > div {
			display: none;
		}
		.carousel-inner .carousel-item > div:first-child {
			display: block;
		}
	}

	.carousel-inner .carousel-item.active,
	.carousel-inner .carousel-item-next,
	.carousel-inner .carousel-item-prev {
		display: flex;
	}

	/* medium and up screens */
	@media (min-width: 768px) {

		.carousel-inner .carousel-item-end.active,
		.carousel-inner .carousel-item-next {
			transform: translateX(25%);
		}

		.carousel-inner .carousel-item-start.active, 
		.carousel-inner .carousel-item-prev {
			transform: translateX(-25%);
		}
	}

	.carousel-inner .carousel-item-end,
	.carousel-inner .carousel-item-start { 
		transform: translateX(0);
	}
  .carousel-control-prev-icon {
    background-image: url(../images/square-caret-left-regular.svg)
}
.carousel-control-next-icon {
  background-image: url(../images/square-caret-right-regular.svg);
}
.card{
  border: 0px solid #fff;
}
.carousel-control-prev{
  opacity: 1;
}
.carousel-control-next{
  opacity: 1;
}
.carousel-control-next, .carousel-control-prev {
  top: 100%;
}
.carousel-control-next {
 
  left: 3%;
}
.carousel{
 

}

/* ----------------------faq----------------------------------------- */
#faq{
  height: auto;
  background-color: #F4F4F4;
  padding:60px 0px 60px 0px;
}
.accordion .accordion-item button[aria-expanded=true] {
  /* border-bottom: 1px solid #028835; */
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color:#028835;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 13px;
  font-weight: 300;
  margin: 1em 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: transparent;
  border: 0px solid ;
}
/* ------------------------------------------contact-section-------------------------------- */
#contact_s{
  /* height: 100vh; */
 
}
.c_left{
  /* height: 100vh; */
}
.c_banner-img{
height: 576px;
background-repeat: no-repeat;
background-position: center;
background-size: cover; 
}
.c_banner_right{
  background-color: #028835;
  height:auto;
  padding: 60px 0px 60px 0px;

}
/* .form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
} */

.contact-form {
  background-color: #ffffff;
  position: relative;
  padding: 10px 20px 0px 20px;
  border-radius: 10px;
}

.cc_form{
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.c_title {
  color: #000000;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.c_input {
  width: 100%;
  outline: none;
  border: 1px solid #E3E3E3;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #000000;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

textarea.c_input {
  padding: 0.8rem 1.2rem;
  min-height: 100px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color:#028835;
  color:#ffffff;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  border: 1px solid #028835;
  color:#028835
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}








@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}


/* ==========================footer=========================== */
#footer{
  height: auto;
  background: #F7F7F7;
  padding:50px 40px;
}
#footer h5{
  color: #000;
}
#footer li{
  color: #000;
  font-size: 13px;
  padding-top: 10px;
}
#footer li i{
  padding-right: 10px;
  font-size: 18px;
}
a{
  text-decoration: none;
  color: #000;
}
/*#footer li {*/
/*  font-size: 13px;*/
/*  padding-top: 10px;*/
/*}*/
#footer li a:hover{
  color: #028835;
}
.f_logo{
  position: relative;

}
.f_logo::after {
  transition: 300ms;
  height: 231px;
  content: "";
  position: absolute;
  background-color: #929091;
  width: 1px;
  top: 0px;
  left: -123px;
}
.f_add{
  position: relative;
}
.f_add::before{
  transition: 300ms;
  height: 231px;
  content: "";
  position: absolute;
  background-color: #929091;
  width: 1px;
  top: 0px;
  left: -123px;
}
.f_icons a{
  padding: 10px;
  font-size: 25px;
}
.f_icons{
 
  padding-top: 5px;
    padding-left: 30px;
}
.f_icons a:hover{
  color: #028835;
}

/* ==========================================copyright============= */
#copyright{
  background-color: #000;
  height: auto;
  padding: 10px;
}
#copyright p{
  color: #ffffff;
  text-align: center;
  font-size: 13px;
}


/* =============================================================ABOUT-PAGE==========================================================================

================================================================================================================================================ */
/* ==========================================discription======================= */
#ab_pg_dis {
  background: linear-gradient(168.85deg, #FFFFFF 5.66%, rgba(211, 211, 211, 0.43) 227.2%);
  /* padding-top: 120px; */
  
}
.pg_section{
  padding: 120px 0px 40px 0px;
}
  .dis_head {
    color: #000;
    padding-left: 16px;
    position: relative;
    border-left: 11px solid #1daf4c;
    margin-left: 10px;
}

.dis_head h3{
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 44px;
}

.dis_img{
  padding-top: 30px;
}
.ab_dis{
  padding-top: 30px;
}
.ab_dis p{
  font-size: 12px;
  line-height: 25px;
}
/* ==========================================brand-img================================= */
#ab_brand{
  padding: 40px 0px;
}
.b_title h5{
  color: #000;
  font-weight: 800;
}
/* ============================================why-section============================ */
#why{
  padding: 40px 0px;
  background-color: #000;
}
.why_title{
  color: #ffffff;
  font-weight: 800;
}
.ab_card{
  border-radius: 24px;

}
.ab_card .card-body h5{
  color:#1DAF4C;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}
.ab_card .card-body p{
  font-size: 14px;
}
.ab_card_body{
  padding: 15px 20px 20px 20px;
  text-align: justify;
}
.grey:hover{
  filter: grayscale(1);
}

/* =============================================================NEWS-PAGE==========================================================================

================================================================================================================================================ */
.news_card{
  padding-top: 40px;
}
#news_banner{
  background: linear-gradient(168.85deg, #FFFFFF 5.66%, rgba(211, 211, 211, 0.43) 227.2%);

}
.news_card_card{
  background-color: transparent;
  margin: 10px;
}
.news_card_title{
  color: #000000;
  line-height: 26px;
  font-size: 20px;

}
.news_card_text{
  color: #028835;
}
/* =============================================================MEDIA-PAGE==========================================================================

================================================================================================================================================ */
.media_card_title{
  color: #000;
  font-size: 15px;
  font-weight: 400;
}
.media_card_body{
    padding: 10px 0px;
}
.media_card{
  border: 2px solid #C5C5C5;
  padding: 10px;
  border-radius: 0%;
  /* margin-top: 50px; */
}
  .media_head h4 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
  }
/* -----option-section-------- */
  .dropdwon_box{padding:15px;}


  .option_form{
    display: flex;
    
  }
.result-item{
  margin-top: 25px;
}
/* =============================================================stories-PAGE==========================================================================

================================================================================================================================================ */
  #stories_section{
    height: 80vh;
  }
  .st_b{
    border: 1px solid #A9A9A9;
    margin-right: 0px;
    padding-right: 79px;
  }
#stories_pg{
  background: #F7F7F7;

}
.st_ag{
  padding: 10px 0px;
}



/* =============================================================MEDIA-PAGE==========================================================================

================================================================================================================================================ */
#c_catogories{
  background-color: #000;
}
.s_button{
  border-radius: 0px;
  font-size: 12px;
}
#option_section{
  padding: 40px 0px 150px 0px;
}
.s_form{
  border-radius: 0px;
  font-size: 12px;
  margin-right: 25px;

}
.form-select:focus {
  border: 1px solid #ced4da;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}
/* =============================================================CONTACT-PAGE==========================================================================

================================================================================================================================================ */

#contact_cat{
  height:auto;
}
.catogery-list {
  display: block;
  float: left;
  list-style:none;
  width: 19%;
  height: auto;
  background: #ffffff;
  border-radius: 5px;
  margin: 15px 0px;

}
.catogery-list li {
  display: block;
  color: #000000;
  padding: 16px 10px;
  font: 18px sans-serif;
  background: #F7F7F7;
  margin: 0px 0px 20px 0px;
  text-transform: capitalize;
  cursor: pointer;
}
.catogery-list li:hover {
  /* background: #fff;
  color: #23192D;
  border-left: 3px solid #ACDEB2 */
}
.catogery-list li.active {
  background: #21AE48;
  color: #ffffff;
  /* border-left: 3px solid #ACDEB2   */
}
.catogery-list li i{
  padding-left: 10px;
}
.products {
  width: 81%;
  min-height: 100vh;
  height: auto;
  float: left;
  background: #ffffff;
  margin: 0px 0px;
  padding: 10px;
}
.products > .sports {
  display: inline-block;
  width: 31.3333%;
  height:auto;
  color: #fff;
  border: 1px solid #E5E5E5;
  margin: 5px;
  /* text-align: center; */
  line-height: 20px;
  cursor: pointer;
  padding: 25px;
}
.sports p{
 color: #8C8E90;
font-size: 14px;
}
.sports i{
  color: #028835;
  font-size: 30px;
}
.sports h6{
 color:#2C2C2C;
  font-size: 13px;
  font-weight:600 ;
  padding-top: 10px;
}

.products > .clothes{
  display: inline-block;
  width: 31.3333%;
  height:auto;
  color: #fff;
  border: 1px solid #E5E5E5;
  margin: 5px;
  /* text-align: center; */
  line-height: 20px;
  cursor: pointer;
  padding: 44px 20px;
  background-position: center;
  background-size: cover;
}
.clothes h6{
  color: #929292;
  font-size: 20px;
  font-weight: 600;
}
.clothes p{
  font-size: 13px;
  color: #000;
}
.products > .acc{
  display: inline-block;
  width: 31.3333%;
  height:200px;
  color: #fff;
  border: 1px solid #E5E5E5;
  margin: 5px;
  /* text-align: center; */
  line-height: 20px;
  cursor: pointer;
  padding: 25px 20px;

  background-position: center;
  background-size: cover;
}
.acc h6{
  color: #028835;
  font-size: 20px;
  font-weight: 600;
}
.acc p{
font-size: 13px;
}
.acc a i{
  background-color: black;
    padding: 5px;
    margin-top: 16px;
    color: #fff;
    margin-right: 5px;
}
.new_w{
    width:100%;
        
}
