@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.heading0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 50px 0;
}

.heading1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 50px 0;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: unset;
  border-bottom: 2px solid #000;
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  width: 100%;
  left: 0;
  right: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1 .theme1-txt {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
}

.theme2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  border: 1px solid #0000;
  background-color: rgb(227 194 90);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  font-size: 16px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover {
  border: 1px solid #0000;
  background-color: rgb(32 39 65);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
  font-size: 16px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-txt {
  color: #373f50;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: 100px;
  line-height: 125px;
  color: #e3c25a;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "Fraunces", serif;
  font-size: 27px;
  line-height: 35px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Fraunces", serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*Header Css Starts */
header {
  padding: 0;
  background-color: #373f50;
}
.topSec {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}
.topSec .topSec-txt h6 {
  color: #000;
}
.topSec .topSec-txt h6 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}

.menuSec {
  top: 0;
  width: 100%;
  margin: 50px auto 0 auto;
  padding: 40px 50px;
  background-color: #fff;
  z-index: 1;
  position: absolute;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menuSec.header-active {
  position: fixed;
  margin: 0;
  box-shadow: 0 20px 20px 0 #00000017;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
}

.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.header-logo a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box {
  position: relative;
  z-index: 99;
}

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  z-index: 999;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px;
  text-transform: capitalize;
  color: #000;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  border-bottom: 2px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 0;
  flex-direction: column;
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  left: 0;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 10px !important;
  color: #000 !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
  width: 100%;
  z-index: 999;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
  width: 100%;
}

.menu-box li:hover li {
  border-bottom: 1px solid #0000002d;
}

.menu-box li:hover li:last-child {
  border-bottom: 1px solid #0000;
}

.menu-box li ul li a:hover {
  background-color: #373f50;
  color: #000 !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-links-main ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header-links-main li {
  position: relative;
}

.header-links-main li a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
}

.header-links-main ul li a span {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  font-size: 12px;
  font-family: "Montserrat";
}

.header-links-main ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1;
  color: #000;
  font-weight: 400;
}

/*Header Css Ends */

/*Banner Css Starts */

section.banner-sec {
  padding: 120px 0 0 0;
}

.banner_slider .slick-slide {
  margin: 0;
}

.banner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
  width: 100%;
}

.banner-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 85%;
}

.banner-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 15%;
  background-color: #373f50;
}

.banner-txt h1 {
  writing-mode: sideways-lr;
}

.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.banner-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.banner-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner_slider {
  position: relative;
}

.banner_slider .banner-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex !important;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 0;
  align-items: center;
  justify-content: center;
}

.banner_slider .banner-dots li,
.banner_slider .banner-dots li button {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.banner_slider .banner-dots li button:before {
  display: none !important;
}

.banner-dot__svg {
  width: 14px;
  height: 14px;
  display: block;
  transform: rotate(-90deg);
}

.banner-dot__bg,
.banner-dot__prog {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 50.265;
  stroke-dashoffset: 50.265;
}

.banner_slider .banner-dots li .banner-dot__bg {
  fill: #000;
  stroke: none;
  stroke-dashoffset: 0;
}

.banner_slider .banner-dots li .banner-dot__prog {
  stroke: #000;
  opacity: 0;
}

.banner_slider .banner-dots li.slick-active .banner-dot__bg {
  fill: transparent;
  stroke: rgba(0, 0, 0, 0.35);
  stroke-dashoffset: 0;
}

.banner_slider .banner-dots li.slick-active .banner-dot__prog {
  opacity: 1;
  stroke: #000;
}

.banner_slider .banner-dots li.is-ticking .banner-dot__prog {
  animation: bannerDotProgress var(--dotDuration, 6000ms) linear forwards;
}

@keyframes bannerDotProgress {
  from {
    stroke-dashoffset: 50.265;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/*Banner Css Ends */

/*Inner Banner Css Starts */

section.inner-banner-sec .banner-box {
  height: 300px;
}

section.inner-banner-sec .banner-txt {
  width: 100%;
  justify-content: center;
}

section.inner-banner-sec .banner-txt h1 {
  writing-mode: horizontal-tb;
  color: #fff;
}

/*Inner Banner Css Ends */

/*Produicts Css Starts */

.produicts_slider {
  transition: ease-in;
  transition-duration: 0.5s;
}

.produicts_slider .draggable {
  padding: 0 100px 0 0 !important;
}

.produicts_slider .slick-list {
  overflow: hidden;
}

.produicts_slider .slick-prev,
.produicts_slider .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #fff;
  z-index: 999;
  bottom: unset;
  top: 50%;
}

.produicts_slider .slick-prev {
  left: -100vw;
  transition: ease-in;
  transition-duration: 0.5s;
}

.produicts_slider:hover .slick-prev {
  left: 3%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.produicts_slider .slick-next {
  right: -100vw;
  transition: ease-in;
  transition-duration: 0.5s;
}

.produicts_slider:hover .slick-next {
  right: 3%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.produicts_slider .slick-next::before {
  content: "\f105";
  font-family: "Font Awesome 7 Pro";
  font-size: 20px;
  color: #000;
}

.produicts_slider .slick-prev::before {
  content: "\f104";
  font-family: "Font Awesome 7 Pro";
  font-size: 20px;
  color: #000;
}

.sold-marquee {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  z-index: 99;
}

.sold-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: soldMarquee 10s linear infinite;
  animation-play-state: paused;
}

.produicts-card-mian:hover .sold-marquee__track {
  animation-play-state: running;
}

.sold-marquee__group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

@keyframes soldMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.produicts_slider + .produicts-progress {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 15px;
}

.produicts-progress {
  --bar-speed: 650ms;
  height: 4px;
  background: #d0d0d0;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.produicts-progress:active {
  cursor: grabbing;
}

.produicts-progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #3f3f3f;
  border-radius: 999px;
  transform: translate3d(0, 0, 0);
  will-change: transform, width;
  transition:
    transform var(--bar-speed) cubic-bezier(0.25, 0.8, 0.25, 1),
    width var(--bar-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.produicts-progress.is-live span,
.produicts-progress.is-dragging span {
  transition: none;
}

.produicts_slider .slick-slide {
  margin: 0 10px;
  opacity: 1;
}

.produicts-card-mian {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
  height: 650px;
  width: 100%;
  margin: 20px 0;
  position: relative;
  transition: ease-in 0.5s;
}

.produicts-card-mian:hover {
  transition: ease-out 0.5s;
}

.produicts-card-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.produicts-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    opacity 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.produicts-card-img img:not(.produicts-card-img-ex) {
  opacity: 1;
  transform: scale(1);
}

.produicts-card-img .produicts-card-img-ex {
  opacity: 0;
  transform: scale(1.06);
}

.produicts-card-mian:hover .produicts-card-img img:not(.produicts-card-img-ex) {
  opacity: 0;
  transform: scale(1.03);
}

.produicts-card-mian:hover .produicts-card-img .produicts-card-img-ex {
  opacity: 1;
  transform: scale(1);
}

.produicts-card-txt {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
  overflow: hidden;
  transition: ease-in 0.5s;
}

.produicts-card-mian:hover .produicts-card-txt {
  height: 0;
  width: 0;
  gap: 0;
  transition: ease-out 0.5s;
}

.produicts-card-txt h5,
.produicts-card-txt h6 {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  text-transform: capitalize;
}

.produicts-card-btn {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: ease-in 0.5s;
}

.produicts-card-mian:hover .produicts-card-btn {
  height: 55px;
  transition: ease-out 0.5s;
}

.produicts-card-btn a {
  width: 100%;
}

.produicts-card-sold-tag-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.produicts-card-sold-tag-dot span.pro-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5px;
  width: 5px;
  background-color: #000;
  border-radius: 300px;
  overflow: hidden;
}

.produicts-card-sold-tag-txt h6 {
  font-size: 12px;
  line-height: 1;
  font-family: "Montserrat";
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (hover: none) {
  .produicts-card-img img {
    transition: none;
  }
  .produicts-card-img .produicts-card-img-ex {
    display: none;
  }
}

/*Produicts Css Ends */

/*Pro video Sec Css Starts */

.pro-video-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 800px;
  width: 100%;
}

.pro-video-main video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/*Pro video Sec Css Ends */

/*Category Sec Css Starts */

.category-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 20px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.category-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  width: 100%;
  overflow: hidden;
}

.category-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.category-card-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  scale: 1;
  object-fit: cover;
  object-position: center;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-card-main:hover .category-card-img img {
  scale: 1.1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.category-card-txt h4 {
  font-size: 18px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 300;
  color: #000;
}

/*Category Sec Css Ends */

/*Quote Sec Css Starts */

.quote-bg-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1200px;
  width: 100%;
  overflow: hidden;
}

.quote-bg-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.quote-bg-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*Quote Sec Css Ends */

/*Coco Sculpt Produicts Sec Css Starts */

section.coco-sculpt-produicts-sec .container-fluid,
section.pink-palm-produicts-sec .container-fluid {
  width: 90%;
  margin: 0 auto;
}

/*Coco Sculpt Produicts Sec Css Ends */

/*Testimonial Sec Css Starts */

section.testimonial-sec .container {
  width: 70%;
  margin: 0 auto;
}

.testimonial-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 20px 0;
}

.testimonial-card-stars ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card-stars ul li a i {
  color: #373f50;
  font-size: 23px;
}

.testimonial_slider .slick-slide {
  margin: 0px 50px;
}

.testimonial_slider .slick-active {
  opacity: 1;
}

.testimonial-card-txt p {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 25px;
}

/*Testimonial Sec Css Ends */

/*Returns Sec Css Starts */

.returns-marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.returns-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: returnsMarquee 12s linear infinite;
}

.returns-marquee__track h4 {
  margin: 0;
  font-size: 60px;
  line-height: 180px;
  color: #1f253e;
  font-weight: 500;
  padding: 0 10px;
}

@keyframes returnsMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .returns-marquee__track {
    animation: none;
  }
}

/*Returns Sec Css Ends */

/*Footer Css Starts */

footer {
  padding: 100px 0 50px 0;
  background-color: #373f50;
}

.footer-con-main,
.footer-link-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  height: 100%;
}

.footer-link-main {
  padding: 0 0 100px 0;
  display: flex;
  align-items: end;
  justify-content: end;
  width: 50%;
  margin: 0 0 0 auto;
}

.footer-heading {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
}

.footer-logo h5,
.footer-link-main h5 {
  font-size: 19px;
  line-height: 1;
  color: #e3c25a;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.footer-txt p {
  color: #ffff;
}

.footer-txt p a {
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 0 0 5px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-txt p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-txt p a:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-socials ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.footer-socials ul li a i {
  font-size: 25px;
  line-height: 1;
  color: #e3c25a;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-socials ul li a i:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-link {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
}

.footer-link ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.footer-link ul li a {
  position: relative;
  font-size: 15px;
  padding: 0 0 5px 0;
  line-height: 1;
  color: #fff;
  font-family: "Montserrat";
  text-transform: capitalize;
}

.footer-link ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  left: unset;
  width: 0;
  border-bottom: 2px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-link ul li a:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-copy-txt p {
  color: #fff;
}

.footer-copy-txt p a {
  position: relative;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  font-family: "Montserrat";
  text-transform: capitalize;
  padding: 0 0 5px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-copy-txt p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-copy-txt p a:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-pay-main {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  gap: 20px;
}

.footer-ex-link ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.footer-ex-link ul li a {
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 500;
  padding: 0 0 5px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-ex-link ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: unset;
  width: 0;
  border-bottom: 2px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-ex-link ul li a:hover::before {
  right: unset;
  left: 0;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

/*Footer Css Ends */

/*Off Modal Css Starts */

.off-modal-wrap {
  position: fixed;
  bottom: 2%;
  left: 1%;
}

.off-modal-btn button {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #1f253e;
  text-transform: capitalize;
  font-family: "Poppins";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 15px;
  background-color: #ffffffb5;
  border: 1px solid #0000;
  border-radius: 5px;
  overflow: hidden;
  outline: none;
}

.off-modal-con .modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.off-modal-con .modal-dialog {
  min-width: 50% !important;
  margin: 0 auto;
}

.off-modal-con .modal-header {
  padding: 0;
  border: none;
  position: absolute;
  top: 3%;
  right: 2%;
  z-index: 99;
}

.off-modal-con button.btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0;
}

.modal-content .modal-body {
  padding: 0;
}

.off-modal-con-box {
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 10px; */
  /* overflow: hidden; */
  height: 100%;
}

.off-modal-con-img {
  width: 50%;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.off-modal-con-txt-form-main {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 0 30px;
}

.off-modal-con-img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.off-modal-con-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.off-modal-con-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 50%;
  margin: 0 auto;
}

.off-modal-con-logo img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.off-modal-con-txt h5 {
  font-family: "Montserrat";
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.con-form-selc-input {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  background-color: #fff;
  border: 1px solid #00000045;
  padding: 10px;
  gap: 0px;
  position: relative;
  z-index: 1;
}

.con-form-selc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 20%;
}

.con-form-selc select {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 100%;
  padding: 0 20px 0 10px;
  border: none;
  background-color: #0000;
  cursor: pointer;
}

.con-form-selc i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000;
  position: absolute;
  top: 35%;
  right: 0;
  z-index: -1;
}

.con-form-input {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 80%;
}

.con-form-input input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  padding: 0 10px;
  height: 30px;
  font-size: 15px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
}

.con-form-input input::placeholder {
  font-size: 15px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 500;
  color: #000000b6;
}

.off-modal-con-form-txt p {
  font-size: 10px;
  line-height: 13px;
  font-weight: 400;
  opacity: 0.6;
  margin: 20px 0;
}

.off-modal-con-form-txt p a {
  font-size: 10px;
  line-height: 13px;
  font-weight: 400;
  margin: 20px 0;
  color: #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.off-modal-con-form-txt p a:hover {
  color: #1f253e;
  transition: ease-out;
  transition-duration: 0.5s;
}

.con-form-btn {
  margin: 20px 0;
  width: 100%;
}

.con-form-btn button {
  width: 100%;
}

/*Off Modal Css Ends */

