@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
}

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

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
  color: #000;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moglan";
  src: url(../fonts/Moglan.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Moglan";
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 70px;
  line-height: 1;
  color: #000;
  font-weight: 500;
}

h2 {
  font-size: 55px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h4 {
  font-size: 30px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h6 {
  font-size: 22px;
  font-family: "Montserrat", serif;
  color: #fff;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  font-family: "Montserrat", serif;
  opacity: 0.7;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.purple {
  color: #3c3269;
}

.moglan {
  font-family: "Moglan";
}

.montserrat {
  font-family: "Montserrat", serif;
}

.poppins {
  font-family: "Poppins", serif;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #ffff;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #ffff;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #fff !important;
}

/* Buttons Css Starts */

.theme1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #0000;
  border: none;
  padding: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 25px;
  border-radius: 100px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat";
  background-color: #3c3269;
  border: 1px solid #0000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #3c3269;
  border: 1px solid #0000;
  padding: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  background-color: #fff;
  border: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  rotate: 330deg;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(0%) hue-rotate(252deg) brightness(93%) contrast(100%);
  rotate: 0deg;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 0;
  display: block;
  width: 60%;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}


.hdr-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input.search-input {
  padding: 0 20px;
  height: 50px;
  border-radius: 30px;
  border: none;
  font-size: 13px;
  color: #000;
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-weight: 500;
}

input.search-input::placeholder {
  font-size: 13px;
  color: #000;
  font-family: 'Montserrat';
  text-transform: uppercase;

}

form.search-form {
  position: relative;
  z-index: 1;
}

form.search-form button {
  background: transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  border: none;
  transform: translateY(-50%);
}

/* Header end*/

/* Banner */
h1 span {
  font-size: 43px;
  display: block;
}

.banner_sec {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

img.banner-image {
  position: absolute;
  width: 70%;
  right: 0;
  top: 0;
  height: 100%;
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 100px 10px;
  border-radius: 0 5px 0 0;
  position: relative;
  z-index: 1;
  margin-top: 200px;
}

.banner_text::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vw;
  content: '';
  background: #ffff;
  border-radius: 0 5px 0 0;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

a.hdr-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3c3269;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}


.banner_text h1 {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.banner_text h1::before {
  position: absolute;
  z-index: -1;
  content: '';
  background: #3c3269;
  width: 90%;
  height: 1px;
  bottom: 0;
  left: 0;
}

ul.social {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin: 60px 0 0 0;
}

ul.social li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  opacity: 0.5;
}

ul.social li a:hover {
  opacity: 1;
  background: #3c3269;
  color: #fff;
  transition: 0.3s ease-in-out;
  border-color: #3c3269;
}

.banner-bottom-text-bx {
  background: #3c3269;
  padding: 30px 40px;
}

.banner-bottom-text h6 {
  font-size: 16px;
}

.banner-bottom {
  position: relative;
  z-index: 2;
}

.banner-slider-btn {
  display: flex;
  justify-self: end;
  width: fit-content;
  overflow: hidden;
  border-radius: 5px 0 0 0;
  align-items: center;
  background: #fff;
}

.banner-slider-btn button {
  width: 70px;
  height: 70px;
  border: none;
  background: transparent;
}

.banner-slider-btn button img {
  object-fit: scale-down;
  width: 20px;
}

span.line {
  width: 2px;
  height: 40px;
  background: #000;
}

button.next-slide {
  transform: rotate(180deg);
}

.banner-slider .slick-slide {
  margin: 0;
}

img.banner-sm-img {
  height: 225px;
}

/* Banner end*/

/* section start */

.about_image {
  height: 100%;
}

.about_image img {
  height: 100%;
  border-radius: 5px;
}

/* section end */

/* section start */
.product-sec {
  position: relative;
  z-index: 1;
}

.product-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url(../images/shop-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.product-sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #3c3269;
  content: '';
  opacity: 0.8;
}


.product-card {
  position: relative;
  z-index: 1;
  margin: 25px 0;
}

.product-card-image a {
  display: flex;
}

.product-card-image a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.product-card-text {
  position: absolute;
  bottom: 5%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

img.product-img {
  height: 450px;
}

img.product2 {
  height: 400px;
}

/* section end */

/* section start */

.product-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffff;
  border-radius: 30px;
  font-size: 14px;
  color: #000;
  font-family: 'Montserrat';
  font-weight: 500;
  padding: 10px 22px;
}

.product-nav .nav-link.active {
  background: #000;
  color: #fff;
}

.product-nav .nav-link:hover {
  background: #000;
  color: #fff;
}

.product-nav .nav {
  gap: 10px;
}

img.product3 {
  height: 750px;
}

/* section end */

/* section start */

section.piece-sec {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}


section.piece-sec:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.piece-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

img.piece-img {
  height: 100%;
  object-position: top;
}

.capitalize {
  text-transform: capitalize;
}

/* section end */

/* section start */

.shop-card {
  padding: 0 10px 10px 10px;
  border: 1px solid #00000042;
  border-radius: 6px;
  margin: 10px 0;
}

img.shop-img {
  height: 250px;
  object-fit: contain;
}

.shop-card-text {
  padding: 15px;
  box-shadow: 0 0 6px 0 #0000000d;
  border-radius: 10px;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.shop-card-text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  content: '';
  background: #3c3269;
  transition: 0.3s ease-in-out;

}

.shop-card:hover .shop-card-text::before {
  height: 100%;
  transition: 0.3s ease-in-out;

}

.shop-card:hover .shop-card-text h5 {
  color: #fff;
  transition: 0.3s ease-in-out;

}

.shop-card:hover .shop-card-text p {
  color: #fff;
  transition: 0.3s ease-in-out;

}

.shop-card:hover .shop-card-text a.hdr-icon {
  background-color: #fff;
  color: #3c3269;
  transition: 0.3s ease-in-out;

}

.shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-bar h5 {
  margin: 0;
}

.shop-card-text p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

ul.stars {
  display: flex;
  align-items: center;
}

ul.stars li a {
  font-size: 14px;
  color: #eec14b;
}

.shop-slider .slick-slide {
  margin: 0 10px;
}


.shop-btn {
  justify-content: end;
  display: flex;
  gap: 10px;
}

.shop-btn button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  border: none;
}

.shop-btn button:hover {

  background: #3c3269;
}

.shop-btn button img {
  width: 50%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7456%) hue-rotate(96deg) brightness(124%) contrast(101%);
}

button.next-slide1 {
  transform: rotate(180deg);
}

/* section end */

/* section start */
section.testi-sec {
  background: #3c3269;
}

img.quote {
  width: 50px;
  object-fit: contain;
  display: block;
  position: absolute;
}

.testi-box {
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  background: #ffff;
  border-radius: 10px;
  margin: 30px 0;
}

img.quote.quote1 {
  top: -20px;
  left: 30px;
}

img.quote.quote2 {
  right: 30px;
  bottom: -20px;
  transform: rotate(180deg);
}

.testi-name p {
  margin: 0;
  color: #3c3269;
}

.test-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

img.testi-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testi-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  content: '';
  background: #000;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}

.testi-box:hover::before {
  height: 100%;
  transition: 0.3s ease-in-out;
}

.testi-box:hover p {
  color: #fff;
}

.testi-box:hover .testi-name p {
  color: #fff;
  opacity: 1;

}

.shop-btn.testi-button button {
  background: transparent;
  border: 1px solid #ffffff8f;
}

/* section end */

/* section start */

.blog-box-img img {
  width: 100%;
  height: 350px;
  box-shadow: 0 0 6px 0 #0000000d;
  border-radius: 5px;
}

.blog-box-text {
  width: 90%;
  background: #fff;
  padding: 20px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 6px 0 #0000000d;
  border-radius: 5px;
}

.blog-box-text ul {
  display: flex;
  justify-content: start;
  margin-bottom: 6px;
  gap: 20px;
}

.blog-box-text ul li {
  display: flex;
  align-items: anchor-center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: montserrat;
  font-weight: 600;
}

.blog-box-text p {
  opacity: 0.5;
  font-size: 13px;
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 13px;
}

.blog-box-text ul li img {
  object-fit: scale-down;
  width: 20px;
}

.blog-box {
  margin: 30px 0;
}


.blog-box-text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  content: '';
  border-radius: 5px;
  background: #3c3269;
  transition: 0.3s ease-in-out;
}

.blog-box:hover .blog-box-text::before {
  height: 100%;
  transition: 0.3s ease-in-out;

}

.blog-box:hover .blog-box-text h4 {
  color: #fff;
  transition: 0.3s ease-in-out;

}

.blog-box:hover .blog-box-text p {
  color: #fff;
  transition: 0.3s ease-in-out;
}

.blog-box:hover .blog-box-text ul li {
  color: #fff;
  transition: 0.3s ease-in-out;
}

.blog-box:hover .blog-box-text ul li img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(7493%) hue-rotate(181deg) brightness(104%) contrast(108%);
}

.blog-box:hover .blog-box-text .theme1 span.theme1-txt {
  background-color: #fff;
  color: #3c3269;
}

.blog-box:hover .blog-box-text .theme1 span.theme1-icon {
  background-color: #fff;
  border: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.blog-box:hover .blog-box-text .theme1 span.theme1-icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(0%) hue-rotate(252deg) brightness(93%) contrast(100%);
  rotate: 0deg;
  transition: ease-out;
  transition-duration: 0.5s;
}


button.next-slide2 {
  transform: rotate(180deg);
}

/* section end */


/*Footer Start*/

footer {
  padding: 0;
  position: relative;
  background: #fbfbfb;
  z-index: 1;
}

.fticons-social .social-icons-banner ul {
  position: unset;
  margin-top: 50px;
}

.logo-ft p {
  font-size: 14px;
  line-height: 27px;
  font-weight: 600;
  color: #fff;
}

.logo-ft a img {
  width: 60%;
  height: 100%;
  padding: 0 0 20px;
  border-bottom: 2px solid #3c3269;
  margin: 0 0 20px 0;
}

ul.ft-links h2 {
  font-size: 23px;
  margin-bottom: 30px;
  line-height: 20px;
  color: #fff;
  font-family: 'Rajdhani';
  font-weight: 500;
  font-family: 'Poppins';
  text-transform: uppercase;
}

ul.ft-links li a {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}

ul.ft-links li {
  margin-bottom: 10px;
}

ul.ft-links {
  margin-left: 50px;
}

ul.ft-contact h2 {
  font-size: 24px;
  margin-bottom: 31px;
  line-height: 20px;
  color: #fff;
  font-family: 'Rajdhani';
  font-weight: 500;
  font-family: 'Poppins';
  text-transform: uppercase;
}

ul.ft-contact li a {
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

ul.ft-contact li a i {
  font-size: 16px;
}

ul.ft-contact {
  margin-left: 26px;
}

ul.ft-contact li {
  margin-bottom: 7px;
}

.ft-social-icons h2 {
  font-size: 24px;
  margin-bottom: 22px;
  line-height: 20px;
  color: #fff;
  font-family: 'Rajdhani';
  font-weight: bold;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}

.ft-social-icons ul.top-sec-socialicons {
  justify-content: start;
}

.paypal-img {
  margin-top: 40px;
}

.ft-social-icons {
  margin-left: 20px;
}

.ft-bottom-text p {
  text-align: center;
  color: #fff;
  margin-top: 59px;
  margin-bottom: 0px;
  padding: 10px 0px 12px;
  text-transform: uppercase;
}

ul.ft-links li a:hover {
  color: #000;
  margin-left: 10px;
  transition: 0.3s ease-in-out;
}

ul.ft-contact li a:hover {
  color: #fff;
  margin-left: 10px;
  transition: 0.9s;
  text-decoration: underline;
}

ul.top-sec-socialicons li p {
  font-size: 14px;
  color: #fff;
}

ul.top-sec-socialicons li input {
  border: unset;
  width: 80%;
  height: 40px;
  padding: 0px 10px;
  border-radius: 4px 0px 0px 4px;
}

ul.top-sec-socialicons li a {
  border: 1px solid #1a7f01;
  color: #fff;
  padding: 7px 14px 9px;
  font-size: 18px;
  border-radius: 6px;
  margin-left: -7px;
  background: #1a7f01;
}

.fticons-social ul.hd-socialicons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.fticons-social ul.hd-socialicons li {
  padding: 5px 9px;
  background: transparent;
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 40px;
}

.fticons-social ul.hd-socialicons li a {
  font-size: 15px;
  color: #fff;
}

.newsletter-heading h2 {
  font-size: 20px;
  font-family: 'Poppins';
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.newsletter-field input {
  text-transform: uppercase;
  width: 65%;
  border: none;
  padding: 12px 20px;
  border-radius: 29px 0px 0px 30px;
  font-family: Montserrat;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.newsletter-field button {
  background: #3c3269;
  border: none;
  color: #fff;
  padding: 12px 10px;
  border-radius: 0px 30px 30px 0px;
  text-transform: uppercase;
  font-family: 'Montserrat';
  font-size: 12px;
}

.newsletter-field {
  display: flex;
  align-items: center;
  justify-content: end;
}

.payments-cards img {
  width: 93%;
}

.payments-cards {
  text-align: center;
  margin-top: 30px;
}

.newsletter-heading h2 {
  margin-bottom: 0px;
}

.newsletter-row {
  border-bottom: 1px solid #ffffff7d;
  padding: 0 0 0 20px;
  background: #171514;
  border-radius: 50px;
  margin: 50px 0px 0 30px;
}

ul.ft-links.products-ft-links {
  margin-left: unset !important;
}

.logo-ft {
  margin-top: 100px;
}

footer p {
  opacity: 1;
  font-weight: 600;
  margin: 0;
}

footer ul.contact-list {
  margin: 20px 0 0 0;
}

footer ul.social {
  margin: 20px 0 60px 0;
}

img.footer-pay {
  object-fit: scale-down;
  display: block;
  margin: 0 0 0 auto;
  width: fit-content;
}

.footer-right {
  padding: 100px 0 0 50px;
  height: 100%;
  border-left: 1px solid #0000006b;
  margin: 0 0 0 30px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #0000006b;
}

.newsletter-heading h5 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}


ul.ft-links.products-ft-links h5 {
  border-bottom: 2px solid #3c3269;
  width: fit-content;
  padding: 0 0 20px 0;
}


/*Footer End*/


.shop-btn.testi-button button:hover {
  background: #ffff;
}

.shop-btn.testi-button button:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(91%) saturate(7424%) hue-rotate(205deg) brightness(82%) contrast(93%);
}

.shop-btn.testi-button button:focus {
  background: #ffff;
}

.shop-btn.testi-button button:focus img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(91%) saturate(7424%) hue-rotate(205deg) brightness(82%) contrast(93%);
}

/* Home Page end*/