

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
  background-color: #ffffff;
}

html{
  background: #fff;
  scroll-behavior: smooth;
}


a {
  color: #1b1311;
}

a:hover {
  color: #b61a2c;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .table, .jp-font , .accordion-list p{
  font-family: 'Poppins', sans-serif;
}

.YuGothic{
  font-family: 'Poppins', sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #53DA3F;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  
  background: rgb(16 16 16 / 25%);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #1b1311;
  color: #fff;
}

/*--------------------------------------------------------------
# Square Icon button
--------------------------------------------------------------*/
.square-btn{
  background-color: #00CD4A;
  color: white !important;
  padding: 1rem 3.5rem;
  font-weight: bold;
  display: inline-block;
}

.square-btn:hover{
  background-color: #2e8b57;
  transition: all 0.5s;
}

.square-btn svg {
  position: relative;
  right: -2rem;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgb(255 255 255 / 0%);
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 50px;
}

.YuGothic{
  font-family: 'Poppins', sans-serif;
}

.bxs-shopping-bag{
  font-size: 16px;
  padding: 0 10px;
}


.img-text{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  /* top: 100%; */
  box-shadow: 0px 3px 15px rgb(29 112 207 / 8%);
  border-radius: 8px;
  width: 80%;
  background: #fff;
  
}

.img-text h4{
  font-size: 18px;
  margin-bottom: 0;
}
.img-text + .img-text.tp80{
  top: 80%;
}
.img-text + .img-text.tp100{
  top: 100%;
}

.card-p{
  padding: 10px 25px 16px;
    margin-bottom: 0;
    font-size: 12px;
}

.buy-product{
  width: 400px;
    position: absolute;
    right: 40px;
    bottom: 30px;
    border-radius: 8px;
    padding: 40px;
    background: #fbfbfb;
    /* text-align: center; */
    
}

.goto{
  border-radius: 8px;
  padding: 28px;
  width: 300px;
  background: #fff;
  margin-left: 30px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgb(255 255 255 / 43%);
  transition: 0.3s;
  line-height: 1.4;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

#header.header-scrolled .nav-menu a {
  color: #727272;
}

.nav-menu a:hover, .nav-menu li:hover > a {
  color: #ffffff;  ;
}

#header.header-scrolled .nav-menu a:hover, #header.header-scrolled .nav-menu .active>a, #header.header-scrolled .nav-menu li:hover>a {
    color: #212529;
    font-weight: 500;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0b2341;
}


.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1b1311;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}


/* Get Startet Button */
.get-started-btn {
  border-color: #53da3f;
    background: #53da3f;
    color: #fff!important;
    border-radius: 8px; 
  padding: 8px 35px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 18px;
  display: inline-block;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #53da3f;
}

.get-started-btn:hover, .get-nav-btn:hover {
  background: #3c4148;
  color: #fff;
  border-color: #3c4149;
}

.get-started-btn.jp-font:hover{
  background: #1b1311;
  color: #fff;
}
.btn-focus-non.focus, .btn-focus-non:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}
.btn-focus-non:hover{
  cursor: default!important;
}
.p-40-respo tbody{
  font-size: 13px;
}



/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 9999;
  border: 0;
  background: none;
  font-size: 32px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #1b1311;
}

.mobile-nav {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9998;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #0b2341;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #1b1311;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  /* background: rgb(255 255 255 / 60%); */
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.5s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #1b1311;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  /* width: 100%;
  height: 100vh;
  background-color:rgb(249 249 249);
  overflow: hidden;
  position: relative; */
  padding: 0;
}


.img-1{
  background-image: url(../img/slide/slide-1.jpg);
}

.img-2{
  background-image: url(../img/slide/slide-2.jpg);
}

#hero h3{
  font-size: 42px;
  font-weight: 600;
}

#hero p{
  font-size: 28px;
}

/* .hero-bg{
  background-color: #333;
  height: 100%;
  width: 100%;
} */
.swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  color: #fff;
  /* background-color: #d82f2f; */
  font-size: 9vw;
  text-shadow: 2px 3px 5px #222;


}

/* .swiper-slide-active::before{
   position: absolute;
  content: '';
  background-color: #f16565;
  left: 0;
  top: 0;
  width: 0;
  z-index: 99999;
  height: 2px;
  animation: progressbar 12s linear infinite;
  animation-delay: 0s;
}

@keyframes progressbar{
  0%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
} */


.search-in{
  height: inherit;
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff0;
    background-clip: padding-box;
    border-right: 0;
    border-left: 1px solid #6c757d;
    border-top: 1px solid #6c757d;
    border-bottom: 1px solid #6c757d;
    border-radius: 1.25rem;
    border-end-end-radius: 0;
    border-start-end-radius: 0;
}

.search-btn{
  background-color: transparent;
    border-left: 0;
    border-bottom: 1px solid #6c757d;
    border-top: 1px solid #6c757d;
    border-right: 1px solid #6c757d;
    /* border: 1px solid transparent; */
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 0.5;
    border-radius: 1.25rem;
    border-end-start-radius: 0;
    border-start-start-radius: 0;
}


.swiper-container {
  background-color: #000;
  /* margin-top: 14px; */
}

.swiper-wrapper {

  background-color: #000;
}

.fade-in {
	-webkit-animation: fade-in 6s ease-in-out 0s infinite alternate forwards;
	        animation: fade-in 6s ease-in-out 0s infinite alternate forwards;
}

 @-webkit-keyframes fade-in {
  20%, 100% {
    opacity: 0;
  }
 
  10% {
    opacity: 1;
  }

}
@keyframes fade-in {
  20%, 100% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }
}

  /* .testb-b{
    position: absolute;
    z-index: 2;
    background-color: #000;
    height: 100%;
    width: 100%;


  }

  .testb-b::before{
    content: url('../../media/TOWNEW_white.png');
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    
  } */

  .post-rel{
    position: relative;
  }

  .title-text{
    font-size: 28px;
    font-style: italic;
    color: #1b1311;
    font-weight: 900;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
  }
  .cus-font{
    font-size: 2.2rem;
  }

  /* .p-40-respo .table-bordered td, .p-40-respo .table-bordered th {
    border: 1px solid #f5f5f5;
} */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #F8F8F8;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Poppins', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  color: #0f2f57;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 40px 0;
}



/* .why-us .accordion-list {
  padding: 0 100px 60px 100px;
} */


.why-us .accordion-list.left {
padding-left: 200px;
}

.why-us .accordion-list.right {
  padding-right: 200px;
  }

  .why-us .accordion-list.rlboth {
    padding-right: 200px;
    padding-left: 200px;
    }
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  text-align: left;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 30px;
  outline: none;
  color: #11110F;
}
.width-100{
  width: 100%;
}
#atag {
  display: inline-flex;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  padding-right: 30px;
  outline: none;
  color: #11110F;
}
.line-h27{
  line-height: 27px;
}

.why-us .accordion-list span, #atag {
  color: #1b1311;
  font-weight: 400;
  /* font-size: 18px; */
 
  padding-right: 10px;
}

.why-us .accordion-list span {

  float: left;

}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0px;
  font-size: 14px;
  text-align: justify;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #11110F;
}

.why-us .accordion-list a.collapsed:hover {
  color: #1b1311;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}




@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/* privacy page */

.privacy{
  padding: 100px 0!important;
}

.privacy p {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 30px 0;
  /* background: #0b2341; */
  /* background-image: url(../../assets/img/procs.jpg); */
}

.cta-line {
  padding: 60px 0;
  /* background: #0b2341; */
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/search.jpeg);
}

.style-null{
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  line-height: 1.7;
}

#myModalID{
  padding: 24px;
  font-size: 14px;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #1b1311;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #1b1311;
  border: 2px solid #1b1311;
}

.why-us.cta .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 350px;
  position: relative;
}

.why-us.cta .content {
  padding: 40px;
  margin-bottom: 0px;
  left: -250px;
  background: #fff;
  position: absolute;
  font-family: 'Poppins', sans-serif;
}
.bg-white{
  background-color: #fff;
}

/* .secton-award{
  padding: 30px 200px 40px 200px;
} */

.para-div{
  background-image: url(../img/full-img.jpg);
  min-height: 500px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.p-40{
  padding-top: 40px;
}

.p-40-0{
  padding: 40px 0 0 0;
}

.order-selection-main {
  display: flex;
  justify-content: space-between;
  background: #525e6a;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 0;
  width: 130px;
}

.order-selection-main dt {
  font-size: 16px;
  width: 100%;
}

select.cart-select01 {
  padding: 12px 0px 8px 12px;
  background: #f7f6f6;
  border-end-end-radius: 7px;
  border-top-right-radius: 7px;
  border: none;
  width: 60px;
}

*, *:focus {
  outline: none;
}

.form-control:focus {

  border-color: rgb(108 117 125);

  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%);
}

.color-red{
  color: rgb(122, 23, 23);
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: 'Poppins', sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

.font-size-12{
  font-size: 12px;
}

.sdgs-area p {
  font-size: 13px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Seach and map area
--------------------------------------------------------------*/

.search-box {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #515d69;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
.search-box::before {
  content: "";
  height: 75%;
  width: 100%;
  background: url(../img/map-bg.png) no-repeat;
  position: absolute;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.search-pre-list {
  list-style: none;
  /* background: #fff; */
  display: flex;
  margin-bottom: 0;
  padding: 18px;
  height: 50%;
  flex-wrap: wrap;
}

.search-pre-list li{
  flex: 1 1 100px;
  margin: 4px 0;
}

.location-list{
  box-shadow: 0px 3px 18px rgb(48 95 150 / 8%);
  border-radius: 8px;
  min-height: 250px;
  margin-top: 16px;
}

.location-Hokkaido{
   background: url(../img/hokkaido.png) no-repeat;
   background-size: cover;
   background-position: center;
 }
 
 .location-Tohoku{
  background: url(../img/Tohoku.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.location-Kanto{
  background: url(../img/Kanto.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.location-Chubu{
  background: url(../img/Chubu.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.location-Kansai{
  background: url(../img/Kansai.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.location-Shikoku{
  background: url(../img/Shikoku.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.location-Chugoku{
  background: url(../img/Chugoku.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.location-Kyushu_Okinawa{
  background: url(../img/Kyushu_Okinawa.png) no-repeat;
  background-size: cover;
  background-position: center;
}



.location-p{
  display: inline-block;
  border-bottom: 1px solid #59da3f;
  margin-bottom: 0;
}

.search-pre-list a:hover {
  color: #59da3f;
}
.search-pre-list a {
  color: #444;
}
.search-bg {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  /* box-shadow: 0px 13px 26px #0097dc; */
}

.form-control-search {
  height: calc(2.0em + 2.05rem + 0px);
  border: 1px solid #ffffff;
  background: #F7F7F7;
  border-right: 0;
  border-end-start-radius: 12px;
  border-start-start-radius: 12px;
}

.form-control-search:focus {
  color: #495057;
  background-color: #f7f7f7;
  border-color: #ffffff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 25%);
}
.btn-search {
  background: transparent linear-gradient( 
    107deg
     , #59da3f 0%, #49ba5b 100%) 0% 0% no-repeat padding-box;
        border-color: #ffffff;
        height: 65px;
        font-size: 24px;
        border-radius: 12px;
        border-start-start-radius: 0;
        border-end-start-radius: 0;
}

.btn-search:hover {
  color: #fff;
  background-color: #57d741;
  border-color: #48b238;
}

.mt-80{
  margin-top: 40px;
}

.search-input-box{
  padding: 20px 40px;
  margin: auto;
  color: #686868;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  width: 80%;
  margin-bottom: -90px;
  box-shadow: 0px 3px 18px rgb(48 95 150 / 10%);
}


.map-list-top{
  background: #f6f6f6;
  font-size: 12px;
  border-radius: 8px;
  padding: 24px;
}


.card {
  padding: 00px;
  border-radius: 0px;
  border: none;
}

.product-pic {
  padding-left: auto;
  padding-right: auto;
  width: 100%
}

.thumbnails {
  position: absolute;
  bottom: 0px;
  justify-content: space-between;
  width: calc(100% - 14px);
}

.fit-image {
  width: 100%;
  object-fit: cover
}

.tb_1  {
  width: 69px;
  height: 69px;
  /* border: 1px solid grey; */
  margin: 0;
  opacity: 0.5;
  cursor: pointer
}

.tb-active {
  opacity: 1;
  border: 2px solid #59da3f;
  border-radius: 6px;
}

.thumbnail-img {
  width: 65px;
  height: 65px;
  border-radius: 4px;
}

 .sub_1.active {
  display: block !important
}

.sub_1 {
  display: none
}

.pic0 {
  /* width: 260px;
  height: 290px; */
  border-radius: 24px;
  width: 100%;
  height: 100%;
  padding: 15px;
  margin-bottom: 64px;
  margin-right: auto;
  display: block
}

.abt-text{
  font-size: 14px;
}

.open-pdf:hover{
color: #46b141;
}

.faq-sub{
       /* background: #fff; */
       padding: 0 0 14px 0;
       font-weight: 600;
       margin-bottom: -10px;
       border-radius: 4px;
       font-size: 18px;
       /* color: #46b141; */
       /* text-decoration: underline; */
       /* text-underline-offset: 4px; */
}

.shop-content-align{
  min-height: 290px;
  display: flex;
  align-items: flex-start;
  align-content: space-between;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 20px 0 20px 0;
  color: #11110F;
  font-size: 14px;
}

#footer .footer-top {
  /* padding: 60px 0 30px 0; */
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #1b1311;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #1b1311;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}

#footer ul.footer-link li {
  padding: 0 10px;
}


#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ef6445;
}


.br-d-respo{
  display: none;
}


.product-head{
  background: #fff;
    padding: 30px;
}


.img-wid{
  width: 100%;
}

.footer-link{
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  font-weight: 500;
}

.footer-link li a{
  color: #11110F;
}

@media only screen and (min-width: 1367px) and (max-width: 1666px) and (min-width: 1367px) {
  .cus-font {
    font-size: 1.9rem;
}

.about .content h3 {
  
  font-size: 20px;
}
.about .content h5 {
  
  font-size: 1.15rem;
}

}


@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }

  .secton-award, .why-us {
    padding: 0;
}

}
@media only screen and (min-width: 768px) and (max-width: 1366px) and (min-width: 768px) {
  .p-40-respo-7-9 {
    padding: 40px 0;
  }
  .p-40-respo{
    padding: 40px 0;
  }

  .br-d-respo{
    display: none;
  }


}

@media (min-width: 1200px) {
  /* #hero p {
    width: 50%;
  } */

  .why-us .content{
    padding: 45px
  }
}


@media (min-width: 1024px) {
  .mt-custom{
    margin-top: 30px;
  }
}
@media (min-width: 1025px) {
  /* #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  } */



.get-started-btn {

  padding: 8px 18px;

}

.shop-btn {
  padding: 8px 100px;
}
.md-img{
  display: none;
}

}

@media (max-width: 1024px) {
  /* .secton-award {
    padding: 30px;
} */

.about .content h3 {
    
  font-size: 18px;
}

.content .pl-5{
  padding-left: 1rem!important;
}



.abt-text.py-5 {
  padding-bottom: 1rem!important;
  padding-top: 1rem!important;
}

.why-us .content h3, .why-us .content-2 h3 {
   font-size: 18px;
}

.why-us .content p{
  font-size: 14px;
 }

 .why-us .content {
  padding: 40px;

}

.why-us .accordion-list.rlboth, .why-us .accordion-list.right , .why-us .accordion-list.left{

  padding-right: 0;
  padding-left: 0;
}

.hd-img{
  display: none;
}

.buy-product {
  width: 320px;
  right: 30px;
  bottom: 10px;
  padding: 20px;

}

}

@media (max-width: 992px) {

  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  } 

  #header .logo {
    font-size: 28px;
  }

  .abt-main h5 {
    font-size: 24px;
  
  }
  .why-us .content {
    padding-top: 30px;
  }
  /* .why-us .accordion-list {
    padding-bottom: 30px;
  } */

  .why-us .content-2, .why-us .content-3 {
    right: 0px;
   
}

.why-us .content, .why-us.cta .content {
  padding: 40px;
  margin-bottom: 0px;
  margin-top: -30px;
  position: static;
}

.content .pl-5{
  padding-left: 0rem!important;
}


.why-us .accordion-list.left {
  padding-left: 0;
}

.why-us .accordion-list.right {
  padding-right: 0px;
}

.why-us .accordion-list.rlboth {
  padding-right: 0;
  padding-left: 0;
}
.pt-20-r992{
  padding-top: 20px;
}

.why-us .video-box, .why-us.cta .video-box {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100%;
  position: relative;
}

}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }

  .get-started-btn {
    width: 200px;
    margin-top: 10px;
    margin-left: 16px;
  }

  .about .content h3 {
        font-size: 20px;
}
.abt-main h5 {
  font-size: 24px;

}
.get-nav-btn {
  background: #1b1311;
  color: #fff!important;
  border-radius: 0px;
  width: 120px;
  margin-left: 15px!important;
  margin-top: 10px!important;
}

.respo-tcenter{
  text-align: center;
}
.footer-link{
  padding: 0px;
}
.cus-font {
  font-size: 1.8rem;
}

.p-40-respo{
  padding: 30px 0;
}



table {
  border: 0;
}

table caption {
  font-size: 1.3em;
}

table thead {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

table tr {
  border-bottom: 2px solid #ddd;
  display: block;
  margin-bottom: .625em;
}

table td {
  border-bottom: 1px solid #ddd;
  display: block;
  font-size: .8em;
  text-align: left;
}

table td::before {
  /*
  * aria-label has no advantage, it won't be read inside a table
  content: attr(aria-label);
  */
  text-align: left;
  content: attr(data-label);
  float: left;
  color: #fff;
  font-weight: bold;
  min-width: 150px;
  text-transform: uppercase;
}

table td:last-child {
  border-bottom: 0;
}

.table-bordered {
  border: none;
}

tr.bg{
    position: relative;
 }

tr.bg::before{
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  background: rgb(52 58 64);
  width: 150px;
}

.search-input-box {
  padding: 10px;
  width: 100%;
  
}

.btn-search {

  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
}

.form-control-search {

  border-end-start-radius: 12px;
  border-radius: 12px;
  border-start-start-radius: 12px;
}

.secton-search{
  margin-bottom: 30px;
}

.search-box h3{
  font-size: 22px;
}

.search-box {
  padding-top: 35px;
}

.img-wid{
  width: 30%;
  margin-bottom: 15px;
}

.sdgs-area{
  padding: 16px 0;
}

.footer-link {

  justify-content: center;

}

.footer-logo {
  text-align: center;
}

.order-selection-main {
  margin-top: 10px;
  height: 43px;

}

.img-1{
  background-image: url(../img/slide/slide-1-tab.jpg);
}

.img-2{
  background-image: url(../img/slide/slide-2-tab.jpg);
}
.para-div {
  background-image: url(../img/full-img.jpg);
  min-height: 300px;

  background-attachment: inherit;
}

.btn-map {
   width: 202px;
   margin: 16px 1px;
  padding: 0!important;
 
}

.shop-content-align {
  min-height: 330px;
}

.shop-content-align-78{
  min-height: 250px;
}

}


@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
  .product-head h3{
    font-size: 1.6rem!important;
  }

  .about .content h3 {
    font-size: 19px;
}
.abt-main h5 {
  font-size: 17px;
  padding-top: 0px!important;
}
.cus-font {
  font-size: 1.5rem;
}
.br-d-respo{
  display: block;
}


.buy-product {
  width: 100%;
  bottom: 0px;
  padding: 20px 40px;
  right: 0px;
  position: relative;
}

.img-wid {
  width: 50%;
  margin-bottom: 15px;
}

#hero h3 {
  font-size: 24px;
}

#hero p {
  font-size: 16px;
}

.shop-content-align {
  min-height: 250px;
}
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


@media (max-width: 375px) {
.abt-main h2{
  font-size: 1.3rem;
  font-weight: 600;
}

.abt-main h5{
  font-size: 15px;
    padding-top: 0px!important;
}

.get-started-btn {
  padding: 8px 12px 8px 12px;
  font-size: 14px;
  margin-left: 18px;
  margin-top: 10px;
  width: 200px;
  
}

 h3 {
  font-size: 1.55rem;
  font-weight: 600;
}

.product-head {
  padding: 13px;
 
}

.about .content h3 {
  font-size: 16px;
}
.product-head h3{
  font-size: 1.3rem!important;
}
.cta-line {
  padding: 30px 0;

}

}

.border-radius-8{
  border-radius: 8px;
}

.video-container {
  overflow: hidden;
  position: relative;
  width:100%;
  margin-bottom: -8px;
  border-radius: 8px;
  /* border: 1px solid #b0b0b0;*/
}

/* .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: '';
} */

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-effect{
  background: #1b1311;
  color: #fff;
  position: relative;
}

.bg-effect::before{
  content: "";
  width: 100%;
  position: absolute;
  left: 15px;
  height: 100%;
  bottom: 12px;
  border: 3px solid #313131;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .why-us .content, .content, .why-us.cta .content {
    position: relative;
    left: 0;
  }
  }

  .float-text{
    position: absolute;
    bottom: 0;
  }

  .social-font-round{
    font-size: 28px;
    border-radius: 45px;
    line-height: 0;
    padding: 10px;
  }

  .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #fdfdfd;
    border-color: #fdfdfd;
}

.btn-light {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.btn-light:hover {
  color: #212529;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}

.hover-item:hover{
  /* padding: 20px; */
  box-shadow: 1px 1px 20px rgb(233, 233, 233);
  transform: translate(-3px, -3px);
  transition: all ease .4s;
  /* transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .2s ease-in-out,box-shadow .25s ease-in-out; */
}
.hover-item{

  transition: all ease .4s;
  
}

.section-bg-imp{
  background-color: #F8F8F8!important;

}


table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  /* background-color: #f8f8f8; */
  /* border: 1px solid #ddd; */
  /* padding: .35em; */
}

/* table th,
table td {
  padding: .625em;
  text-align: center;
} */

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.table-bordered td, .table-bordered th {

  text-align: center;
  vertical-align: middle;
}



.color-green{
  color: #33b141!important;
}

.search-list .accordion-list i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: #343a40;
  padding: 8px;
  color: #fff;
  border-radius: 4px;
}

.search-list-map{
  padding: 11px 22px !important;
  background: #46b141;
  color: #fff;
  margin: 0 25px 0px;
  border-radius: 4px;
  justify-content: center;
}

.search-list .accordion-list a {
  display: inline-flex;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  align-items: center;
  padding-left: 45px;
  outline: none;
}

.search-list .accordion-list ul {
  padding: 0;
  list-style: none;
}


.search-list.accordion-list .icon-show {
  display: none;
}

.search-list .accordion-list a.collapsed {
  color: #11110F;
}

.search-list .accordion-list a.collapsed:hover {
  color: #1b1311;
}


.search-list .accordion-list a:hover {
  color: #1b1311;
}
.search-list .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.search-list .accordion-list a.collapsed .icon-close {
  display: none;
}


/* map button */

/* .btn-map {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3);
  border-radius: 8px;
  transition: all 0.1s ease;
} */

.btn-map {
  position: relative;
  width: 182px;
  text-decoration: none;
  overflow: hidden;
  background: #555555;
  /* box-shadow: 0 8px 20px -6px rgb(0 0 0 / 30%); */
  border-radius: 8px;
  transition: all 0.1s ease;
}

/* .btn-map .--icon {
  position: relative;
  width: 84px;
  height: 40px;
  background: #fedecf;
  float: left;
} */

.btn-map .--icon {
  position: relative;
  width: 50px;
  height: 40px;
  background: #2c323e;
  float: left;
}


.btn-map .--icon #box {
  position: absolute;
  top: -1px;
  left: 14px;
  margin-right: 24px;
  transition: all 0.2s ease;
}

.btn-map .--icon #box {
  position: absolute;
  top: 4px;
  left: 9px;
  margin-right: 10px;
  transition: all 0.2s ease;
}

/* .btn-map .--icon #pin {
  position: absolute;
  top: 2px;
  left: 35px;
  opacity: 0;
  transition: all 0.2s ease;
} */

.btn-map .--icon #pin {
  position: absolute;
  top: 2px;
  left: 22px;
  opacity: 0;
  transition: all 0.2s ease;
}
/* .btn-map .--icon .circle-inner {
  position: absolute;
  width: 57px;
  height: 27px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  margin: 7px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transform: scale(0);
  transition: all 0.3s ease;
} */

.btn-map .--icon .circle-inner {
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  margin: 7px 14px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
  transform: scale(0);
  transition: all 0.3s ease;
}
/* .btn-map .--icon .circle-outer {
  position: absolute;
  margin: 0px 7px;
  width: 70px;
  height: 40px;
  border-radius: 26px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transform: scale(0);
  transition: all 0.3s ease;
} */
.btn-map .--icon .circle-outer {
  position: absolute;
  margin: 0px 7px;
  width: 40px;
  height: 40px;
  border-radius: 26px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  transform: scale(0);
  transition: all 0.3s ease;
}
/* .btn-map .--text {
  float: left;
  color: #000;
  white-space: nowrap;
  line-height: 20px;
  height: 60px;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 500;
} */

.btn-map .--text {
  float: left;
  color: #fff;
  white-space: nowrap;
  line-height: 20px;
  height: 40px;
  padding: 10px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 500;
}
.btn-map:hover .--icon #box {
  transform: translateY(1px) scale(0.98333);
}
.btn-map:hover .--icon #pin {
  transform: translateY(11px);
  opacity: 1;
  transition-delay: 0.15s;
}
.btn-map:hover .--icon .circle-inner {
  transform: scale(1);
  transition-delay: 0.2s;
}
.btn-map:hover .--icon .circle-outer {
  transform: scale(1);
  transition-delay: 0.25s;
}

.btn-map:hover .--text {
  color: #ffffff;
  background: #2c323e;
}

/* .btn-map:hover .--text {
  color: #000;
} */
.btn-map:active {
  transform: translateY(1px);
}

