@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Calistoga&family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.calistoga-regular {
  font-family: "Calistoga", serif;
  font-weight: 400;
  font-style: normal;
}*/

* {
  margin: 0px;
  padding: 0px;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
strong,
ul,
li,
span,
ol {
  margin: 0px;
  padding: 0px;
}

body {
  font-size: 15px;
  color: #000;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  background-repeat: repeat;
  background-position: center;
}

/** **************** **/

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: #8b8b8b;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

body::-webkit-scrollbar-track {
  background: #ffffff;
}

/** **************** **/

.m0 {
  margin: 0px;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt80 {
  margin-top: 80px;
}

/**/
.p0 {
  padding: 0px;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pt60 {
  padding-top: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt100 {
  padding-top: 100px;
}

/** **************** **/

.container {
  max-width: 1350px;
}

/** **************** **/


.fixed-top {
  position: fixed;
  top: 0px;
  display: block;
  background: #fff;
  z-index: 9;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 15%);
}
.header-scrolled {
  box-shadow: 0 0 2px 2px #00000014;
}
.header_menu {
  padding: 0px 0 0px;
  display: flex;
  position: relative;
}
.logo {
  position: relative;
  left: auto;
  top: auto;
  background: #fff;
  padding: 5px 30px 5px 0;
}
#header .logo img {
  width: 260px;
  height: auto;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.main-nav > ul > li {
  position: initial;
  float: left;
  padding: 30px 20px;
}
.main-nav > ul > li:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  top: -57px;
  left: 50%;
  background: #f5ae15;
  transition: 0.2s;
  opacity: 0;
}
.main-nav > ul > li:hover:after {
  top: -35px;
}
.main-nav > ul > li:last-child:after {
  display: none;
}
.main-nav > ul > li:last-child {
  position: relative;
}
.main-nav a {
  display: block;
  position: relative;
  color: #000;
  transition: 0.3s;
  font-size: 16px;
  font-weight:400;
  letter-spacing: 0.5px;
}
.main-nav a:hover,
.main-nav li:hover > a {
  color: #ffcb00;
  text-decoration: none;
}
.main-nav .drop-down.pos-rel ul {
  display: block;
  position: absolute;
  left: 0;
  /*width: 285%!important;*/
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  border: 4px solid #f4d506;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.main-nav .drop-down.pos-rel:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down.pos-rel li {
  min-width: 240px;
  position: relative;
}
.main-nav .drop-down.pos-rel ul li a {
  padding: 10px 12px;
  font-size: 14px;
  color: #000;
  border-bottom: 1px solid #eeeeee94;
  text-shadow: 0 0 black;
}
.main-nav .drop-down.pos-rel ul li:last-child a {
  border-bottom: none;
}
.main-nav .drop-down.pos-rel ul a:hover,
.main-nav .drop-down.pos-rel ul .active > a,
.main-nav .drop-down.pos-rel ul li:hover > a {
  color: #fff;
  background: #12114a;
}
.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 5px;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
  margin-top: 10px;
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
.megha-menu {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: calc(100% + 30px);
  left: 0;
  background: #fff;
  opacity: 0;
  overflow: hidden;
  /*box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);*/
  transition: ease all 0.3s;
  z-index: 99;
  visibility: hidden;
  padding: 40px;
}
.main-nav .drop-down:hover > .megha-menu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.megha-box {
  text-align: center;
  border: 1px solid #dfdfdf82;
  border-radius: 10px;
  background: #eef3f7;
}
.megha-box:hover{
  background: #090f5b;
}
.megha-box img{
  height: 60px;
}
.megha-box a{
  padding: 15px;
}
.megha-box a h4 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  font-weight: normal;
  color: #000;
  text-transform: capitalize;
  text-align: center;
}
.megha-box a:hover h4{
  color: #ffcb00;
}

.main-nav > ul {
  position: initial;
}
.main-nav > ul > li:last-child {
  border-right: 0px;
  margin-right: 0px;
}
.pay_now_btn{
  padding: 25px 15px !important;
}
.pay_now_btn a {
  background: #ffcb00;
  color: #fff;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  margin-top: -2px;
}
.pay_now_btn:hover a{
  background: #efbf03;
  color: #fff !important;
}
/**/
 

/*******************/

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  /*overflow-y: auto;*/
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #090f5b;
  transition: 0.4s;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #f4d506;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 24px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 20px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #f4d506;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #f4d506;
}



/** **************** **/
/*form*/

.modal-body {
  padding:0px;
  background: rgba(171, 172, 174, 0.102);
}
.modal-header {
  text-align: center;
  background: #090f5b;
  color: #ffff;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
}
h6.modal-title {
  color:#fff;
  font-size:20px;
  text-align:center;
  letter-spacing:0.25px;
  font-weight:500;
  padding-left:20px;
}
.modal-content{
  background-color: #f2f3f8;
}
.modal-content .close {
  opacity:1;
  padding:0px;
  margin:0px;
}
.modal-content .close span i {
  position: absolute;
  right: 16px;
  top: 0;
  width: 65px;
  height: 40px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-right: 0;
  color: #ffcb00;
  border-radius: 50px 0px 0px 50px;
  cursor: pointer;
}
.request_form .form-group input {
  display: block;
  width: 100%;
  color: #000000;
  font-weight: 500;
  border: 0px;
  letter-spacing: 0.25px;
  padding: 12px 10px;
  font-size: 15px;
  background: #fff;
  border-radius: 5px;
}
.request_form .form-group select {
  display: block;
  width: 100%;
  color: #000000;
  font-weight: 500;
  border: 0px;
  letter-spacing: 0.25px;
  padding: 12px 10px;
  font-size: 15px;
  background: #fff;
  border-radius: 5px;
}
.request_form .form-group textarea {
  display: block;
  width: 100%;
  color: #000000;
  font-weight: 500;
  border: 0px;
  letter-spacing: 0.25px;
  padding: 12px 10px;
  font-size: 15px;
  background: #fff;
  border-radius: 5px;
  min-height:80px;
}
.enquire-pad-box{
  padding: 30px;
}
.submit_btn {
  font-size: 15px;
  padding: 12px 25px;
  background: #ffcb00;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
  border: 0px;
}
.submit_btn:hover {
  border:0px;
  color:#fff;
  background:#1d1d1f;
}


/** **************** **/

.carousel {
    margin-top: 85px;
}
/*Only Fade Slide*/
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {

  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}

/*Only Fade Slide End*/
.carousel {
  overflow: hidden;
}

.carousel .carousel-control {
  background: none;
  top: 45%;
  font-size: 30px;
  text-align: center;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: absolute;
}

.carousel .carousel-control-next {
  right: 2%;
}

.carousel .carousel-control-prev {
  left: 2%;
}

.carousel .carousel-control-next span {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}

.carousel .carousel-control-prev span {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}

.carousel:hover .carousel-control-next span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.carousel:hover .carousel-control-prev span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.carousel .carousel-control span {
  color: #fff;
  background-color: rgb(50 52 51 / 50%);
  box-shadow: 0 0 0 10px rgb(50 52 51 / 50%);
  height: 30px;
  width: 30px;
  z-index: 121;
  line-height: 30px;
  text-align: center;
  position: absolute;
  border: 0px;
}

.carousel .carousel-control span:hover {
  background-color: #1e1e1e;
  box-shadow: 0 0 0 10px #1e1e1e;
}

.carousel .carousel-item .caption {
  background-color: rgb(0 0 0 / 20%);
  padding: 40px;
  animation-duration: 1s;
  animation-delay: 1s;
}

.carousel-indicators {
  position: absolute;
  left: 0;
  z-index: 15;
  width: 100%;
  padding-left: 0;
  margin-left: 0px;
  text-align: center;
  list-style: none;
  bottom: 40px;
  justify-content: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 30px;
  height: 5px;
  margin: 0 5px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffffff3b;
  border: 1px solid #ffffff00;
  border-radius: 5px;
}

.carousel-indicators .active {
  background-color: #f26121;
  border: 1px solid #ffffff00;
}

.carousel-caption {
  text-align: right;
  text-shadow: none;
  right: 0;
  bottom: 0;
  padding-bottom: 0;
}

/** **************** **/

.hm-attech {
  background-image: url(../images/layout.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 160px 0;
  position: relative;
}

.hm-attech:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 40%;
  left: 0;
  top: 0;
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}

.hm-attech-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hm-attech-heading h1,
.hm-attech-heading h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 10px;
}

.hm-attech-heading p {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding-bottom: 40px;
}

.hm-attech-heading a {
  white-space: nowrap;
  border-radius: 0.375rem;
  padding-left: 2.2rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: 1px solid #ffcb00;
  position: relative;
  background: #ffcb001c;
}

.hm-attech-heading a:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #ffcb00;
  top: 50%;
  left: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hm-attech-heading a:hover {
  border: 1px solid #ffcb00;
  background: #ffcb00;
  color: #090f5b;
}

.hm-attech-heading a:hover:after {
  background: #090f5b;
}

/** **************** **/

.hm-seller {
  padding: 100px 0;
}

.hm-seller-head {
  padding-bottom: 40px;
}

.hm-seller-head h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  padding-bottom: 10px;
}

.hm-seller-head p {
  color: #677078;
  font-size: 16px;
}

.hm-seller-box {
  overflow: hidden;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
}

.hm-seller-box img {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1, 1) translateZ(0px);
  transition: 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.hm-seller-box:hover img {
  transform: scale(1.1, 1.1) translateZ(0px);
}

.hm-seller-box1 {
  height: 640px;
}

.hm-seller-box2 {
  height: 304px;
}

.hm-seller-box4 {
  height: 304px;
  margin-top: 30px;
}

.hm-seller-box4 img {
  top: -60px;
}

.hm-seller-name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #fff;
  border-radius: 10px;
  display: inline-block;
  padding: 9px 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  height: auto;
}

/** **************** **/
/*
.hm-point {
  margin-bottom: 100px;
}

.hm-point-box {
  padding-left: 65px;
  position: relative;
}

.hm-point-box img {
  position: absolute;
  left: 0;
  top: 8px;
}

.hm-point-box span {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.hm-point-box p {
  color: #677078;
  font-size: 15px;
  line-height: 18px;
}*/

.hm-why{
  padding: 0px 0 80px;
}

.hm-why-dtl{
  margin-bottom: 30px;
}

.hm-why-dtl h2{
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  padding-bottom: 10px;
}
.hm-why-dtl p{
  color: #677078;
  font-size: 16px;
  padding: 5px 0;
}

 
.hm-why-box{
  text-align: center;
  padding: 20px;
}

.hm-why-icon {
  text-align: center;
  width: 90px;
  height: 90px;
  line-height: 80px;
  border: 1px solid #ffcb00;
  border-radius: 50%;
  margin: 0 auto;
}

.hm-why-icon img{
  height: 50px;
}

.hm-why-box span {
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-top: 15px;
}

/** **************** **/

.hm-map {
  padding: 100px 0;
  background: #eef3f7;
  position: relative;
}

.hm-map:before {
  content: "";
  background-image: url(../images/Vector-1.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hm-map-head {
  padding-bottom: 40px;
}

.hm-map-head h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  padding-bottom: 10px;
}

.hm-map-head p {
  color: #677078;
  font-size: 16px;
}

.hm-map-head p span {
  font-weight: 600;
}

.hm-map-list ul li {
  margin: 40px 0;
  position: relative;
}

.hm-map-list ul li:nth-child(1) {
  margin-top: 0;
}

.hm-map-list ul li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  left: 0;
  bottom: -20px;
}

.hm-map-list ul li:nth-child(4):after {
  display: none;
}

.hm-map-list ul li span {
  font-size: 30px;
  font-weight: 600;
}

.hm-map-list ul li p {
  color: #677078;
  font-size: 16px;
}

/** **************** **/

.hm-news {
  padding: 100px 0;
}

.hm-news-head {
  padding-bottom: 40px;
}

.hm-news-head h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  padding-bottom: 10px;
}

.hm-news-head p {
  color: #677078;
  font-size: 16px;
}

.bt-post--inner {
  height: 100%;
  position: relative;
  background: #eef3f7;
  border-radius: 20px;
  overflow: hidden;
}

.bt-post--featured {
  padding-bottom: calc(0.9 * 100%);
}

.bt-post--featured a {
  height: 100%;
  display: block;
}

.bt-post--featured .bt-cover-image {
  padding-bottom: calc(0.9 * 100%);
}

.bt-post--featured .bt-cover-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 48%;
  transition: height 0.5s ease-in-out;
}

.bt-post--featured .bt-cover-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.bt-post--featured .bt-cover-image img {
  transform: scale(1);
  transition: all 3s cubic-bezier(0.11, 0.52, 0.53, 0.79) 0s;
}

.bt-cover-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin: 0;
}

.bt-post--inner:hover .bt-post--featured .bt-cover-image {
  height: 100%;
}

.bt-post--content {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.bt-post--meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bt-post--publish {
  color: #677078;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  padding-right: 12px;
  position: relative;
}

.bt-post--publish::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #67707847;
  right: 0;
}

.bt-post--category {
  color: #677078;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.bt-post--category a {
  color: #5a6167;
}

.bt-post--title {
  font-size: 32px;
  color: #0c2c48;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  word-break: break-word;
  margin: 8px 0 12px;
}

.bt-post--title a {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bt-post--inner:hover .bt-post--featured .bt-cover-image::before {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.bt-post--button a {
  color: #677078;
  font-size: 16px;
}

.bt-post--button a i {
  font-size: 12px;
}

.bt-post--inner:hover .bt-post--publish {
  color: #fff;
  transition: 0.8s;
}

.bt-post--inner:hover .bt-post--publish::before {
  background: #fff5;
  transition: 0.8s;
}

.bt-post--inner:hover .bt-post--category a {
  color: #fff;
  transition: 0.8s;
}

.bt-post--inner:hover .bt-post--title a {
  color: #fff;
  transition: 0.8s;
}

.bt-post--inner:hover .bt-post--button a {
  color: #ffe04a;
  transition: 0.8s;
}

/** **************** **/


.ftr-top{
  background: #090f5b;
  padding: 80px 0;
}
.ftr-heading{
  text-align: center;
}
.ftr-heading h3{
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 10px;
}
.ftr-heading p{
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding-bottom: 40px;
}

.ftr-heading a {
  white-space: nowrap;
  border-radius: 0.375rem;
  padding-left: 2.2rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: 1px solid #ffcb00;
  position: relative;
  background: #ffcb001c;
}

.ftr-heading a:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #ffcb00;
  top: 50%;
  left: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ftr-heading a:hover {
  border: 1px solid #ffcb00;
  background: #ffcb00;
  color: #090f5b;
}

.ftr-heading a:hover:after {
  background: #090f5b;
}

footer{
  padding: 80px 0;
}
.ftr-profile{
  padding-right: 40px;
  padding-bottom:25px;
}
.ftr-profile img{
  height: 80px;
  display: block;
  margin-bottom: 20px;
}
.ftr-profile span{
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 5px;
  display: block;
}
.ftr-profile p{
  color: #677078;
  font-size: 16px;
  line-height: 1.6;
}
.certicate_icon {
	display: flex;
	margin-bottom:10px;
}
.certicate_icon img {
    width: 30px;
    margin-right: 15px;
}
.certicate_txt p {
    color: #677078;
    font-size: 16px;
    line-height: 1.6;
}
.ftr-link h4{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 10px;
}
.ftr-link ul li{
  line-height: 2.5;
}
.ftr-link ul li a{
  color: #677078;
  font-size: 16px;
}


.mail-list {
  display: flex;
  margin-right: 25px;
  align-items: self-start;
  margin-bottom: 25px;
}
.mail-list img {
  width: 30px;
  margin-right: 15px;
}
.mail-list h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
.mail-one a {
  color: #7f7f7f;
  font-size: 16px;
  display: block;
}
.mail-one p{
  color: #677078;
  font-size: 16px;
  line-height: 1.6;
}



.ftr-btm{
  border-top: 1px solid #f5f5f5;
  padding-top: 10px;
  padding-bottom: 10px;
}
.social-icon ul {
  text-align: left;
}

.social-icon ul li {
  width: 42px;
  height: 42px;
  display: inline-block;
  padding: 4px;
  border: thin solid #00000030;
  border-radius: 50%;
  margin-left: 4px;
}

.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(ellipse at center,
      rgb(255 255 255 / 35%) 0,
      rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center,
      rgb(255 255 255 / 35%) 0,
      rgba(0, 0, 0, 0) 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.social-icon li {
  display: inline-block;
}

.social-icon li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #090f5b;
  display: block;
  padding: 5px 0;
  text-align: center;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.social-icon li i {
  font-size: 17px;
  padding-top: 3px;
  color: #fff;
} 

.hvr-float-shadow:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.social-icon li.facebook:hover a {
  background: #3b5998;
}

.social-icon li.instagram:hover a {
  background: #cd4a72;
}

.social-icon li.linkedin:hover a {
  background: #007ab9;
}

.social-icon li.youtube:hover a {
  background: #ff0000;
}

.social-icon li.twitter:hover a {
  background: #000;
}

.social-icon li.facebook:hover i,
.social_icon li.instagram:hover i,
.social_icon li.linkedin:hover i,
.social_icon li.youtube:hover i {
  color: #fff;
}

.hvr-float-shadow:hover:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.ftr-btm-p p{
  text-align: right;
  color: #677078;
  font-size: 16px;
  line-height: 1.6;
}
.ftr-btm-p p a{
  color: #677078;
}
.ftr-btm-p p span{
  color: #000;
  font-weight: 600;
}

/** **************** **/

/** ********Vishal******** **/
.hero-heading h1 {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.hero-section {
  background:
    linear-gradient(rgb(9 15 91 / 65%), rgb(60 53 49 / 65%)),
    url(../images/hero-banner-kitchenware.jpg);
  background-size: cover;
  background-position: center;
  padding: 85px 0 150px;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 75px;
}

.hero-shape img {
  position: absolute;
  bottom: 0;
}

.hero-breadcrumb li+li {
  margin-left: 10px;
}

.hero-breadcrumb li span {
  color: #d7d1cf;
}

.hero-breadcrumb ul {
  display: block;
  text-align: center;
}

.hero-breadcrumb li a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-breadcrumb li {
  display: inline-block;
  color: #ffcb00;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.categ-section-main {
  padding: 60px 0 40px;
}

.category-heading h2 span {
  text-decoration: underline;
  display: inline-block;
  margin-left: 5px;
}

.category-heading h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  padding-bottom: 10px;
}

.category-heading {
  margin-bottom: 40px;
}

.category-prod-box:hover .prod-title h4 {
  margin-bottom: 15px;
}

.category-prod-box .prod-title h4 {
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
  color: #212529;
  transition: all 0.4s ease-in-out;
}

/* --- Wrapper --- */
.categ-wrapper {
  height: 420px;
}

.categ-wrapper:hover {
  position: relative;
  z-index: 1;
}

.category-prod-box {
  position: relative;
  padding: 20px;
  min-height: 370px;
  margin-bottom: 45px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition:
    padding 0.4s ease-in-out,
    background-color 0.4s ease-in-out;
}

.category-prod-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  border-radius: inherit;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.category-prod-box:hover {
  padding-bottom: 45px;
}

/* .category-prod-box:hover::before {
  opacity: 1;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-color: rgba(0, 0, 0, 0.05);
} */
.prod-img {
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.6s ease;
}

.prod-img img {
  display: block;
  width: 100%;
  transition: transform 3s ease;
}

.category-prod-box:hover .prod-img {
  background-color: #e5e5e5;
}

.category-prod-box:hover .prod-img img {
  transform: scale(1.12);
}

.category-prod-box .view-btn,
.prod-title {
  text-align: center;
}

.view-btn i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #ffd522;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  left: calc(50% - 20px);
  bottom: 12px;
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
}

.category-prod-box:hover .view-btn i {
  transform: scale(1);
}

.prod-row-box {
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding-top: 40px;
  border-radius: 15px;
  padding-bottom: 40px;
}

.prod-inner-main {
  padding: 60px 0;
  /* margin: 60px 0; */
  background-image:
    linear-gradient(#ffffffc2 10%, transparent 50%), url(../images/bg-1.jpg);
  background-size: cover;
  background-position-y: 22px;
  background-position-x: 4px;
  background-repeat: no-repeat;
  /* background-size: cover; */
}

.prod-img-box {
  position: relative;
  padding: 20px;
  background: #ffffff00;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.prod-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px, #393b412f 0%, #fff 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.prod-img-box img {
  transition: scale 0.4s ease;
}

.prod-img-box:hover img {
  scale: 1.02;
}

.prod-img-box:hover::before {
  opacity: 1;
}

.prod-content-box .prod-title h2 {
  font-size: 32px;
  color: #000;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  text-align: left;
  padding-bottom: 10px;
}

.prod-content-box .prod-desc p {
  color: #677078;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 15px;
}

.enq-btns a img {
  width: 30px;
  margin-right: 5px;
}

.enq-btns a:last-child {
  color: #fff;
  background: linear-gradient(to right, #090f5b, #000daf);
}

.enq-btns {
  margin-top: 20px;
}

.enq-btns a {
  display: inline-block;
  /* white-space: nowrap; */
  border-radius: 10px;
  padding: 12px 20px;
  /* letter-spacing: 0; */
  /* line-height: 1.5rem; */
  font-weight: 500;
  font-size: 16px;
  color: #090f5b;
  background: linear-gradient(to right, #ffcb00, #ffe571);
  margin-right: 10px;
}

.enq-btns a:hover {
  background: linear-gradient(to right, #ffcb00, #ffe571);
  color: #090f5b;
}

.enq-btns a:first-child:hover {
  background: linear-gradient(to right, #ffe571, #ffcb00);
  color: #090f5b;
  transition: all 0.4s ease-in-out;
}

.prod-inn-dtls {
  padding: 60px 0 50px;
}

.prod-table table thead th {
  border-bottom: 0;
  padding: 15px 15px;
}

.prod-table thead th {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
}

.prod-table thead {
  background: #090f5b;
  border-top: 1px solid #090f5b;
  border-left: 1px solid #090f5b;
  border-right: 1px solid #090f5b;
}

.prod-table table tbody tr:last-child {
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 0px 0px 1px #f1f1f1;
}

.prod-table .small-table tbody {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 0px 0px 1px #f1f1f1;
}

.prod-table table tbody td a {
  color: #090f5b;
  font-weight: 600;
  font-size: 15px;
}

.prod-table table tbody tr:hover {
  background-color: #eef3f7;
}

.prod-table table tbody td {
  padding: 15px 15px;
  color: #677078;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #f1f1f1;
}

.prod-table table {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.product-details {
  margin-bottom: 40px;
  border-radius: 20px;
  padding: 5px;
  overflow: hidden;
  box-shadow: 0 0px 10px 1px rgb(12 20 56 / 13%);
  height: max-content;
  margin-right: 35px;
}

.prod-dtls-box h4 {
  font-size: 28x;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 10px;
}

/*.prod-dtls-box h3::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 44px;
  width: 55px;
  height: 3px;
  background-color: #ffcb00;
}*/
.prod-dtls-box h3 {
  /* position: relative; */
  font-size: 25px;
  font-weight: 600;
  text-decoration: underline;
  padding-bottom: 15px;
}

.prod-dtls-box {
  margin-bottom: 30px;
}

.prod-dtls-box p {
  color: #677078;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 10px;
}

.prod-dtls-box ul li {
  color: #677078;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  padding: 5px 0;
  position: relative;
  padding-left: 17px;
}

.prod-dtls-box ul.bullet li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 13px;
  width: 8px;
  height: 8px;
  background-color: #ffcb00;
  transform: rotate(45deg);
}

.prod-dtls-box .bullet {
  padding-bottom: 15px;
}

.product-details tr td .no-link-logo::after {
  display: none;
}

.product-details tr td a img {
  display: flex;
  place-self: center;
}

/** **************** **/
/** **************** **/


.contacts-form-wrapper select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d9d5d5;
  background-color: #f8f8f8;
  border-radius: 10px;
  color: #000;
  margin-bottom: 2rem
}

.contact-sec {
  padding: 70px 0;
  background-color: #eef3f7;
}

.cont-head h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.cont-info-box {
  padding: 40px 30px;
  border-right: 2px solid #cbcbcb1f;
  text-align: center;
}

.cont-info-box img {
  width: 65px;
  background-color: #034aad;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 5px;
}

.cont-info-box h4 {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.25px;
  font-size: 25px;
  margin: 15px 0px;
}

.cont-info-box p a {
  color: #ffffff;
  font-size: 16px;
  margin-top: 5px;
  font-weight: 300;
  display: block;
}

.cont-wrapper {
  background-color: #090f5b;
  border-radius: 15px;
  padding: 40px 40px;
}

.cont-head {
  padding-bottom: 20px;
  border-bottom: 2px solid #cbcbcb1f;
}

.col-lg-4:last-child .cont-info-box {
  border-right: none;
}

.cont-form-sec {
  padding: 70px 0 70px;
  /* background-color: #eef3f7; */
}

.con-form-head {
  margin-bottom: 30px;
}

.con-form-head h3 {
  font-size: 32px;
  text-decoration: underline;
  color: #000;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.con-form-head p {
  color: #677078;
  text-align: center;
  font-size: 16px;
  padding-inline: 100px;
  margin-top: 15px;
}

.contacts-form-wrapper {
    padding: 10px 0 0 40px;
    border-radius: 0 10px 10px 0;
    color: #fff;
}

.contacts-form-wrapper label {
  color: #090f5b;
  display: block;
  font-weight: 500;
  letter-spacing: 0.25px;
  font-size: 15px;
  padding-top: 25px;
}

.contacts-form-wrapper input,
.contacts-form-wrapper textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d9d5d5;
  background-color: #fafafa;
  border-radius: 10px;
  color: #000;
  margin-bottom: 1rem;
}

.contacts-form-wrapper input:focus,
.contacts-form-wrapper textarea:focus {
  outline: none;
  border-color: #090f5b;
}

.contacts-form-wrapper input::placeholder,
.contacts-form-wrapper textarea::placeholder {
  color: #696969;
}

.contact-form-lst {
    padding-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-form-lst input {
  width: auto !important;
  margin-bottom: 0rem;
}
.contact-form-lst span {
    font-size: 14px;
    font-weight: 500;
    color: #33383d;
	line-height: 15px;
    letter-spacing: 0.5px;
    padding-left: 10px;
    display: block;
    text-align: left;
    padding-bottom: 0px;
}

.btn-submit {
  background-color: #fed910;
  color: #090f5b;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  /* display: flex; */
  /* place-self: center; */
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #090f5b;
  color: #fff;
}

.con-bg-img img {
  width: 100%;
  max-height: 454px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 0 0 10px;
}

.cont-wrapper-two {
  overflow: hidden;
  padding-inline: 80px;
  /* background-color: #eef3f7; */
  /* padding: 44px; */
}

.con-bg-img {
  min-height: 454px;
  overflow: hidden;
}

.map-container {
  padding: 70px 0 70px;
}

.map-container iframe {
  border-radius: 25px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 25px -6px;
}

.about-us-sec {
  padding: 70px 0 70px;
}

.head-about h2 {
  text-align: center;
  text-decoration: underline;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.abt-dtls p {
  color: #677078;
  font-size: 16px;
  margin-top: 15px;
  text-align: justify;
}

/* **** */
.abt-img-box ul {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 40px;
}

.abt-img-box ul li {
  text-align: center;
}

.abt-img-box ul li .prod-adv-carg-circle {
  margin: 0 auto 15px;
  width: 235px;
  height: 235px;
  line-height: 139px;
  border-radius: 100%;
  border: 1px dashed #ccc;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abt-img-box ul li .prod-adv-carg-circle .prod-adv-carg-icon {
  width: 70px;
}

/* .abt-img-box ul li .prod-adv-carg-circle .prod-adv-carg-img img {
  filter: grayscale(1);
  transition: all 0.6s;
}
.abt-img-box ul li:hover .prod-adv-carg-circle .prod-adv-carg-img img {
  filter: grayscale(0);
} */
.abt-img-box ul li:nth-child(2) .prod-adv-carg-circle .prod-adv-carg-img {
  background-color: #fff9df;
}

.abt-img-box ul li:nth-child(4) .prod-adv-carg-circle .prod-adv-carg-img {
  background-color: #fff9df;
}

.abt-img-box ul li .prod-adv-carg-circle .prod-adv-carg-img {
  position: absolute;
  width: 210px;
  height: 210px;
  align-content: center;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
  background-color: #eef3f7;
}

.abt-img-box ul li:hover .prod-adv-carg-circle .prod-adv-carg-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-content: center;
}

.abt-img-box ul li span {
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.abt-img-box ul li p {
  font-size: 16px;
  line-height: 28px;
  color: #5b5b5b;
}

.abt-img-box ul li p a {
  display: block;
  font-size: 12px;
  line-height: 23px;
  color: #5b5b5b;
  text-decoration: underline;
  position: relative;
}

.abt-img-box ul li p a i {
  position: relative;
  font-size: 25px;
}

.about-us-img-box img {
  border-radius: 50px;
  margin-top: 35px;
  margin-bottom: 20px;
  width: 90%;
}

.about-us-img-box {
  text-align: center;
}

.privacy-policy-sec {
  padding: 70px 0 70px;
}

.head-privacy-policy h2 {
  text-decoration: underline;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.privacy-policy-dtls p {
  color: #677078;
  font-size: 16px;
  margin-top: 15px;
}

/** **************** **/

.hm-about{
  padding: 100px 0;
}
.hm-about-head h2{
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  padding-bottom: 10px;
}
.hm-about-head h3{
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 10px;
  color: #090f5b;
}
.hm-about-dtl p{
  color: #677078;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hm-about-dtl a {
  white-space: nowrap;
  border-radius: 0.375rem;
  padding-left: 2.2rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  border: 1px solid #ffcb00;
  position: relative;
  background: #ffcb001c;
}

.hm-about-dtl a:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #ffcb00;
  top: 50%;
  left: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hm-about-dtl a:hover {
  border: 1px solid #ffcb00;
  background: #ffcb00;
  color: #090f5b;
}

.hm-about-dtl a:hover:after {
  background: #090f5b;
}

/** **************** **/

.hm-prod{
  padding-bottom: 100px;
}
.hm-prod-box{
  box-shadow: 0 12px 20px 0 #00000014;
  border-radius: 20px;
  overflow: hidden;
}
.hm-prod-name{
  padding: 20px;
  text-align: center;
}
.hm-prod-name span{
  font-size: 16px;
  letter-spacing: 0.50px;
  color: #000;
}

/** **************** **/

.whatsapp-fixed {
  z-index: 10000;
}

.whatsapp-fixed .Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  /*   box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199); */
  background-color: #00d757;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 2em transparent;
}

.whatsapp-fixed .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.whatsapp-fixed .text {
  position: absolute;
  right: 10px;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition-duration: 0.3s;
}

.whatsapp-fixed .Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.whatsapp-fixed .Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.whatsapp-fixed .Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
}

.whatsapp-fixed .Btn:active {
  transform: translate(2px, 2px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #00d757;
  }
}

.whatsapp-fixed {
  position: fixed;
  right: 32px;
  bottom: 15px;
}

.header_tp_dtl p {
  font-weight: 300;
  letter-spacing: 0.25px;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.prod-multi-box {
    height: 100%;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 3px 2px 10px 5px #798c9c21;
}

.form-group .iti__selected-flag {
	height: 100%;
}

.quick_connect {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.quick_connect h6 {
  position: relative;
  padding: 15px 25px;
  background: #ffcb00;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
}
.quick_connect i {
  font-size: 30px;
  color: #ffcb00;
  position: absolute;
  right: 15px;
  bottom: -10px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 18px;
  right: 185px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.whatsapp-btn i {
  color: #fff;
  font-size: 28px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
