@font-face {
  font-family: "Gotham-Bold-Italic";
  src: url("../fonts/Gotham-Bold-Italic.ttf");
}
@font-face {
  font-family: "Gotham-Book-Regular";
  src: url("../fonts/Gotham-Book-Regular.otf");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.ttf");
}
@font-face {
  font-family: "Montserrat-BoldItalic";
  src: url("../fonts/Montserrat-BoldItalic.ttf");
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("../fonts/Montserrat-ExtraBold.ttf");
}
@font-face {
  font-family: "Montserrat-Black";
  src: url("../fonts/Montserrat-Black.ttf");
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* height */
::-webkit-scrollbar {
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #415236;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c2d500;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #415236 #f1f1f1;
}

html,
body {
  color: #12382d;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-face-color: #f1f1f1;
  scrollbar-track-color: #ddd;
  scrollbar-arrow-color: #415236;
  scrollbar-shadow-color: #ddd;
  height: 100%;
}

.transition-all {
  transition: all 0.2s linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
/*  color:#c2d500;*/
}
legend {
  font-family: "Gotham-Book-Regular";
  color: #415236;
  font-weight: 600;
  line-height: 50px;
  border-bottom: 1px solid #415236;
}
label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #415236;
  margin-bottom: 0.5rem;
}
ul {
  list-style: none;
  padding: 0;
}
span.red {
  color: #ff0000 !important;
}
.black-text {
  text-transform: capitalize;
  color: #000;
}
.no-padding {
  padding:0 !important;
}
.no-margin {
  margin:0 !important;
}
.pt_large {
  padding-top: 70px;
}
.pb_large {
  padding-bottom: 70px;
}
.pt_medium {
  padding-top: 50px;
}
.pb_medium {
  padding-bottom: 50px;
}
.pt_small {
  padding-top: 35px;
}
.pb_small {
  padding-bottom: 35px;
}
.header_section {
  flex-shrink: 0;
  padding: 10px 0px;
  width: 100%;
  background-color: #ffffff;
}
.header_section .container-fluid {
  max-width: 1140px;
}
.header_section .logo_sectiom img {
  width: 128px;
  height: 119px;
}
.header_section .header_menu_block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.g-recaptcha {
  display: flex;
}
.header_section .header_menu_block .nav_menu_section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  padding-bottom: 10;
}
.header_section .header_menu_block .nav_menu_section .active-nav {
  color: #c2d500;
}
.header_section .header_menu_block .nav_menu_section .nav_menu {
  padding: 0px 30px;
}
.header_section .header_menu_block .nav_menu_section .nav_menu:last-child {
  padding-right: 0px;
  border-right: none;
}
.header_section .header_menu_block .nav_menu_section .nav_menu a.menu-list {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #415236;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Gotham-Book-Regular";
}
.header_section .header_menu_block .nav_menu_section .nav_menu a.menu-list:hover {
  color: #c2d500;
  transition: all 0.3s;
}
.header_section .header_menu_block .nav_menu_section .nav_menu a.menu-list::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
.header_section .header_menu_block .nav_menu_section .nav_menu a.menu-list:hover::after,
.header_section .header_menu_block .nav_menu_section .nav_menu a.menu-list.active-nav::after {
  width: 50%;
  background: #c2d500;
}
.header_section .burger_section {
  display: none;
}

.burger_icon {
  font-size: 30px;
}
.burger_icon:hover {
  cursor: pointer;
}

.close_icon_section {
  display: none;
}

.show_menu {
  display: block !important;
  width: 100%;
  transition: width 0.3s;
}

.fixed_top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  right: 0;
  left: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  height: 120px;
  box-shadow: 0px 0px 5px -2px rgba(0, 0, 0);
}
.fixed_top .navbar-brand img {
  width: 100px;
  height: 91px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    top: -50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes slideright {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
@media only screen and (max-width: 992px) {
  .menu_section {
    display: none;
  }
  .close_icon_section {
    display: block;
    width: 50px;
    height: 50px;
    left: 0px;
    top: 0px;
    float: right;
    text-align: center;
  }
  .close_icon_section .close_icon {
    text-align: center;
    font-size: 30px !important;
    line-height: 50px;
  }
  .menu_section .menu_overlay {
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
  .menu_section .nav_menu_section,
  .menu_section .menu_section_box {
    z-index: 1;
    background-color: #ffffff;
    position: relative;
    display: inherit !important;
    width: 40%;
    height: 100vh;
    animation-name: slideright;
    animation-duration: 1s;
  }
  .menu_section .nav_menu_section .active-nav,
  .menu_section .menu_section_box .active-nav {
    color: #c2d500;
  }
  .menu_section .nav_menu_section .nav_menu_section,
  .menu_section .menu_section_box .nav_menu_section {
    top: 50px;
    width: 100%;
  }
  .menu_section .nav_menu_section .nav_menu,
  .menu_section .menu_section_box .nav_menu {
    padding: 10px 30px !important;
    border-right: none !important;
  }
  .menu_section .nav_menu_section .nav_menu:last-child,
  .menu_section .menu_section_box .nav_menu:last-child {
    padding-right: 30px !important;
  }
  .menu_section .nav_menu_section .nav_menu a.menu-list::after,
  .menu_section .menu_section_box .nav_menu a.menu-list::after {
    content: "";
    display: block;
    margin: inherit !important;
    height: 3px;
    width: 0;
    top: 5px;
    background: transparent;
    transition: all 0.3s;
  }
  .menu_section .nav_menu_section .nav_menu a:hover::after,
  .menu_section .nav_menu_section .nav_menu a.active-nav::after,
  .menu_section .menu_section_box .nav_menu a:hover::after,
  .menu_section .menu_section_box .nav_menu a.active-nav::after {
    width: 70% !important;
    background: #c2d500;
  }
  .burger_section {
    display: block !important;
    width: 100px;
  }
  .burger_section .burger_box {
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .fixed_top .navbar-brand {
    width: 128px;
  }
  .fixed_top img {
    width: 128px;
    height: 119px;
  }
  .fixed_top .burger_section {
    width: 128px;
  }
  .header_section .logo_sectiom .navbar-brand {
    width: 100px;
  }
  .header_section .logo_sectiom img {
    width: 100px;
    height: 91px;
  }
  .header_section .burger_section {
    width: 100px;
  }
  .menu_section .menu_overlay {
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .menu_section .nav_menu_section,
  .menu_section .menu_section_box {
    z-index: 2;
    background-color: #ffffff;
    position: relative;
    display: inherit !important;
    width: 70%;
    height: 100%;
    animation-name: slideright;
    animation-duration: 1s;
  }
  .menu_section .nav_menu_section {
    top: 50px;
  }
  .menu_section .nav_menu a.menu-list:hover::after,
  .menu_section .nav_menu a.menu-list.active-nav::after {
    width: 100% !important;
    background: #c2d500;
  }
  .cart_menu {
    margin-bottom: 0px !important;
  }
  .cart_menu .dropdown .menu_text_box p {
    display: none;
  }
  .cart_menu .dropdown .menu_text_box i {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    line-height: 50px !important;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-inner-page .cart-sidebar {
    padding-top: 35px;
  }
  .product_details_section .product_details .product_chk_mtm{
    margin-left: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1024px) {
  .header_section .burger_section {
    width: 128px;
  }
  .fixed_top .burger_section {
    width: 100px;
  }
  .header_menu_block .nav_menu_section .nav_menu {
    padding: 10px 30px !important;
  }
  .header_menu_block .nav_menu_section .nav_menu a.menu-list {
    text-decoration: none;
    font-size: 18px !important;
  }
  .cart_menu {
    margin-bottom: 0px !important;
  }
  .cart_menu .dropdown .menu_text_box p {
    line-height: 50px !important;
  }
  .cart_menu .dropdown .menu_text_box i {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    line-height: 50px !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .logo_sectiom img {
    width: 128px;
    height: 119px;
  }
  .menu_section .nav_menu_section .nav_menu {
    padding: 2px 20px !important;
  }
}
.footer_section {
  flex-shrink: 0;
  width: 100%;
  padding: 20px 0px;
  background-color: #231f20;
}
.footer_section .hr_line {
  border-bottom: 1px solid #c2d500;
  opacity: 2;
  margin: 5px 0px 0px 0px;
}
.footer_section .footer_menu_section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  padding-bottom: 10;
}
.footer_section .footer_menu_section .footer_menu {
  padding: 2px 30px;
  border-right: 1px solid #c2d500;
}
.footer_section .footer_menu_section .footer_menu:last-child {
  border-right: none;
}
.footer_section .footer_menu_section .footer_menu a {
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer_section .footer_menu_section .footer_menu:hover {
  color: #ffffff;
}
.footer_section .footer_text_section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
}
.footer_section .footer_text_section .map_icon_block {
  width: 40px;
}
.footer_section .footer_text_section .map_icon_block .map_icon_box {
  width: 30px;
  height: 30px;
  background-color: #c2d500;
  text-align: center;
  border-radius: 30px;
}
.footer_section .footer_text_section .map_icon_block .map_icon_box i {
  justify-content: center;
  align-items: center;
  line-height: 30px;
  font-size: 14px;
  color: #415236;
}
.footer_section .footer_text_section .footer_text {
  font-family: "Montserrat-Regular";
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer_section .social_icon_section {
  margin-top: 20px;
}
.footer_section .social_icon_section ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}
.footer_section .social_icon_section ul .social_icon_box {
  display: inline !important;
  width: 40px !important;
  height: 40px !important;
  background-color: #c2d500;
  text-align: center;
  border-radius: 40px;
  margin: 0px 5px;
}
.footer_section .social_icon_section ul .social_icon_box i {
  justify-content: center;
  align-items: center;
  line-height: 40px;
  font-size: 14px;
  color: #415236;
}
.footer_section .social_icon_section ul .social_icon_box:first-child {
  margin-left: 0px;
}
.footer_section .social_icon_section ul .social_icon_box:last-child {
  margin-right: 0px;
}

@media only screen and (max-width: 767px) {
  .footer_menu_section {
    display: inherit !important;
    margin-bottom: 10px !important;
    -moz-column-count: 2;
         column-count: 2;
  }
  .footer_menu_section .footer_menu {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px 0px;
    padding: 2px 10px !important;
    /*border-right: none;*/
    display: flex;
  }
  .footer_menu_section .footer_menu:nth-child(1) {
    margin-top: 0px;
  }
  .footer_menu_section .footer_menu:nth-child(4), .footer_menu_section .footer_menu:nth-child(5) {
    border-right: none;
  }
  .footer_menu_section .footer_menu a {
    font-size: 12px !important;
  }
  .footer_text_section .map_icon_block .map_icon_box {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1024px) {
  .footer_menu_section {
    display: inherit !important;
    -moz-column-count: 3;
         column-count: 3;
  }
  .footer_menu_section .footer_menu {
    margin: 8px 0px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer_menu_section .footer_menu:nth-child(1) {
    margin-top: 0px;
  }
  .footer_menu_section .footer_menu:nth-child(5) {
    border-right: none;
  }
  .footer_menu_section .footer_menu a {
    font-size: 12px !important;
  }
}
.banner_section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
.banner_section .mobile_banner {
  display: none;
}
.banner_section .main_sider.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.banner_section .main_sider img {
  width: 100%;
}
.banner_section .main_sider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  bottom: 10px;
  list-style-type: none;
}
.banner_section .main_sider .slick-dots li {
  margin: 0 0.25rem;
}
.banner_section .main_sider .slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #ffffff;
  text-indent: -9999px;
}
.banner_section .main_sider .slick-dots li.slick-active button {
  background-color: #c2d500;
}

@media only screen and (max-width: 767px) {
  .banner_section .mobile_banner {
    display: block;
  }
  .banner_section .desktop_banner {
    display: none;
  }
  .banner_section .main_sider .slick-dots {
    bottom: 1px;
    padding-bottom: 0px;
  }
  .banner_section .main_sider .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
.mid_banner .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  background-color: #0E2C24;
}
.mid_banner .container img {
  width: 100%;
}

.title_section .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  background-color: #c2d500;
  padding: 20px 0px;
}
.title_section .container .title_text {
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 1;
  font-family: "Gotham-Book-Regular";
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .title_section .container .title_text {
    font-size: 30px;
  }
}
.product_slider_section .product_sider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 20px 0px;
}
.product_slider_section .product_sider .slick-slide {
  padding: 20px;
  min-height: 400px;
  background: linear-gradient(140deg, #b0ced9, #ebecc7, #bad872);
}
.product_slider_section .product_sider .slick-slide:hover {
  cursor: pointer;
}
.product_slider_section .product_sider .slick-slide {
  margin-left: 10px;
}
.product_slider_section .product_sider .slick-list {
  margin-left: -10px;
}
.product_slider_section .product_sider .slick-prev.slick-arrow {
  left: 10px !important;
  z-index: 9;
}
.product_slider_section .product_sider .slick-next.slick-arrow {
  right: 25px !important;
  z-index: 9;
}
.product_slider_section .product_sider .slick-prev:before,
.product_slider_section .product_sider .slick-next:before {
  color: #415236;
  font-size: 35px;
}
.product_slider_section .product_sider .product_block {
  position: relative;
  height: 440px;
}
.product_slider_section .product_sider .product_block .product_title_box {
  margin: 0 auto;
  display: block; /*  display: inherit;*/
  min-height: 60px; /* 80px */
}
.product_slider_section .product_sider .product_block .product_title {
  text-align: center;
  font-family: "Montserrat-Bold";
  text-transform: uppercase;
  font-weight: 700;
  color: #415236;
  font-size: 24px;
  display: block;
}
.product_slider_section .product_sider .product_block img {
  width: 300px;
  height: auto;
  margin: 0 auto;
  /*margin-top: 40px;*/
  transition: transform 0.3s ease-in-out;
}
.product_slider_section .product_sider .product_block img:hover {
  transform: scale(1.1);
}
.product_slider_section .product_sider .product_tag {
  background: #c2d500;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  font-family: "Gotham-Book-Regular";
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}

@media only screen and (max-width: 576px) {
  .product_slider_section .product_sider .product_block {
    min-height: 380px;
  }
  /*new added changes */
  .product_slider_section .product_sider .product_block .product_title_box {
    min-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .product_slider_section .product_sider .product_block .product_title {
    font-size: 20px;
  }
}
/*new added for tablet view */
@media only screen and (min-width: 768px) and (max-width: 1200px){
  .product_slider_section .product_sider .product_block {
    height: 380px !important;
    min-height: 380px !important;
  }
  .product_slider_section .product_sider .product_block img {
    width: 230px;
  }
}
.news_section {
  background-color: #ececec;
  padding: 30px 0px;
}
.news_section_div .news_title {
/*  text-transform: uppercase;*/
  font-size: 40px;
  letter-spacing: 1;
  font-family: "Gotham-Book-Regular";
  font-weight: 600;
  margin-bottom: 10px;
  color: #415236;
}
.news_section_div hr {
  border-top: 2px solid #415236;
}
.news_section .news_title_mobile {
  position: relative;
  color: #415236;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Gotham-Book-Regular";
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  display: none;
}
.news_section .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
.news_section .container .title_text {
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 1;
  font-family: "Gotham-Book-Regular";
  font-weight: 600;
}
.news_section .container .slick-slide {
  margin-left: 10px;
}
.news_section .container .slick-list {
  margin-left: -10px;
}
.news_section .container .slick-prev.slick-arrow {
  left: 10px !important;
  z-index: 1;
}
.news_section .container .slick-next.slick-arrow {
  right: 25px !important;
  z-index: 9;
}
.news_section .container .slick-prev:before,
.news_section .container .slick-next:before {
  color: #415236;
  font-size: 35px;
}
.news_section .container img {
  margin: 0 auto;
}
.news_section .container .news_text_section {
  padding: 60px;
}
.news_section .container .news_text_section .news_title {
  position: relative;
  color: #415236;
  font-size: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Gotham-Book-Regular";
  font-weight: 600;
}
.news_section .container .news_text_section .news_text {
  padding: 30px 0px 50px 0px;
  font-family: "Montserrat-Bold";
  font-weight: 600;
  letter-spacing: 1;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.news_section .container .news_text_section .news_text::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 40px;
  margin-top: 40px;
  right: 0;
  background-image: url(../images/dots-image.png);
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .news_section {
    padding: 30px 0px;
  }
  .news_section .container .news_text_section {
    padding: 0px 30px 0px 30px !important;
  }
  .news_section .container .news_text_section .news_title {
    font-size: 32px;
  }
  .news_section .container .news_text_section .news_text {
    text-align: center;
  }
  .news_section .container .news_text_section .news_text::after {
    width: 100px !important;
    height: 20px !important;
    margin-top: 40px !important;
    right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .news_section .news_title_mobile {
    display: block;
  }
  .news_section .news_title {
    display: none;
  }
  .news_section .news_text::after {
    width: 100px !important;
    height: 20px !important;
    margin-top: 40px !important;
    right: 0;
  }
  .news_section .container .news_text_section {
    padding-bottom: 0px;
    padding-top: 40px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .news_section .container .news_title::after {
    width: 75% !important;
  }
  .news_section .container .news_text::after {
    width: 141px;
    height: 20px;
  }
}
body.modal-open {
  overflow: hidden;
}

.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-width: 1px solid red;
  position: fixed;
  background-color: #c2d500;
  text-align: center;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 1;
}
.back-to-top i {
  line-height: 50px;
  color: #415236;
  font-size: 18px;
}

.sub_menu_box {
  padding: 10px !important;
  width: 220px !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  width: 220px;
  background-color: #e3e5e3;
  opacity: 1;
  transition: 0.5s;
  animation-name: fadeMenu;
  animation-duration: 0.5s;
  border-radius: 0;
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 2px;
}
.dropdown-menu .button {
  background-color: #415236;
  border: none;
  color: #ffffff;
  width: 100%;
  padding: 4px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.dropdown-menu .wishlist_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #415236;
  padding: 10px 0px;
}
.dropdown-menu .wishlist_box:last-child {
  border-bottom: none;
}
.dropdown-menu .wishlist_box:nth-last-child(2) {
  border-bottom: none;
}
.dropdown-menu .wishlist_box .wishlist_image_box {
  width: 150px;
  min-height: 60px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-menu .wishlist_box .wishlist_image_box .cart_image {
  width: 90px; /*45px*/
  height: 90px; /*45px*/
}
.dropdown-menu .wishlist_box .wishlist_title_box {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 10px;
}
.dropdown-menu .wishlist_box .wishlist_title_box .cart_title {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #415236;
  letter-spacing: 1px;
  font-weight: 600;
}
.dropdown-menu .sub_menu {
  display: flex;
  flex-direction: row;
  padding: 0px 0px;
}
.dropdown-menu .sub_menu .sub_menu {
  padding: 10px 0px;
}
.dropdown-menu .sub_menu .menu_icon_box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #415236;
  color: #415236;
  text-align: center;
}
.dropdown-menu .sub_menu i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  border: 1px solid #415236;
  color: #415236;
  text-align: center;
}
.dropdown-menu .sub_menu .menu_title {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #415236;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 28px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

@keyframes fadeMenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav_menu {
  flex-direction: column;
}

.cart_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.cart_menu .wishlist_qty {
  position: absolute;
  top: -6px;
  width: 16px;
  height: 17px;
  font-size: 8px;
  background-color: #354835;
  text-align: center;
  line-height: 18px;
  color: #fff;
  font-weight: 700;
  border-radius: 100%;
  left: 22px;
}
.cart_menu ul {
  margin-bottom: 0;
  margin-right: 20px;
}
.cart_menu ul:last-child {
  margin-right: 0px;
}
.cart_menu ul .dropdown .menu_text_box {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  text-align: center;
  font-family: "Gotham-Book-Regular";
}
.cart_menu ul .dropdown .menu_text_box:hover {
  cursor: pointer;
}
.cart_menu ul .dropdown .menu_text_box i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  background-color: #415236;
  margin-right: 5px;
  color: #ffffff;
}
.cart_menu ul .dropdown .menu_text_box p {
  margin-bottom: 0;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #415236;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 28px;
  height: 40px;
}
.cart_menu .dropdown .menu_text_box .fa-user-plus {
  padding-left: 2.4px;
}
.modal-section .modal-content {
  background-color: #e3e5e3;
  border-radius: 0;
}
.modal-section .modal-content .modal-logo-section {
  text-align: center;
  margin-bottom: 20px;
}
.modal-section .modal-content .modal-logo-section .modal-logo {
  margin: 0 auto;
  width: 100px;
  text-align: center;
}
.modal-section ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  justify-content: center;
  display: flex;
}
.modal-section ul.tabs li {
  background: #c2d500;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  width: 50%;
  text-align: center;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #415236;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Montserrat-Regular";
}
.modal-section ul.tabs li.current {
  background: #415236;
  color: #c2d500;
}
.modal-section .tab-content {
  display: none;
  padding: 20px 10px 0px 10px;
}
.modal-section .tab-content .form-control {
  padding: 10px 20px;
  border-radius: 0;
  border: 1px solid #415236;
  background-color: #e3e5e3;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
}
.modal-section .tab-content .form-control:focus {
  box-shadow: none;
}
.modal-section .tab-content .form-check {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal-section .tab-content .form-check a {
  font-size: 14px;
  font-family: "Gotham-Book-Regular";
  color: #415236;
  text-decoration: none;
}
.modal-section .tab-content .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.modal-section .tab-content .form-check .form-check-input {
  width: 20px;
  height: 20px;
  background-color: #e3e5e3;
  border-color: #415236;
}
.modal-section .tab-content .form-check .form-check-input:focus {
  box-shadow: none;
}
.modal-section .tab-content .form-check .form-check-input:checked {
  background-color: #e3e5e3;
  border-color: #415236;
}
.modal-section .tab-content .form-check .form-check-input:checked[type=checkbox] {
  background-image: url(../images/check-mark.svg);
}
.modal-section .tab-content .btn-primary {
  width: 100%;
  border-radius: 0;
  padding: 10px 10px;
  background-color: #1d1d1b;
  border-color: #1d1d1b;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.modal-section .tab-content p {
  text-align: center;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
  color: #415236;
  padding: 20px 20px;
}
.modal-section .tab-content.current {
  display: inherit;
}
.modal-section .modal-close {
  background-color: #c2d500;
  border-radius: 50%;
  color: #415236;
  position: absolute;
  right: -15px;
  top: -15px;
  font-size: 30px;
}
.modal-section .modal-close:hover {
  cursor: pointer;
}

.main {
  flex-grow: 1;
}

.form_section {
  padding: 100px 0px 200px 0px;
  background-image: url("../images/background-img.png");
  background-repeat: no-repeat;
  background-position: -70% 102%;
}
.form_section .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
.form_section .contact_text .contact_text_title {
  font-size: 45px;
  color: #c2d500;
  font-style: italic;
  margin-bottom: 20px;
  font-family: "Montserrat-Bold";
  font-weight: 700;
}
.form_section .contact_text p {
  font-style: italic;
  font-family: "Montserrat-Bold";
  font-size: 14px;
  line-height: 24px;
}
.form_section .form-label {
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
  margin-bottom: 1px;
  font-weight: 600;
  color: #415236;
}
.form_section .form-control {
  padding: 10px 14px;
  border-radius: 6px;
  background-color: #e3e5e3;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
}
.form_section .form-control:focus {
  box-shadow: none;
}
.form_section .btn-primary {
  padding: 10px 20px;
  background-color: #c2d500;
  border-color: #c2d500;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
  color: #415236;
  border-radius: 10px;
  font-weight: 700;
}
.form_section .btn-primary:active {
  background-color: #c2d500;
  border-color: #c2d500;
  color: #415236;
}

@media only screen and (max-width: 767px) {
  .form_section {
    padding: 50px 0px 50px 0px;
    background-image: url("../images//background-img-mob.png") !important;
    background-repeat: no-repeat;
    background-position: 10% -283% !important;
  }
  .form_section .contact_text {
    padding-bottom: 50px;
    text-align: center;
  }
  .form_section .contact_text .contact_text_title {
    font-size: 22px;
  }
  .form_section .contact_text p {
    font-style: italic;
    font-family: "Montserrat-Bold";
    font-size: 14px;
    line-height: 24px;
  }
  .form_section .btn-primary {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 992px) {
  .form_section {
    background-position: 54% 102%;
  }
}
.about_us_section {
  padding: 100px 0px;
  background-color: #415236;
}
.about_us_section .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}
.about_us_section .container .about_title {
  font-size: 45px;
  color: #c2d500;
  margin-bottom: 30px;
  font-family: "Montserrat-Bold";
  font-weight: 700;
}
.about_us_section .container p {
  font-family: "Montserrat-Regular";
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 30px;
}
.about_us_section .container p i {
  font-family: "Montserrat-Bold";
  font-weight: 500;
  color: #c2d500;
}

@media only screen and (max-width: 767px) {
  .about_us_section {
    padding: 50px 0px;
    background-color: #415236;
  }
  .about_us_section .container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .about_us_section .container .about_title {
    font-size: 40px;
    margin: 20px 0px;
  }
  .about_us_section .container p {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .about_us_section {
    padding: 50px 0px;
    background-color: #415236;
  }
  .about_us_section .col-md-5 {
    padding: 0px 20px !important;
  }
}
.mission_section {
  padding: 100px 0px;
  position: relative;
}
.mission_section::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 310px;
  top: 10%;
  left: 0;
  background-color: #0E2C24;
  background: url("../images/mission-background-1.png") no-repeat;
}
.mission_section::after {
  content: "";
  position: absolute;
  width: 236px;
  height: 255px;
  bottom: 0;
  right: 0;
  background-color: #0E2C24;
  background: url("../images/mission-background-2.png") no-repeat;
}
.mission_section .icon_text_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}
.mission_section .icon_text_box .icon_box,
.mission_section .icon_text_box .title_box {
  display: inline;
  float: left;
  justify-content: center;
}
.mission_section .icon_text_box .icon_box {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.mission_section .icon_text_box .icon_box img {
  width: 60px;
  height: 60px;
}
.mission_section .icon_text_box .title_box h3 {
  font-size: 45px;
  color: #415236;
  font-family: "Montserrat-Bold";
  font-weight: 700;
}
.mission_section p {
  font-family: "Montserrat-Regular";
  font-size: 20px;
  line-height: 34px;
  color: #415236;
  font-weight: 400;
  margin-bottom: 30px;
}
.mission_section .hr_line {
  border-bottom: 1px solid #415236;
  opacity: 2;
  margin: 5px 0px 30px 0px;
}

@media only screen and (min-width: 992px) {
  .mission_section .container {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .mission_section {
    padding: 50px 0px;
  }
  .mission_section .container {
    max-width: 80%;
  }
  .mission_section::before {
    content: inherit;
  }
  .mission_section::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 179px;
    bottom: 0;
    right: 0;
    background-color: #0E2C24;
    background: url("../images/mission-background-2.png") no-repeat;
  }
  .mission_section .icon_text_box {
    margin-bottom: 20px;
  }
  .mission_section .icon_text_box .icon_box {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
  .mission_section .icon_text_box .icon_box img {
    width: 50px;
    height: 50px;
  }
  .mission_section .icon_text_box .title_box h3 {
    font-size: 24px;
    color: #415236;
    font-family: "Montserrat-Bold";
    font-weight: 700;
  }
  .mission_section p {
    font-size: 14px;
    line-height: 24px;
  }
}
.founder_section .fouder_section_1 {
  position: relative;
  padding: 50px 0px 0px 0px;
}
.founder_section .fouder_section_1 .border-right {
  border-right: 2px solid #a3c039 !important;
}
.founder_section .fouder_section_1 .border-top {
  border-top: 2px solid #a3c039 !important;
}
.founder_section .fouder_section_1 .fonder_title {
  font-size: 50px;
  color: #415236;
  font-family: "Montserrat-ExtraBold";
  font-weight: 800;
  margin-bottom: 20px;
}
.founder_section .fouder_section_1 .founder_sub_title {
  font-size: 30px;
  color: #a3c039;
  font-family: "Montserrat-ExtraBold";
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 40px;
  position: relative;
  font-style: italic;
}
.founder_section .fouder_section_1 .founder_sub_title::before {
  content: "“";
  font-size: 40px;
  font-family: 'Montserrat-Bold';
  text-shadow: -2px -2px 0 #a3c039, 2px -2px 0 #a3c039, -2px 2px 0 #a3c039, 2px 2px 0 #a3c039;
  color: #fff;
  margin-right: 10px;
}
.founder_section .fouder_section_1 .founder_sub_title::after {
  content: "”";
  font-size: 40px;
  font-family: 'Montserrat-Bold';
  text-shadow: -2px -2px 0 #a3c039, 2px -2px 0 #a3c039, -2px 2px 0 #a3c039, 2px 2px 0 #a3c039;
  color: #fff;
  margin-left: 10px;
}
.founder_section .fouder_section_1 p {
  font-family: "Montserrat-Regular";
  font-size: 15px;
  line-height: 25px;
  color: #415236;
  font-weight: 600;
}
.founder_section .fouder_section_1 .line-box {
  position: relative;
}
.founder_section .fouder_section_1 .line-box::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 0px;
  border-radius: 15px;
  background: #ffffff;
  border: 2px solid #a3c039;
  transition: transform 400ms ease-in-out;
  transform: translateY(-15px);
}
.founder_section .fouder_section_1 .line-box::before {
  position: absolute;
  content: "";
  width: 96.2%;
  height: 2px;
  top: 50%;
  left: 0px;
  background: #a3c039;
  border-radius: 2px;
  transition: transform 400ms ease-in-out;
}
.founder_section .fouder_section_2 {
  position: relative;
  padding: 0px 0px 50px 0px;
}
.founder_section .fouder_section_2 .border-right {
  border-right: 2px solid #a3c039;
}
.founder_section .fouder_section_2 .fonder_title {
  font-size: 50px;
  color: #415236;
  font-family: "Montserrat-ExtraBold";
  font-weight: 800;
  margin-bottom: 20px;
  text-align: left;
  font-style: italic;
}
.founder_section .fouder_section_2 .founder_sub_title {
  font-size: 30px;
  color: #a3c039;
  font-family: "Montserrat-ExtraBold";
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 40px;
  position: relative;
  text-align: left;
}
.founder_section .fouder_section_2 .founder_sub_title::before {
  content: "“";
  font-size: 40px;
  font-family: 'Montserrat-Bold';
  text-shadow: -2px -2px 0 #a3c039, 2px -2px 0 #a3c039, -2px 2px 0 #a3c039, 2px 2px 0 #a3c039;
  color: #fff;
  margin-right: 10px;
}
.founder_section .fouder_section_2 .founder_sub_title::after {
  content: "”";
  font-size: 40px;
  font-family: 'Montserrat-Bold';
  text-shadow: -2px -2px 0 #a3c039, 2px -2px 0 #a3c039, -2px 2px 0 #a3c039, 2px 2px 0 #a3c039;
  color: #fff;
  margin-left: 10px;
}
.founder_section .fouder_section_2 p {
  font-family: "Montserrat-Regular";
  font-size: 15px;
  line-height: 25px;
  color: #415236;
  font-weight: 600;
  text-align: left;
}
.founder_section .fouder_section_2 .line-box {
  position: relative;
}
.founder_section .fouder_section_2 .line-box::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0px;
  border-radius: 15px;
  background: #ffffff;
  border: 2px solid #a3c039;
  transition: transform 400ms ease-in-out;
  transform: translateY(-15px);
}
.founder_section .fouder_section_2 .line-box::before {
  position: absolute;
  content: "";
  width: 97.2%;
  height: 2px;
  top: 50%;
  left: 30px;
  background: #a3c039;
  border-radius: 2px;
  transition: transform 400ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .founder_section .container {
    max-width: 80%;
  }
  .founder_section .fouder_section_1 {
    position: relative;
  }
  .founder_section .fouder_section_1 .fonder_title {
    text-align: center;
    margin-top: 20px;
  }
  .founder_section .fouder_section_1 p.founder_sub_title {
    text-align: center;
    margin-bottom: 20px !important;
  }
  .founder_section .fouder_section_1 p.founder_testimonial {
    font-size: 14px !important;
    line-height: 24px;
    text-align: center;
    padding-bottom: 50px;
  }
  .founder_section .fouder_section_1 .border-right {
    border-right: none !important;
  }
  .founder_section .fouder_section_1 .border-top {
    border-top: none !important;
  }
  .founder_section .fouder_section_2 {
    position: relative;
    position: relative;
  }
  .founder_section .fouder_section_2 .fonder_title {
    text-align: center;
    margin-top: 20px;
  }
  .founder_section .fouder_section_2 p.founder_sub_title {
    text-align: center;
    margin-bottom: 20px !important;
  }
  .founder_section .fouder_section_2 .border-right {
    border-right: none;
  }
  .founder_section .fouder_section_2 p.founder_testimonial {
    font-size: 14px !important;
    line-height: 24px;
    text-align: center;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .founder_section .fouder_section_1 {
    position: relative;
  }
  .founder_section .fouder_section_2 {
    position: relative;
  }
}
.dropdown-menu.dropdown-menu-main {
  display: none;
  position: absolute;
  left: 0;
  width: 180px;
  background-color: #e3e5e3;
  opacity: 1;
  transition: 0.5s;
  animation-name: fadeMenu;
  animation-duration: 0.5s;
  border-radius: 0;
  padding: 0px 10px;
  margin-top: 1px;
}
.dropdown-menu.dropdown-menu-main .menu_box {
  padding: 10px;
}
.dropdown-menu.dropdown-menu-main .menu_box a.menu_title {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #415236;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Gotham-Book-Regular";
  padding: 10px 0px;
}
.dropdown-menu.dropdown-menu-main .menu_box a.menu_title:hover {
  color: #c2d500;
  transition: all 0.3s;
  cursor: pointer;
}
.dropdown-menu.dropdown-menu-main .menu_box a::after {
  content: inherit;
}
.dropdown-menu.dropdown-menu-main .menu_box a:hover::after,
.dropdown-menu.dropdown-menu-main .menu_box a.active-nav::after,.remove_cartprod :hover {
  color: #415236;
}

@media only screen and (max-width: 992px) {
  .dropdown-menu.dropdown-menu-main {
    display: none;
    position: absolute;
    left: 0;
    width: 80%;
    background-color: #e3e5e3;
    opacity: 1;
    transition: 0.5s;
    animation-name: fadeMenu;
    animation-duration: 0.5s;
    border-radius: 0;
    padding: 0px 5px;
    margin-top: 1px;
  }
  .dropdown-menu.dropdown-menu-main .menu_box {
    padding: 10px;
  }
  .dropdown-menu.dropdown-menu-main .menu_box a.menu_title {
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    color: #415236;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: "Gotham-Book-Regular";
    padding: 10px 0px;
  }
  .dropdown-menu.dropdown-menu-main .menu_box a.menu_title:hover {
    color: #c2d500;
    transition: all 0.3s;
    cursor: pointer;
  }
  .dropdown-menu.dropdown-menu-main .menu_box a::after {
    content: inherit;
  }
  .dropdown-menu.dropdown-menu-main .menu_box a:hover::after,
  .dropdown-menu.dropdown-menu-main .menu_box a.active-nav::after {
    color: #415236;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .header_section .header_menu_block .nav_menu_section .nav_menu:last-child {
    padding-right: 0px !important;
    border-right: none;
  }
  .mission_section .container,
  .founder_section .container {
    max-width: 80%;
  }
}
.product_section {
  background-color: #ececec;
}
.product_section .container img {
  margin: 0 auto;
}
.product_section .container .product_title {
  position: relative;
  color: #415236;
  font-size: 80px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat-Regular";
  font-weight: 600;
  text-align: center;
}
.product_section .container .banner_product_section {
  position: relative;
}
.product_section .container .banner_product_section .banner_product_tag {
  margin: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #c2d500;
  text-transform: uppercase;
  padding: 10px 20px;
  letter-spacing: 5px;
  font-size: 32px;
  color: #415236;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  font-style: italic;
  font-family: "Montserrat-BoldItalic";
}
.product_section .container .banner_product_sider.slick-slider {
  margin-bottom: 0px;
}
.product_section .container .banner_product_sider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  bottom: 10px;
  list-style-type: none;
}
.product_section .container .banner_product_sider .slick-dots li {
  margin: 0 0.25rem;
}
.product_section .container .banner_product_sider .slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #ffffff;
  text-indent: -9999px;
}
.product_section .container .banner_product_sider .slick-dots li.slick-active button {
  background-color: #c2d500;
}

@media only screen and (max-width: 767px) {
  .product_section {
    padding: 0px 0px;
  }
  .product_section .container img {
    margin: 0 auto;
  }
  .product_section .container .product_title {
    font-size: 52px;
    padding-top: 20%;
  }
  .product_section .container .banner_product_sider .banner_product_tag {
    font-size: 27px;
  }
  .product_section .container .banner_product_sider .slick-dots {
    bottom: 1px;
    padding-bottom: 0px;
  }
  .product_section .container .banner_product_sider .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .product_section {
    padding: 0px 0px;
  }
  .product_section .container img {
    margin: 0 auto;
  }
  .product_section .container .product_title {
    font-size: 38px;
    padding-top: 20%;
  }
  .product_section .container .banner_product_sider .banner_product_tag {
    font-size: 27px;
  }
  .product_section .container .banner_product_sider .slick-dots {
    bottom: 1px;
    padding-bottom: 0px;
  }
  .product_section .container .banner_product_sider .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .product_section {
    padding: 0px 0px;
  }
  .product_section .container img {
    margin: 0 auto;
  }
  .product_section .container .product_title {
    font-size: 52px;
    padding-top: 20%;
  }
  .product_section .container .banner_product_sider .banner_product_tag {
    font-size: 27px;
  }
  .product_section .container .banner_product_sider .slick-dots {
    bottom: 1px;
    padding-bottom: 0px;
  }
  .product_section .container .banner_product_sider .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-inner-page .cart-sidebar{
    margin-top: 16px;
  }
}
.pagination {
  padding: 30px 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.pagination .btn {
  border: 1px solid #c2d500;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: none;
  cursor: pointer;
}
.pagination i {
  font-size: 20px;
  line-height: 30px;
  color: #415236;
}
.pagination .btn:hover {
  background-color: #415236;
}
.pagination .btn:hover i,
.pagination .page-link:hover a {
  color: #fff;
}
.pagination .page-link:link,
.pagination .page-link:visited {
  text-decoration: none;
  color: #343a40;
  font-size: 16px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat-Regular";
}
.pagination .page-link:hover,
.pagination .page-link:active,
.pagination .page-link.page-link-active {
  background-color: #415236;
  color: #fff;
}
.pagination .page-link,.pagination .page-link a {
  color: #343a40;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat-Regular";
}
.pagination .dots {
  color: #868e96;
}

.ptoduct_list_section {
  padding: 50px 0px 50px 0px;
}
.ptoduct_list_section .card_row {
  display: grid;
  gap: 30px;
}
.ptoduct_list_section .product_card {
  background: #ececec;
  border: 1px solid #ccc;
  transition: all 0.2s linear;
  min-height: 350px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.ptoduct_list_section .card-header {
  text-align: center;
  height: 70px;
  position: absolute;
  display: block;
  text-align: center;
  bottom: 0;
  width: 100%;
  background-color: #c2d500;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  display: flex;
}
.ptoduct_list_section .card-header h1 {
  font-size: 22px;
  font-family: "Montserrat-Bold";
  line-height: 28px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  color: #415236;
}
.ptoduct_list_section .product_card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1024px) {
  .header_section .header_menu_block .nav_menu_section .nav_menu a.menu-list {
    font-size: 14px !important;
  }
  .header_section .header_menu_block .nav_menu_section .nav_menu:last-child {
    padding-right: 0px !important;
  }
  .header_menu_block .nav_menu_section .nav_menu {
    padding: 10px 20px !important;
  }
  .ptoduct_list_section {
    padding: 50px 0px 50px 0px;
  }
  .ptoduct_list_section .product_card {
    min-height: 300px;
  }
  .ptoduct_list_section .card-header h1 {
    font-size: 18px;
  }
  .product_section .container .product_title {
    font-size: 52px !important;
  }
  .card_row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (min-width: 575px) and (max-width: 992px) {
  .card_row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media only screen and (max-width: 992px) {
  .card_row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media only screen and (max-width: 575px) {
  .heading {
    padding: 20px;
    font-size: 30px;
  }
  .card_row {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media only screen and (max-width: 767px) {
  .ptoduct_list_section {
    padding: 30px 0px 30px 0px;
  }
  .ptoduct_list_section .product_card {
    min-height: 250px;
  }
  .ptoduct_list_section .card-header {
    height: 50px;
  }
  .ptoduct_list_section .card-header h1 {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 1024px) {
  .card_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product_details_section .container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 0;
}
.product_details_section .product_name {
  text-transform: uppercase;
  font-family: "Montserrat-Bold";
  color: #415236;
}
.product_details_section .slider .product_img {
  background: #ececec;
}
.product_details_section .slider .product_img img {
  margin: 0 auto;
}
.product_details_section .js .slider-single > div:nth-child(1n+2) {
  display: none;
}
.product_details_section .js .slider-single.slick-initialized > div:nth-child(1n+2) {
  display: block;
}
.product_details_section .slider-nav img {
  position: relative;
  text-align: center;
  margin: 0 auto;
  height: 100%;
}
.product_details_section .slider-nav {
  margin-top: 4px;
}
.product_details_section .slider-nav .thumbnail_img {
  background: #ececec;
}
.product_details_section .slider-nav .slick-slide {
  margin: 0 2.5px;
  cursor: pointer;
  width: 160px !important;
  height: 120px;
}
.product_details_section .slider-nav .slick-list {
  margin: 0 -2.5px;
}
.product_details_section .product_details {
  padding: 50px;
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.product_details_section .product_details .item_code {
  display: block;
  padding: 10px 10px;
  background-color: #c2d500;
  font-family: "Montserrat-Bold";
  margin: 10px 0px;
  font-weight: 800;
}
.product_details_section .product_details .product_details_text {
  font-family: "Montserrat-Regular";
  padding: 10px 0px;
  font-size: 20px;
  line-height: 30px;
}
.product_details_section .product_details .hr_line {
  border-bottom: 1px solid #415236;
  opacity: 2;
  margin: 5px 0px 0px 0px;
}
.product_details_section .product_details .product_color_pro,.product_size_pro,.product_qty_pro,.product_add,.product_chk_mtm {
  font-family: "Montserrat-Regular";
  padding: 10px 0px;
  font-size: 20px;
  line-height: 30px;
}
.product_details_section .product_details .product_color_pro .color_text,.product_details_section .product_details .product_size_pro .size_text,.product_details_section .product_details .qty_text,.product_chk_mtm {
  color: #c2d500;
  font-weight: 600;
}
.product_details_section .product_details .btn.btn-primary {
  padding: 10px 20px;
  background-color: #c2d500;
  border-color: #c2d500;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
  color: #415236;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 10px;
}
.product_details_section .product_details .btn.btn-primary:active {
  background-color: #c2d500;
  border-color: #c2d500;
  color: #415236;
}
.product_details_section .desktop_title {
  display: block;
}
.product_details_section .mobile_title {
  display: none;
}

@media only screen and (max-width: 575px) {
  .product_details_section .slider .product_img img {
    margin: 0 auto;
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .product_details_section .desktop_title {
    display: none !important;
  }
  .product_details_section .mobile_title {
    display: block !important;
    padding: 20px 0px 10px 0px;
    background: #ececec;
  }
  .product_details_section .slick-list {
    height: auto !important;
  }
  .product_details_section .slider .product_img img {
    margin: 0 auto;
    max-width: 300px;
  }
  .product_details_section .product_details {
    padding: 0px !important;
    background: #ececec;
  }
  .product_details_section .product_details .item_code {
    text-align: center;
    margin-top: 0;
  }
  .product_details_section .product_details .product_details_text {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 24px;
  }
  .product_details_section .product_details .hr_line {
    margin-left: 20px;
    margin-right: 20px;
  }
  .product_details_section .product_details .product_color_pro,.product_size_pro,.product_qty_pro {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  .product_details_section .product_details .btn-primary {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .product_details_section .slider .product_img img {
    margin: 0 auto;
    max-width: 400px;
  }
  .product_details_section .product_details {
    padding: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .product_details_section .slider .product_img img {
    margin: 0 auto;
    max-width: 400px;
  }
}
@media only screen and (max-width: 1024px) {
  .product_details_section .product_details {
    padding: 30px;
  }
}
.other_product_btn {
  padding: 50px 0px 0px 0px;
}
.other_product_btn .btn.btn-primary {
  padding: 10px 20px;
  background-color: #c2d500;
  border-color: #c2d500;
  font-family: "Montserrat-Bold";
  font-size: 14px;
  color: #415236;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin: 0 auto;
}
.other_product_btn .btn.btn-primary:active {
  background-color: #c2d500;
  border-color: #c2d500;
  color: #415236;
}

.all_rights_text {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat-Regular";
  text-align: center;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .all_rights_text {
    font-size: 12px;
    padding: 0px 20px 20px 20px;
  }
  .other_product_btn {
    padding: 30px 0px 0px 0px;
  }
}
.header_section .header_menu_block .nav_menu_section .active-nav.current-active {
    color: #c2d500 !important;
}
.world_wide_section {
  overflow-x: hidden;
  padding: 140px 0px;
  position: relative;
  background-color: #ebebeb;
}
.world_wide_section p {
  font-family: "Montserrat-Regular";
  font-size: 20px;
  line-height: 34px;
  color: #415236;
  font-weight: 400;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
  .world_wide_section .container {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .world_wide_section {
    padding: 80px 0px;
  }
  .mission_section {
    padding: 50px 0px;
  }
  .mission_section .container {
    max-width: 80%;
  }
  .mission_section p {
    font-size: 14px;
    line-height: 24px;
  }
}
#parallelogram {
  position: absolute;
  background: #c2d500;
  width: 100%;
  height: 20px;
  display: inline-block;
  -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 1% 100%);
          clip-path: polygon(0% 0, 100% 0, 100% 100%, 1% 100%);
  margin-top: 5px;
}

.parallelogram_section {
  position: relative;
  height: 140px;
  background-color: #415236;
  width: 100%;
}
.parallelogram_section #parallelogram1 {
  position: absolute;
  background: #c2d500;
  width: 240px;
  height: 30px;
  display: inline-block;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  top: 50%;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */

.header_section .header_menu_block .nav_menu_section .active-nav.current-active {
    color: #c2d500 !important;
}

ul.dropdown-menu.dropdown-menu-main{
  text-align: center;
}
ul.wishlist_menu {
  width: auto;/*350px*/
  max-height: 250px;
  overflow-y: auto;
}
ul.wishlist_menu .no_data {
  color: #415236 !important;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Montserrat-Regular';
}
.submit_btn {
  background: #415236 !important;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  text-align: center;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #c2d500 !important;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Montserrat-Regular";
/*  margin-left: 24%;*/
  border: none;
}
.submit_btn:hover {
  background: #c2d500 !important;
  color: #415236 !important;
}
.input-group .input-group-text {
  border: 1px solid #415236;
  border-radius: 0;
  background-color: #e3e5e3;
  line-height: 28px;
  width: 48px;
}
.form-group.has-error .form-control, .form-group.has-error .form-icon, .form-group.has-error label{
  color: #dd4b39 !important;
  border-color: #dd4b39;
  box-shadow: none;
/*  border-radius: 0.375rem !important;*/
}
.form-group {
  margin-bottom: 20px;
}
h1.form-message.success,h2.form-message.success, .form-message h5.success, .form-message span.success{
  color: #438d3b;
  font-weight: bold;
}
.form-message h5.warning, .form-message span.warning{
  color:#dd4b39;
  font-weight: bold;
}
.message-lable span {
  padding-left: 16px;
  color: #b91616;
}
span, strong {
  display: inline-block;
}
/*style for sidebar off myaccount page*/
.ci-caption {
  padding: 15px 10px 1px 10px;
}
.ci-caption > p {
  color: #7a7a7a;
  padding-bottom: 15px;
}
.ci-caption button, .ci-btn button {
  border-radius: 0;
  display: block;
  width: 100%;
  padding: 10px 35px;
  cursor: pointer;
}
.ci-caption form .square-input {
  margin-bottom: 10px;
}
.ci-caption ul li {
  text-align: left;
  color: #7a7a7a;
}
.ci-caption ul li span {
  float: right;
}
.ci-caption ul li {
  border-bottom: 1px dashed #415236;
  padding: 10px 5px;
  margin-bottom: 10px;
}
/*.ci-caption ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}*/
.ci-caption li:hover, .ci-caption li.active{
  /* , .dropdown li.sub_menu:hover, .dropdown li.sub_menu.active */
  background-color: #c2d500;
  border-left: 4px solid #415236;
}
.cart-inner-box.box-2 .ci-caption {
  border-bottom: 1px solid #cacaca;
  padding-bottom: 25px;
}
.cart-inner-box {
  border: 1px solid #415236;
  height: fit-content;
}
.side-box {
  margin-bottom: 40px;
}
.side-box:last-child {
  margin-bottom: 0 !important;
}
.ci-caption ul li a {
  display: flex;
  color: #415236;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 28px;
}
.ci-caption ul li a .sidebar_icons {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #415236;
  color: #415236;
  text-align: center;
}
/*17. Breadcrumbs Banner Css*/
.breadcrumbs-section {
  /*padding: 140px 0;*/
  position: relative;
}
.breadcrumbs-section:before {
  /*background-color: rgba(0,0,0,0.5);*/
  content: "";
  position: absolute;
  left:0;
  top:0;
  right:0;
  bottom:0;
}
.page_title h1 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  display: inline-block;
  color: #000;
  text-transform: capitalize;
}
.breadcrumb li a {
  text-transform: capitalize;
  font-family: "Gotham-Book-Regular";
  font-weight: 400;
  color: #415236;
  letter-spacing: 1px;
}
.breadcrumb li a:hover {
  color: #354835;/*#eb3e32;*/
}
.breadcrumb li:first-child::before {
  content: normal;
}
.breadcrumb li::before {
  color: #000;
  content: "/";
  margin: 5px;
}
/**************************************/
/* Contact Page CSS */
.contact-locations li {
  display: table;
  margin-top: 10px;
}
.contact-locations li span {
  width: 30px;
  height: 30px;
  background-color: #415236;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  margin-right: 15px;
  color: #fff;
  font-size: 15px;
}
.contact-locations li a, .contact-locations li p {
  display: table-cell;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
/*********************************/
.checkout-inner-page legend a {
  float: right;
  background: #415236;
  color: #c2d500;
  font-family: "Gotham-Book-Regular";
}
.checkout-inner-page legend a:hover {
  background: #c2d500;
  color: #415236;
}
.checkout-inner-page table,.checkout-inner-page a {
  color: #938383;
  border-color: #415236;
  font-family: "Gotham-Book-Regular";
}
.checkout-inner-page table a:hover {
  color: #415236;
  border-color: #415236;
}
/* Product details colors */
.lbl_btn [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.lbl_btn i.spn-color,.lbl_btn i.spn-size {
  border: 4px solid #b1b1b1;
  border-radius: 8px;
  display: block;
/*  width: 45px;*/
  min-width: 45px;
  height: 45px;
  text-align: center;
  line-height: 16px;
}
.lbl_btn [type=radio]:checked + span i.spn-color,.lbl_btn [type=radio]:checked + span i.spn-size,.lbl_btn i.spn-color:hover,.lbl_btn i.spn-size:hover{
  border: 4px solid #000;
}
.quantity-number {
  height: 38px;
  width: 52px;
  color: #7a7a7a;
  border: 1px solid #cdcdcd;
  padding: 0;
  text-align: center;
  float: left;
}
.minus{
  border: 0;
  cursor: pointer;
  width: 50px;
  height: 38px;
  background-color: #c2d500;
  color: #415236;
  font-size: 50px;
  line-height: 35px;
  padding: 0px 0px 5px 0px;
  float: left;
  border-top-left-radius: 8px;
  border-end-start-radius: 8px;
}
.plus{
  border: 0;
  cursor: pointer;
  width: 50px;
  height: 38px;
  background-color: #c2d500;
  color: #415236;
  font-size: 37px;
  line-height: 35px;
  padding: 2px 0px 0px 0px;
  float: left;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
.minus:hover,.plus:hover{
  background-color: #415236;
  color: #c2d500;
}
.product-name {
  font-weight: 500;
  padding-top: 18px !important;
  padding-left: 14px !important;
}
.remove_cartprod i {
  padding-top: 26px;
  padding-left: 12px !important;
  color: #c2d500;
}
.product_details img {
    width: 100%;
    height: auto;
}

button.close {
  background: transparent;
  border: 0px;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: .2;
}
.span_icon_sibling{
  border-right: 0px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}
.span_icon{
  border-left: 0px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}
.drop-down-arrow{
  padding-left: 20px !important;
  padding-top: 2px !important;
}