* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

h1,
h3,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0px;
  padding: 0px;
}

body {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-family: "Open Sans";
  color: black;
  margin-top: 120px;
}
/* common css start */
ul {
  list-style: none;
}
.main_heading {
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 20px;
}
.sub_heading {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 5px;
}
.common_button {
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  font-family: "Open Sans";
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.common_button::before {
  height: 155px;
  top: -50px;
  width: 50px;
  left: -50%;
}
.common_button:hover::before {
  left: 120%;
}
.common_button:hover::after {
  left: 200%;
  opacity: 0.6;
}
.common_button::after,
.common_button::before {
  background: linear-gradient(90deg, #000000 0%, #1f7f22 100%), #ffffff;
  content: "";
  opacity: 0;
  position: absolute;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(35deg);
}
.common_button::after {
  height: 20rem;
  top: -100px;
  width: 8rem;
  left: -100%;
}
.green_background {
  background-color: #1f7f22;
  color: white;
}
.black_background {
  background-color: #000000;
  color: white;
}
.mt-30 {
  margin-top: 30px;
}
.pr-50 {
  padding-right: 50px;
}
.row-gap {
  row-gap: 40px;
}
/* common css end */

/* header css start */
.facebook_login a {
  font-size: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: black;
  font-weight: 700;
}

header {
  padding: 15px 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: white;
  z-index: 99;
}
.nav-sticky {
  animation: 0.6s forwards smoothscroll;
}
@keyframes smoothscroll {
  0% {
    transform: translateY(-200%);
  }

  100% {
    transform: translateY(0);
  }
}
body header.nav-sticky {
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.facebook_login {
  width: fit-content;
}
.main_header_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}

.middle_div a {
  display: block;
}
.middle_div a img {
  max-height: 80px;
}
.middle_div {
  max-width: 300px;
}
.header-mail {
  color: black;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  margin-right: 10px;
}
/* header css end */

/* banner section start */
.banner_section {
  background-color: #f8f8f8;
  padding: 50px 0px;
}
.banner_text_div .description p {
  font-size: 30px;
  font-weight: 500;
}
.h-100 {
  min-height: calc(100vh - 335px);
}

/* product_listing page start */
.slider_main_div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_main_div img {
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
  width: 100%;
}
.product_info_div {
  padding: 50px 0px;
}
.product_info_inner_div {
  max-width: 1430px;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 0px 50px;
}
.description-text{
  margin-top: 15px;
  max-width: 500px;
}
.product_info {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.product_info ul li {
  margin-bottom: 10px;
}

.product_info ul li {
  font-size: 18px;
}
.product_info ul li span {
  font-weight: 600;
  padding-right: 5px;
  display: inline-block;
}
.slider_thumb_image {
  margin-right: 10px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_thumb_image img {
  border-radius: 5px;
  max-height: 65px;
  height: 65px;
  object-fit: cover;
  width: 100%;
}
.product_page .facebook_login {
  display: none;
}
.slider-content .slick-arrow {
  position: absolute;
  bottom: 0px;
  right: 10px;
}
.slider-content .slick-arrow:before {
  content: "";
  position: absolute;
  bottom: 20px;
  height: 50px;
  width: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 99;
  cursor: pointer;
}
.slider-thumb {
  margin-top: 15px;
}
.slider-content .slick-next:before {
  background-image: url("../image/next_arrow.svg");
  right: 10px;
}
.slider-content .slick-next.slick-disabled:before {
  background-image: url("/wp-content/uploads/2024/01/new_next.svg");
}
.slider-content .slick-prev.slick-disabled:before {
  background-image: url("/wp-content/uploads/2024/01/new_previous.svg");
}
.slider-content .slick-arrow.slick-disabled:before {
  cursor: not-allowed;
}
.slider-content .slick-prev:before {
  background-image: url("../image/privious_arrow.svg");
  right: 70px;
}
.not_available_text_div .description {
  max-width: 480px;
  margin: auto;
}
.not_available_text_div .description p {
  line-height: 33px;
  font-size: 20px;
}
.product_slider_row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.product_slider_row:last-of-type {
  border-bottom: none;
}
/* footer css start */
footer {
  padding: 25px 0px;
}
.footer-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_share_div {
  display: flex;
  justify-content: end;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer_share_div p {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: black;
}
.footer_share_div ul {
  display: flex;
  column-gap: 15px;
}
.footer_share_div ul li img {
  max-width: 60px;
  max-height: 60px;
}
.product_info_text_div .description {
  display: flex;
  column-gap: 20px;
  font-size: 20px;
}
.product_info_text_div .description p {
  position: relative;
}
.product_info_text_div .description p:before {
  content: "";
  position: absolute;
  right: -10px;
  height: 100%;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.2);
}
/* footer css end */

.footer_share_div a .heateor_sss_svg {
  height: 60px !important;
  width: 60px !important;
  margin-right: 8px;
}
.product_info ul.second-ul li:nth-last-child(3) {
  margin-top: 30px;
}
@media screen and (min-width: 576px) {
  .footer_share_div a[aria-label="SMS"] {
    display: none !important;
  }
}
@media screen and (max-width: 1400px) and (min-width: 767px) {
  .header-mail span {
    display: none;
  }
  .header-mail img {
    width: 55px;
  }
  .last_div {
    max-width: 300px;
    text-align: end;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1200px) {
  .main_heading {
    font-size: 50px;
  }

  .header-mail {
    /* margin-bottom: 5px;
    display: block; */
  }
  /* .header-mail span{
    display: none;
  } */
  /* .header-mail img{
    width: 55px;
  } */
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .main_heading {
    font-size: 45px;
  }
  .sub_heading {
    font-size: 35px;
  }
  .header_info_text {
    font-size: 15px;
    padding: 15px;
  }
  .facebook_login a {
    font-size: 20px;
  }
  .facebook_login a img {
    max-width: 40px;
  }
  /* .last_div{
    max-width: 250px;
    text-align: end;
  }
  .header-mail{
    margin-bottom: 5px;
    display: block;
  } */
}
@media screen and (max-width: 992px) and (min-width: 576px) {
  .main_header_div .left_div {
    display: none;
  }
}
@media screen and (max-width: 992px) and (min-width: 576px) {
  .main_heading {
    font-size: 45px;
  }
  .sub_heading {
    font-size: 30px;
  }
  .header_info_text {
    font-size: 14px;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (min-width: 576px) {
  .product_info_inner_div {
    max-width: 570px;
    padding: 0px;
  }
  .footer_share_div ul li img {
    max-width: 50px;
  }
  .footer_share_div a .heateor_sss_svg {
    width: 50px !important;
    height: 50px !important;
  }
  .product_info ul li span {
    display: block;
  }
  .product_info ul {
    margin-top: 20px;
  }
  .common_button {
    padding: 15px 12px;
    font-size: 16px;
  }
  .middle_div img {
    max-width: 275px;
  }
  body {
    margin-top: 114px;
  }
  .header-mail span {
    display: none;
  }
  .header-mail img {
    width: 45px;
  }
  .last_div {
    max-width: 300px;
    text-align: end;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .pr-50 {
    padding-right: 0px;
  }
  .banner_div .common_left_div {
    max-width: 600px;
    margin: auto;
  }
  .footer_share_div {
    justify-content: center;
  }
  .banner_div {
    padding: 30px 0px;
  }
  .footer-div {
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .product_info_inner_div {
    padding: 0px;
  }
  .left_div {
    display: none;
  }
  .footer_share_div p {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .main_heading {
    font-size: 30px;
    padding-bottom: 15px;
  }
  .facebook_login a {
    font-size: 20px;
  }
  .facebook_login a img {
    max-width: 40px;
  }
  .banner_section .description p {
    font-size: 20px;
  }
  .common_button {
    font-size: 20px;
    padding: 10px;
  }

  .footer_share_div a .heateor_sss_svg {
    width: 40px !important;
    height: 40px !important;
  }
  .footer_share_div ul {
    column-gap: 10px;
  }
  .sub_heading {
    font-size: 25px;
  }
  .product_info ul li:last-child {
    margin-bottom: 0px;
  }
  .main_header_div .common_button {
    font-size: 11px;
  }
  header {
    padding: 20px 0px;
  }
  .middle_div {
    max-width: 230px;
  }
  body {
    margin-top: 85.78px;
  }
  .h-100 {
    min-height: calc(100vh - 370px);
  }
  .product_info {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .product_info ul.second-ul {
    margin-top: 30px;
  }
  .header-mail {
    font-size: 12px;
    margin-right: 6px;
  }
  .header-mail span {
    display: none;
  }
  .header-mail img {
    width: 33px;
  }
  .last_div {
    max-width: 300px;
    text-align: end;
    display: flex;
    align-items: center;
  }
  .main_header_div{
    column-gap: 10px;
  }
}
@media screen and (max-width: 450px) {
  .slider_main_div img {
    height: 250px;
  }
  .middle_div {
    max-width: 180px;
  }
}
@media screen and (max-width: 400px) {
  .middle_div {
    max-width: 150px;
  }
  body {
    margin-top: 80px;
  }
}
