@charset "UTF-8";
/* 
How to Use
@include border(10px, 10px, 10px, 10px, transparent, transparent, transparent, #000000 );
*/
/* 
 USAGE:
 -- Dafault corner is set in variable.scss file under variable name '$allCornerDefault' -- value is 5 by default
 -- Deafault Unit is set in variable.scss file under variable name '$defaultSymbol' -- unit is px by default
 For percentage or any symbol based measurement we have to use single quotes.
 For text based mesurement we can write it with or without single quotes.

 EXAMPLE: 
 @include allRound(20);
 @include allRound(20,'%');
 @include allRound(20,em);

*/
/* 
 USAGE:
 Same as allRadius()

 EXAMPLE: 
 @include fourRadius();
 @include fourRadius(10,10,10,10);
 @include fourRadius(10,10,10,10,'%');
 @include fourRadius(10,10,10,10,em);

*/
/* 
 USAGE:
 Same as allRadius()

 EXAMPLE: 
 @include tlRadius();
 @include tlRadius(10, '%');
 @include tlRadius(10, em);

*/
/* 
 USAGE:
 Same as allRadius()

 EXAMPLE: 
 @include trRadius();
 @include trRadius(10, '%');
 @include trRadius(10, em);

*/
/* 
 USAGE:
 Same as allRadius()

 EXAMPLE: 
 @include brRadius();
 @include brRadius(10, '%');
 @include brRadius(10, em);

*/
/* 
 USAGE:
 Same as allRadius()

 EXAMPLE: 
 @include blRadius();
 @include blRadius(10, '%');
 @include blRadius(10, em);

*/
/*
How to Use 
@include boxS(10px, 10px, 5px, 0px, rgba(0,0,0,0.75));
1. Horizontal Length
2. Vertical Length
3. Blur Radius
4. Spread Radius
5. Shadow Color
*/
/*
How to Use 
@include insetS(10px, 10px, 5px, 0px, rgba(0,0,0,0.75));
1. Horizontal Length
2. Vertical Length
3. Blur Radius
4. Spread Radius
5. Shadow Color
*/
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/*
@mixin res($view) {
   @media (min-width: map-get($resVar, $view)) {
       @content;
   }
}
*/
/* 
 Usage
 @include lg{
    Put your CSS Here
 }
 */
/* 
 Usage
 @include print {
    Put your CSS Here
 }
 */
/*
 Usage
 @include custom(850px, 1190px){
    Put your CSS Here
 }
 */
* {
  word-wrap: break-word !important;
}

body {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3c3c3c;
}

.div-float {
  float: left;
  width: 100%;
  height: auto;
}

.div-flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.container {
  max-width: 1200px;
}

a:focus, button:focus, div:focus {
  -webkit-highlight: none !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none !important;
  outline: 0px !important;
}

.boxes-card .boxes-card-img, .insta-feed, .image-section, .home-card, .home-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.general-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  min-width: 136px;
  color: #fff;
  background-color: #df3b2f;
  text-transform: uppercase;
  border: none;
  border-radius: 5px 5px 5px 5px;
  transition: all 0.3s ease 0s;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 0 15px;
}
.general-btn:hover {
  background-color: #000000;
  color: #fff;
  text-decoration: none;
}

.general-btn-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  min-width: 136px;
  color: #000000;
  background-color: #FFFFFF;
  text-transform: uppercase;
  border: none;
  border-radius: 5px 5px 5px 5px;
  transition: all 0.3s ease 0s;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 0 15px;
}
.general-btn-2:hover {
  background-color: #000000;
  color: #fff;
  text-decoration: none;
}

input.form-control {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  height: 42px;
  background-color: #F2F2F2;
  border: 1px solid #DDDDDD;
  border-radius: 5px 5px 5px 5px;
  box-shadow: none;
}
input.form-control:focus {
  color: #000;
  background-color: #F2F2F2;
  border-color: #1d1d1d;
  box-shadow: none;
}

select.form-control {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  height: 42px;
  background-color: #F2F2F2;
  border: 1px solid #DDDDDD;
  box-shadow: none;
  border-radius: 5px 5px 5px 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/images/carret-down.png?7b6912d67cea1d9af291c211d674216a);
  background-repeat: no-repeat;
  background-position: 95% center;
}
select.form-control.select-arrow {
  background-position: 96.5% center;
}
select.form-control:focus {
  color: #000;
  background-color: #F2F2F2;
  border-color: #1d1d1d;
  box-shadow: none;
}

.section-heading {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}

.error {
  color: red;
  margin: 3px 0 0 0;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: left;
}

.quantity-input-cont {
  margin-top: 12px;
  width: 88px;
  border: 1px solid #aaaaaa;
}
.quantity-input-cont .input-number {
  width: 40px;
  height: 32px !important;
  padding: 5px 5px 0;
  vertical-align: top;
  text-align: center;
  outline: none;
  border: none;
}
.quantity-input-cont .input-number-decrement,
.quantity-input-cont .input-number-increment {
  display: inline-block;
  width: 18px;
  line-height: 38px;
  color: #3e3e3e;
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.quantity-input-cont .input-number-decrement {
  border: none;
}
.quantity-input-cont .input-number-increment {
  border: none;
}

.blog-detail-section {
  max-width: 1375px;
  margin: 0 auto;
}

.multi-radio {
  width: 100%;
}
.multi-radio .form-group {
  float: left;
  margin-right: 1rem;
}
.multi-radio .form-group:last-child {
  margin-right: 0;
}

.consult-frm {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}

.quantity-input-cont {
  -webkit-highlight: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.quantity-input-cont * {
  -webkit-highlight: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

select.form-control.red-select {
  color: #FFF;
  background-color: #df3b2f;
  background-image: url(/images/carret-down-white.png?3653e0341d632efc0b3995ffb2b63e13);
}
select.form-control.red-select:focus {
  color: #FFF;
  background-color: #df3b2f;
}

.color-blue {
  color: #1975E8 !important;
}

.store-hours {
  margin: 30px 0 -8px 0;
}
.store-hours .footer-head {
  margin: 0 0 8px 0 !important;
}
.store-hours p {
  margin-bottom: 0;
}

.full-content-sec {
  padding: 20px 0 45px 0;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: center;
}

.toaster {
  opacity: 1;
}

#toast-container > div {
  opacity: 1 !important;
}

.order-summary-price .right-order-summary {
  margin: auto;
  width: 80%;
}
.order-summary-price .right-order-summary a {
  float: right;
}
.order-summary-price .right-order-summary .hr-sp-class {
  float: left;
  width: 100%;
  margin-left: 0;
}

.track-head-btn {
  height: 30px;
  padding: 5px 6px;
  margin-left: 6px;
}
.track-head-btn:hover {
  color: #fff;
  background-color: #df3b2f;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .mob-right-nav.navbar {
    left: 45% !important;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .mob-right-nav.navbar {
    left: 44% !important;
  }

  .track-head-btn {
    padding: 5px 3px !important;
    min-width: 116px !important;
    font-size: 11px !important;
    margin-left: 0 !important;
  }

  header .navbar .navbar-right .nav-item:first-child {
    padding: 5px 5px 5px 0 !important;
  }

  header .navbar .navbar-right .nav-item {
    padding: 5px 5px !important;
  }
}
header {
  background-color: #000000;
}
header .navbar {
  padding: 0 0;
  height: 86px;
}
header .navbar .navbar-toggler {
  background-image: url(/images/navbar.png?be3b65f0b72e0bbf15130352e5448c31);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 18px;
}
header .navbar .navbar-left .nav-item {
  padding: 5px 15px;
}
header .navbar .navbar-left .nav-item .nav-link {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  padding: 0 0;
}
@media screen and (max-width: 1210px) {
  header .navbar .navbar-left .nav-item .nav-link {
    font-size: 12px;
  }
}
header .navbar .navbar-left .nav-item .dropdown-item {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1210px) {
  header .navbar .navbar-left .nav-item .dropdown-item {
    font-size: 12px;
  }
}
header .navbar .navbar-right .nav-item {
  padding: 5px 10px;
  position: relative;
}
header .navbar .navbar-right .nav-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #333333;
}
header .navbar .navbar-right .nav-item:first-child {
  padding: 5px 10px 5px 0;
}
header .navbar .navbar-right .nav-item:first-child:before {
  display: none;
}
header .navbar .navbar-right .nav-item:last-child {
  padding: 5px 0 5px 10px;
}
header .navbar .navbar-right .nav-item:last-child .general-btn {
  font-size: 13px;
}
@media screen and (max-width: 1210px) {
  header .navbar .navbar-right .nav-item:last-child .general-btn {
    font-size: 12px;
  }
}
header .navbar .navbar-right .nav-item .nav-link {
  padding: 0 0;
  position: relative;
}
header .navbar .navbar-right .account-owner {
  position: absolute;
  font-size: 11px;
  top: -24px;
  left: -40px;
  min-width: 150px;
  text-align: left;
  color: white;
}
header .navbar .navbar-right .cart-counter {
  display: inline-block;
  min-width: 23px;
  height: 23px;
  color: #fff;
  background-color: #363636;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-radius: 50% 50% 50% 50%;
  text-align: center;
  padding-top: 2px;
}

.mob-right-nav.navbar {
  height: auto;
  position: absolute;
  left: 50%;
  top: 15px;
}
.mob-right-nav.navbar .navbar-right {
  flex-flow: row wrap;
  padding: 0px 0 5px;
  align-items: center;
}

.search-main-wrapper {
  width: 1125px;
  height: auto;
  background-color: #ffffff;
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
.search-main-wrapper .form-control {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #dddddd;
  height: 70px;
  width: 100%;
  color: #000;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.search-main-wrapper input.form-control:focus {
  color: #000;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid #dddddd;
}
.search-main-wrapper .serach-over-flow-wrap {
  width: 100%;
  max-height: 450px;
  overflow: auto;
}
.search-main-wrapper .search-container {
  width: 96%;
  min-height: 225px;
  padding: 0;
  margin: 0 2%;
  display: flex;
  flex-flow: row wrap;
}
.search-main-wrapper .search-container .srch-pic-holder {
  width: 13%;
  height: auto;
  overflow: hidden;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
.search-main-wrapper .search-container .search-data-cont {
  width: 73%;
  padding: 8px 10px 11px 30px;
}
.search-main-wrapper .search-container .search-data-cont h3 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  text-transform: uppercase;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding: 0 0 11px 0;
}
.search-main-wrapper .search-container .search-data-cont h3 a {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
}
.search-main-wrapper .search-container .search-data-cont p {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding: 0 0 20px 0;
}
.search-main-wrapper .search-container .search-data-cont a {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #909090;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  text-decoration: none;
}
.search-main-wrapper .search-container .search-data-cont a:hover {
  color: #df3b2e;
  text-decoration: none;
}
.search-main-wrapper .search-container .search-data-price {
  width: 14%;
  display: flex;
  flex-flow: row wrap;
  justify-content: end;
  align-items: center;
}
.search-main-wrapper .search-container .search-data-price h4 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #1975e8;
  text-align: end;
  word-wrap: break-word;
  width: 100%;
  padding-right: 15px;
  padding-bottom: 30px;
}

.search-sp-hr {
  width: 94%;
  height: 1px;
  background-color: #dddddd;
}

.search-arrow-set {
  position: absolute;
  top: -2.5%;
  right: 8.5%;
  width: 33px;
  height: 13px;
  max-width: 33px;
  max-height: 13px;
  background-image: url(/images/search-arrow.png?e87f30dd4e103c1ef2083fad81198607);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}

.spinner-border {
  width: 4rem;
  height: 4rem;
  border: 0.5em solid currentColor;
  border-right-color: transparent;
  -webkit-animation: 1.2s linear infinite spinner-border;
          animation: 1.2s linear infinite spinner-border;
}

footer {
  background-color: #000;
}
footer .footer-links {
  padding: 48px 0 40px;
}
footer .footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  -moz-column-count: 2;
       column-count: 2;
}
footer .footer-links ul li {
  margin-bottom: 10px;
}
footer .footer-links ul li a {
  color: #fff;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
footer .footer-links ul li a:hover {
  text-decoration: none;
}
footer .footer-head {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
}
footer .footer-social-main {
  width: 50%;
  float: left;
}
footer .footer-social ul {
  -moz-column-count: 1;
       column-count: 1;
}
footer .footer-social ul li {
  margin-bottom: 15px;
}
footer .footer-social ul li:last-child {
  margin-bottom: 0;
}
footer .footer-social ul li a {
  position: relative;
  padding-left: 40px;
}
footer .footer-social ul li a svg {
  position: absolute;
  left: 0;
}
footer .footer-social ul li a i {
  font-size: 19px;
  position: absolute;
  left: 0;
  color: #898989;
}
footer .newsletter {
  width: 50%;
  float: left;
  color: #fff;
}
footer .newsletter .input-group {
  height: 46px;
}
footer .newsletter .input-group input {
  height: 46px;
  border-radius: 0 0 0 0;
  border: 1px solid #e4e4e4;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
footer .newsletter .input-group .input-group-append {
  margin-left: 0;
}
footer .newsletter .input-group .input-group-append .btn {
  background-color: #df3b2f;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 0 25px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0;
}
footer .all-rights-main {
  justify-content: space-between;
  align-items: center;
  height: 110px;
  border-top: 1px solid #404040;
  color: #fff;
}
footer .all-rights-main p {
  font-weight: 300;
  margin-bottom: 0;
}
footer .all-rights-main p span {
  font-weight: 600;
}
footer .all-rights-main ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .all-rights-main ul li {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #fff;
  display: inline-block;
}
footer .all-rights-main ul li.pipe {
  margin: 0 10px;
}
footer .all-rights-main ul li a {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #fff;
}

.home-banner {
  width: 100%;
  height: 708px;
  position: relative;
  z-index: 9;
  align-items: center;
  margin-bottom: 30px;
}
.home-banner .home-banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #363636;
  opacity: 0.4;
  z-index: -1;
}
.home-banner .call-us {
  position: absolute;
  right: 90px;
  top: 7px;
  height: 32px;
}
.home-banner .banner-text {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}
.home-banner .banner-text h1 {
  font-size: 85px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}

.new-cards .card-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.new-cards .card-container .card {
  margin-right: 1.23%;
  margin-bottom: 15px;
  border-radius: 4px !important;
  box-shadow: 0px 3px 6px #00000029;
  height: 320px;
  width: 278px;
}
.new-cards .card-container .card:nth-child(1) .front-side {
  background-position: -172px center;
  background-size: cover;
}
.new-cards .card-container .card:nth-child(2) .front-side {
  background-position: -109px 0px;
  background-size: cover;
}
.new-cards .card-container .card:nth-child(3) .front-side {
  background-position: -109px 0px;
  background-size: cover;
}
.new-cards .card-container .card:nth-child(4) .front-side {
  background-position: -171px 0px;
  background-size: cover;
}
.new-cards .card-container .card .front-side .background-holder {
  background: rgba(60, 60, 60, 0.6) 0% 0% no-repeat padding-box;
}
.new-cards .card-container .card .front-side .title-holder h6 {
  color: #FFFFFF;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.new-cards .card-container .card .front-side .description-holder span {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
}
.new-cards .card-container .card .front-side .description-holder a {
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  height: 52px;
  width: 162px;
  padding: 0 !important;
  margin-top: 15px;
  box-shadow: 0px 3px 6px #00000080;
}
.new-cards .card-container .card .front-side .description-holder a svg {
  fill: #fff;
  width: 31.35px;
  height: 15.34px;
}
.new-cards .card-container .card .back-side {
  display: none;
}
.new-cards .card-container .card:nth-child(1) .back-side {
  height: 100%;
}
.new-cards .card-container .card:nth-child(1) .back-side .title-holder {
  padding-left: 1.1px;
  padding-right: 1.1px;
}
.new-cards .card-container .card:nth-child(1) .back-side .title-holder span {
  color: #3C3C3C;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box:nth-child(1) img {
  width: 74px;
  height: 74px;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box:nth-child(2) img {
  width: 92px;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box:nth-child(3) img {
  width: 92px;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-cards .card-container .card:nth-child(1) .back-side .description-holder .box span {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
}
.new-cards .card-container .card:nth-child(1) .back-side a {
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}
.new-cards .card-container .card:nth-child(1) .back-side a:hover {
  text-decoration: none;
}
.new-cards .card-container .card:nth-child(2) .front-side .title-holder h6 {
  line-height: 32px;
}
.new-cards .card-container .card:nth-child(2) .suggestion-list {
  top: 40px !important;
}
.new-cards .card-container .card:nth-child(2) .suggestion-list > div {
  font-size: 11px !important;
}
.new-cards .card-container .card:nth-child(2) input[type=number]::-moz-placeholder {
  font-size: 12px !important;
  font-weight: 700;
  color: #000;
}
.new-cards .card-container .card:nth-child(2) input[type=number]:-ms-input-placeholder {
  font-size: 12px !important;
  font-weight: 700;
  color: #000;
}
.new-cards .card-container .card:nth-child(2) input[type=number]::placeholder {
  font-size: 12px !important;
  font-weight: 700;
  color: #000;
}
.new-cards .card-container .card:nth-child(4) .front-side .title-holder h6 {
  line-height: 32px;
}
.new-cards .card-container .card:nth-child(4) small {
  font-size: 65%;
  text-align: left;
}
.new-cards .card-container .card:nth-child(3) .back-side .title-holder h6 {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.new-cards .card-container .card:nth-child(3) .back-side select {
  border: 1px solid #C6C6C6 !important;
  border-radius: 4px !important;
  height: 45px !important;
  background-color: #fff !important;
  padding-left: 5px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
}
.new-cards .card-container .card:nth-child(3) .back-side select.form-error {
  border-color: #FF0000 !important;
}
.new-cards .card-container .card:nth-child(3) .back-side button {
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  height: 52px;
  width: 162px;
  padding: 0 !important;
  margin-top: 15px;
  box-shadow: 0px 3px 6px #00000080;
  background-color: #df3b2f;
  text-transform: uppercase;
  border: none;
  border-radius: 5px 5px 5px 5px;
  transition: all 0.3s ease 0s;
  color: #fff;
}
.new-cards .card-container .card:nth-child(3) .back-side button svg {
  fill: #fff;
  width: 31.35px;
  height: 15.34px;
}
.new-cards .card-container .card:nth-child(3) select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background: url(/images/down-chevron.svg?d6f88ba27538de971c8931694d78e1eb);
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: 50%;
}
.new-cards .card-container .card:nth-child(3) select.form-error {
  border-color: #FF0000 !important;
}
.new-cards .card-container .card:nth-child(2) .back-side .length, .new-cards .card-container .card:nth-child(4) .back-side .length {
  padding-right: 5px;
}
.new-cards .card-container .card:nth-child(2) .back-side .height, .new-cards .card-container .card:nth-child(4) .back-side .height {
  padding-right: 5px;
}
.new-cards .card-container .card:nth-child(2) .back-side .phone_type, .new-cards .card-container .card:nth-child(4) .back-side .phone_type {
  padding-right: 5px;
}
.new-cards .card-container .card:nth-child(2) .back-side .width, .new-cards .card-container .card:nth-child(4) .back-side .width {
  padding-left: 5px;
}
.new-cards .card-container .card:nth-child(2) .back-side .weight, .new-cards .card-container .card:nth-child(4) .back-side .weight {
  padding-left: 5px;
}
.new-cards .card-container .card:nth-child(2) .back-side .contact_type, .new-cards .card-container .card:nth-child(4) .back-side .contact_type {
  padding-left: 5px;
}
.new-cards .card-container .card:nth-child(2) .back-side input, .new-cards .card-container .card:nth-child(4) .back-side input {
  border: 1px solid #C6C6C6 !important;
  border-radius: 4px !important;
  height: 36px !important;
  background-color: #fff !important;
}
.new-cards .card-container .card:nth-child(2) .back-side input::-moz-placeholder, .new-cards .card-container .card:nth-child(4) .back-side input::-moz-placeholder {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
}
.new-cards .card-container .card:nth-child(2) .back-side input:-ms-input-placeholder, .new-cards .card-container .card:nth-child(4) .back-side input:-ms-input-placeholder {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
}
.new-cards .card-container .card:nth-child(2) .back-side input::placeholder, .new-cards .card-container .card:nth-child(4) .back-side input::placeholder {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
}
.new-cards .card-container .card:nth-child(2) .back-side input.form-error, .new-cards .card-container .card:nth-child(4) .back-side input.form-error {
  border-color: #FF0000 !important;
}
.new-cards .card-container .card:nth-child(2) .back-side select, .new-cards .card-container .card:nth-child(4) .back-side select {
  border: 1px solid #C6C6C6 !important;
  border-radius: 4px !important;
  height: 36px !important;
  background-color: #fff !important;
  padding-left: 5px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
}
.new-cards .card-container .card:nth-child(2) .back-side button, .new-cards .card-container .card:nth-child(4) .back-side button {
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  height: 52px;
  width: 162px;
  padding: 0 !important;
  margin-top: 15px;
  box-shadow: 0px 3px 6px #00000080;
  background-color: #df3b2f;
  text-transform: uppercase;
  border: none;
  border-radius: 5px 5px 5px 5px;
  transition: all 0.3s ease 0s;
  color: #fff;
}
.new-cards .card-container .card:nth-child(2) .back-side button svg, .new-cards .card-container .card:nth-child(4) .back-side button svg {
  fill: #fff;
  width: 31.35px;
  height: 15.34px;
}
.new-cards .card-container .card:nth-child(2) .back-side input[type=number], .new-cards .card-container .card:nth-child(4) .back-side input[type=number] {
  border: 1px solid #C6C6C6 !important;
  border-radius: 4px !important;
  height: 36px !important;
  background-color: #fff !important;
}
.new-cards .card-container .card:nth-child(2) .back-side input[type=number].form-error, .new-cards .card-container .card:nth-child(4) .back-side input[type=number].form-error {
  border-color: #FF0000 !important;
}
.new-cards .card-container .card:nth-child(2) .back-side #phone, .new-cards .card-container .card:nth-child(4) .back-side #phone {
  border: 1px solid #C6C6C6 !important;
  border-radius: 4px !important;
  height: 36px !important;
  background-color: #fff !important;
}
.new-cards .card-container .card:nth-child(2) .back-side #phone.form-error, .new-cards .card-container .card:nth-child(4) .back-side #phone.form-error {
  border-color: #FF0000 !important;
}
.new-cards .card-container .card:nth-child(2) .back-side #phone.form-error, .new-cards .card-container .card:nth-child(4) .back-side #phone.form-error {
  border-color: #FF0000 !important;
}

.home-card {
  display: block;
  width: 100%;
  height: 457px;
  position: relative;
  padding: 50px 10px;
  text-align: center;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  z-index: 9;
  margin-bottom: 30px;
}
.home-card:hover {
  color: #fff;
  text-decoration: none;
}
.home-card:hover span svg {
  transform: translateX(5px);
}
.home-card:hover span svg path {
  fill: #fff !important;
}
.home-card .card-ovarley {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/images/top-gradient-shadow.png?19215c6b2f7f1382a25961e722eed039);
  background-repeat-y: no-repeat;
  z-index: -1;
  background-color: black;
  opacity: 0.5;
}
.home-card h3 {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.home-card span {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.home-card span svg {
  transition: all 0.3s ease 0s;
  margin: 0 0 7px 5px;
}
.home-card span svg path {
  fill: #fff !important;
}

.featured-prdt-main {
  background-color: #f9f9f9;
  padding: 110px 0 120px;
}

.featured-products {
  justify-content: space-between;
}

.featured-prdt {
  width: 23.761%;
  height: 400px;
  background-color: #fff;
  border: 1px solid transparent;
  padding: 20px 20px;
  transition: all 0.3s ease 0s;
  margin: 0 7.5px;
}
.featured-prdt .featured-prdt-img {
  width: 100%;
  height: 200px;
  align-items: center;
  justify-content: center;
}
.featured-prdt .featured-prdt-text {
  text-align: center;
  width: 100%;
  padding: 20px 0 0 0;
}
.featured-prdt .featured-prdt-text h6 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}
.featured-prdt .featured-prdt-text h4 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 63px;
}
.featured-prdt .featured-prdt-text h3 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1a73e8;
  margin-bottom: 0;
}
.featured-prdt:hover {
  border: 1px solid #CE4939;
  text-decoration: none;
}

.image-section {
  width: 100%;
  height: 335px;
  padding: 35px;
  margin: 120px 0;
  align-items: center;
  position: relative;
  z-index: 9;
}
.image-section .image-section-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #363636;
  opacity: 0.4;
  z-index: -1;
}
.image-section .image-section-text {
  width: 190px;
}
.image-section .image-section-text h3 {
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}
.image-section .image-section-text a {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fbbc05;
}
.image-section .image-section-text a svg {
  transition: all 0.3s ease 0s;
  margin: 0 0 4px 5px;
}
.image-section .image-section-text a:hover {
  text-decoration: none;
}
.image-section .image-section-text a:hover svg {
  transform: translateX(5px);
}

.home-faq {
  margin: 110px 0 110px;
}

.faq-head {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 50px;
}

.faqs-main .card {
  border: none;
  margin-bottom: 10px;
}
.faqs-main .card .card-header {
  border-bottom: none;
  background-color: #f9f9f9;
  position: relative;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3c3c3c;
  padding-right: 35px;
}
.faqs-main .card .card-header:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background-image: url(/images/carret-down.png?7b6912d67cea1d9af291c211d674216a);
  background-repeat: no-repeat;
  background-position: center center;
  width: 12px;
  height: 7px;
}
.faqs-main .card .card-header[aria-expanded=true]:after {
  background-image: url(/images/caret-up.png?47c6b5315956397e7b29c448d56e40cf);
}
.faqs-main .card .card-body {
  padding: 0 0;
}
.faqs-main .card .card-body .faq-text {
  padding: 20px 20px;
}

.insta-feed {
  position: relative;
  width: 100%;
  height: 610px;
  z-index: 9;
}
.insta-feed .insta-feed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #363636;
  opacity: 0.1;
  z-index: -1;
}
.insta-feed .insta-feed-text-main {
  position: relative;
  height: 610px;
  align-items: center;
}
.insta-feed .insta-feed-text {
  width: 535px;
  height: auto;
  padding: 35px 20px;
  background-color: #fff;
}
.insta-feed .insta-feed-text h3 {
  font-size: 38px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.insta-feed .insta-feed-text a {
  color: #df3b2f;
}
.insta-feed .insta-feed-text a:hover {
  text-decoration: none;
}

.customer-testimonial-main {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.about-company {
  margin: 60px 0;
  align-items: center;
}
.about-company.customer-testimonial {
  margin-top: 120px;
}
.about-company.customer-testimonial .about-company-img {
  text-align: left;
}
.about-company .about-company-text {
  width: 50%;
  padding-right: 60px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.about-company .about-company-text .customer-testimonial-text {
  padding-bottom: 40px;
}
.about-company .about-company-text h2 {
  text-align: left;
}
.about-company .about-company-text a, .about-company .about-company-text span {
  color: #df3b2f;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.about-company .about-company-text a svg, .about-company .about-company-text span svg {
  transition: all 0.3s ease 0s;
  margin: 0 0 7px 5px;
  fill: #fbbc05 !important;
}
.about-company .about-company-text a:hover, .about-company .about-company-text span:hover {
  text-decoration: none;
}
.about-company .about-company-text a:hover svg, .about-company .about-company-text span:hover svg {
  transform: translateX(5px);
}
.about-company .about-company-img {
  width: 50%;
  text-align: right;
}

.testimonial-slider .slick-arrow {
  top: unset;
  bottom: 0;
  width: 31px;
  height: 8px;
}
.testimonial-slider .slick-arrow:before {
  display: none;
}
.testimonial-slider .slick-arrow.slick-prev {
  background-image: url(/images/slider-prev.svg?23ef490ff3eea0f186543160fb038066);
  left: 0;
  z-index: 1;
}
.testimonial-slider .slick-arrow.slick-next {
  background-image: url(/images/slider-next.svg?35d7a4fef60c8519d3345fa6dbb33604);
  right: 60px;
}

.boxes-card {
  width: 28%;
  margin: 0 20px;
}
.boxes-card .boxes-card-img {
  width: 100%;
  height: 240px;
  display: block;
}
.boxes-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  position: relative;
  margin: 25px 0 25px;
  padding-bottom: 25px;
}
.boxes-card h3 a {
  color: #000;
}
.boxes-card h3 a:hover {
  color: #000;
  text-decoration: none;
}
.boxes-card h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background-color: #df3b2f;
}
.boxes-card .boxes-card-description {
  font-size: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 100px;
}

.logos-section-main {
  max-width: 900px;
  margin: 0 auto 120px;
}

.logos-section {
  margin: 0 20px;
  height: 60px !important;
  text-align: center;
  opacity: 0.7;
}
.logos-section svg, .logos-section img {
  height: 60px;
  max-width: 100%;
}
.logos-section:hover {
  opacity: 1;
}

.shiping-logos-main {
  justify-content: space-between;
  margin-bottom: 20px;
}
.shiping-logos-main .logos-section {
  width: 20%;
  margin: 0 0;
}

.product-listing-head {
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
}

.inner-heading {
  font-size: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 10px;
}

.category-page-two {
  width: 726px !important;
}

.category-page-one {
  width: 200px !important;
}

.product-filter-main {
  display: flex;
  width: 363px;
}
.product-filter-main .product-filter {
  width: 200px;
  margin-right: 25px;
}
.product-filter-main .product-filter span {
  color: #909090;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}
.product-filter-main .product-filter select {
  color: #4e4e4e;
}
.product-filter-main .product-filter:last-child {
  margin-right: 0;
}

.product-bg {
  border-bottom: 2px solid #dddddd;
  padding: 50px 0;
}
.product-bg:last-child {
  border-bottom: none;
  padding-bottom: 90px;
}
.product-bg .product-listing-main {
  width: 100%;
}
.product-bg .product-listing-main .product-listing-main-sp {
  width: 100%;
}
.product-bg .product-listing-main h2 {
  float: left;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 40px;
  padding-right: 115px;
}
.product-bg .product-listing-main .sp-view-all {
  padding-top: 9px;
  float: right;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  text-decoration: underline;
}
.product-bg .product-listing-main .sp-view-all:hover {
  text-decoration: underline;
  color: #4e4e4e;
}

.product-card-wide {
  width: 24% !important;
  margin-bottom: 15px;
}

.product-card {
  width: 23.761%;
  min-height: 430px;
  padding: 20px 15px;
  background-color: #fff;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #dddddd;
  transition: all 0.3s ease 0s;
  margin-right: 1%;
}
.product-card:last-child {
  margin-right: 0;
}
.product-card:hover {
  border: 1px solid #df3b2f;
  text-decoration: none;
}
.product-card:hover span {
  color: #df3b2f !important;
}
.product-card .product-header {
  justify-content: center;
  align-items: center;
  height: 200px;
}
.product-card .product-header img {
  max-height: 100% !important;
}
.product-card .product-body {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  margin: 20px 0 0 0;
}
.product-card .product-body h6 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #262f2c;
  margin-bottom: 5px;
}
.product-card .product-body h3 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #262f2c;
  margin-bottom: 15px;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-body h3 a {
  color: #262f2c;
}
.product-card .product-body h3 a:hover {
  text-decoration: none;
}
.product-card .product-body .product-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 84px;
  margin-bottom: 15px;
}
.product-card .product-body .product-description p {
  margin-bottom: 0;
}
.product-card .prdt-price {
  justify-content: space-between;
}
.product-card .prdt-price h4 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #1975e8;
}
.product-card .prdt-price span {
  color: #909090;
  text-transform: uppercase;
  cursor: pointer;
}

.product-list.div-float .product-card {
  margin: 0 7.5px;
}

.pro-price-filter {
  width: 100%;
}

.product-list-main-sp {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 5px;
}

.sp-padding-bottom-end {
  padding-bottom: 0 !important;
}

.category-main .product-card:nth-child(4n) {
  margin-right: 0;
}

.category-wrapper-left {
  padding-right: 50px;
}

/* filter price */
.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.filter-price {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}

.price-title {
  position: relative;
  color: #4e4e4e;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-field {
  position: relative;
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  background: rgba(248, 247, 244, 0.2);
  padding-top: 15px;
  border-radius: 3px;
}

.price-field input[type=range] {
  position: absolute;
}

/* Reset style for input range */
.price-field input[type=range] {
  width: 100%;
  height: 2px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
  outline: 0;
  background-color: #4e4e4e;
}

.price-field input[type=range]::-ms-track {
  width: 188px;
  height: 2px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 5px;
}

/* Style toddler input range */
.price-field input[type=range]::-webkit-slider-thumb {
  /* WebKit/Blink */
  position: relative;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin-top: -4px;
  background-color: #4e4e4e;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type=range]::-moz-range-thumb {
  /* Firefox */
  position: relative;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin-top: -5px;
  background-color: #fff;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type=range]::-ms-thumb {
  /* IE */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin-top: -5px;
  background-color: #4e4e4e;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

/* Style track input range */
.price-field input[type=range]::-webkit-slider-runnable-track {
  /* WebKit/Blink */
  width: 188px;
  height: 2px;
  cursor: pointer;
  background: #4e4e4e;
  border-radius: 5px;
}

.price-field input[type=range]::-moz-range-track {
  /* Firefox */
  width: 188px;
  height: 2px;
  cursor: pointer;
  background: #fff;
  border-radius: 5px;
}

.price-field input[type=range]::-ms-track {
  /* IE */
  width: 188px;
  height: 2px;
  cursor: pointer;
  background: #4e4e4e;
  border-radius: 5px;
}

/* Style for input value block */
.price-wrap {
  display: flex;
  justify-content: space-between;
  color: #4e4e4e;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dddddd;
}

.price-wrap-1,
.price-wrap-2 {
  display: flex;
}
.price-wrap-1 label,
.price-wrap-2 label {
  margin-bottom: 0px;
}

.price-title {
  margin-right: 5px;
}

.price-wrap_line {
  margin: 0 10px;
}

.price-wrap #one {
  width: 25px;
  text-align: left;
}

.price-wrap #two {
  width: 25px;
  text-align: left;
}

.price-wrap #one,
.price-wrap #two {
  margin: 0;
  padding: 0;
  margin-right: 2px;
  background: 0;
  border: 0;
  outline: 0;
  color: #4e4e4e;
  font-family: "Karla", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-wrap label {
  text-align: right;
}

/* Style for active state input */
.price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #4e4e4e;
  transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #4e4e4e;
  transition-duration: 0.3s;
}

.pro-checks-boxes {
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
.pro-checks-boxes .product-list-main-sp {
  padding-top: 12px;
}

.prdt-breadcrumb {
  margin: 40px 0 75px;
}
.prdt-breadcrumb ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.prdt-breadcrumb ul li {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #909090;
  display: inline-block;
  margin-right: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.prdt-breadcrumb ul li a {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-detail-main {
  margin: 0 0 90px 0;
}
.product-detail-main .product-detail-img {
  width: 50%;
  float: left;
  padding-right: 34px;
}
.product-detail-main .product-detail-img .slider-for .slider-for-img {
  height: 400px;
}
.product-detail-main .product-detail-img .slider-for .slider-for-img .slick-prdt-img {
  justify-content: center;
  align-items: center;
  height: 100%;
}
.product-detail-main .product-detail-text {
  width: 50%;
  float: left;
  font-weight: 300;
  color: #262f2c;
  padding: 0 80px;
}
.product-detail-main .product-detail-text h3 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-detail-main .product-detail-text h1 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-detail-main .product-detail-text h5 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
}
.product-detail-main .product-detail-text h4 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #df3b2f;
  margin-bottom: 25px;
}
.product-detail-main .product-detail-text .manufacturer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.product-detail-main .product-detail-text .manufacturer h6 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0px;
  margin-right: 40px;
}
.product-detail-main .product-detail-text .manufacturer img {
  max-width: 145px;
  max-height: 42px;
}

.product-cart-add {
  display: flex;
  margin: 50px 0 35px 0;
}
.product-cart-add .quantity-input-cont {
  border: 1px solid #dddddd;
  width: 111px;
  height: 40px;
  margin-right: 10px;
}
.product-cart-add .quantity-input-cont .input-number-decrement {
  width: 30px;
  border-right: 1px solid #dddddd;
  color: #df3b2f;
}
.product-cart-add .quantity-input-cont .input-number-increment {
  width: 30px;
  border-left: 1px solid #dddddd;
  color: #df3b2f;
}
.product-cart-add .general-btn {
  height: 40px;
  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.select-delivery {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.select-delivery select {
  width: 225px;
  margin-left: 15px;
}

.share-icons-div {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000000;
}
.share-icons-div a {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.slider-nav {
  margin-top: 30px;
  margin-right: 90px;
}
.slider-nav .slick-list.draggable {
  padding: 0 0 !important;
}
.slider-nav .slick-track .slick-slide {
  height: 78px;
  max-width: 100%;
  margin: 0 7.5px;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #dddddd;
}
.slider-nav .slick-track .slick-slide .slider-prdt-nav {
  justify-content: center;
  align-items: center;
  height: 100%;
}
.slider-nav .slick-track .slick-slide.slick-current {
  border: 1px solid #df3b2f;
}

.product-description-main {
  padding: 0 85px;
}
.product-description-main .nav-tabs {
  border-top: 2px solid #dddddd;
  border-bottom: none;
}
.product-description-main .nav-tabs .nav-item {
  margin-right: 30px;
}
.product-description-main .nav-tabs .nav-item .nav-link {
  border: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  padding: 15px 0 0 0;
  border-radius: 0 0 0 0;
  margin-bottom: 0;
  margin-top: -2px;
  text-transform: uppercase;
  border-top: 2px solid #dddddd;
}
.product-description-main .nav-tabs .nav-item .nav-link.active {
  color: #df3b2f;
}

.additional-info {
  margin: 70px 0 140px 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #3c3c3c;
}
.additional-info h2 {
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 35px;
  color: #4e4e4e;
}
.additional-info p {
  margin-bottom: 25px;
}
.additional-info ul,
.additional-info ol {
  padding-left: 0;
  margin-bottom: 25px;
}
.additional-info a {
  color: #4e4e4e;
}

.product-list .slick-arrow {
  width: 46px;
  height: 46px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
}
.product-list .slick-arrow:before {
  display: none;
}
.product-list .slick-arrow:focus, .product-list .slick-arrow:hover {
  background-color: #dddddd;
  background-position: center center;
  background-repeat: no-repeat;
}
.product-list .slick-arrow.slick-prev {
  background-image: url(/images/slider-prev.svg?23ef490ff3eea0f186543160fb038066);
  z-index: 9;
  left: unset;
  right: 65px;
  top: -55px;
}
.product-list .slick-arrow.slick-next {
  background-image: url(/images/slider-next.svg?35d7a4fef60c8519d3345fa6dbb33604);
  right: 6px;
  top: -55px;
}

.account-main {
  margin: 90px 0;
}

.account-list {
  border: 1px solid #dddddd;
  border-radius: 5px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  margin-right: 20px;
  padding: 30px 35px 22px;
}
.account-list .active {
  text-decoration: underline !important;
  font-weight: 700;
}
.account-list h2 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262F2C;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.account-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.account-list ul li {
  margin-bottom: 5px;
}
.account-list ul li a {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4E4E4E;
}
.account-list ul li a:hover, .account-list ul li a.active {
  font-weight: 600;
  text-decoration: none;
}

.account-head {
  border-bottom: 1px solid #DDDDDD;
}
.account-head h1 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262F2C;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.profile-description {
  margin: 35px 0 0 0;
}
.profile-description p {
  margin-bottom: 30px;
}

.account-form {
  width: 580px;
}
.account-form .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.account-form .row .col-md-6,
.account-form .row .col-md-12,
.account-form .row .col-md-3,
.account-form .row .col-md-4,
.account-form .row .col-md-2 {
  padding-left: 7.5px !important;
  padding-right: 7.5px !important;
}
.account-form .form-group {
  margin-bottom: 15px;
}
.account-form .general-btn {
  width: 200px;
}

.address-book-main {
  margin: 40px 0 0 0;
  justify-content: space-between;
}
.address-book-main .address-book {
  width: 350px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 25px 17px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #3c3c3c;
  margin-bottom: 50px;
}
.address-book-main .address-book h4 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  position: relative;
  padding-right: 40px;
  margin-bottom: 25px;
}
.address-book-main .address-book h4 a {
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: underline;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #3c3c3c;
}
.address-book-main .address-book a {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #3c3c3c;
  text-decoration: underline;
}
.address-book-main.account-payment-main .address-book p {
  margin-bottom: 0;
  clear: both;
}
.address-book-main.account-payment-main .address-book p span {
  float: left;
  width: 50%;
  margin-bottom: 10px;
}
.address-book-main.account-payment-main .address-book p span:first-child {
  font-weight: 500;
  padding-right: 10px;
}
.address-book-main.account-payment-main .address-book a {
  display: inline-block;
  margin-top: 8px;
}

.whats-this {
  display: inline-flex;
  align-items: center;
  height: 40px;
  position: relative;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
}
.whats-this svg {
  margin-right: 5px;
}
.whats-this img {
  position: absolute;
  top: 80%;
  left: -8px;
  display: none;
  max-width: 167px;
}
.whats-this:hover img {
  display: block;
  z-index: 10;
}

.my-order-head {
  justify-content: space-between;
}
.my-order-head h1 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.sort-orders {
  width: 65%;
}
.sort-orders select {
  width: 37%;
  margin-right: 9px;
}
.sort-orders input {
  width: 40.5%;
  margin-right: 3px;
}
.sort-orders .general-btn {
  min-width: 99px;
  height: 42px;
}

.order-table {
  margin-top: 35px;
}
.order-table table {
  table-layout: fixed;
}
.order-table table th {
  border-top: none;
  border-bottom: 1px solid #dddddd;
  font-weight: 500;
  vertical-align: middle;
}
.order-table table td {
  border-top: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  vertical-align: middle;
}

.order-breadcrumb {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  justify-content: space-between;
  margin-top: 15px;
}
.order-breadcrumb ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.order-breadcrumb ul li {
  display: inline-block;
  padding-left: 12px;
}
.order-breadcrumb ul li a {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
}
.order-breadcrumb ul li a:hover {
  text-decoration: none;
}
.order-breadcrumb ul li a.active {
  text-decoration: underline;
}

.my-cart-main-wrapper.order-detail-wrapper .my-cart-wrapper {
  width: 100%;
}
.my-cart-main-wrapper.order-detail-wrapper .my-cart-wrapper .cart-first-container {
  width: 100%;
}
.my-cart-main-wrapper.order-detail-wrapper .my-cart-wrapper .cart-first-container .order-confirm-heading {
  padding: 0 0 0 0;
}
.my-cart-main-wrapper.order-detail-wrapper .my-cart-wrapper .cart-first-container .order-detail {
  padding: 33px 0 24px 0;
}

.preview:hover {
  text-decoration: none;
}
.preview:hover svg path {
  fill: #959595;
}

.my-cart-main-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  min-height: 165vh;
}

.my-cart-wrapper {
  width: 1186px;
  height: auto;
}

.cart-first-container {
  float: left;
  width: 65.64%;
  height: auto;
  background: white;
  border-radius: 10px;
}

.cart-main-heading {
  padding: 54px 10px 35px 10px;
}

.cart-main-head-style {
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}

.table-wrapper {
  margin-top: 48px;
  margin-bottom: 0px;
}
.table-wrapper thead {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3e3e3e;
}
.table-wrapper thead tr {
  border-bottom: 1px solid #dddddd;
  border-top: none;
}
.table-wrapper thead tr th:nth-child(1) {
  width: 386px;
  min-height: 103px;
  border-bottom: none;
  border-top: none;
}
.table-wrapper thead tr th:nth-child(2) {
  width: 99px;
  min-height: 103px;
  border-bottom: none;
  border-top: none;
}
.table-wrapper thead tr th:nth-child(3) {
  width: 175px;
  min-height: 103px;
  border-bottom: none;
  border-top: none;
}
.table-wrapper thead tr th:nth-child(4) {
  width: 120px;
  min-height: 103px;
  border-bottom: none;
  border-top: none;
}
.table-wrapper tbody tr {
  border-bottom: 1px solid #dddddd;
}
.table-wrapper tbody tr td {
  vertical-align: middle;
}
.table-wrapper tbody tr td p {
  margin-bottom: 0;
}
.table-wrapper tbody tr td:nth-child(1) {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border-top: none;
}
.table-wrapper tbody tr td:nth-child(1) img {
  max-width: 81.5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.table-wrapper tbody tr td:nth-child(1) a {
  min-width: 230px;
  padding-left: 45px;
  text-decoration: underline;
  color: #3687d3;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.table-wrapper tbody tr td:nth-child(1) a:hover {
  color: #3e3e3e;
  transition: all 0.3s ease 0s;
}
.table-wrapper tbody tr td:nth-child(2) {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3e3e3e;
}
.table-wrapper tbody tr td:nth-child(3) .quantity-input-cont {
  margin-top: 0;
  width: 88px;
  border: 1px solid #aaaaaa;
}
.table-wrapper tbody tr td:nth-child(3) .quantity-input-cont .input-number {
  width: 40px;
  height: 40px !important;
  vertical-align: middle;
  text-align: center;
  outline: none;
  border: none;
  padding-top: 0;
}
.table-wrapper tbody tr td:nth-child(3) .quantity-input-cont .input-number-decrement,
.table-wrapper tbody tr td:nth-child(3) .quantity-input-cont .input-number-increment {
  display: inline-block;
  width: 18px;
  line-height: 38px;
  color: #3e3e3e;
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.table-wrapper tbody tr td:nth-child(3) .quantity-input-cont .input-number-decrement {
  border: none;
}
.table-wrapper tbody tr td:nth-child(3) .quantity-input-cont .input-number-increment {
  border: none;
}
.table-wrapper tbody tr td:nth-child(4) .cart-rate {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3e3e3e;
}
.table-wrapper tbody tr td:nth-child(4) .cart-cross {
  float: right;
  margin-left: 10px;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background-color: #3687d3;
  color: #ffffff;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.table-wrapper tbody tr td:nth-child(4) .cart-cross:hover {
  text-decoration: none;
  color: #3e3e3e;
}

.cart-scnd-container {
  float: left;
  width: 34.35%;
  height: auto;
  padding-left: 57px;
  margin-bottom: 40px;
  z-index: 100;
}

.cart-scnd-wrapper {
  min-height: 330px;
  margin-top: 145px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
}

.order-summary-heading {
  padding-top: 50px;
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  text-align: center;
}

.order-summary-price {
  padding-top: 45px;
  padding-left: 15px;
  padding-right: 15px;
}
.order-summary-price a {
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  float: left;
  text-decoration: none;
  margin-bottom: 0px;
  padding-bottom: 10px;
  padding-left: 22%;
}
.order-summary-price a:hover {
  color: #4e4e4e;
  text-decoration: none;
}
.order-summary-price .input-group {
  width: 200px;
  height: 30px;
  margin-left: 60px;
}
.order-summary-price .input-group .form-control {
  height: 30px;
  width: 125px;
  font-size: 12px;
}
.order-summary-price .input-group-append {
  width: 59px;
  height: 30px;
}
.order-summary-price .input-group-append .imp-btn-new {
  min-width: 59px;
  height: 30px;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.order-summary-price .cross-up-discount {
  color: #4E4E4E;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  padding-left: 7px;
}

.order-sum-price-1 {
  float: left;
  padding-right: 22.41px;
  padding-bottom: 10px;
  width: 50%;
  text-align: end;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 0px;
}

.order-sum-price-2 {
  float: right;
  padding-left: 12px;
  padding-bottom: 10px;
  width: 50%;
  text-align: start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #575757;
  margin-bottom: 0px;
}

.order-sum-price-7 {
  float: left;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0px;
  padding-right: 22.41px;
  text-align: end;
  width: 50%;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #4e4e4e;
}

.order-sum-price-8 {
  float: right;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0px;
  width: 50%;
  padding-left: 12px;
  text-align: start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #575757;
}

.hr-sp-class {
  float: left;
  width: 57%;
  margin-left: 21.5%;
  border: 1px solid #dddddd;
}

.check-out-butn-wraper {
  padding: 30px 0px 45px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-out-butn {
  width: 200px;
}

.my-cart-check-box {
  padding-top: 15px;
}
.my-cart-check-box .ch-box-2 {
  min-width: 160px;
  float: left;
  padding-right: 15px;
}
.my-cart-check-box .form-group {
  display: block;
  margin-bottom: 15px;
  height: 25px;
}
.my-cart-check-box .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.my-cart-check-box .form-group label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #909090;
}
.my-cart-check-box .form-group label:before {
  width: 20px;
  height: 20px;
  content: "";
  -webkit-appearance: none;
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
}
.my-cart-check-box.cart-radio .form-group label:before {
  border-radius: 50%;
}
.my-cart-check-box.cart-radio .form-group input:checked + label:after {
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #909090;
  border-width: none;
  transform: rotate(0);
  border-radius: 50%;
}
.my-cart-check-box .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 8px;
  width: 4.88px;
  height: 8.54px;
  border: solid #909090;
  border-width: 2px 0px 0px 2px;
  transform: rotate(-135deg);
}

.sp-under-bor {
  padding: 64px 10px 25px 10px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 0px;
}

.sp-top-set {
  padding-top: 70px !important;
}

.sp-bott-set {
  padding-bottom: 30px;
}

.shipping-main-heading {
  padding: 88px 99px 0 98px;
}

.sp-pad-new-left {
  padding-left: 105.5px;
}

.shipping-main-head-style {
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
}

.shipping-form-wrapper {
  height: auto;
  padding: 21px 99px 100px 98px;
}

.specific-form .row {
  margin: 0px;
}
.specific-form .col-sm-12 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.specific-form .col-sm-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.specific-form .col-sm-4 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.specific-form .form-group {
  margin-bottom: 10px;
}
.specific-form .form-control {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  height: 42px;
  background-color: #f2f2f2;
}
.specific-form .form-control:focus {
  color: #000;
  background-color: #f2f2f2;
  border-color: #1d1d1d;
  box-shadow: none;
}
.specific-form textarea {
  min-height: 134px;
  resize: none;
}

.cart-ship-butn {
  padding-top: 23px;
}

.ship-continue-butn {
  float: right;
  width: 200px;
}

.billing-main-heading {
  padding: 60px 0 12px 7.5px;
}

.sp-pad-new-left-1 {
  padding-left: 7.5px;
}

.under-border-sp-div {
  margin-top: 42px;
  border: 1px solid #dddddd;
}

.pay-oder-sum-wrap {
  border-top: 1px solid #dddddd;
  padding-top: 27px;
}

.pay-oder-detail-left {
  width: 100%;
  float: left;
}

.order-pay-1 {
  float: left;
  padding-right: 22.41px;
  padding-bottom: 10px;
  width: 80%;
  text-align: end;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 0px;
}

.order-pay-2 {
  float: right;
  padding-left: 12px;
  padding-bottom: 10px;
  width: 20%;
  text-align: start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #575757;
  margin-bottom: 0px;
}

.order-pay-3 {
  float: left;
  padding-right: 22.41px;
  padding-bottom: 10px;
  width: 80%;
  text-align: end;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 0px;
}

.order-pay-4 {
  float: right;
  padding-left: 12px;
  padding-bottom: 10px;
  width: 20%;
  text-align: start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #575757;
  margin-bottom: 0px;
}

.order-pay-5 {
  float: left;
  padding-right: 22.41px;
  padding-bottom: 10px;
  width: 80%;
  text-align: end;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 0px;
}

.order-pay-6 {
  float: right;
  padding-left: 12px;
  padding-bottom: 10px;
  width: 20%;
  text-align: start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #575757;
  margin-bottom: 0px;
}

.order-pay-7 {
  float: left;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0px;
  padding-right: 22.41px;
  text-align: end;
  width: 80%;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #4e4e4e;
}

.order-pay-8 {
  float: right;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0px;
  width: 20%;
  padding-left: 12px;
  text-align: start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #575757;
}

.hr-sp-pay {
  float: left;
  width: 44%;
  margin-left: 56%;
  border: 1px solid #dddddd;
}

.coupon-code {
  width: 44%;
  float: right;
}
.coupon-code a {
  float: none;
  display: inline-block;
  padding-left: 0;
}
.coupon-code .for-discount-wrap {
  clear: both;
  float: right;
}
.coupon-code .for-discount-wrap .input-group {
  margin: 0 auto;
}

.cart-pay-butn {
  padding-top: 37px;
}

.sign-up-right-side {
  padding-top: 30px;
}

.sign-up-side-form .row {
  margin: 0px;
}
.sign-up-side-form .col-sm-12 {
  padding-left: 21.36%;
  padding-right: 21.36%;
}
.sign-up-side-form .form-control {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  height: 42px;
  background-color: #f2f2f2;
}
.sign-up-side-form .form-control:focus {
  color: #000;
  background-color: transparent;
  border-color: #1d1d1d;
  box-shadow: none;
}

.forgot-pass {
  text-align: center;
  text-decoration: underline;
  color: #1975e8;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.forgot-pass:hover {
  color: #000;
}

.sign-in-side-butn {
  padding-top: 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.sign-in-side-butn-2 {
  padding-bottom: 30px;
  padding-top: 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.sign-in-butn {
  width: 200px;
}

.for-center-div {
  display: flex;
  flex: row wrap;
  justify-content: center;
}

.order-confirm-heading {
  padding: 30px 24px 0 24px;
}

.order-confirm-wrapper {
  height: auto;
  padding: 0px 99px 100px 98px;
}

.order-detail {
  padding: 33px 24px 24px 24px;
  border-bottom: 1px solid #dddddd;
}

.payment-method-wrapper {
  float: left;
  width: 50%;
  height: auto;
  position: relative;
}

.shipping-adress-details {
  float: left;
  width: 100%;
  height: auto;
}

.shipping-adress-butn {
  float: left;
  width: auto;
  height: auto;
  position: absolute;
  right: 30px;
  top: -6px;
}

.adress-details-head {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  word-wrap: break-word;
  padding-right: 62px;
}

.adress-details-para {
  padding-top: 7px;
  margin-bottom: 0px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  word-wrap: break-word;
}

.shipping-adress-edit {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #262f2c;
  text-decoration: underline;
}
.shipping-adress-edit:hover {
  color: #262f2c;
  text-decoration: underline;
}

.order-place {
  padding: 24px;
  border-bottom: 1px solid #dddddd;
}

.order-place-head {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  word-wrap: break-word;
}

.order-place-pic {
  float: left;
  width: 15.61%;
  height: 86px;
  margin: 18px 4% 0 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.order-place-text {
  padding-top: 25px;
  float: left;
  width: 59.5%;
  height: auto;
}

.order-place-anchor {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #3687d3;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.order-place-anchor:hover {
  text-decoration: underline;
  color: #3e3e3e;
}

.order-place-para {
  padding-top: 5px;
  word-wrap: break-word;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}

.order-place-price {
  float: right;
  width: 20.5%;
  height: auto;
  padding-top: 18px;
}

.order-place-rate {
  text-align: end;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
}

.shipping-form-inputs {
  width: 100%;
  float: left;
}

.sp-wid-dev {
  width: 250px;
  float: right;
}

.order-place-summary {
  height: auto;
  padding: 35px 0px 50px 0px;
}

.ord-plc-left {
  width: 50%;
}

.ord-plc-right {
  width: 50%;
}

.ord-plc-line {
  width: 92%;
  margin-left: 4%;
}

.sp-wid-dev-2 {
  margin-right: 25px;
}

.shipping-form-wrapper.shipping-method-wrapper ul {
  padding-left: 0;
}

.my-account-wrapper {
  padding-top: 90px;
}

.my-account-left-side {
  width: 29.59%;
  min-height: 301px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  box-shadow: 0 4 16 #000000;
  background-color: #ffffff;
}

.my-account-right-side {
  width: 70.41%;
  height: auto;
}

.blog-clr-sp-div {
  background-color: #FFFFFF;
}

.blog-detail-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
.blog-detail-wrapper .blog-banner-pic {
  margin: 0 auto;
  width: 1000px;
  height: 500px;
  max-width: 1000px;
  max-height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.blog-detail-wrapper .blog-detail-wrapper-new {
  width: 700px;
  margin: 0 auto;
}
.blog-detail-wrapper .blog-detail-wrapper-new h4 {
  float: left;
  width: 100%;
  padding: 20px 0 40px;
  text-transform: uppercase;
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  word-wrap: break-word;
  text-align: center;
}
.blog-detail-wrapper .blog-detail-wrapper-new h1 {
  float: left;
  width: 100%;
  padding: 20px 0 40px;
  text-transform: uppercase;
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  word-wrap: break-word;
  text-align: center;
}
.blog-detail-wrapper .blog-detail-wrapper-new h6 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #df3b2e;
  text-align: center;
  width: 100%;
  padding: 0 0 89px;
  word-wrap: break-word;
  float: left;
}
.blog-detail-wrapper .blog-detail-wrapper-new p {
  float: left;
  width: 100%;
  padding: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-align: start;
  word-wrap: break-word;
}
.blog-detail-wrapper .blog-detail-wrapper-new h3 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000000;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding: 15px 0;
  float: left;
}
.blog-detail-wrapper .blog-detail-wrapper-new span {
  width: 100%;
  float: left;
  padding: 40px 0 30px 20px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}
.blog-detail-wrapper .blog-detail-wrapper-new a {
  float: left;
  text-decoration: none;
  color: #1975e8;
}
.blog-detail-wrapper .blog-detail-wrapper-new a:hover {
  text-decoration: none;
  color: #000000;
}
.blog-detail-wrapper .blog-detail-wrapper-new ul,
.blog-detail-wrapper .blog-detail-wrapper-new ol {
  float: left;
  padding: 60px 24% 60px 25.5%;
}
.blog-detail-wrapper .blog-detail-wrapper-new img {
  margin: 0;
  min-width: 100%;
  min-height: 500px;
  max-width: 100%;
  max-height: 500px;
  float: left;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.blog-detail-wrapper .blog-detail-wrapper-new .row img {
  min-width: 100%;
  min-height: 362px;
  max-width: 100%;
  max-height: 362px;
  margin: 60px 0 0 0;
  float: left;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}

.blog-social-share {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 50%;
  width: 54px;
  height: 153px;
  float: right;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 1px solid #dddddd;
  padding: 27px 0 7px 0;
}

.blog-share-fb {
  width: 8px;
  height: 16px;
  margin-bottom: 25px;
}

.blog-share-insta {
  width: 16px;
  height: 16px;
  margin-bottom: 25px;
}

.blog-share-tweet {
  width: 14px;
  height: 12px;
  margin-bottom: 25px;
}

.blog-share-linked {
  width: 13px;
  height: 13px;
  margin-bottom: 25px;
}

.guide-may-like {
  width: 100%;
  float: left;
  height: auto;
}
.guide-may-like h4 {
  float: left;
  text-align: start;
  width: 100%;
  padding: 20px 2.5%;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  padding-bottom: 30px;
}

.guide-like-wrapper {
  width: 100%;
  margin-bottom: 50px;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.blog-sp-set-div h2 {
  padding-top: 23px;
}
.blog-sp-set-div h3 {
  padding-top: 5px !important;
}

.guide-like-wrap {
  width: 31%;
  min-height: 491px;
  margin-right: 3.5%;
  margin-bottom: 50px;
}
.guide-like-wrap:nth-child(3n) {
  margin-right: 0;
}
.guide-like-wrap h2 {
  width: 100%;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262F2C;
  padding-left: 10px;
  margin-bottom: 5px;
  float: left;
  text-align: start;
  word-wrap: break-word;
  text-transform: uppercase;
}
.guide-like-wrap h3 {
  width: 100%;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  padding-top: 23px;
  padding-left: 10px;
  float: left;
  text-align: start;
  word-wrap: break-word;
  text-transform: uppercase;
}
.guide-like-wrap h4 {
  width: 68%;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #4e4e4e;
  padding-left: 10px;
  float: left;
  text-align: start;
  padding-bottom: 0px;
  word-wrap: break-word;
  margin-bottom: 15px;
}
.guide-like-wrap h5 {
  width: 32%;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #4e4e4e;
  padding-left: 10px;
  float: right;
  text-align: start;
  padding-bottom: 0px;
  word-wrap: break-word;
  margin-bottom: 15px;
}
.guide-like-wrap .blog-description {
  width: 100%;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  float: left;
  padding-left: 10px;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 84px;
  margin-bottom: 15px;
}
.guide-like-wrap .blog-description p {
  margin-bottom: 0;
}
.guide-like-wrap .guide-read-more {
  margin-top: 20px;
  width: 100%;
  float: left;
  text-align: right;
  padding-right: 10px;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1975e8;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.guide-like-wrap .guide-read-more:hover {
  color: #000000;
  text-decoration: none;
}

.guide-like-pic {
  width: 100%;
  border-radius: 5px;
  float: left;
  height: 262px;
  max-height: 262px;
  max-width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.blog-sp-bord {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 60px;
  margin-bottom: 0px !important;
}

.blog-listing-head {
  width: 100%;
  padding: 30px 0 30px;
  height: auto;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dddddd;
}
.blog-listing-head h1 {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  text-align: start;
  width: 60%;
}
.blog-listing-head .has-search .form-control {
  width: 85%;
  height: 26px;
  margin-left: 15%;
  padding-left: 0px;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #dddddd;
  border-radius: 0;
  color: #4e4e4e;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.blog-listing-head .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  font-size: 14px;
  font-weight: 600;
  width: 17.5px;
  height: 17.5px;
  line-height: 1.7rem;
  text-align: center;
  pointer-events: none;
  color: #4e4e4e;
}
.blog-listing-head .div-wide-sp {
  width: 16%;
}

.blog-listing-butn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.blog-list-butn {
  width: 200px;
}

.about-us-wrapper h3 {
  text-align: start;
  width: 50%;
  text-transform: uppercase;
  font-size: 65px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #ffffff;
}
.about-us-wrapper h1 {
  text-align: start;
  width: 50%;
  text-transform: uppercase;
  font-size: 65px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #ffffff;
}
.about-us-wrapper p {
  word-wrap: break-word;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #ffffff;
  width: 50%;
}
.about-us-wrapper .about-butns-wrap {
  width: 36%;
  padding-top: 56px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.about-us-wrapper .about-learn-butn {
  width: 200px;
}

.about-2nd-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.about-2nd-back-pic {
  min-height: 578px;
  min-width: 50%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-2nd-back-para {
  width: 50%;
  min-height: 578px;
  padding: 140px 132px 50px 149px;
}
.about-2nd-back-para h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-align: start;
  word-wrap: break-word;
  text-transform: uppercase;
}
.about-2nd-back-para p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  word-wrap: break-word;
}

.about-row-revrs {
  flex-flow: row-reverse wrap;
}

.about-3rd-wrapper {
  width: 100%;
  height: auto;
  margin-top: 90px;
  margin-bottom: 100px;
}
.about-3rd-wrapper h4 {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}
.about-3rd-wrapper .about-3rd-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
}
.about-3rd-wrapper .about-3rd-wrap-div {
  margin-top: 70px;
  width: 270px;
  height: auto;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.about-3rd-wrapper .about-3rd-wrap-div h4 {
  padding-top: 40px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000000;
  text-align: center;
  word-wrap: break-word;
  text-transform: capitalize;
}
.about-3rd-wrapper .about-3rd-wrap-div h6 {
  color: #df3b2e;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
  word-wrap: break-word;
  text-transform: uppercase;
}
.about-3rd-wrapper .about-3rd-wrap-div p {
  color: #262f2c;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: center;
  word-wrap: break-word;
}
.about-3rd-wrapper .about-us-1 {
  min-height: 62px;
  max-height: 62px;
  min-width: 74px;
  max-width: 74px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.about-3rd-wrapper .about-us-2 {
  min-height: 83px;
  max-height: 83px;
  min-width: 85px;
  max-width: 85px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.about-3rd-wrapper .about-us-3 {
  min-height: 71px;
  max-height: 71px;
  min-width: 107px;
  max-width: 107px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-us-wrapper {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.contact-form-sec {
  width: 66%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding: 100px 0 130px 0;
}
.contact-form-sec .contact-us-form {
  width: 490px;
  margin: 0 auto;
}
.contact-form-sec h3 {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  text-transform: uppercase;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding-bottom: 8px;
  padding-left: 7.5px;
}
.contact-form-sec h1 {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  text-transform: uppercase;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding-bottom: 8px;
  padding-left: 7.5px;
}
.contact-form-sec p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262F2C;
  text-align: start;
  word-wrap: break-word;
  padding-left: 12px;
  width: 100%;
  margin-bottom: 5px;
}
.contact-form-sec .form-contact-wrap {
  padding: 50px 0 0 0;
}
.contact-form-sec .contact-submit-butn {
  width: 200px;
  float: left;
  margin-left: 7.5px;
}

.contact-delivery-sec {
  width: 34%;
  padding: 130px 0 200px;
  background-color: #F2F2F2;
  display: flex;
  flex-flow: column wrap;
}
.contact-delivery-sec .contact-delivery-conatent {
  width: 230px;
  margin: 0 auto;
}
.contact-delivery-sec h3 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262F2C;
  text-transform: uppercase;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding-bottom: 7px;
  padding-top: 20px;
}
.contact-delivery-sec p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262F2C;
  text-align: start;
  word-wrap: break-word;
  width: 100%;
  padding-top: 10px;
}
.contact-delivery-sec a {
  transition: all 0.2s ease 0s;
  color: #df3b2f;
  text-decoration: underline;
}
.contact-delivery-sec a:hover {
  color: #262f2c;
  text-decoration: none;
}

#myModalTwo {
  padding-right: 0;
}
#myModalTwo .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  padding-top: 10px;
  padding-bottom: 0;
}
#myModalTwo .modal-dialog .modal-content .modal-body {
  padding-bottom: 40px;
  border-bottom-left-radius: calc(0.3rem - 1px);
  border-bottom-right-radius: calc(0.3rem - 1px);
}
#myModalTwo .modal-dialog .modal-content .modal-body .thanks-alert-wrapper {
  width: 100%;
  height: auto;
  min-height: 0;
  /* 378 */
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
}
#myModalTwo .modal-dialog .modal-content .modal-body .thanks-heading {
  padding: 0px 15px 0 15px;
  text-align: center;
  word-wrap: break-word;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-transform: uppercase;
}
#myModalTwo .modal-dialog .modal-content .modal-body .thanks-para-bold {
  text-align: center;
  word-wrap: break-word;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
}

@media screen and (min-width: 0px) and (max-width: 575px) {
  #myModalTwo .modal-dialog .modal-content .modal-body .thanks-heading {
    font-size: 35px;
  }
}
.thank-you-wrapper {
  width: 100%;
  height: 813px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.thanks-alert-wrapper {
  width: 568px;
  min-height: 325px;
  /* 378 */
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
}

.thanks-heading {
  padding: 40px 15px 0 15px;
  text-align: center;
  word-wrap: break-word;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-transform: uppercase;
}

.thanks-para-bold {
  padding-left: 55px;
  padding-right: 55px;
  text-align: center;
  word-wrap: break-word;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
}

.thanks-para-light {
  padding-left: 55px;
  padding-right: 55px;
  text-align: center;
  word-wrap: break-word;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}

.policy-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.privacy-container {
  width: 100%;
  padding: 70px 85px 35px 85px;
}

.privacy-data h1,
.privacy-data h2,
.privacy-data h3 {
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-align: center;
  word-wrap: break-word;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.privacy-data h4,
.privacy-data h5,
.privacy-data h6 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  text-align: start;
  word-wrap: break-word;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.privacy-data p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-align: start;
  word-wrap: break-word;
  margin-bottom: 20px;
}
.privacy-data ul,
.privacy-data ol {
  padding-left: 20px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}
.privacy-data ul li,
.privacy-data ol li {
  padding-left: 5px;
}
.privacy-data a {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #3687d3;
  text-decoration: none;
}
.privacy-data a:hover {
  color: #262f2c;
  text-decoration: none;
}

.thank-you-wrapper {
  width: 100%;
  height: 813px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.register-sp-wrap {
  min-height: 495px;
}
.register-sp-wrap .register-heading {
  padding: 0 0;
}

.sign-in-wrapper {
  width: 492px;
  min-height: 370px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 50px 15px 60px;
  text-align: center;
}
.sign-in-wrapper h2 {
  padding: 0 0 0;
  text-align: center;
  word-wrap: break-word;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 100%;
}
.sign-in-wrapper h1 {
  padding: 0 0 0;
  text-align: center;
  word-wrap: break-word;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 100%;
}
.sign-in-wrapper .dnt-have-pass {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #909090;
  padding: 0 0 0;
  margin-bottom: 30px;
  text-align: center;
  word-wrap: break-word;
  text-decoration: underline;
}
.sign-in-wrapper .dnt-have-pass:hover {
  text-decoration: underline;
  color: #1975e8;
}
.sign-in-wrapper p {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #909090;
  padding: 0 0 10px;
  text-align: center;
  word-wrap: break-word;
}
.sign-in-wrapper .form-group {
  padding: 0 75px;
}
.sign-in-wrapper .register-sp-padding {
  padding: 0 107px;
}
.sign-in-wrapper .forgot-pass {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #1975e8;
  padding: 0 0 15px;
  text-align: center;
  word-wrap: break-word;
  text-decoration: underline;
}
.sign-in-wrapper .forgot-pass:hover {
  text-decoration: underline;
  color: #909090;
}
.sign-in-wrapper .forgot-sp-wide {
  width: 320px;
}

.dnt-have-pass {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #909090;
  padding: 0 0 0;
  margin-bottom: 30px;
  text-align: center;
  word-wrap: break-word;
  text-decoration: underline;
}
.dnt-have-pass:hover {
  text-decoration: underline;
  color: #1975e8;
}

.error-main-wrapper {
  width: 100%;
  height: 813px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.error-sp-wrap {
  width: 592px;
  min-height: 480px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}
.error-sp-wrap .error-top-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.error-sp-wrap .error-top-wrap h1 {
  color: #000000;
  padding: 0px 15px 0 15px;
  text-align: center;
  word-wrap: break-word;
  font-size: 200px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
}
.error-sp-wrap .error-top-wrap img {
  width: 143px;
  height: 143px;
  overflow: hidden;
}
.error-sp-wrap h4 {
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  padding: 0;
  margin-bottom: 5px;
  text-align: center;
  word-wrap: break-word;
}
.error-sp-wrap p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262F2C;
  padding: 0 35px;
  margin-bottom: 15px;
  text-align: center;
  word-wrap: break-word;
}

.error-sp-wrap-2 {
  width: 542px;
  min-height: 51px;
  background-color: #ffffff;
  opacity: 0.8;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
}

.error-sp-wrap-3 {
  width: 442px;
  min-height: 51px;
  background-color: #ffffff;
  opacity: 0.5;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
}

.empty-cart-main-wrapper {
  width: 100%;
  height: 813px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.empty-cart-wrapper {
  width: 596px;
  min-height: 378px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}
.empty-cart-wrapper img {
  width: 170px;
  height: 176px;
}
.empty-cart-wrapper h2 {
  padding: 40px 0 5px 0;
  text-align: center;
  word-wrap: break-word;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}
.empty-cart-wrapper h1 {
  padding: 40px 0 5px 0;
  text-align: center;
  word-wrap: break-word;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
}
.empty-cart-wrapper a {
  text-align: center;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #262f2c;
  text-decoration: underline;
}
.empty-cart-wrapper a:hover {
  text-decoration: underline;
  color: #1975e8;
}
.empty-cart-wrapper p {
  text-align: center;
  word-wrap: break-word;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #262f2c;
}

.track-main-wrapper {
  width: 100%;
  height: 813px;
  padding: 0 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.track-pakg-wrap {
  max-width: 1170px;
  height: 813px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
.track-pakg-wrap h2 {
  width: 52%;
  text-align: start;
  word-wrap: break-word;
  font-size: 72px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
}
.track-pakg-wrap .track-sub-pakg-wrap {
  width: 48%;
  min-height: 378px;
  padding: 32px 53px 45px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  position: relative;
}
.track-pakg-wrap .track-sub-pakg-wrap .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 32px;
  font-weight: 400;
}
.track-pakg-wrap .track-sub-pakg-wrap h3 {
  text-align: start;
  word-wrap: break-word;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  text-transform: uppercase;
}
.track-pakg-wrap .track-sub-pakg-wrap h4 {
  display: inline-block;
  text-align: start;
  word-wrap: break-word;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #262f2c;
  padding-bottom: 0px;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.track-pakg-wrap .track-sub-pakg-wrap p {
  display: inline-block;
  text-align: start;
  word-wrap: break-word;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  padding-bottom: 0px;
  margin-bottom: 8px;
}
.track-pakg-wrap .track-sub-pakg-wrap .form-group label {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  padding-top: 5px;
  padding-right: 7.5px;
}
.track-pakg-wrap .track-sub-pakg-wrap .form-group label:before {
  width: 20px;
  height: 20px;
  content: "";
  -webkit-appearance: none;
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
}
.track-pakg-wrap .track-sub-pakg-wrap .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 8px;
  width: 4.88px;
  height: 8.54px;
  border: solid #909090;
  border-width: 2px 0px 0px 2px;
  transform: rotate(-135deg);
}
.track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn {
  justify-content: space-between;
  align-items: center;
}
.track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn .track-faqs {
  width: 130px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #909090;
  letter-spacing: 1px;
  text-decoration: none;
}
.track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn .track-faqs:hover {
  color: #1975E8;
  text-decoration: none;
}

.tracking-info {
  min-height: 141px;
  overflow-y: auto;
}
.tracking-info ul {
  list-style-type: none;
  padding: 0;
}
.tracking-info ul li span {
  text-transform: uppercase;
}

.services-sp-wrap {
  width: 50%;
  padding: 50px 100px 50px 100px;
}
.services-sp-wrap h3 {
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  text-align: start;
  word-wrap: break-word;
  text-transform: uppercase;
}
.services-sp-wrap h1 {
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  text-align: start;
  word-wrap: break-word;
  text-transform: uppercase;
}
.services-sp-wrap h4 {
  color: #000000;
  margin: 25px ​0 15px;
}
.services-sp-wrap p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  word-wrap: break-word;
  text-align: start;
}

.sevrice-shop-butn {
  width: 125px;
  height: 44px;
  margin-top: 15px;
}

.consultation-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 190px;
}
.consultation-wrapper h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262f2c;
  word-wrap: break-word;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.consultation-wrapper p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262F2C;
  word-wrap: break-word;
  text-align: center;
  margin-bottom: 0;
  width: 36%;
}

.consultation-form {
  width: 500px;
  height: auto;
  padding-top: 50px;
}
.consultation-form textarea {
  min-height: 93px;
  resize: none;
}
.consultation-form .form-group label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #909090;
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.consultation-form .form-group label.contact_type::before {
  display: none;
}
.consultation-form .form-group label:before {
  width: 20px;
  height: 20px;
  content: "";
  -webkit-appearance: none;
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
}
.consultation-form .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 15px;
  width: 4.88px;
  height: 8.54px;
  border: solid #909090;
  border-width: 2px 0px 0px 2px;
  transform: rotate(-135deg);
}
.consultation-form h4 {
  width: 100%;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #262f2c;
  word-wrap: break-word;
  text-align: start;
  text-transform: uppercase;
  margin-left: 7.5px;
  margin-bottom: 10px;
}
.consultation-form h5 {
  padding-top: 11px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #262f2c;
  word-wrap: break-word;
  text-align: start;
  margin-left: 7.5px;
  margin-bottom: 10px;
}
.consultation-form .nw-txt-area {
  padding-top: 10px;
  min-height: 42px;
  resize: none;
}
.consultation-form .quantity-input-cont {
  margin-top: 0;
  width: 88px;
  margin-left: 7.5px;
  margin-bottom: 10px;
  border: 1px solid #aaaaaa;
}
.consultation-form .quantity-input-cont .input-number {
  width: 40px;
  height: 40px !important;
  vertical-align: middle;
  text-align: center;
  outline: none;
  border: none;
  padding-top: 0;
}
.consultation-form .quantity-input-cont .input-number-decrement,
.consultation-form .quantity-input-cont .input-number-increment {
  display: inline-block;
  width: 18px;
  line-height: 38px;
  color: #3e3e3e;
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.consultation-form .quantity-input-cont .input-number-decrement {
  border: none;
}
.consultation-form .quantity-input-cont .input-number-increment {
  border: none;
}

.consultation-sub-butn {
  padding-top: 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.consultation-butn {
  width: 200px;
}

@media screen and (max-width: 575px) {
  .thank-you-wrapper {
    height: 580px;
  }

  .sign-in-wrapper {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .sign-in-wrapper h2 {
    font-size: 35px;
  }
  .sign-in-wrapper h1 {
    font-size: 35px;
  }
  .sign-in-wrapper form {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
  .sign-in-wrapper .form-group {
    padding: 0 10px;
  }
  .sign-in-wrapper .forgot-pass {
    padding: 0 0 15px;
  }
  .sign-in-wrapper .forgot-sp-wide {
    width: 270px;
  }

  .empty-cart-wrapper h2 {
    font-size: 25px;
  }
  .empty-cart-wrapper h1 {
    font-size: 25px;
  }

  .thanks-para-bold {
    padding-left: 10px;
    padding-right: 10px;
  }

  .empty-cart-main-wrapper {
    height: 500px;
  }

  .error-main-wrapper {
    height: 565px;
  }

  .error-sp-wrap {
    width: 95%;
    min-height: 384px;
  }
  .error-sp-wrap .error-top-wrap h1 {
    font-size: 110px;
  }
  .error-sp-wrap .error-top-wrap img {
    width: 90px;
    height: 90px;
  }
  .error-sp-wrap h4 {
    font-size: 35px;
  }
  .error-sp-wrap p {
    font-size: 15px;
  }

  .error-sp-wrap-2 {
    width: 85%;
    min-height: 35px;
  }

  .error-sp-wrap-3 {
    width: 75%;
    min-height: 35px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .empty-cart-wrapper h2 {
    font-size: 35px;
  }
  .empty-cart-wrapper h1 {
    font-size: 35px;
  }

  .error-main-wrapper {
    height: 700px;
  }

  .error-sp-wrap {
    width: 95%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .my-cart-wrapper {
    width: 100%;
  }

  .wrapper-res-table .table {
    width: 747px;
  }

  .order-summary-price .input-group {
    margin-left: 0px;
  }

  .for-discount-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .sp-pad-new-left {
    padding-left: 60px;
  }

  .shipping-main-heading {
    padding: 40px 99px 0 98px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .wrapper-res-table .table {
    width: 747px;
  }

  .table-wrapper {
    margin-top: 30px;
  }

  .cart-main-heading {
    padding: 20px 10px 20px 0px;
  }

  .cart-scnd-container {
    padding-left: 10px;
  }

  .cart-scnd-wrapper {
    margin-top: 96px;
  }

  .order-summary-price .input-group {
    margin-left: 0px;
  }

  .for-discount-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .sp-pad-new-left {
    padding-left: 60px;
  }

  .shipping-main-heading {
    padding: 40px 20px 0 20px;
  }

  .shipping-form-wrapper {
    padding: 20px 11px 20px 11px;
  }

  .sp-top-set {
    padding-top: 30px !important;
  }

  .cart-ship-butn {
    padding-bottom: 20px;
  }

  .cart-pay-butn {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .my-cart-wrapper {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .cart-main-heading {
    padding: 30px 10px 10px 10px;
  }

  .wrapper-res-table .table {
    width: 747px;
  }

  .table-wrapper {
    margin-top: 30px;
  }

  .cart-first-container {
    width: 100%;
  }

  .cart-scnd-container {
    width: 400px;
    padding-left: 0;
  }

  .for-discount-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .order-summary-price .input-group {
    margin-left: 0px;
  }

  .cart-scnd-wrapper {
    margin-top: 20px;
  }

  .sp-pad-new-left {
    padding-left: 60px;
  }

  .shipping-main-heading {
    padding: 40px 20px 0 20px;
  }

  .shipping-form-wrapper {
    padding: 20px 11px 0 11px;
  }

  .sp-top-set {
    padding-top: 30px !important;
  }

  .cart-ship-butn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ship-continue-butn {
    clear: both;
  }

  .billing-main-heading {
    padding: 15px 0 12px 7.5px;
  }

  .cart-pay-butn {
    padding-right: 10px;
  }

  .thank-you-wrapper {
    min-height: 600px;
    height: auto;
    padding: 30px 0;
  }

  .thanks-alert-wrapper {
    width: 550px;
  }
}
@media screen and (max-width: 575px) {
  .my-cart-wrapper {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .cart-main-heading {
    padding: 30px 10px 10px 10px;
  }

  .wrapper-res-table .table {
    width: 747px;
  }

  .table-wrapper {
    margin-top: 30px;
  }

  .cart-first-container {
    width: 100%;
  }

  .cart-scnd-container {
    width: 100%;
    padding-left: 0;
  }

  .for-discount-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .order-summary-price .input-group {
    margin-left: 0px;
  }

  .cart-scnd-wrapper {
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .sp-pad-new-left {
    padding-left: 60px;
  }

  .shipping-main-heading {
    padding: 20px 10px 0 10px;
  }

  .shipping-form-wrapper {
    padding: 20px 0 0 0;
  }

  .sp-top-set {
    padding-top: 30px !important;
  }

  .cart-ship-butn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ship-continue-butn {
    clear: both;
  }

  .cart-main-head-style {
    font-size: 34px;
  }

  .billing-main-heading {
    padding: 15px 0 12px 7.5px;
  }

  .pay-oder-detail-wrap {
    padding-top: 20px;
  }

  .order-pay-1 {
    width: 50%;
  }

  .order-pay-2 {
    width: 50%;
  }

  .order-pay-3 {
    width: 50%;
  }

  .order-pay-4 {
    width: 50%;
  }

  .order-pay-5 {
    width: 50%;
  }

  .order-pay-6 {
    width: 50%;
  }

  .order-pay-7 {
    width: 50%;
  }

  .order-pay-8 {
    width: 50%;
  }

  .hr-sp-pay {
    width: 70%;
    margin-left: 13%;
  }

  .cart-pay-butn {
    display: flex;
    justify-content: center;
  }

  .sign-up-side-form .col-sm-12 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .order-confirm-wrapper {
    display: flex;
    justify-content: center;
  }

  .shipping-main-head-style {
    font-size: 20px;
  }

  .order-detail {
    padding: 0px 0px 24px 0px;
  }

  .thank-you-wrapper {
    min-height: 500px;
    height: auto;
    padding: 30px 0;
  }

  .thanks-alert-wrapper {
    width: 90%;
    padding-bottom: 20px;
  }

  .thanks-heading {
    font-size: 35px;
    padding: 25px 5px 0 5px;
  }

  .thanks-para-light {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .specific-form .col-sm-4 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .shipping-adress-details {
    padding-top: 20px;
  }

  .table-wrapper thead tr th:nth-child(1) {
    width: 210px;
  }

  .table-wrapper thead tr th:nth-child(3) {
    width: 112px;
  }

  .table-wrapper thead tr th:nth-child(4) {
    width: 70px;
  }

  .table-wrapper tbody tr td:nth-child(1) a {
    min-width: 170px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 0px) and (max-width: 450px) {
  .payment-method-wrapper {
    width: 100%;
  }

  .shipping-adress-details {
    width: 90%;
  }

  .shipping-adress-butn {
    width: 10%;
  }

  .order-place {
    padding: 10px 0 10px 0;
  }

  .order-detail .payment-method-wrapper:nth-child(2) {
    padding-top: 30px;
  }

  .specific-form .col-sm-4 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .shipping-adress-details {
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .privacy-container {
    padding: 50px 0px 35px 0px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .privacy-container {
    padding: 50px 0px 35px 0px;
  }

  .privacy-data h1, .privacy-data h2, .privacy-data h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .privacy-container {
    padding: 30px 0px 33px 0px;
  }

  .privacy-data h1, .privacy-data h2, .privacy-data h3 {
    font-size: 35px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .address-book-main .address-book {
    width: 48%;
  }
  .address-book-main .address-book:nth-child(2) {
    margin-left: 10px;
  }

  .sort-orders select {
    width: 33%;
  }

  .sort-orders input {
    width: 38.5%;
  }

  .my-orders-main .order-table .table {
    width: 770px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .account-main {
    margin: 60px 0;
  }
  .account-main .account-list {
    padding: 20px 10px 22px;
    margin-right: 0px;
  }

  .profile-description .account-form {
    width: 100%;
  }

  .address-book-main .address-book {
    width: 100%;
  }

  .my-order-head .sort-orders {
    width: 100%;
  }

  .sort-orders select {
    width: 33%;
  }

  .sort-orders input {
    width: 38.5%;
  }

  .order-detail-wrapper .order-detail:nth-child(2) .payment-method-wrapper {
    width: 100%;
  }

  .my-orders-main .order-table .table {
    width: 770px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .account-main {
    margin: 60px 0;
  }
  .account-main .profile-main {
    padding-top: 30px;
  }
  .account-main .account-list {
    padding: 20px 10px 22px;
    margin-right: 0px;
  }

  .profile-description .account-form {
    width: 100%;
  }

  .address-book-main .address-book {
    width: 100%;
  }

  .my-order-head .sort-orders {
    width: 100%;
  }

  .my-orders-main .my-order-head {
    padding-top: 20px;
  }

  .shipping-main-head-style {
    padding-top: 20px;
  }

  .order-detail-wrapper .order-detail:nth-child(2) .payment-method-wrapper {
    width: 100%;
  }
  .order-detail-wrapper .order-detail:nth-child(2) .payment-method-wrapper .shipping-adress-details {
    width: 100%;
  }

  .order-detail-wrapper .order-place:nth-child(3) {
    padding: 15px 0;
  }
  .order-detail-wrapper .order-place:nth-child(4) {
    padding: 15px 0;
  }

  .my-orders-main .order-table .table {
    width: 750px;
  }
}
@media screen and (max-width: 575px) {
  .account-main {
    margin: 40px 0 25px;
  }
  .account-main .profile-main {
    padding-top: 30px;
  }
  .account-main .account-list {
    padding: 20px 20px 22px;
    margin-right: 0px;
  }

  .profile-description .account-form {
    width: 100%;
  }

  .address-book-main .address-book {
    width: 100%;
  }

  .my-order-head .sort-orders {
    width: 100%;
    justify-content: space-between;
  }
  .my-order-head .sort-orders select {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 35px;
    margin-right: 0px;
  }
  .my-order-head .sort-orders input {
    width: 68%;
    height: 35px;
  }
  .my-order-head .sort-orders .general-btn {
    min-width: 30%;
    height: 35px;
  }

  .shipping-main-head-style {
    padding-top: 20px;
  }

  .my-orders-main .my-order-head {
    padding-top: 20px;
  }

  .order-detail-wrapper .order-detail:nth-child(1) .payment-method-wrapper {
    width: 100%;
  }
  .order-detail-wrapper .order-detail:nth-child(2) .payment-method-wrapper {
    width: 100%;
  }
  .order-detail-wrapper .order-detail:nth-child(2) .payment-method-wrapper .shipping-adress-details {
    width: 100%;
  }

  .order-detail-wrapper .order-place:nth-child(3) {
    padding: 15px 0;
  }
  .order-detail-wrapper .order-place:nth-child(4) {
    padding: 15px 0;
  }

  .order-detail-wrapper .order-place .order-place-pic {
    height: 60px;
  }

  .my-orders-main .order-table .table {
    width: 750px;
  }

  .scanned-sp-grab-table .order-table .table {
    width: 480px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-listing-head .div-wide-sp {
    width: 20%;
  }

  .blog-listing-head {
    padding: 30px 0 30px 0;
  }

  .guide-like-wrap h4 {
    width: 59%;
  }

  .guide-like-wrap h5 {
    width: 41%;
  }

  .blog-detail-wrapper {
    margin-bottom: 50px;
  }
  .blog-detail-wrapper .blog-banner-pic {
    width: 89%;
    max-width: 89%;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h4 {
    padding: 20px 0px 35px 0px;
    font-size: 50px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h1 {
    padding: 20px 0px 35px 0px;
    font-size: 50px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h6 {
    padding: 0 0px 40px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new p {
    padding: 0 0 10px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h3 {
    padding: 0 0 10px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .blog-pic-3 {
    margin: 40px 0 0;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new span {
    padding: 40px 0 60px 20px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .row img {
    min-width: 100%;
    min-height: 250px;
    max-width: 100%;
    max-height: 250px;
    margin: 100px 0 0 0;
    float: left;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .blog-listing-head {
    padding: 30px 0 30px 0;
    flex-flow: row wrap;
  }
  .blog-listing-head h1 {
    width: 70%;
  }
  .blog-listing-head .div-wide-sp {
    width: 30%;
  }

  .guide-like-wrap h4 {
    width: 60%;
  }

  .guide-like-wrap h5 {
    width: 40%;
  }

  .category-page-two {
    width: 100% !important;
  }
  .category-page-two .product-filter {
    width: 154px;
    margin-right: 20px;
  }

  .blog-detail-wrapper {
    margin-bottom: 50px;
  }
  .blog-detail-wrapper .blog-banner-pic {
    width: 89%;
    max-width: 89%;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h4 {
    padding: 20px 0px 35px 0px;
    font-size: 50px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h1 {
    padding: 20px 0px 35px 0px;
    font-size: 50px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h6 {
    padding: 0 0px 40px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new p {
    padding: 0 0 10px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h3 {
    padding: 0 0 10px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .blog-pic-3 {
    margin: 40px 0 0;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new span {
    padding: 40px 0 60px 20px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .row img {
    min-width: 100%;
    min-height: 250px;
    max-width: 100%;
    max-height: 250px;
    margin: 100px 0 0 0;
    float: left;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .guide-like-wrapper .guide-like-wrap {
    width: 47%;
    margin-right: 6%;
  }
  .guide-like-wrapper .guide-like-wrap:nth-child(2n) {
    margin-right: 0;
  }
  .guide-like-wrapper .guide-like-wrap:nth-child(3n) {
    margin-right: 6%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .product-listing-head .inner-heading {
    font-size: 50px;
    padding-top: 20px;
  }

  .blog-list-sp-padding {
    justify-content: space-between;
  }
  .blog-list-sp-padding .guide-like-wrap {
    width: 49%;
  }

  .blog-listing-head {
    padding: 30px 10px;
    flex-flow: row wrap;
  }

  .guide-like-wrap h4 {
    width: 100%;
  }

  .guide-like-wrap h5 {
    width: 100%;
  }

  .product-listing-head {
    height: auto;
    justify-content: center;
  }

  .category-page-two {
    width: 100% !important;
    flex-flow: row wrap;
  }
  .category-page-two .product-filter {
    width: 45%;
    margin-right: 10px;
    padding-top: 10px;
  }
  .category-page-two .product-filter:nth-child(3) {
    padding-bottom: 20px;
    margin-right: 20px;
  }
  .category-page-two .product-filter:nth-child(4) {
    padding-bottom: 20px;
  }
  .category-page-two .product-filter:nth-child(1) {
    padding-bottom: 20px;
    margin-right: 20px;
  }

  .blog-listing-head {
    padding: 30px 0 30px 0;
    flex-flow: row wrap;
  }
  .blog-listing-head h1 {
    width: 70%;
  }
  .blog-listing-head .div-wide-sp {
    width: 30%;
  }

  .blog-detail-wrapper {
    margin-bottom: 40px;
  }
  .blog-detail-wrapper .blog-banner-pic {
    width: 89%;
    max-width: 89%;
    min-height: 300px;
    max-height: 300px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new {
    width: 100%;
    padding: 0 30px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h4 {
    padding: 20px 0px 35px 0px;
    font-size: 32px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h1 {
    padding: 20px 0px 35px 0px;
    font-size: 32px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h6 {
    padding: 0 0px 40px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new p {
    padding: 0 0 10px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h3 {
    padding: 0 0 10px;
    font-size: 24px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .blog-pic-3 {
    margin: 40px 0 0;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new span {
    padding: 40px 0 60px 20px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .row img {
    min-width: 100%;
    min-height: 250px;
    max-width: 100%;
    max-height: 250px;
    margin: 100px 0 0 0;
    float: left;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .guide-like-wrapper .guide-like-wrap {
    width: 48%;
    min-height: 440px;
    margin-right: 4%;
  }
  .guide-like-wrapper .guide-like-wrap:nth-child(2n) {
    margin-right: 0;
  }
  .guide-like-wrapper .guide-like-wrap:nth-child(3n) {
    margin-right: 4%;
  }
  .guide-like-wrapper .guide-like-wrap .guide-like-pic {
    height: 190px;
    max-height: 190px;
  }
}
@media screen and (max-width: 575px) {
  .product-listing-head .inner-heading {
    font-size: 50px;
    padding-top: 20px;
  }

  .blog-list-sp-padding {
    justify-content: center;
  }
  .blog-list-sp-padding .guide-like-wrap {
    width: 100%;
  }
  .blog-list-sp-padding .guide-like-wrap .guide-read-more {
    margin-top: 5px;
  }

  .guide-like-wrapper {
    margin-bottom: 28px;
  }

  .guide-like-wrap h4 {
    width: 100%;
  }

  .guide-like-wrap h5 {
    width: 100%;
  }

  .product-listing-head {
    height: auto;
    justify-content: center;
  }

  .category-page-two {
    width: 100% !important;
    flex-flow: row wrap;
  }
  .category-page-two .product-filter {
    width: 100%;
    margin-right: 0;
    padding-top: 20px;
  }
  .category-page-two .product-filter:nth-child(4) {
    padding-bottom: 30px;
  }

  .blog-listing-head {
    padding: 30px 0 30px 0;
    flex-flow: row wrap;
  }
  .blog-listing-head h1 {
    width: 100%;
    font-size: 25px;
  }
  .blog-listing-head .div-wide-sp {
    width: 275px;
    padding-top: 20px;
  }
  .blog-listing-head .has-search .form-control {
    margin-left: 10%;
  }

  .blog-detail-wrapper {
    margin-bottom: 0px;
  }
  .blog-detail-wrapper .blog-banner-pic {
    width: 89%;
    max-width: 89%;
    min-height: 200px;
    max-height: 200px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new {
    width: 100%;
    padding: 0 15px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h4 {
    padding: 20px 0px 35px 0px;
    font-size: 25px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h1 {
    padding: 20px 0px 35px 0px;
    font-size: 25px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h6 {
    padding: 0 0px 40px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new p {
    padding: 0 0 10px;
    font-size: 14px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new h3 {
    padding: 0 0 10px;
    font-size: 22px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .blog-pic-3 {
    margin: 40px 0 0;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new span {
    padding: 40px 0 60px 0;
    font-size: 15px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new img {
    min-height: 250px;
    max-height: 250px;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .row .col-sm-6 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  .blog-detail-wrapper .blog-detail-wrapper-new .row .col-sm-6 img {
    min-width: 60%;
    min-height: 150px;
    max-width: 60%;
    max-height: 150px;
    margin: 10px 0;
  }
  .blog-detail-wrapper .blog-social-share {
    width: 36px;
  }

  .guide-may-like h4 {
    font-size: 20px;
    padding-top: 5px;
    padding: 20px 11.5%;
  }

  .guide-like-wrapper {
    justify-content: center;
  }
  .guide-like-wrapper .guide-like-wrap {
    width: 100%;
    max-width: 350px;
    min-height: 420px;
  }
  .guide-like-wrapper .guide-like-wrap h4 {
    padding: 10px 10px;
    font-size: 18px;
    margin-bottom: 0;
  }
  .guide-like-wrapper .guide-like-wrap h3 {
    font-size: 18px;
  }
  .guide-like-wrapper .guide-like-wrap .guide-read-more {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .about-us-wrapper .about-butns-wrap {
    width: 50%;
  }

  .about-2nd-wrapper .about-2nd-back-pic {
    min-height: 440px;
    max-height: 440px;
  }
  .about-2nd-wrapper .about-2nd-back-para {
    width: 50%;
    min-height: 440px;
    padding: 60px 40px 50px 40px;
  }

  .about-3rd-wrapper .about-us-1 {
    min-width: 85px;
    min-height: 83px;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-wrapper h3 {
    width: 100%;
  }
  .about-us-wrapper h1 {
    width: 100%;
  }
  .about-us-wrapper p {
    width: 80%;
  }
  .about-us-wrapper .about-butns-wrap {
    width: 62%;
  }

  .about-2nd-wrapper .about-2nd-back-pic {
    min-height: 440px;
    max-height: 440px;
  }
  .about-2nd-wrapper .about-2nd-back-para {
    width: 50%;
    min-height: 440px;
    padding: 60px 40px 50px 40px;
  }

  .about-3rd-wrapper .about-us-1 {
    min-width: 85px;
    min-height: 83px;
    background-size: contain;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .about-us-wrapper h3 {
    width: 100%;
  }
  .about-us-wrapper h1 {
    width: 100%;
  }
  .about-us-wrapper p {
    width: 100%;
  }
  .about-us-wrapper .about-butns-wrap {
    width: 100%;
    justify-content: space-evenly;
  }

  .about-2nd-wrapper .about-2nd-back-pic {
    min-height: 236px;
    max-height: 236px;
  }
  .about-2nd-wrapper .about-2nd-back-para {
    width: 50%;
    min-height: 375px;
    padding: 24px 10px 20px 20px;
  }
  .about-2nd-wrapper .about-2nd-back-para h3 {
    font-size: 35px;
  }

  .about-3rd-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .about-3rd-wrapper h4 {
    font-size: 35px;
  }
  .about-3rd-wrapper .about-3rd-wrap-div {
    margin-top: 50px;
  }
  .about-3rd-wrapper .about-us-1 {
    min-width: 85px;
    min-height: 83px;
    background-size: contain;
  }
}
@media screen and (max-width: 575px) {
  .about-us-wrapper h3 {
    width: 100%;
    font-size: 45px;
    text-align: center;
  }
  .about-us-wrapper h1 {
    width: 100%;
    font-size: 45px;
    text-align: center;
  }
  .about-us-wrapper p {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
  .about-us-wrapper .about-butns-wrap {
    width: 100%;
    justify-content: space-evenly;
  }
  .about-us-wrapper .about-butns-wrap .about-learn-butn:nth-child(1) {
    margin-bottom: 15px;
  }

  .about-2nd-wrapper {
    flex-flow: column-reverse;
  }
  .about-2nd-wrapper .about-2nd-back-pic {
    min-height: 270px;
    max-height: 270px;
  }
  .about-2nd-wrapper .about-2nd-back-para {
    width: 100%;
    min-height: 250px;
    padding: 35px 20px 30px 20px;
  }
  .about-2nd-wrapper .about-2nd-back-para h3 {
    font-size: 25px;
  }
  .about-2nd-wrapper .about-2nd-back-para p {
    font-size: 14px;
  }

  .about-3rd-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .about-3rd-wrapper h4 {
    font-size: 25px;
  }
  .about-3rd-wrapper .about-3rd-wrap-div {
    margin-top: 50px;
    width: 90%;
  }
  .about-3rd-wrapper .about-3rd-wrap-div h4 {
    font-size: 18px;
  }
  .about-3rd-wrapper .about-3rd-wrap-div p {
    font-size: 14px;
  }
  .about-3rd-wrapper .about-us-1 {
    min-width: 85px;
    min-height: 83px;
    background-size: contain;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .search-main-wrapper {
    width: 90%;
  }

  .serach-over-flow-wrap .search-arrow-set {
    right: 2.5%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .search-main-wrapper {
    width: 90%;
    top: 97%;
  }
  .search-main-wrapper .form-control {
    height: 40px;
    font-size: 15px;
  }
  .search-main-wrapper .search-container {
    min-height: 166px;
  }
  .search-main-wrapper .search-container .search-data-cont h3 {
    font-size: 20px;
    width: 100%;
    padding: 0 0 11px 0;
  }
  .search-main-wrapper .search-container .search-data-cont p {
    padding: 0 0 15px 0;
  }
  .search-main-wrapper .search-container .search-data-cont h4 {
    font-size: 16px;
    font-weight: 600;
  }

  .serach-over-flow-wrap .search-arrow-set {
    right: 54%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .search-main-wrapper {
    width: 90%;
    top: 97%;
  }
  .search-main-wrapper .form-control {
    height: 40px;
    font-size: 15px;
  }
  .search-main-wrapper .search-container {
    min-height: 140px;
  }
  .search-main-wrapper .search-container .search-data-cont {
    padding: 15px 10px 10px 10px;
    width: 70%;
  }
  .search-main-wrapper .search-container .search-data-cont h3 {
    font-size: 19px;
    padding: 0 0 0 0;
  }
  .search-main-wrapper .search-container .search-data-cont p {
    padding: 0 0 0 0;
  }
  .search-main-wrapper .search-container .search-data-cont h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .search-main-wrapper .search-container .search-data-price {
    width: 17%;
  }
  .search-main-wrapper .search-container .search-data-price h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 20px;
  }

  .serach-over-flow-wrap .search-arrow-set {
    right: 55%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 575px) {
  .search-main-wrapper {
    width: 90%;
    top: 97%;
  }
  .search-main-wrapper .form-control {
    height: 40px;
    font-size: 15px;
  }
  .search-main-wrapper .search-container {
    min-height: 140px;
  }
  .search-main-wrapper .search-container .srch-pic-holder {
    height: 100px;
    margin-top: 14px;
  }
  .search-main-wrapper .search-container .search-data-cont {
    padding: 10px 10px 10px 10px;
    width: 64%;
  }
  .search-main-wrapper .search-container .search-data-cont h3 {
    font-size: 16px;
    padding: 0 0 0 0;
  }
  .search-main-wrapper .search-container .search-data-cont p {
    padding: 0 0 0 0;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .search-main-wrapper .search-container .search-data-cont h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .search-main-wrapper .search-container .search-data-price {
    width: 23%;
  }
  .search-main-wrapper .search-container .search-data-price h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 20px;
  }

  .serach-over-flow-wrap .search-arrow-set {
    right: 58%;
    transform: translateX(-50%);
  }
}
.shipping-labels-rates .btn-holder .btn-downoload-shipping-label {
  margin-bottom: 15px !important;
}

@media (max-width: 769px) {
  section.pricing-calculator {
    max-width: 100%;
    padding: 0 !important;
  }
}
section.pricing-calculator article.article-one {
  background-size: cover;
  height: 58vh;
  background-position-y: center;
}
@media (max-width: 559px) {
  section.pricing-calculator article.article-one {
    background-position-x: center;
  }
}
section.pricing-calculator article.article-one .background-holder {
  background: rgba(60, 60, 60, 0.52) 0% 0% no-repeat padding-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 575px) {
  section.pricing-calculator article.article-one .background-holder {
    text-align: center;
  }
}
section.pricing-calculator article.article-one h1 {
  font-size: 36px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  margin-bottom: 20px !important;
}
@media (max-width: 575px) {
  section.pricing-calculator article.article-one h1 {
    font-size: 28px !important;
    text-align: center;
    margin-bottom: 0px !important;
  }
}
section.pricing-calculator article.article-one p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 32px !important;
  line-height: 36px;
}
@media (max-width: 575px) {
  section.pricing-calculator article.article-one p {
    font-size: 17px !important;
    text-align: center;
    line-height: 26px;
  }
}
section.pricing-calculator article.article-one a {
  background-color: #DC3645;
  border-color: #DC3645;
  width: 209px;
  height: 65px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 16px;
  font-weight: 700 !important;
  box-shadow: 0px 3px 6px #00000080;
  border-radius: 4px;
}
@media (max-width: 540px) {
  section.pricing-calculator article.article-one a {
    width: 179px;
    height: 56px;
    font-size: 13px;
  }
}
section.pricing-calculator article.article-one a svg {
  width: 26.64px;
  fill: #FFFFFF;
  margin-left: 11.71px;
}
section.pricing-calculator article.article-two {
  margin-top: 50px;
}
section.pricing-calculator article.article-two .shiping-logos-main {
  align-items: center;
}
section.pricing-calculator article.article-two svg:nth-child(1) {
  width: 105px;
  height: 32px;
}
section.pricing-calculator article.article-two svg:nth-child(2) {
  width: 146px;
  height: 32px;
}
section.pricing-calculator article.article-two svg:nth-child(3) {
  width: 146px;
  height: 32px;
}
section.pricing-calculator article.article-two svg:nth-child(5) {
  width: 140px;
  height: 50px;
}
@media (max-width: 769px) {
  section.pricing-calculator article.article-three .row {
    margin: 0 !important;
  }
}
section.pricing-calculator article.article-three .card-body {
  text-align: center;
}
section.pricing-calculator article.article-three .card-body h5 {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #3C3C3C;
  font-weight: 400;
}
section.pricing-calculator article.article-three .card-body h5 span {
  font-weight: 600;
}
section.pricing-calculator article.article-three .card-body p.card-text {
  color: #3C3C3C;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 18px;
}
section.pricing-calculator article.article-four {
  background-size: cover;
  background-position-y: 41%;
}
@media (max-width: 1199px) {
  section.pricing-calculator article.article-four {
    background-position-y: 36%;
  }
}
@media (max-width: 991px) {
  section.pricing-calculator article.article-four {
    background-position-y: 20%;
  }
}
@media (max-width: 776px) {
  section.pricing-calculator article.article-four {
    background-position-y: 20%;
  }
}
@media (max-width: 559px) {
  section.pricing-calculator article.article-four {
    background-position-y: 18%;
  }
}
@media (max-width: 480px) {
  section.pricing-calculator article.article-four {
    background-position-y: 18%;
  }
}
section.pricing-calculator article.article-four .background-holder {
  background: rgba(60, 60, 60, 0.52) 0% 0% no-repeat padding-box;
}
section.pricing-calculator article.article-four .background-holder .description-holder h5 {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 575px) {
  section.pricing-calculator article.article-four .background-holder .description-holder h5 {
    font-size: 24px;
    padding: 0 1rem;
  }
}
section.pricing-calculator article.article-four .background-holder .description-holder span {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 575px) {
  section.pricing-calculator article.article-four .background-holder .description-holder span {
    font-size: 16px;
    padding: 0 1rem;
  }
}
section.pricing-calculator article.article-four .background-holder .description-holder a {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000080;
  border-radius: 4px;
  opacity: 1;
  width: 190px;
  height: 52px;
  letter-spacing: 0px;
  color: #DC3645;
  text-transform: uppercase;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-weight: 700;
}
section.pricing-calculator article.article-four .background-holder .description-holder a svg {
  fill: #DC3645;
  width: 22.35px;
  height: 11.34px;
}
@media (max-width: 769px) {
  section.pricing-calculator article.article-five .left-side {
    padding: 1rem !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
section.pricing-calculator article.article-five .left-side h6 {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #3C3C3C;
  font-weight: 600;
  margin-bottom: 10px;
}
section.pricing-calculator article.article-five .left-side span {
  font-size: 16px;
  color: #3C3C3C;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: left;
}
section.pricing-calculator article.article-five .left-side a {
  margin-top: 32px;
  width: 162px;
  height: 52px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 12px;
  font-weight: 700 !important;
  box-shadow: 0px 3px 6px #00000080;
  border-radius: 4px;
  background-color: #DC3645;
  border-color: #DC3645;
}
section.pricing-calculator article.article-five .left-side a svg {
  width: 21.35px;
  fill: #FFFFFF;
  margin-left: 11.93px;
}
@media (max-width: 991px) {
  section.pricing-calculator article.article-five .right-side {
    padding-left: 0;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
@media (max-width: 769px) {
  section.pricing-calculator article.article-five .right-side {
    padding-left: 0 !important;
  }
}
section .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

section.pricing-calculator-form .text-danger, section.pricing-calculator-form .error {
  color: #FF0000 !important;
  font-size: 14px !important;
}

.wrapper-rates .swipe-hand-holder {
  display: none !important;
}
@media (max-width: 468px) {
  .wrapper-rates .holder-table {
    overflow-x: scroll;
  }
  .wrapper-rates .swipe-hand-holder {
    display: block !important;
  }
}

.wrapper-rates .swipe-hand-holder {
  display: none;
}
@media (max-width: 468px) {
  .wrapper-rates .holder-table {
    overflow-x: scroll;
  }
  .wrapper-rates .swipe-hand-holder {
    display: block;
  }
}

#startNow {
  background-color: #DC3645;
  border-color: #DC3645;
  width: 209px;
  height: 65px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 16px;
  font-weight: 700 !important;
  box-shadow: 0px 3px 6px #00000080;
  border-radius: 4px;
  margin-left: 0 !important;
}
#startNow svg {
  width: 26.64px;
  fill: #FFFFFF;
  margin-left: 11.71px;
}

.membership-page {
  margin-top: 0;
}
.membership-page .address-book-main {
  margin-top: 0;
}
.membership-page .address-book-main h2 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262F2C;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.membership-page .address-book-main .address-book-wrapper .active-add-book {
  border: 2px solid #df3b2f;
}
.membership-page .address-book-main .address-book-wrapper .address-book p {
  width: 100%;
}
.membership-page .address-book-main .address-book-wrapper .address-book p span {
  width: auto;
}
.membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper button:nth-child(1) {
  min-width: 120px;
}
.membership-page .my-orders-main .order-breadcrumb ul {
  background-color: #f0f0f0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.membership-page .my-orders-main .order-breadcrumb ul li {
  padding-left: 6px;
  padding-right: 6px;
}
.membership-page .my-orders-main .order-breadcrumb ul li:last-child {
  padding-right: 15px;
}
.membership-page .my-orders-main .order-breadcrumb ul li .pagination-active {
  background-color: #7367f0;
  border-radius: 8px;
}
.membership-page .my-orders-main .order-breadcrumb ul li .pagination-active a {
  color: #FFF;
}
.membership-page .my-orders-main .order-breadcrumb ul .pagination-active {
  background-color: #7367f0;
  border-radius: 8px;
}
.membership-page .my-orders-main .order-breadcrumb ul .pagination-active a {
  color: #FFF;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .membership-page .address-book-main .address-book-wrapper .address-book {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .membership-page .address-book-main .address-book-wrapper .address-book {
    width: 100%;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper {
    justify-content: center;
    align-items: center;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper button {
    width: 80%;
    margin-bottom: 10px;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper button:nth-child(2) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .membership-page .address-book-main .address-book-wrapper {
    width: 100%;
  }
  .membership-page .address-book-main .address-book-wrapper h2 {
    padding-left: 15px;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book button {
    width: 46%;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper {
    justify-content: flex-start;
    align-items: center;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper button {
    margin-right: 10px;
    width: 46%;
  }
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .membership-page .address-book-main .address-book-wrapper {
    width: 100%;
  }
  .membership-page .address-book-main .address-book-wrapper h2 {
    padding-left: 15px;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book button {
    width: 100%;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper {
    justify-content: flex-start;
    align-items: center;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper button {
    margin-bottom: 10px;
    width: 100%;
  }
  .membership-page .address-book-main .address-book-wrapper .address-book .address-button-wrapper button:nth-child(2) {
    margin-bottom: 0;
  }
}
.membership-forward .membership-head {
  border-bottom: none;
}
.membership-forward .membership-head h2 {
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  width: 580px;
}
.membership-forward .profile-description {
  margin: 0 0 0 0;
}
.membership-forward .profile-description .account-form {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
}
.membership-forward .profile-description .account-form textarea {
  width: 100%;
  resize: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 5px 5px 5px 5px;
  box-shadow: none;
  padding-top: 5px;
  padding-left: 10px;
  margin-bottom: 40px;
}
.membership-forward .profile-description .account-form textarea:focus {
  color: #000;
  background-color: #f2f2f2;
  border-color: #1d1d1d;
  box-shadow: none;
}
.membership-forward .profile-description .account-form textarea:focus-visible {
  outline: none;
}
.membership-forward .profile-description .account-form h1 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.membership-forward .profile-description .order-confirm-wrapper {
  width: 580px;
  padding: 35px 0 0 0;
}
.membership-forward .profile-description .order-confirm-wrapper h1 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #262f2c;
  text-transform: uppercase;
  margin-bottom: 15px;
  float: left;
}
.membership-forward .profile-description .order-confirm-wrapper p {
  margin-bottom: 0px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .membership-forward .membership-head {
    border-bottom: none;
  }
  .membership-forward .profile-description .order-confirm-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .membership-forward .membership-head {
    border-bottom: none;
  }
  .membership-forward .profile-description .order-confirm-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 0px) and (max-width: 575px) {
  .membership-forward .membership-head {
    border-bottom: none;
  }
  .membership-forward .profile-description .order-confirm-wrapper {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
}
.conference-room-page {
  background-color: #fbfcfd;
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.conference-room-wrapper {
  width: 100%;
  height: auto;
  margin: 30px 0 30px;
}
.conference-room-wrapper iframe {
  width: 100%;
  min-height: 787px;
}

@media screen and (max-width: 575px) {
  .logos-section-main {
    margin: 0 auto 80px;
  }

  .container {
    max-width: 100%;
  }

  header .navbar {
    height: auto;
    padding: 5px 0;
  }
  header .navbar .dropdown-menu {
    position: absolute;
  }
  header .navbar .navbar-left {
    padding-top: 25px;
  }
  header .navbar .navbar-left .nav-item {
    padding: 5px 15px 10px;
  }
  header .navbar .navbar-right {
    flex-flow: row wrap;
    justify-content: center;
    padding: 20px 0 30px;
  }

  footer .row .col-md-6:first-child .footer-links {
    padding-bottom: 0;
  }
  footer .row .col-md-6:nth-child(2) .footer-links {
    max-width: 320px;
    float: none;
    margin: 0 auto;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
    display: inline-block;
  }
  footer .row .col-md-6:nth-child(2) .footer-links .footer-social-main {
    width: 100%;
    margin-bottom: 50px;
  }
  footer .row .col-md-6:nth-child(2) .footer-links .newsletter {
    width: 100%;
  }
  footer .footer-links {
    text-align: center;
  }
  footer .footer-links ul {
    -moz-column-count: 1;
         column-count: 1;
  }
  footer .all-rights-main {
    justify-content: center;
    height: 90px;
    text-align: center;
  }

  .home-banner {
    height: 350px;
  }
  .home-banner .call-us {
    right: 15px;
  }
  .home-banner .banner-text {
    padding: 40px 15px;
  }
  .home-banner .banner-text h1 {
    font-size: 40px;
  }

  .home-card {
    height: 400px;
    margin-bottom: 15px;
  }
  .home-card h3 {
    font-size: 26px;
  }

  .image-section.div-flex.justify-content-end {
    margin-bottom: 0;
  }

  .section-heading {
    font-size: 32px;
  }

  .about-company {
    margin: 60px auto;
    justify-content: center;
    max-width: 400px;
  }
  .about-company .about-company-img {
    width: 100%;
  }

  .about-company .about-company-text {
    padding-right: 0;
    font-size: 17px;
    width: 100%;
    order: 1;
    margin-top: 50px;
  }
  .about-company .about-company-text.testimonial-slider {
    padding-right: 0;
  }
  .about-company .about-company-text.testimonial-slider .slick-arrow.slick-next {
    right: 0;
  }

  .faq-head {
    font-size: 18px;
  }

  .faqs-main .card .card-header {
    font-size: 16px;
  }

  .faq-text ul, .faq-text ol {
    padding-left: 0;
  }

  .featured-prdt {
    padding: 20px 10px;
  }

  .about-company.customer-testimonial .about-company-img {
    padding-right: 60px;
  }

  .about-company.customer-testimonial {
    margin-top: 80px;
  }

  .featured-prdt-main {
    padding: 80px 0 90px;
  }

  .image-section {
    margin: 80px auto;
    max-width: 450px;
  }
  .image-section .image-section-text h3 {
    font-size: 35px;
  }

  .customer-testimonial-main {
    padding: 20px 0;
  }

  .home-faq {
    margin: 80px 0 80px;
  }

  .insta-feed .insta-feed-text h3 {
    font-size: 30px;
  }

  .product-listing-head {
    min-height: 175px;
    justify-content: center;
    padding-bottom: 15px;
  }

  .inner-heading {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }

  .product-card {
    padding: 20px 10px;
  }

  .product-filter-main {
    flex-flow: column wrap;
    align-items: center;
  }

  .product-bg .product-listing-main .sp-view-all {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 7.5px;
  }
  .product-bg .product-listing-main h2 {
    font-size: 26px;
    width: 100%;
    margin-bottom: 20px;
  }

  .product-detail-main .product-detail-img {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    padding-right: 0;
  }
  .product-detail-main .product-detail-text {
    padding: 75px 0 0 0;
    width: 100%;
  }
  .product-detail-main .product-detail-text h1 {
    font-size: 32px;
  }
  .product-detail-main .product-detail-text p {
    margin-bottom: 0;
  }
  .product-detail-main .product-detail-text .manufacturer h6 {
    margin-right: 20px;
  }

  .select-delivery select {
    width: 164px;
  }

  .product-description-main {
    padding: 0;
  }

  .slider-nav {
    margin-right: 0px;
  }

  .product-detail-wrapper .container {
    max-width: 100%;
  }

  .product-cart-add {
    margin: 50px 0 35px 0;
  }
  .product-cart-add .general-btn {
    padding-left: 25px;
    padding-right: 25px;
  }

  .select-delivery {
    align-items: flex-start;
    flex-flow: column;
  }
  .select-delivery select {
    margin: 5px 0 30px;
  }

  .category-filter .product-filter {
    margin-right: 0;
    margin-top: 15px;
  }

  .category-main h2 {
    padding-left: 0;
  }
  .category-main .product-list {
    padding-left: 0;
  }
  .category-main .product-list .product-card-wide {
    width: 100% !important;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
  .category-main .product-list .product-card-wide:nth-child(3n) {
    margin-right: auto;
  }

  .category-wrapper-left {
    max-width: 250px;
    margin: 0 auto 50px;
  }

  .services-sp-wrap {
    padding: 60px 30px 50px 30px;
    width: 100%;
  }
  .services-sp-wrap h3 {
    font-size: 30px;
  }
  .services-sp-wrap h1 {
    font-size: 30px;
  }

  .consultation-wrapper {
    padding-bottom: 100px;
    padding-top: 50px;
  }
  .consultation-wrapper h3 {
    font-size: 30px;
  }
  .consultation-wrapper p {
    width: 90%;
  }

  .about-2nd-back-pic {
    min-height: 450px;
    width: 100%;
  }

  .consultation-form {
    width: 100%;
  }

  .specific-form .col-sm-12, .specific-form .col-sm-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .track-main-wrapper {
    height: 650px;
  }

  .track-pakg-wrap {
    height: 650px;
  }
  .track-pakg-wrap h2 {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 48px;
  }
  .track-pakg-wrap .track-sub-pakg-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 25px 20px;
  }
  .track-pakg-wrap .track-sub-pakg-wrap h3 {
    font-size: 32px;
  }
  .track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn {
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column wrap;
  }
  .track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn .sign-in-butn {
    margin-bottom: 15px;
  }

  .contact-form-sec {
    width: 100%;
    padding: 50px 0 50px 0;
  }
  .contact-form-sec .contact-us-form {
    width: 95%;
    margin: 0 auto;
  }
  .contact-form-sec h3 {
    font-size: 34px;
  }
  .contact-form-sec h1 {
    font-size: 34px;
  }

  .contact-delivery-sec {
    width: 100%;
    padding: 50px 0;
  }

  .contact-delivery-sec .contact-delivery-conatent {
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .contact-delivery-sec .contact-delivery-conatent .contact-us-info {
    width: 300px;
  }

  .category-wrapper-left {
    padding-right: 0;
  }

  .coupon-code {
    width: 100%;
  }
  .coupon-code .for-discount-wrap {
    width: 100%;
  }

  .boxes-product-main {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .boxes-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 50px;
  }
  .boxes-card h3 {
    font-size: 26px;
  }
  .boxes-card .boxes-card-description {
    font-size: 16px;
    min-height: auto;
  }

  .product-detail-main .product-detail-img .slider-for .slider-for-img {
    height: 350px;
  }

  .prdt-breadcrumb {
    margin: 25px 0 40px;
  }

  .shipping-form-wrapper.shipping-method-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    float: none;
  }
  .shipping-form-wrapper.shipping-method-wrapper ul {
    margin: 40px 0 0;
  }
  .shipping-form-wrapper.shipping-method-wrapper .cart-pay-butn {
    padding: 25px 0 0;
    display: block;
  }
  .shipping-form-wrapper.shipping-method-wrapper .ship-continue-butn {
    margin-bottom: 20px;
  }
  .shipping-form-wrapper.shipping-method-wrapper .ship-continue-butn.mr-1 {
    margin-right: 0 !important;
  }

  .service-input + label {
    justify-content: center !important;
  }

  .delivery-content {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .delivery-content img {
    margin-right: 10px !important;
    float: left;
  }

  .service-input + label .text-right.h5 {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 0 !important;
  }

  .conference-room-wrapper {
    margin: 50px 0 50px;
  }

  .consultation-form h4 {
    margin-left: 15px;
  }

  .multi-radio {
    margin-left: 7.5px;
  }

  .product-list .slick-arrow.slick-prev {
    top: -30px;
  }

  .product-list .slick-arrow.slick-next {
    top: -30px;
  }

  .mob-right-nav.navbar {
    position: relative;
    left: unset;
    top: unset;
  }
  .mob-right-nav.navbar .nav-link svg {
    width: 20px;
  }
  .mob-right-nav.navbar .navbar-right .nav-item:first-child {
    padding: 0px 10px 0px 0;
  }
  .mob-right-nav.navbar .navbar-right .nav-item {
    padding: 0 10px !important;
  }
  .mob-right-nav.navbar .navbar-right .cart-counter {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .navbar-brand img {
    height: 50px;
  }
}
@media screen and (max-width: 1211px) {
  .header .navbar-brand img {
    max-width: 150px;
  }
}
@media (min-width: 450px) and (max-width: 575px) {
  .product-list.div-float .slick-list {
    padding: 0 70px;
  }
}
@media (min-width: 500px) and (max-width: 575px) {
  .category-main h2 {
    padding-left: 0;
  }
  .category-main .product-list {
    padding-left: 0;
  }
  .category-main .product-list .product-card-wide {
    width: 48% !important;
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(3n) {
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .shiping-logos-main .logos-section {
    width: 45%;
    margin-bottom: 15px;
  }

  .logos-section-main {
    margin: 0 auto 80px;
  }

  .container {
    max-width: 540px;
  }

  header .navbar {
    height: auto;
    padding: 5px 0;
  }
  header .navbar .dropdown-menu {
    position: absolute;
  }
  header .navbar .navbar-left {
    padding-top: 25px;
  }
  header .navbar .navbar-left .nav-item {
    padding: 5px 15px 10px;
  }
  header .navbar .navbar-right {
    flex-flow: row wrap;
    justify-content: center;
    padding: 20px 0 30px;
  }

  footer .row .col-md-6:first-child .footer-links {
    padding-bottom: 0;
  }
  footer .all-rights-main {
    justify-content: center;
    height: 90px;
  }

  .home-banner {
    height: 450px;
  }
  .home-banner .banner-text {
    padding: 40px 15px;
  }
  .home-banner .banner-text h1 {
    font-size: 50px;
  }

  .home-card {
    height: 350px;
  }
  .home-card h3 {
    font-size: 26px;
  }

  .image-section.div-flex.justify-content-end {
    margin-bottom: 0;
  }

  .section-heading {
    font-size: 32px;
  }

  .about-company .about-company-text {
    padding-right: 20px;
    font-size: 17px;
  }
  .about-company .about-company-text.testimonial-slider {
    padding-right: 0;
  }
  .about-company .about-company-text.testimonial-slider .slick-arrow.slick-next {
    right: 0;
  }

  .faqs-main .card .card-header {
    font-size: 16px;
  }

  .featured-prdt {
    padding: 20px 10px;
  }

  .about-company.customer-testimonial .about-company-img {
    padding-right: 60px;
  }

  .about-company.customer-testimonial {
    margin-top: 80px;
  }

  .featured-prdt-main {
    padding: 80px 0 90px;
  }

  .image-section {
    margin: 80px 0;
  }

  .customer-testimonial-main {
    padding: 20px 0;
  }

  .home-faq {
    margin: 80px 0 80px;
  }

  .product-listing-head {
    min-height: 175px;
    justify-content: center;
    padding-bottom: 15px;
  }

  .inner-heading {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }

  .product-card {
    padding: 20px 10px;
  }
  .product-card .product-body h3 {
    font-size: 20px;
  }

  .product-bg .product-listing-main h2 {
    font-size: 30px;
  }

  .product-detail-main .product-detail-text {
    padding: 0 0 0 0;
  }
  .product-detail-main .product-detail-text h1 {
    font-size: 28px;
  }
  .product-detail-main .product-detail-text p {
    margin-bottom: 0;
  }
  .product-detail-main .product-detail-text .manufacturer h6 {
    margin-right: 20px;
  }

  .select-delivery select {
    width: 164px;
  }

  .product-description-main {
    padding: 0;
  }

  .slider-nav {
    margin-right: 40px;
  }

  .product-detail-wrapper .container {
    max-width: 100%;
  }

  .product-cart-add {
    margin: 50px 0 35px 0;
  }
  .product-cart-add .general-btn {
    padding-left: 25px;
    padding-right: 25px;
  }

  .select-delivery {
    align-items: flex-start;
    flex-flow: column;
  }
  .select-delivery select {
    margin: 5px 0 30px;
  }

  .category-main h2 {
    padding-left: 0;
  }
  .category-main .product-list {
    padding-left: 0;
  }
  .category-main .product-list .product-card-wide {
    width: 48% !important;
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(3n) {
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(2n) {
    margin-right: 0;
  }

  .category-wrapper-left {
    max-width: 250px;
    margin: 0 auto 50px;
  }

  .services-sp-wrap {
    padding: 60px 30px 50px 30px;
  }
  .services-sp-wrap h3 {
    font-size: 30px;
  }
  .services-sp-wrap h1 {
    font-size: 30px;
  }

  .consultation-wrapper h3 {
    font-size: 30px;
  }
  .consultation-wrapper p {
    width: 90%;
  }

  .about-2nd-back-pic {
    min-height: 450px;
  }

  .track-pakg-wrap h2 {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    font-size: 60px;
  }
  .track-pakg-wrap .track-sub-pakg-wrap {
    width: 500px;
    margin: 0 auto;
  }

  .contact-form-sec {
    width: 100%;
    padding: 100px 0 100px 0;
  }
  .contact-form-sec h3 {
    font-size: 45px;
  }

  .contact-delivery-sec {
    width: 100%;
    padding: 100px 0;
  }

  .contact-delivery-sec .contact-delivery-conatent {
    width: 576px;
    padding: 0 15px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .contact-delivery-sec .contact-delivery-conatent .contact-us-info {
    width: 36%;
  }

  .category-wrapper-left {
    padding-right: 0;
  }

  .boxes-card {
    width: 48%;
    margin-bottom: 25px;
  }
  .boxes-card .boxes-card-img {
    height: 200px;
  }
  .boxes-card h3 {
    font-size: 24px;
  }
  .boxes-card .boxes-card-description {
    font-size: 16px;
  }

  .product-detail-main .product-detail-img .slider-for .slider-for-img {
    height: 350px;
  }

  .cart-main-head-style {
    font-size: 36px;
  }

  .shipping-form-wrapper.shipping-method-wrapper {
    width: 100%;
    max-width: 525px;
    margin: 0 auto;
    float: none;
  }
  .shipping-form-wrapper.shipping-method-wrapper ul {
    margin: 50px 0 0;
  }
  .shipping-form-wrapper.shipping-method-wrapper .cart-pay-butn {
    padding: 25px 0;
  }
  .shipping-form-wrapper.shipping-method-wrapper .ship-continue-butn {
    clear: none !important;
  }

  .conference-room-wrapper {
    margin: 50px 0 50px;
  }

  .sign-in-wrapper .register-sp-padding {
    padding: 0 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .logos-section-main {
    margin: 0 auto 80px;
  }

  .cart-main-head-style {
    font-size: 40px;
  }

  .order-summary-heading {
    padding-top: 30px;
  }

  .container {
    max-width: 720px;
  }

  header .navbar {
    height: auto;
    padding: 5px 0;
  }
  header .navbar .dropdown-menu {
    position: absolute;
  }
  header .navbar .navbar-left {
    padding-top: 25px;
  }
  header .navbar .navbar-left .nav-item {
    padding: 5px 15px 10px;
  }
  header .navbar .navbar-right {
    flex-flow: row wrap;
    justify-content: center;
    padding: 20px 0 30px;
  }

  footer .footer-head {
    font-size: 14px;
  }
  footer .footer-links .footer-social-main {
    width: 45%;
  }
  footer .footer-links .newsletter {
    width: 55%;
  }
  footer .footer-links .newsletter .input-group {
    justify-content: flex-end;
  }
  footer .footer-links .newsletter .input-group input {
    width: 100%;
  }
  footer .footer-links .newsletter .input-group .input-group-append {
    height: 46px;
    margin-top: 8px;
  }

  .home-banner {
    height: 500px;
  }
  .home-banner .banner-text {
    padding: 40px 15px;
  }
  .home-banner .banner-text h1 {
    font-size: 60px;
  }

  .home-card h3 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 40px;
  }

  .about-company .about-company-text {
    padding-right: 50px;
    font-size: 19px;
  }
  .about-company .about-company-text.testimonial-slider {
    padding-right: 0;
  }
  .about-company .about-company-text.testimonial-slider .slick-arrow.slick-next {
    right: 0;
  }

  .featured-prdt {
    padding: 20px 10px;
  }

  .about-company.customer-testimonial .about-company-img {
    padding-right: 60px;
  }

  .about-company.customer-testimonial {
    margin-top: 80px;
  }

  .featured-prdt-main {
    padding: 80px 0 90px;
  }

  .image-section {
    margin: 80px 0;
  }

  .customer-testimonial-main {
    padding: 20px 0;
  }

  .home-faq {
    margin: 80px 0 80px;
  }

  .product-listing-head {
    min-height: 175px;
  }

  .inner-heading {
    font-size: 40px;
  }

  .product-detail-main .product-detail-text {
    padding: 0 0 0 0;
  }
  .product-detail-main .product-detail-text h1 {
    font-size: 32px;
  }
  .product-detail-main .product-detail-text p {
    margin-bottom: 0;
  }

  .select-delivery select {
    width: 164px;
  }

  .product-description-main {
    padding: 0;
  }

  .slider-nav {
    margin-right: 50px;
  }

  .category-main h2 {
    padding-left: 0;
  }
  .category-main .product-list {
    padding-left: 0;
  }
  .category-main .product-list .product-card-wide {
    width: 48% !important;
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(3n) {
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(2n) {
    margin-right: 0;
  }

  .filter-price {
    width: 100%;
  }

  .category-wrapper-main .container {
    max-width: 100%;
  }

  .services-sp-wrap {
    padding: 60px 40px 50px 40px;
  }
  .services-sp-wrap h3 {
    font-size: 40px;
  }
  .services-sp-wrap h1 {
    font-size: 40px;
  }

  .consultation-wrapper h3 {
    font-size: 40px;
  }

  .about-2nd-back-pic {
    min-height: 500px;
  }

  .track-pakg-wrap h2 {
    font-size: 60px;
  }
  .track-pakg-wrap .track-sub-pakg-wrap {
    padding: 32px 25px 45px;
  }
  .track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn {
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column wrap;
  }
  .track-pakg-wrap .track-sub-pakg-wrap .sign-in-side-butn .sign-in-butn {
    margin-bottom: 15px;
  }

  .contact-form-sec h3 {
    font-size: 50px;
  }
  .contact-form-sec h1 {
    font-size: 50px;
  }
  .contact-form-sec .contact-us-form {
    width: 430px;
  }

  .contact-delivery-sec .contact-delivery-conatent {
    width: 190px;
  }

  .boxes-card {
    width: 31%;
  }
  .boxes-card .boxes-card-img {
    height: 200px;
  }
  .boxes-card h3 {
    font-size: 24px;
  }
  .boxes-card .boxes-card-description {
    font-size: 16px;
  }

  .product-detail-main .product-detail-img .slider-for .slider-for-img {
    height: 350px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  header .container {
    max-width: 100%;
  }
  header .navbar .navbar-brand img {
    max-width: 150px;
  }
  header .navbar .navbar-left .nav-item {
    padding: 5px 7px;
  }
  header .navbar .navbar-right .nav-item {
    padding: 5px 7px;
  }
  header .navbar .navbar-right .nav-item:first-child {
    padding: 5px 7px 5px 0;
  }
  header .navbar .navbar-right .nav-item:last-child {
    padding: 5px 0 5px 7px;
  }
  header .navbar .navbar-right .nav-item .nav-link svg {
    width: 20px;
    height: 20px;
  }
  header .navbar .navbar-right .cart-counter {
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }
  header .navbar .navbar-right .account-owner {
    left: -85px;
    text-align: center;
  }

  footer .footer-links .footer-social-main {
    width: 45%;
  }
  footer .footer-links .newsletter {
    width: 55%;
  }

  .home-banner {
    height: 600px;
  }
  .home-banner .banner-text {
    padding: 40px 15px;
  }
  .home-banner .banner-text h1 {
    font-size: 80px;
  }

  .home-card h3 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 50px;
  }

  .about-company.customer-testimonial .about-company-img {
    padding-right: 60px;
  }

  .product-listing-head {
    min-height: 200px;
  }

  .inner-heading {
    font-size: 50px;
  }

  .product-detail-main .product-detail-text {
    padding: 0 0 0 80px;
  }
  .product-detail-main .product-detail-text h1 {
    font-size: 38px;
  }

  .select-delivery select {
    width: 200px;
  }

  .category-main h2 {
    padding-left: 50px;
  }
  .category-main .product-list {
    padding-left: 50px;
  }
  .category-main .product-list .product-card-wide {
    width: 48% !important;
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(3n) {
    margin-right: 4%;
  }
  .category-main .product-list .product-card-wide:nth-child(2n) {
    margin-right: 0;
  }

  .category-wrapper-left {
    padding-right: 0;
  }

  .services-sp-wrap {
    padding: 60px 60px 50px 60px;
  }
  .services-sp-wrap h3 {
    font-size: 50px;
  }
  .services-sp-wrap h1 {
    font-size: 50px;
  }

  .track-pakg-wrap h2 {
    font-size: 70px;
  }
}
.photos-holder #photos_valet, .photos-holder #photos_packing {
  width: 100%;
  height: 150px;
  border: 4px dashed #262f2c;
  border-radius: 10px;
  background-color: #f2f2f2;
}
.photos-holder #photos_valet::before, .photos-holder #photos_packing::before {
  content: "Drop file here or click to upload";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #868686;
}
.photos-holder #photos_valet::-webkit-file-upload-button, .photos-holder #photos_packing::-webkit-file-upload-button {
  display: none;
}
.photos-holder #photos_valet label, .photos-holder #photos_packing label {
  display: none !important;
}
.photos-holder input[type=file] {
  color: #f2f2f2;
  position: relative;
}
