@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary: #B60811;
  --secondary: #020407;
  --font1: 'Poppins', sans-serif;
  --font2: 'Aboreto', system-ui;
  --font3: 'Genos', sans-serif;
}
html,
body {
  font-family: var(--font1);
}
body {
  background: #FFFCF8;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  width: 100%;
}
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
*:focus, *:visited, *:focus:visited, *:focus:active {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
img {
  border: none;
  max-width: 100%;
}
::-moz-selection {
  background: var(--primary);
  color: #fff;
}
::selection {
  background: var(--primary);
  color: #fff;
}
a,
a:hover {
  text-decoration: none;
}
ul{
  margin: 0px;
  padding: 0px;
}


/*------- Buttons Style Start -------*/
.btn {
  font-family: var(--font3);
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  padding: 9px 36px 9px 26px;
  border-radius: 30px;
  border: 0px;
  transition: .2s ease-in;
}
.btn-primary {
  background: url("../images/btn-bg.png") no-repeat var(--primary);
  background-size: auto 100%;
  background-position: right top;
  color: #FFFFFF;
  transition: .2s ease-in;
}
.btn-secondary {
  background: url("../images/btn-bg.png") no-repeat var(--secondary);
  background-size: auto 100%;
  background-position: right top;
  color: #FFFFFF;
  transition: .2s ease-in;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  background: url("../images/btn-bg.png") no-repeat var(--secondary);
  background-size: auto 100%;
  background-position: right top;
  color: #FFFFFF;
  transition: .2s ease-in;
}
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  background: url("../images/btn-bg.png") no-repeat var(--primary);
  background-size: auto 100%;
  background-position: right top;
  color: #FFFFFF;
  transition: .2s ease-in;
}
.btn-primary:active:focus,
.btn-primary:focus{
  box-shadow: none;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible {
  box-shadow: none;
}


/*------- Header Style Start -------*/
header{
  width: 100%;
  position: relative;
  z-index: 99;
  transition: all .6s ease-in-out;
}
header.sticky-header {
  top: 0;
  box-shadow: 0 5px 22px 0 rgba(0, 0, 0, .09);
  transition: all .6s ease-in-out;
  position: fixed;
  background: #fffcf8;
}
.header-main-bar {
  width: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a {
  display: block;
  max-width: 242px;
  transition: all .6s ease-in-out;
}
header.sticky-header .header-logo a{
  max-width: 200px;
  transition: all .6s ease-in-out;
}
header .header-navbar {
  margin-left: auto;
  margin-right: 50px;
}
header nav > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav > ul > li {
  position: relative;
  padding: 38px 0;
  transition: all .6s ease-in-out;
}
header.sticky-header nav > ul > li{
  padding: 22px 0;
  transition: all .6s ease-in-out;
}
header nav > ul > li + li {
  margin-left: 40px;
}
header nav > ul > li > a {
  font-family: var(--font3);
  color: var(--secondary);
  font-weight: 500;
  font-size: 22px;
  display: inline-block;
  line-height: 28px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s;
}
header nav > ul > li.active > a,
header nav > ul > li:hover > a {
  color: var(--primary);
  transition: all 0.4s;
}
header nav > ul > li.menu-parent > a:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  background: url("../images/menu-parent.png") no-repeat;
  background-size: 100% 100%;
  width: 10px;
  height: 6px;
  margin: 12px 0 0 8px;
}
.sub-menu {
  position: absolute;
  top: 100%;
  background: var(--primary);
  left: 0;
  min-width: 200px;
  padding: 18px;
  border-radius: 5px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translatey(20px);
  visibility: hidden;
  transition: all 0.4s;
}
header nav > ul > li.menu-parent:hover > .sub-menu {
  opacity: 1;
  transform: translatey(0);
  visibility: visible;
}
.sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-menu ul li {
  margin-bottom: 10px;
}
.sub-menu ul li:last-child {
  margin-bottom: 0;
}
.sub-menu ul li a {
  font-family: var(--font3);
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
  transition: all 0.4s;
}
.sub-menu ul li a:hover {
  padding-left: 5px;
  transition: all 0.4s;
}
.navbar-toggle{
  display: none;
}
.menu-contact{
  display: none;
}


/*------- Hero Slider Style Start -------*/
.hero-banner-main{
  width: 100%;
  padding-top: 35px;
}
.hero-slider-content{
  width: 100%;
  padding: 0 20px 0 55px;
}
.hero-slider-content i{
  display: inline-block;
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s;
}
.slick-active .hero-slider-content i {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s;
}
.hero-slider-content h2{
  font-family: var(--font2);
  font-size: 40px;
  font-weight: 800;
  line-height: 56px;
  margin-bottom: 12px;
  color: #050505;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s;
}
.slick-active .hero-slider-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s;
}
.hero-slider-content p{
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 25px;
  color: #212121;
  padding-right: 10px;
  opacity: 0;
  transform: translatey(-100px);
  transition: all 0.6s;
}
.slick-active .hero-slider-content p {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s;
}
.hero-slider-content .btn{
  opacity: 0;
  transform: translateY(-100px);
  transition: all 0.6s;
}
.slick-active .hero-slider-content .btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s;
}
.hero-slider-img{
  width: 100%;
  position: relative;
  padding-right: 120px;
  text-align: right;
}
.hero-slider-img .main-img-bg{
  max-height: 440px;
  display: inline-block !important;
  opacity: 0;
  transform: translateX(-150px);
  transition: all 0.6s;
}
.slick-active .hero-slider-img .main-img-bg {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s;
}
.hero-slider-img .main-img{
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 350px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-img .main-img img{
  max-height: 100%;
  display: inline-block !important;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s;
}
.slick-active .hero-slider-img .main-img img {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s;
}
.hero-slider .slick-dots {
  bottom: auto;
  left: auto;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}
.hero-slider .slick-dots li {
  display: block;
  margin: 5px 0;
  width: 32px;
  height: 32px;
}
.hero-slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  border: 1px solid transparent;
}
.hero-slider .slick-dots li.slick-active button{
  border: 1px solid var(--primary);
}
.hero-slider .slick-dots li button:before{
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #02040724;
  font-size: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-slider .slick-dots li.slick-active button:before{
  background: var(--primary);
}
.hero-slider {
  margin-bottom: 0 !important;
}


/*------- Culture Export Style Start -------*/
.culture-export-section{
  width: 100%;
  padding: 0 15px;
  margin-top: -10px;
}
.culture-export-section h1{
  font-family: var(--font3);
  font-size: 112px;
  font-weight: 500;
  line-height: 145px;
  text-transform: uppercase;
  text-align: center;
  margin: 0px;
  color: #F5EAE6;
}


/*------- About Us Style Start -------*/
.aboutus-section{
  width: 100%;
  padding-top: 120px;
  position: relative;
}
.aboutus-img{
  width: 100%;
  position: relative;
  padding: 0 0 0 55px;
  text-align: right;
}
.aboutus-img-two{
  width: 205px;
  height: 205px;
  border: 6px solid #FFF9EF;
  border-radius: 50%;
  position: absolute;
  left: 55px;
  bottom: 0;
  overflow: hidden;
}
.aboutus-img-two img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus-img-one{
  width: 520px;
  height: 520px;
  position: relative;
}
.aboutus-img-one .img-one-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rotation 90s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.aboutus-img-one .img-one-main{
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 6px solid #FFFDFA;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aboutus-img-one .img-one-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus-content {
  width: 100%;
  padding: 0 55px 0 30px;
}
.section-title h6{
  font-family: var(--font3);
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--primary);
}
.section-title h6 i{
  display: inline-block;
  margin-right: 10px;
}
.contactus-content .section-title h3{
  font-family: var(--font2);
  font-size: 48px;
  font-weight: 800;
  line-height: 62px;
  margin-bottom: 14px;
  color: var(--secondary);
  text-transform: uppercase;
}
.aboutus-content .section-title h3{
  font-family: var(--font2);
  font-size: 48px;
  font-weight: 800;
  line-height: 62px;
  margin-bottom: 14px;
  color: var(--secondary);
  text-transform: uppercase;
}
.section-title h3{
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 800;
  line-height: 32px;
  margin-bottom: 14px;
  color: var(--secondary);
  text-transform: uppercase;
}
.section-title h3 span{
  color: var(--primary);
}
.aboutus-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #212121;
  margin-bottom: 8px;
}
.aboutus-content .btn{
  margin-top: 14px;
}
.section-bg1{
  position: absolute;
  top: -220px;
  left: 0;
  z-index: -1;
}
.section-bg2{
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
}
.section-bg3{
  position: absolute;
  top: -80px;
  right: 0;
  z-index: -1;
}


/*------- Collections Style Start -------*/
.collections-section{
  width: 100%;
  position: relative;
  padding-top: 200px;
}
.collections-bg1{
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
}
.collections-bg2{
  position: absolute;
  top: -90px;
  right: 0;
  z-index: -1;
}
.collections-section .section-title h3{
  font-size: 44px;
  line-height: 57px;
  margin-bottom: 0px;
}
.collections-nav-btn{
  display: flex;
  gap: 10px;
}
.collections-nav-btn a {
  width: 38px;
  height: 38px;
  border-radius: 50px;
  background-color: #FFF7E7;
  font-size: 25px;
  color: #DA8388;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.collections-nav-btn a:hover {
  background-color: var(--primary);
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.collections-nav-btn i {
  margin-bottom: -2px;
}
.collections-slider{
  width: 100%;
  margin: 40px 0 0 0;
}
.collections-slider .slick-slide{
  margin-left: 53px;
}
.collections-slider .slick-list{
  margin-left: -53px;
}
.collections-slider .slick-arrow{
  display: none !important;
}
.collections-item-img{
  width: 100%;
  height: 230px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.collections-img-bg{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.collections-main-img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.collections-main-img img {
  max-height: 200px;
  transition: .2s ease-in;
}
.collections-item{
  width: 100%;
  text-align: center;
  transition: .2s ease-in;
}
.collections-item h4{
  font-family: var(--font2);
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--secondary);
  transition: .2s ease-in;
}
.collections-item h4 a{
  color: var(--secondary);
  transition: .2s ease-in;
}
.text-btn{
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--secondary);
  align-items: center;
  transition: .2s ease-in;
}
.text-btn i{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  text-align: center;
  font-size: 25px;
  line-height: 36px;
  color: #fff;
  transform: rotate(-45deg);
  transition: .2s ease-in;
}
.collections-item:hover h4 a{
  color: var(--primary);
  transition: .2s ease-in;
}
.collections-item:hover .text-btn{
  color: var(--primary);
  transition: .2s ease-in;
}
.collections-item:hover .text-btn i{
  transform: rotate(0deg);
  background: var(--secondary);
  transition: .2s ease-in;
}
.collections-item:hover .collections-main-img img{
  transform: scale(1.1);
  transition: .2s ease-in;
}
.collections-btn{
  width: 100%;
  text-align: center;
  margin-top: 50px;
}


/*------- Counter Style Start -------*/
.counter-section{
  width: 100%;
  position: relative;
  padding-top: 100px;
}
.counter-bg1{
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
}
.counter-bg2{
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
}
.counter-item{
  width: 100%;
  text-align: center;
  position: relative;
}
.counter-item h3{
  font-size: 50px;
  font-weight: 600;
  line-height: 65px;
  color: var(--primary);
  margin-bottom: 12px;
}
.counter-item h3 span{
  color: var(--secondary);
  font-weight: 700;
}
.counter-item p{
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: #212121;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.counter-item::after{
  position: absolute;
  top: 0;
  right: -13px;
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 4, 7, 0) 0%, rgba(2, 4, 7, 0.3) 52%, rgba(2, 4, 7, 0) 100%);
}
.counter-section .col-lg-3.col-md-6:last-child .counter-item::after{
  display: none;
}


/*------- Footer Style Start -------*/
footer{
  width: 100%;
  margin-top: 70px;
}
.footer-top{
  background: var(--secondary);
  padding: 60px 0 0 0;
  position: relative;
}
.footer-top::after{
  position: absolute;
  bottom: -1px;
  top: -1px;
  left: 0;
  content: "";
  width: 332px;
  background: url(../images/footer-bg.png) no-repeat;
  background-size: 100% 100%;
}
.footer-top .row {
  padding-left: 100px;
}
.footer-logo-wrapper{
  width: 100%;
}
.footer-logo{
  margin-bottom: 56px;
}
.footer-logo img{
  width: 300px;
}
.footer-social{
  width: 100%;
}
.footer-social h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: #DBC08B;
  margin-bottom: 14px;
}
ul.social-icon {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
ul.social-icon a {
  width: 40px;
  height: 40px;
  background: #F7ECD70F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all 0.3s ease-out 0s;
}
ul.social-icon li a svg, ul.social-icon li a svg path {
  fill: #F7ECD7;
}
ul.social-icon a:hover {
  color: #fff;
  background-color: var(--primary);
  transition: all 0.3s ease-out 0s;
}
ul.social-icon a:hover svg {
  filter: brightness(0) invert(1);
}
.footer-links{
  width: 100%;
}
.footer-links.quick-links {
  padding-left: 100px;
}
.footer-links h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 17px;
  color: #DBC08B;
}
.footer-links li{
  width: 100%;
  display: inline-block;
  margin-bottom: 18px;
  position: relative;
  padding-left: 15px;
}
.footer-links li::before{
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #DBC08B;
}
.footer-links li a{
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  color: #F7ECD7;
  transition: all 0.3s ease-out 0s;
}
.footer-links li a:hover{
  color: var(--primary);
}
.contact-info{
  width: 100%;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.contact-info:last-child{
  align-items: start;
  margin-bottom: 0px;
}
.contact-info i{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F7ECD70F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-right: 12px;
}
.contact-info p{
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0px;
  color: #F7ECD7;
}
.contact-info p a{
  color: #F7ECD7;
  transition: all 0.3s ease-out 0s;
}
.contact-info p a:hover{
  color: var(--primary);
}
.footer-copyright{
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #F7ECD729;
}
.footer-copyright-inner{
  width: 100%;
  padding: 14px 0;
}
.footer-copyright-card{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-copyright-card p{
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0px;
  color: #F7ECD7;
}
.laxraj-love a {
  text-decoration: none;
  color: #F7ECD7;
  transition: all 0.3s ease-out 0s;
}
.laxraj-love a:hover {
  color: var(--primary);
  transition: all 0.3s ease-out 0s;
}
.laxraj-love svg,
.laxraj-love .fa {
  color: #DBC08B;
  margin: 0 3px;
  font-size: 10px;
  animation: pound 0.35s infinite alternate;
  -webkit-animation: pound 0.35s infinite alternate;
  width: 12px;
  height: auto;
}
@-webkit-keyframes pound {
  to {
      transform: scale(1.1);
  }
}
@keyframes pound {
  to {
      transform: scale(1.1);
  }
}


/*------- Scroll to Top Style Start -------*/
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  box-shadow: 0px 4px 14px 0px #0000000D;
  width: 50px;
  height: 50px;
  line-height: 26px;
  display: block;
  z-index: 999;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: #DBC08B;
  transition: all 0.3s ease;
}
#return-to-top:hover i {
  color: var(--secondary);
  top: 6px;
  transition: all 0.3s ease;
}


/*------- About Us Page Style Start -------*/
.sub-hero-banner-main{
  width: 100%;
  height: 200px;
  position: relative;
  background: #AF211F14;
  overflow: hidden;
}
.sub-hero-banner-content{
  width: 100%;
  text-align: center;
}
.sub-hero-banner-content i{
  display: inline-block;
  margin-bottom: 15px;
}
.sub-hero-banner-content h1{
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 800;
  line-height: 65px;
  margin-bottom: 15px;
  color: var(--secondary);
  text-transform: uppercase;
}
.sub-hero-banner-content .breadcrumb{
  justify-content: center;
}
.sub-hero-banner-content .breadcrumb-item{
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: var(--secondary);
}
.sub-hero-banner-content .breadcrumb-item a{
  color: var(--primary);
}
.sub-hero-banner-content .breadcrumb-item+.breadcrumb-item::before{
  color: var(--secondary);
}
.sub-hero-banner-content .breadcrumb{
  margin: 0px;
}
.sub-hero-bg1{
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
}
.sub-hero-bg2{
  position: absolute;
  top: 150px;
  left: 0;
  z-index: -1;
}
.sub-hero-bg3{
  position: absolute;
  bottom: 0px;
  right: -100px;
  z-index: -1;
}
.sub-hero-bg4{
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.sub-hero-bg4 img {
  width: 170px;
}
.aboutus-page-section {
  padding: 100px 0 30px 0;
}
.aboutus-page-section .aboutus-img{
  padding: 0px;
}
.aboutus-page-section .aboutus-content{
  padding: 0 0 0 50px;
}
.aboutus-page-section .aboutus-img-one .img-one-main{
  width: 450px;
  height: 450px;
}



/*------- Our Products Page Style Start -------*/
.products-page-section,
.productlist-page-section{
  padding: 100px 0 30px 0;
}
.products-page-section .row,
.productlist-page-section .row{
  gap: 50px 0;
}
.productlist-item{
  width: 100%;
  text-align: center;
  transition: all ease .2s;
}
.productlist-item-img{
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  transition: all ease .2s;
}
.productlist-item-img::before {
  position: absolute;
  top: 0;
  left: -92%;
  z-index: 10;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.productlist-item:hover .productlist-item-img::before {
  -webkit-animation: shine2 1s;
  animation: shine2 1s;
}
@-webkit-keyframes shine2 {
  100% {
    left: 125%;
  }
}
@keyframes shine2 {
  100% {
    left: 125%;
  }
}
.productlist-item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease-in;
}
.productlist-item:hover .productlist-item-img img {
  transform: scale(1.1);
  transition: .2s ease-in;
}
.productlist-item-img a{
  display: inline-block;
  width: 100%;
  height: 100%;
}
.productlist-item h4{
  font-family: var(--font2);
  font-size: 14px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--secondary);
  transition: .2s ease-in;
}
.productlist-item h4 a{
  color: var(--secondary);
  transition: .2s ease-in;
}
.productlist-item:hover h4 a {
  color: var(--primary);
  transition: .2s ease-in;
}
.productlist-item:hover .text-btn {
  color: var(--primary);
  transition: .2s ease-in;
}
.productlist-item:hover .text-btn i {
  transform: rotate(0deg);
  background: var(--secondary);
  transition: .2s ease-in;
}


/*------- Products Details Page Style Start -------*/
.product-detail-section{
  width: 100%;
  padding: 100px 0 30px 0;
}
.product-detail-img{
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
}
.product-detail-item{
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: block !important;
  border-radius: 10px;
}
.product-detail-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-main {
  width: 100%;
  margin-bottom: 30px;
}
.product-detail-nav{
  width: 100%;
  margin-bottom: 0px !important;
}
.product-detail-nav .slick-slide{
  width: 100px;
  margin: 0 10px;
}
.product-detail-nav .product-detail-nav-item{
  height: 100px;
  overflow: hidden;
  width: 100%;
  border: 2px solid transparent;
  display: block !important;
  cursor: pointer;
  border-radius: 10px;
}
.product-detail-nav .product-detail-nav-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-nav .slick-current .product-detail-nav-item{
  border: 2px solid var(--primary);
}
.product-detail-main .slick-arrow,
.product-detail-nav .slick-arrow{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  font-size: 25px;
  color: #fff;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
}
.product-detail-main .slick-arrow:hover,
.product-detail-nav .slick-arrow{
  background: var(--secondary);
  transition: all 0.3s ease-out;
}
.product-detail-main .slick-arrow.bi-arrow-left-short{
  left: 20px;
}
.product-detail-main .slick-arrow.bi-arrow-right-short{
  right: 20px;
}
.product-detail-nav::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, #fff 19.64%, rgba(0, 71, 133, 0) 93.83%);
  z-index: 9;
}
.product-detail-nav::after{
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 120px;
  height: 100%;
  background: linear-gradient(-90deg, #fff 19.64%, rgba(0, 71, 133, 0) 93.83%);
  z-index: 9;
}
.product-detail-nav .slick-arrow{
  width: 35px;
  height: 35px;
  z-index: 99;
  background: var(--primary);
  font-size: 25px;
  transition: all 0.3s ease-out;
}
.product-detail-nav .slick-arrow:hover{
  background: var(--secondary);
  transition: all 0.3s ease-out;
}
.product-detail-nav .slick-arrow.bi-arrow-left-short{
  left: 5px;
}
.product-detail-nav .slick-arrow.bi-arrow-right-short{
  right: 5px;
}
.product-detail-content {
  width: 100%;
  padding-left: 40px;
}
.product-detail-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #212121;
  margin-bottom: 12px;
}
.product-detail-content h5{
  font-family: var(--font3);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: var(--primary);
}
.product-detail-table{
  width: 100%;
  margin: 30px 0 30px 0;
}
.product-detail-table table{
  width: 100%;
}
.product-detail-table table th, 
.product-detail-table table td{
  border: 1px solid #e0e0e0;
  background-color: #fffcf8;
  padding: 10px 15px;
  color: #212121;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  width: 50%;
}
.product-detail-table table th{
  font-weight: 600;
  color: var(--primary);
}
.product-detail-table table>tbody>tr:nth-of-type(odd)>*{
  background-color: #faf4f3;
}
.product-detail-content ul{
  margin-bottom: 20px;
}
.product-detail-content li{
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #212121;
  margin-bottom: 10px;
  position: relative;
  padding-left: 17px;
}
.product-detail-content li:before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.product-detail-content li:last-child{
  margin-bottom: 0px;
}
.product-range-btn {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.product-range-btn .btn {
  gap: 12px;
  display: flex;
  align-items: center;
}
.product-range-btn .btn i {
  line-height: 0;
}


/*------- Inquiry Modal Style Start -------*/
.inquery-modal .modal-content {
  padding: 40px;
  position: relative;
  border: 0;
  border-radius: 10px;
  box-shadow: 10px 15px 44px 0px rgba(0, 0, 0, 0.10);
  background: url("../images/sub-banner-bg.png") #f9ebe7;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 280px;
}
.modal-bg1 {
  position: absolute;
  top: -70px;
  right: 0;
}
.inquery-modal .modal-content .btn-close {
  width: 40px;
  height: 40px;
  opacity: 1;
  z-index: 99;
  padding: 0;
  transition: all 0.4s;
}
.inquery-modal .modal-content form {
  z-index: 1;
}
.inquery-modal .modal-content .inquiry_heading {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inquery-modal .modal-content .inquiry_heading h2{
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--primary);
  margin-bottom: 0px;
}
.form-label {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 4px;
  color: var(--secondary);
  display: inline-block;
  font-weight: 500;
}
.form-label em {
  color: var(--primary);
  font-style: normal;
}
.form-feild {
  margin-bottom: 20px;
}
.form-control {
  padding: 0 15px;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
  transition: all 0.4s;
  border-radius: 6px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.04) !important;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}
textarea.form-control {
  padding: 15px;
  height: 120px;
  resize: none;
  border-radius: 6px;
}


/*------- Contact Us Page Style Start -------*/
.contactus-page-section{
  width: 100%;
  padding: 100px 0 30px 0;
}
.contactus-content{
  width: 100%;
  padding: 0 70px 0 0;
  position: relative;
}
.contactus-content::after {
  position: absolute;
  top: 0;
  right: -13px;
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 4, 7, 0) 0%, rgba(2, 4, 7, 0.3) 52%, rgba(2, 4, 7, 0) 100%);
}
.contactus-content .section-title p{
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #212121;
  margin: 15px 0 30px 0;
}
.list-wrap {
  margin: 0px;
  padding: 0px;
}
.contact__info .list-wrap li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.contact__info .list-wrap li:last-child {
  margin-bottom: 0;
}
.contact__info .list-wrap li .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #AF211F14;
  border-radius: 50%;
  flex: 0 0 auto;
}
.contact__info .list-wrap li .icon i svg {
  width: 24px;
  height: 24px;
}
.contact__info .list-wrap li .content .title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
}
.contact__info .list-wrap li .content p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #212121;
}
.contact__info .list-wrap li .content p a{
  color: #212121;
  transition-duration: 0.3s;
}
.contact__info .list-wrap li .content p a:hover{
  color: var(--primary);
  transition-duration: 0.3s;
}
.contactus-form {
  width: 100%;
  padding: 0 0 0 70px;
}
.contactus-form .section-title h3 {
  margin-bottom: 20px;
}
.contactus-form .form-control{
  height: 55px;
}
.contactus-form textarea.form-control{
  height: 150px;
}
