@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Gabriela&family=Montserrat:ital,wght@0,400;0,600;0,700;1,500&family=Poppins:ital,wght@0,400;0,700;1,700&family=Roboto+Slab:wght@600&family=Roboto:ital,wght@0,400;0,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Georgia';
  src: url('../font/Georgia-Bold.woff2') format('woff2'),
    url('../font/Georgia-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-SemiBold.woff2') format('woff2'),
    url('../font/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-Regular.woff2') format('woff2'),
    url('../font/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --dark: #201c1b;
  --primary: #a77548;
  --color1: #f7d79c;
  --bg1: #8d5115;
  --bg3: #a4784b;
  --bg2: #f7f7f7;
  --font1: 'Georgia';
  --font2: 'Poppins';
  --font3: 'Poppins';
}

body {
  scroll-behavior: smooth;
  position: relative;
  background: #fff;
  overflow-x: hidden;
  font-size: 14px;
  color: #666;
  line-height: 26px;
  font-family: var(--font3);
  font-weight: 300;
}

section {
  padding: 30px 0;
  overflow: hidden;
}

a,
a:hover,
a:focus {
  transition-duration: 500ms;
  text-decoration: none;
  color: inherit;
  outline: 0 solid transparent;
}

a:hover {
  text-decoration: none;
}
b{
    font-weight:bold;
}

ul,
ol,
P {
  padding: 0;
  margin: 0px;
  list-style: none;
}

.container {
  max-width: 1250px;
}

/**top-header**/
.top-header {
  background-color: var(--bg2);
  font-size: 15px;
  padding: 5px;
}

.top-number {
  display: flex;
  align-items: center;
}

.top-number a {
  margin-left: 10px;
}

.top-number i {
  font-size: 15px;
  color: var(--bg1);
  background-color: var(--white);
}

.top-number a span {
  text-transform: capitalize;
}

.top-email {
  display: flex;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
}

.top-email a {
  margin-left: 10px;
}

.top-email i {
  font-size: 15px;
  color: var(--bg1);
  background-color: var(--white);
}

.top-number a:hover,
.top-email a:hover {
  color: var(--bg1);
}

.s-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.clk_btn {
    position: absolute;
    right: 0;
    top: 20px;
}

.s-links a {
  margin: 0 8px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.s-links a img {
  border-radius: 50%;
  width: 25px;
}

.s-links a:hover {
  transform: scale(1.1);
}

.top-social-icon {
  display: flex;
  justify-content: space-around;
}

/***header-bottom*****/
.nav-section.sticky {
  position: fixed;
  background-color: var(--white);
  width: 100%;
  top: 0;
  z-index: 9999;
  animation: slideDown 1s ease-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-bottom {
  display: flex;
  align-items: center;
  position: relative;
}

.main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 68px;
  position: relative;
}

.menu-item a {
  font-size: 16px;
  line-height: 100px;
  color: #333;
  font-family: var(--font2);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  font-weight: 600;
}

.menu-item a.active {
  color: var(--bg1);
}

.menu-item a::before {
  transition: all 0.3s ease 0s;
  width: 0%;
  height: 4px;
  background: var(--bg1);
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0%;
  content: '';
  z-index: 1000;
}

.menu-item a:hover,
.menu-item a:hover::before {
  color: var(--bg1);
  width: 100%;
}

.drop-down {
  display: inline-block;
}

.drop-down-content {
  position: absolute;
  display: block;
  background-color: var(--bg2);
  z-index: 100;
  transition: all 1s ease;
  visibility: hidden;
  opacity: 0;
  /* border: 1px solid gray; */
  box-shadow: 0px 0px 2px gray;
  transform: translateY(50px);
  border-radius: 5px;
}

.drop-down-content li {
  line-height: 20px;
  display: block;
  left: 0;
  top: 100%;
  min-width: 180px;
}

.drop-down-content li a {
  display: block;
  width: 100%;
  padding: 10px;
  font-family: var(--font1);
  transition: all 1s ease;
  border-bottom: 1px solid gray;
}

.drop-down-content li a:hover {
  background-color: var(--bg1);
}

.drop-down:hover .drop-down-content {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(15px);
}

/****drop-down*****/
.fp_drop-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  padding: 0px 30px 30px 30px;
  transition: all 1s ease;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 2px gray;
  transform: translateY(50px);
  border-radius: 5px;
}

.fe-product img {
  width: 100px;
}

.fe-name {
  display: inline-block;
  margin: 15px 0;
  padding-left: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  overflow: hidden;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  color: #333;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 24px;
  margin: 10px 0 0 0;
  overflow: 0;
}

.fe-product {
  margin: 20px 0;
}

.fe-dropdown:hover .fp_drop-items {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.d-product:hover .fe-name {
  color: var(--bg1);
}

.d-product a:hover::before {
  width: 0;
}

a.menu-btn {
  display: block;
  padding: 20px;
}

.toggle-btn {
  display: none;
}

.header-btn {
  display: flex;
  justify-content: flex-end;
  text-align: flex-end;
}

.enquiry-btn {
  text-transform: capitalize;
  background-color: var(--bg1);
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--white);
  position: relative;
  transition: all 0.1s ease;
}

.enquiry-btn:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--dark);
  font-family: var(--font2), cursive;
}

.enquiry-btn:after {
  position: absolute;
  content: '';
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  background-color: #383434;
  transition: all 1s ease;
  z-index: -1;
}

.enquiry-btn:hover:after {
  transform-origin: left;
  transform: scaleX(1);
  border-radius: 8px;
  box-shadow: 0 0 1px 1px var(--bg1);
}




.cont-btn {
  text-transform: capitalize;
  background-color: var(--bg1);
  padding: 8px 30px;
  border-radius: 8px;
  color: var(--white);
  position: relative;
  transition: all 0.1s ease;
  border:none;
  outline:none;
}

.cont-btn:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--dark);
  font-family: var(--font2), cursive;
}

.cont-btn:after {
  position: absolute;
  content: '';
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  background-color: #383434;
  transition: all 1s ease;
  z-index: -1;
}

.cont-btn:hover:after {
  transform-origin: left;
  transform: scaleX(1);
  border-radius: 8px;
  box-shadow: 0 0 1px 1px var(--bg1);
}
@media (max-width:992px) {
  .top-header {
    display: none;
  }

  .main-menu {
    display: none;
  }

  .toggle-btn {
    display: block;
  }

  .nav-section {
    padding: 0 20px;
  }

  .header-btn {
    display: none;
  }
}

/****mobile_canvas*****/
.offcanvas {
  transition: all 0.8s ease-in-out;
}

.offcanvas-header {
  background-color: var(--white);
}

.offcanvas-title {
  width: 100px;
}

.offcanvas-body {
  padding: 10px;
}

.side-menu li {
  display: block;
  text-align: start;
  border-bottom: 1px dashed var(--white);
  font-family: var(--font1);
}

.side-menu li:hover {
  color: var(--bg1);
}

.side-menu li a {
  display: block;
  width: 100%;
  text-transform: capitalize;
  font-family: var(--font1);
  padding: 15px 20px;
  line-height: 20px;
  font-style: normal;
  font-weight: 400;
  color: var(--dark);
}

.side-menu li a:hover {
  background-color: var(--white);
}

/**banner***/
.banner {
  position: relative;
}

.ban-img img {
  z-index: 10;
}

.forward-btn,
.back-btn {
  position: absolute;
  top: 40%;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  background-color: rgba(9, 42, 87, 0.17);
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}
.about-sec img{
    width:100%;
}
.ab_about {
    position: sticky;
    top: 100px;
}

.forward-btn {
  right: 2px;
  bottom: 0;
  background-position: center;
  z-index: 1;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.back-btn {
  left: 2px;
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.forward-btn:hover,
.back-btn:hover {
  background-color: var(--bg1);
  transform: scale(1.1);
}

.ban-slide img {
  min-height: 250px;
}

@media (max-width:992px) {
    .dropdown-toggle::after{
        display:none;
    }
    .drop-down {
    position: relative;
    }
.clk_btn {
    position: absolute;
    right: 0;
    top: 9px;
    width: 20px;
}
.drop-down-content {
    position: revert;
    display: block;
    visibility: visible;
    opacity: 1;
    display: none;
    width:100%;
}
  .forward-btn,
  .back-btn {
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 1rem;
    font-size: 16px;
  }
}

/***swiper**/
/* 
.swiper {
    width: 100%;
    height: auto;
  }
  
  .swiper-slide {
    text-align: center;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }  
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 700px;
  
  }
  
  .swiper-slide {
    width: 20%;
  } */

/**products***/
.products {
  background-color: var(--bg2);
}

.p-header {
  padding: 30px 0;
  width: 100%;
}

.heading-sec {
  color: var(--bg1);
  width: auto;
  padding: 0px 0px 0px;
  position: relative;
  font-size: 40px;
  line-height: 40px;
  text-transform: capitalize;
  display: inline;
  margin: 0px 0 0px;
  font-family: var(--font1);
  width: 100%;
  display: inline;
  vertical-align: middle;
}

.heading-sec span {
  color: #333;
  width: auto;
  padding: 0px 0px 0px;
  position: relative;
  font-size: 40px;
  line-height: 40px;
  text-transform: capitalize;
  display: inline;
  margin: 0px 0 0px;
  width: 100%;
  display: inline;
  vertical-align: middle;
}
.content-sec {
  font-size: 14px;
  line-height: 26px;
  color: #666;
  margin: 30px 0 0 0;
  max-height: 52px;
  width: 100%;
  max-width: 768px;
  overflow: hidden;
  letter-spacing: 1.1px;
  font-family: var(--font3);
}

.pc_inner {
  padding: 0;
}

.f-production {
  width: 100%;
  background: var(--bg1);
  -moz-border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
  border-radius: 0 30px 30px 0;
  width: 100%;
  position: relative;
  margin-left: -10px;
}

.f-production:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: -10px;
  height: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent var(--bg1) transparent transparent;
}

.f-production span {
  font-size: 20px;
  line-height: 60px;
  font-family: "poppins-semibold";
  color: #fff;
  padding: 0 0 0 20px;
  text-transform: uppercase;
}

.f-production p {
  width: 50px;
  height: 50px;
  line-height: 55px;
  font-size: 30px;
  color: var(--bg1);
  background: #fff;
  position: absolute;
  right: 5px;
  top: 5px;
  overflow: hidden;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
}

.product_cat {
  padding: 30px 30px 30px 0;
  margin: 40px 0 0 0;
  background-color: #fff;
}

.p-category li:nth-child(odd) {
  background-color: #f7f7f7;
}

.p-category li {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  text-transform: capitalize;
  padding: 12px 15px 12px 15px;
  background: #fff;
  margin: 0 20px 0 0px;
}

.p-category li a:hover {
  text-decoration: underline;
  color: var(--bg1);
}

.pc-more {
  color: var(--bg1);
}

/***product-box*****/
.p-img {
  overflow: hidden;
  border: 1px solid #e6e6e6;
  display: block;
  padding: 5px;
  transform: all 0.3s ease;
}

.p-img img {
  min-height: 130px;
  transition: all 0.5s ease;
}

.product-box {
  background-color: #fff;
  margin: 15px 0 0 2%;
  float: left;
  position: relative;
}

.product-box:hover .p-img img {
  transform: scale(1.2);
}

.product-box:hover .p-img {
  border-color: var(--bg1);
}

.product-box:hover .p-name {
  color: var(--bg1);
}

.p-name {
  font-size: 15px;
  line-height: 20px;
  height: 52px;
  overflow: hidden;
  display: inline-block;
  margin: 15px 0 0 0;
  padding: 0 10%;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  max-height: 58px;
  overflow: hidden;
  font-family: "poppins-semibold";
  color: #333;
  text-transform: capitalize;
}

/****tab-sec*****/
/* Tabs */
.tabs {
  width: 100%;
  background-color: transparent;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  position: relative;
}

ul#tabs-nav {
  position: absolute;
  right: -20%;
  top: 5%;
  list-style: none;
  margin: 0;
  padding: 5px;
  overflow: auto;
  width: 20%;
  background-color: transparent;
  text-align: center;
}

#tabs-content {
  width: 100%;
  background-color: var(--bg3);
}

ul#tabs-nav li {
  font-weight: bold;
  margin-right: 2px;
  margin-bottom: 5px;
  border-radius: 5px 5px 5px 5px;
  background-color: var(--white);
  cursor: pointer;
  display: block;
  text-transform: capitalize;
}

ul#tabs-nav li:hover,
ul#tabs-nav li.active {
  background-color: var(--bg1);
  color: var(--white);
}

ul#tabs-nav li.active a {
  color: var(--white);
}

ul#tabs-nav li .about-content.active {
  color: var(--white);
}

#tabs-nav li a {
  text-decoration: none;
  color: var(--bg1);
  width: 100%;
  display: block;
  padding: 25px 20px;
}

ul#tabs-nav li a i {
  display: block;
  text-align: center;
}

#tabs-nav li a:hover,
#tabs-nav li a:active {
  color: var(--white);
}

.tab-content {
  padding: 10px;
  background-color: var(--bg2);
}

/***about-us****/
.about-content {
  padding: 50px 0 0 0;
  font-size: 15px;
  line-height: 30px;
  color: #333;
  max-height: 270px;
  overflow: hidden;
}

.a-more {
  margin: 35px 0 0px 0;
}

.a-more a {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  padding: 10px 30px 10px 30px;
  width: auto;
  position: relative;
  text-transform: capitalize;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  vertical-align: middle;
  font-family: "poppins-semibold";
  color: var(--bg1);
}

.a-more a:hover {
  background-color: var(--bg1);
  color: var(--white);
}

.main-btn {
  border: 1px solid var(--bg1);
  background: none;
  color: var(--bg1);
}

.cases-slider,
.factory-slider {
  padding: 30px;
}

/*******cases********/

.fc-btn,
.fb-btn {
  position: absolute;
  top: 40%;
  width: 0.5rem;
  height: 1.5rem;
  padding: 1rem 0.6rem;
  border-radius: 1%;
  z-index: 10000;
  cursor: pointer;
  display: flex;
  background-color: var(--bg3);
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  color: var(--white);
  font-weight: 600;
  font-size: 25px;
  border: 1px solid var(--color1);
}

.fc-btn {
  right: 0px;
  bottom: 0;
  background-position: center;
  z-index: 1;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.fb-btn {
  left: 0px;
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.fc-btn:hover,
.fb-btn:hover {
  background-color: var(--bg1);
  transform: scale(1.1);
}

@media (max-width:992px) {

  .fc-btn,
  .fb-btn {
    position: absolute;
    top: 40%;
    width: 2rem;
    height: 1rem;
    font-size: 16px;
  }
}

/*******hot_products********/
.h-products {
  position: relative;
}

.hp-bg {
  position: absolute;
  right: 0;
  bottom: 60%;
  height: 100%;
  width: 30%;
  background-image: url('../image/img/bg/p.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.hp-img img {
  border: 1px solid gray;
}

.hp-name {
  font-size: 18px;
  color: #333;
  overflow: hidden;
  margin: 0px 0 0px 0;
  width: 100%;
  overflow: hidden;
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 25px 0px 25px 0px;
  border-top: 0px solid #000;
  text-transform: uppercase;
  font-family: var(--font2);
}

.hp-box p {
  font-size: 15px;
  line-height: 26px;
  height: 52px;
  color: #666;
  overflow: hidden;
  margin: 10px 0 0 0;
}

.hp-box {
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.hp-box:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.10);
}

.hp-box:hover .hp-img img {
  border: none;
}

.hp-slider {
  z-index: 10;
  background-color: #fff;
  padding: 30px 5px;
  padding-bottom: 60px;
}

.f-btn,
.b-btn {
  position: absolute;
  top: 25%;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 50%;
  z-index: 10000;
  cursor: pointer;
  display: flex;
  background-color: var(--bg1);
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

.f-btn {
  right: 0px;
  bottom: 0;
  background-position: center;
  z-index: 1;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.b-btn {
  left: 0px;
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}

.f-btn:hover,
.b-btn:hover {
  background-color: var(--bg1);
  transform: scale(1.1);
}

@media (max-width:992px) {

  .f-btn,
  .b-btn {
    position: absolute;
    top: 40%;
    width: 2rem;
    height: 1rem;
    font-size: 16px;
  }
}

/*********contact_us******/
.contact-box {
  border: 4px solid rgba(0, 0, 0, .05);
  padding: 30px;
  background: url(../image/img/bg/c.png) no-repeat bottom right;
  margin: 0px 0 30px 0;
  width: 100%;
}

.contact-title p {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  color: #333;
  text-transform: capitalize;
  font-family: var(--font1);
}

.con-ul {
  margin: 20px 0;
  padding-bottom: 20px;
}

.c-list {
  width: 100%;
  position: relative;
  margin: 0px 0 20px 0;
  min-height: 80px;
}

.c-icon {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

.c-icon i {
  width: 60px;
  height: 60px;
  background: var(--bg1);
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  color: var(--bg2);
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cb-content {
  margin-left: 20px;
}

.cb-content span {
  font-size: 20px;
  line-height: 30px;
  width: 100%;
  display: inline-block;
  color: #333;
  text-transform: capitalize;
  margin: 5px 0 5px 0;
  font-family: var(--font2);
  text-transform: capitalize;
  font-weight: 600;
}

.cb-content p {
  font-size: 14px;
  line-height: 26px;
  width: 100%;
  color: #333;
  display: inline-block;
}

.cb-content p a:hover {
  text-decoration: underline;
  color: var(--bg1);
}

.cb2-content {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  color: #333;
  text-transform: capitalize;
  font-family: var(--font1);
}

/*****message_box******/
.contact-message {
  padding: 20px 0;
  width: 100%;
  font-size: 15px;
  line-height: 28px;
  color: #666;
  display: inline-block;
}

.message1 p {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  color: #333;
  text-transform: capitalize;
  font-family: var(--font1);
  margin-bottom: 10px;
}

.message1 p span {
  color: var(--bg1);
  padding-right: 14px;
}

.message2 {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #e6e6e6;
  font-size: 16px;
  padding: 15px 15px 15px 10px;
  vertical-align: middle;
  transition: all 0.3s;
  border: 1px solid #e6e6e6;
  color: #222;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 0;
}

.message2 span {
  color: var(--bg1);
}

.message2 input {
  border: none;
  padding-left: 15px;
  outline: none;
  width: 100%;
}

select.message-input{
    border: none;
  padding-left: 15px;
  outline: none;
  width: 100%;
}
select.message-input:focus{
    outline:none;
    border:none;
}
.message3 {
  width: 100%;
  height: 190px;
  background: #fff;
  border: 1px solid #e6e6e6;
  font-size: 16px;
  padding: 15px 15px 15px 10px;
  vertical-align: middle;
  transition: all 0.3s;
  border: 1px solid #e6e6e6;
  color: #222;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 10px 0;
}

.message3 textarea {
  padding-left: 15px;
  border: none;
  outline: none;
  height: 160px;
  width: 100%;
}

.contact-form textarea.input-text {
  height: 190px;
  padding-top: 25px;
  padding-bottom: 10px;
}

.contact-message .sub-btn {
  text-align: left;
  margin: 20px 0 0 0;
  display: inline-block;
}

.sub-btn {
  position: relative;
  width: auto;
}

.sub-btn input {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  padding: 0px 30px 0 30px;
  width: auto;
  position: relative;
  text-transform: capitalize;
  border-radius: 25px;
  vertical-align: middle;
  background: var(--bg1);
  text-transform: uppercase;
  font-family: var(--font2);
  border: 1px solid var(--bg1);
  transition: all 0.3s ease-in-out;
}

.sub-btn input:hover {
  background-color: var(--bg2);
  color: var(--bg1);
}

/*********our__videos******/
.our-video {
  background: url('../../image/img/bg/video.jpg') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

.p-video {
  overflow: hidden;
  display: block;
  padding: 10px;
  transform: all 0.3s ease;
  position: relative;
}

.p-video span {
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 75%;
  margin: -40px 0 0 -40px;
  z-index: 5;
  width: 60px;
  height: auto;
  background-color: var(--bg1);
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  color: #fff;
  font-size: 25px;
}

.p-video img {
  min-height: 130px;
  transition: all 0.5s ease;
}

.product-box:hover .p-video img {
  transform: scale(1.2);
}

.pv-name {
  font-size: 18px;
  line-height: 28px;
  max-height: 58px;
  overflow: hidden;
  font-family: "poppins-semibold";
  color: #333;
  margin: 0px 0 0 0;
  padding: 15px;
  text-align: center;
}

.pv-content {
  margin-bottom: 40px;
}

/*****footer******/
footer {
  background: #222222 url(../image/img/bg/footer.jpg) no-repeat center top;
  padding: 40px 0 0px 0;
  color: #999;
}

.footer-heading {
  color: #fff;
}

.footer-heading p {
  color: #fff;
  display: block;
  line-height: 24px;
  text-transform: capitalize;
  margin: 0px 0 0 0;
  padding: 0 0px 0px 0px;
  font-family: "poppins-semibold";
  font-size: 24px;
  line-height: 24px;
}

.f-content p {
  font-size: 14px;
  line-height: 26px;
  color: #999;
  width: 100%;
  margin: 30px 0 0 0;
  overflow: hidden;
  max-height: 52px;
}

.f-search {
  display: inline-block;
  width: 100%;
  margin: 20px 0px 0 0;
  position: relative;
}

.f-search-main {
  width: 100%;
  height: 40px;
  padding: 0px 20px 0 20px;
  line-height: 40px;
  font-size: 14px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, 0);
}

.f-search span {
  width: auto;
  display: inline-block;
  background: var(--bg1);
  overflow: hidden;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  margin: 20px 0 0 0;
  outline: none;

}

.f-search-btn {
  right: 0px;
  top: 0px;
  width: auto;
  margin: 0px 0 0 0;
  background: url(../image/img/icons/sub.png) no-repeat right 30px center;
  height: 38px;
  color: #fff;
  width: auto;
  padding: 0 55px 0 30px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 40px;
  font-family: "poppins-regular";
  border: 2px solid var(--bg1);
}

.footer-content {
  margin-top: 20px;
  color: #999;
}

.footer-content li a:first-child {
  padding: 0 0 4px 0;
}

.footer-content li a {
  color: #999;
  font-size: 14px;
  line-height: 26px;
  margin: 0px 0;
  padding: 0 0 0 0px;
  /* background: url(../images/f-nav-i.png) no-repeat 0px 9px; */
  display: inline-block;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.footer-contact p a:hover {
  color: var(--white);
  text-decoration: underline;
}

.f-links {
  line-height: 20px;
  margin: 25px 0 0 0;
}

.f-links a {
  width: 30px;
  height: 30px;
  margin: 0px 10px 0 0px;
  position: relative;
  float: left;
  overflow: hidden;
}

.f-links a img {
  border-radius: 50%;
  width:30px;
}

.footer-item a {
  font-size: 18px;
  color: #999;
  line-height: 35px;
  text-transform: capitalize;
}

.footer-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact {
  position: relative;
  display: inline-block;
}

.footer-contact p {
  position: relative;
  margin: 15px 0 0px 0;
  display: inline-block;
  width: 100%;
  position: relative;
  color: #999;
  padding: 0 0 0 25px;
  text-transform: capitalize;
}
.footer-contact p:nth-child(1){
  margin-top: 5px;
}

.footer-contact p i {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 5px;
  opacity: 1;
  color: var(--bg1);
}

.footer-contact p span {
  padding: 0 0 0 0px;
  color: #999;
  line-height: 26px;
  font-size: 14px;
  display: inline;
  text-transform: initial;
}

.footer-contact p a {
  display: inline-block;
  color: #999;
  text-transform: initial;
}

.f-bottom {
  width: 100%;
  display: inline-block;
  width: 100%;
  padding: 25px 0 25px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, 0);
}

.fb-content {
  width: auto;
  text-align: center;
  margin: 5px 0 0 0;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
}

.fb-content P {
  display: inline-block;
}

.fb-content a {
  padding: 0 0 0 10px;
  color: #999;
  display: inline-block;
}

.fb-content a:hover {
  color: var(--white);
  text-decoration: underline;
}

/***scroll-to-top****/
#scroll-top {
  display: inline-block;
  background-color: var(--bg1);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  visibility: hidden;
  z-index: 1000;
}

#scroll-top::after {
  content: "\f062";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 40px;
  color: var(--bg2);
}

#scroll-top:hover {
  cursor: pointer;
  background-color: var(--bg1);
  box-shadow: 0px 0px 2px var(--bg1);
  color: #777;
}

#scroll-top:active {
  background-color: var(--bg3);
  color: #777;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/*****icon-box****/
.icon-box {
  position: fixed;
  top: 25%;
  color: transparent;
  right: 0px;
  z-index: 9999;
  border-radius: 0 5px 5px 0;
  border: 1px solid transparent;
  box-shadow: 0 0 5px 0 rgba(16, 80, 140, 0.2);
}

.icon-box img {
  height: 30px;
  width: 30px;
  padding: 5px;
}

.icon-box:visited,
.icon-box:active {
  text-decoration: none;
}

.icon-box a {
  margin-bottom: 10px;
}

.icon-box a:nth-child(4) {
  margin-bottom: 0;
}

.icon-box a:visited {
  text-decoration: none;
}

.fb {
  background-color: #538dda;
  color: #fff;
  display: block;
  padding: 2px;
  font-size: 22px;
}

.twitter {
  background-color: #f1f1f1;
  color: #fFf;
  font-size: 22px;
  display: block;
  padding: 2px;
  box-shadow: 0 0 1px var(--dark);
}

.twitter img {
  height: 26px;
  width: 28px;
}

.insta {
  display: block;
  background: linear-gradient(45deg, #4c0f52, #845abe);
  color: #fff;
  padding: 2px;
  font-size: 22px;
}

.wtsp {
  display: block;
  background-color: #07925d;
  color: #0f8d58;
  font-size: 22px;
  padding: 2px;
}

.fb,
.twitter,
.insta,
.link:hover {
  z-index: 1000;
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

/***innner-page***/
.breadcrump-sec {
  background: url('../image/img//bg/b_cump.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 100px 0;
}

.about-us-page {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  margin: 4px auto;
}

.b-links {
  display: inline-block;
  background-color: var(--bg2);
  padding: 10px 20px;
  color: var(--bg1);
  border-radius: 10px;
  font-family: var(--font4);
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0px 0px 2px var(--bg1);
}

.b-links a {
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0 5px;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
  color: var(--light);
}

.b-item.active {
  color: var(--dark);
  text-transform: capitalize;
}

span.fa-solid {
  color: var(--light);
  padding: 0 2px;
  font-size: 20px;
}

/****marketing-butoon***/
.marketing-heading {
  display: block;
  position: relative;
}

.market-btn {
  margin: 20px auto;
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  box-sizing: border-box;
  font-family: var(--font2);
  padding: 15px 0;
  box-shadow: 0px 0px 4px var(--dark);
  position: relative;
  transition: all 0.5s ease;
  background-color: var(--bg2);
  z-index: 1;
  font-style: italic;
  color: var(--bg1);
  border-radius: 10PX;
}
.market-btn a {
  width: 100%;
  display: block;
}
.market-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  z-index: -1;
  color: var(--white) !important;
  border-radius: 10px;
  background-color: var(--bg3);
  transition: all 0.3s linear;
}
.market-btn:hover {
  border-radius:10px;
  background-color: var(--bg3);
  color: var(--white)!important;
}
.market-btn:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  color: #fff !important;
}
/*****media_queries*****/

@media (max-width:992px) {
  .a-more {
    margin: 20px 0;
  }
  .about-content {
    padding: 25px 0 0 0;
  }
  .f-btn,
  .b-btn {
    top: 40%;
  }
  .footer-heading p {
    margin: 30px 0 0 0;
  }
  .icon-box img {
    height: 25px;
    width: 25px;
    padding: 5px;
  }
  .tabs {
    position: relative;
    display: block;
  }
  ul#tabs-nav {
    position: relative;
    display: flex;
    overflow: revert;
    width: 100%;
    right: 0;
  }
  ul#tabs-nav li {
    font-weight: bold;
    margin-right: 2px;
    margin-bottom: 5px;
    border-radius: 5px 5px 5px 5px;
    background-color: var(--bg1);
    cursor: pointer;
  }
  #tabs-nav li a {
    text-decoration: none;
    color: var(--bg1);
    background-color: var(--bg2);
    width: 100%;
    display: block;
    padding: 25px 20px;
    margin-right: 10px;
  }
  ul#tabs-nav li:hover,
  ul#tabs-nav li.active {
    background-color: var(--bg1);
    color: var(--white);
  }
  ul#tabs-nav li.active a {
    color: var(--white);
    background-color: var(--bg1);
  }
}

.what-app {
    position: fixed;
    z-index: 99;
  }
  
  .btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
  }
  
  .btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
  }
  
  .btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
  }
  
  .what-app i {
    font-size: 54px;
    color: #fff;
  }
  
  .inn_pages .row{
          display: inherit;
  }
  .inn_pages .col-md-6.all_img {
        float: right;
        padding-left: 20px;
        width: 50%;
        flex: initial;
    }
    .inn_pages .col-md-6.contant_all {
        width: 100%;
        flex: initial;
    }
  @keyframes pulse-border {
    0% {
      padding: 25px;
      opacity: 0.75;
    }
  
    75% {
      padding: 50px;
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }