body {
    background: #fff;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background-image: linear-gradient(to bottom, #ffffff, #eaeaea, #d5d5d5, #c1c1c1, #adadad);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
/*  display: flex;*/
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

nav .navbar .links li a.active{
    background: #00457c;
    padding: 10px 25px;
    border-radius: 10px;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #00457c;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:991px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:991px){
  nav{
     position: relative; 
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #00457c;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i{
        font-size: 25px;
      color: #fff;
    }
    .navbar .bx-menu{
      font-size: 25px;
      color: #00457c;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}


.headersocialmedia ul li{
    display: inline-block;
    padding: 0 10px 0 0;
}

.headersocialmedia ul li a{
    color: #00457c;
}

.headersocialmedia ul li a:hover{
    color: #000;
    transition: all 0.5s ease-out;
}
.carousel-item h5 {
  position: absolute;
  margin: 0;
  color: white;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 600;
}


/*------Home Welcome Text-----*/
.welcomebodycontainer{
    padding: 50px 0 0 0;
}

.welcometextbox h1{
    font-size: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #00457c;
    line-height: 50px;
}

.welcometextbox h1 span{
    color: #c3a67b;
    font-weight: 600;
}

.welcometextcontent p{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
}

.welcometextbox{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.karniretailsoftware {
    margin: 50px 0 0 0;
    padding: 20px 10px;
    text-align: center;
    width: 100%;
    min-height: 232px;
    overflow: hidden;
    background: url(../images/narnolia.jpg) center top no-repeat;
    background-size: cover;
}

.softwaretypebox img{
    width: auto;
    min-width: auto;
}

.softwaretypebox h3{
    font-size: 24px;
    font-weight: 400;
    color: #00457c;
    font-family: "Playfair Display", serif;
    margin: 30px 0 0 0;
}

.softwaretypebox{
    background: #fff;
    padding: 30px;
    margin: 30px 0;
}

.softwaretypebox p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
}

.karniretailsoftware h2{
    text-align: right;
    color: #fff;
    font-size: 50px;
    font-family: "Playfair Display", serif;
    line-height: 50px;
    font-weight: 300;
    margin: 30px 0 0 0;
}


.karniretailsoftware h2 span{
    color: #c3a67b;
}

.karnthardwarecontainer{
    padding: 50px 0 0 0;
}

.karnthardwarecontainer h2{
    font-size: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #00457c;
    line-height: 50px;
    text-align: center;
}

.karnthardwarecontainer h2 span{
    color: #c3a67b;
}

.hardwareproductbox img{
    width: auto;
    min-width: auto;
}
 
.hardwareproductbox{
    margin: 1em 0;
}


.hardwareproduct h4{
        font-size: 24px;
    font-weight: 400;
    color: #00457c;
    font-family: "Playfair Display", serif;
    margin: 0px 0 0 0;
}

.hardwareproduct p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
}

.hardwareproductboximg img{
    width: 100%;
    min-width: 100%;
}

.hardwareproductboximg{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hardwarebtn {
    text-align: center;
    display: block;
    margin: 30px 0 0 0;
}

.hardwarebtn a{
    background: #00457c;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 10px;
}

.hardwarebtn a:hover{
    color: #00457c;
    background: #fff;
    border: 1px solid #00457c;
    transition: all 0.6s ease-in;
}

.hardwarebtn{
     animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.clientsreviewcontainer{
    margin: 50px 0 0 0;
    padding: 50px 0;
    background: #00457c;
}

.reviwewdetails p{
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Montserrat", sans-serif;
}

.reviwewdetails h4{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 0px;
}

.reviwewdetails h5{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.clientsreviewcontainer h2{
    font-size: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.hardwareproA{
    padding: 100px 0 0 0;
}

.hardwareproB{
    padding: 30px 0 0 0;
}

.clientsreviewcontainer h2 span{
    color: #c3a67b;
}

.clientreview .owl-dots{
    text-align: center;
}

.clientreview .owl-dot.active{
    margin: 0 5px;
        background: #fff;
    border: none;
    padding: 3px 10px;
}

.clientreview .owl-dot{
    background: #668fb0;
    border: none;
    padding: 3px 10px;
    margin: 0 5px;
}

.rowfootermenu ul li{
    display: inline-block;
    padding: 0 30px 0 0;
}


.rowfootermenu ul li a{
    color: #00457c;
    font-size: 15px;
    font-weight: 400;
}

.footersocialmedia ul li{
    display: inline-block;
   
}

.footersocialmedia ul{
     text-align: right;
}

.footersocialmedia ul li a{
    color: #00457c;
    padding: 0 20px 0 0 ;
}

.fotterContainer{
    padding: 20px 0;
    box-shadow: 0px 0px 18px 18px rgba(0,0,0,0.16);
-webkit-box-shadow: 0px 0px 18px 18px rgba(0,0,0,0.16);
-moz-box-shadow: 0px 0px 18px 18px rgba(0,0,0,0.16);
}

.copyrights {
    background: #00457c;
    padding: 20px 0;
}

.copyrights p{
    font-size: 14px;
    color: #fff;
    padding: 0px;
    font-weight: 400;
    text-align: center;
    line-height: normal;
}

.fotterContainer .container-fluid{
    padding: 0;
    margin: 0;
}

.copyrightcontainer{
    background: #00457c;
}

.contactpageContainer h2{
    font-size: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #00457c;
    line-height: 50px;
    text-align: center;
}

.contactpageContainer{
    padding: 30px 0;
}

.contactformbox ul li .contactfromsmfield{
    width: 100%;
    height: 40px;
    border: 1px solid #00457c;
    margin: 0 0 10px 0;
    padding: 0 10px;
}

.contactfrombgfield{
    width: 100%;
    height: 140px;
    border: 1px solid #00457c;
    margin: 0 0 10px 0;
    padding: 0 10px;
}

.contactfromsubmit{
    background: #00457c;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
}

.contactaddress ul li h5{
    font-size: 30px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #00457c;
    line-height: 30px;
    text-align: left;
    padding-bottom: 0px;
}

.contactaddress ul li p{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
}

.contactaddress ul li p a{
    color: #6e6e6e;
}

.contactformbox h6{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
}

.contactpageContainer h4{
   font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 500;
    text-align: left;
    padding-bottom: 0px;
}

.contactformbox{
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.innerpageContainer{
    margin: 30px 0;
}
.innerpageContainer h2{
        font-size: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #00457c;
    line-height: 50px;
    text-align: center;
}

.innetrpagecontent p{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 10px;
}

.apparelpostsoftwarecon{
    padding: 30px 0;
}

.apparelpostsoftwarecon h2{
        font-size: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #00457c;
    line-height: 50px;
    text-align: center;
}

.softwaeproductlist ul li a{
    font-size: 17px;
    color: #fff;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 20px;
}

.softwaeproductlist ul{
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    padding: 10px;
    background: #00457c;
}

.apparelpossoftware p{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 10px;
    text-align: justify;
}

.keycapabilities h3{
        font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.keycapabilities ul li{
     font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.businessbenefits h3{
    font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.businessbenefits ul li{
    list-style: disc;
     font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.businessbenefits ul{
    padding: 0 20px;
}

.softwaeproductlist ul li::before{
    content: "\f178"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin: 0 10px;
  color: #c3a67b;
}

.softwaeproductlist ul li{
    border-bottom: 1px dotted #e9e9e9;
    padding: 10px;
}

.productcontactus ul{
    margin: 20px 0 0 0;
    background: #c3a67b;
    padding: 15px 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    border-radius: 5px;
}

.productcontactus ul li{
    display: inline-block;
}

.productcontactus ul li a{
    color: #00457c;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 50%;
}

.keyfeatures h3{
    font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.keyfeatures ul li{
        list-style: disc;
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.keyfeatures ul {
    padding: 0 20px;
}

.hardwareproduct h3{
        font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.hardwareproduct p{
     font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.customerpoledisplay p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.customerpoledisplay  h4{
         font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.posterminal h3{
         font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.posterminal p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}
.posterminal h4{
        font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.posterminal p{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}
.posterminal ul li{
    font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.receiptpossoftware h3{
        font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.receiptpossoftware h4{
        font-size: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.receiptpossoftware p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.customerpoledisplay ul li{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.receiptpossoftware ul li{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.cashdrawersoftware h4{
         font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.cashdrawersoftware p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.cashdrawersoftware h3{
         font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.cashdrawersoftware ul li{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.msreader h3{
         font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.msreader ul li{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.msreader p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.msreader h4{
         font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.posprinter h3{
    font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #00457c;
    text-align: left;
    padding-bottom: 0px;
}

.posprinter p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 5px;
    text-align: justify;
}

.hardwareproductsingle h4 {
    font-size: 24px;
    font-weight: 400;
    color: #00457c;
    font-family: "Playfair Display", serif;
    margin: 0px 0 0 0;
}

.hardwareproductsingle p{
        font-size: 17px;
    color: #6e6e6e;
    line-height: 28px;
}

.innerbannercontaiuenr img{
    width: 100%;
}

.hardwareproducvtcontaubner{
    padding: 30px 0;
}

.hardwareproducvtcontaubner h2{
    font-size: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #00457c;
  line-height: 50px;
  text-align: center;
}

.hadwaresingleprodbox h5{
    text-align: center;
    background: #c3a67b;
    color: #00457c;
    padding: 10px 25px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}