* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

:root {
  --dm-font: "DM Sans", sans-serif;
  --color-primary: #3577f0;
  --light-primary: #8c71db;
  --color-secondary: #ff497c;
  --color-tertiary: #fab8c4;
  --color-white: #ffffff;
  --color-dark: #27272e;
  --color-black: #000000;
  --color-light: #cbd3d9;
  --color-lighter: #f6f7fb;
  --color-lightest: #c4c4c4;
  --color-chart01: #896ba7;
  --color-chart02: #badeff;
  --color-chart03: #e76458;
  --color-heading: #292930;
  --color-body: #777777;
  --color-border-light: #e3e6e9;
  --color-border-dark: #42424a;
  --color-gray: #999fae;
  --color-midgray: #878787;
  --color-extra01: #999fae;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --shadow-primary: 0px 4px 10px rgba(37, 47, 63, 0.1);
  --shadow-light: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  --shadow-dark: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
}

a,
i {
  display: inline-block;
  text-decoration: none;
}
p {
  margin-bottom: 0px;
}

.h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.3;
}

.sub-heading-txt {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}
.sub-heading-icon {
  color: var(--color-secondary);
}

/* campaign start *********************** */
#campaign {
  background-image: url(../../image/campaign-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

#campaign.remove {
  display: none;
}

#campaign .campaign-txt {
  color: var(--color-white);
  text-transform: capitalize;
  font-size: 14px;
}

#campaign .campaign-txt > a {
  color: var(--color-white);
  transition: all 500ms ease-in-out;
  font-size: 14px;
}

#campaign .campaign-txt > a:hover {
  color: var(--color-danger);
}

#campaign #campaign-close-btn {
  right: 30px;
  color: var(--color-white);
  transition: all 500ms ease-in-out;
  cursor: pointer;
}

#campaign #campaign-close-btn:hover {
  color: var(--color-dark);
}

/* campaign end ************************* */

/* header start ************************* */

header {
  z-index: 10000000000000;
  background-color: #f9f3f0;
  padding-top: 10px;
}
header > div:first-child > div:first-child {
  border-radius: 10px;
}

header .nav > li > a {
  color: var(--color-heading);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  text-decoration: none;
}

header .nav > li > a::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 2px;
  background-color: var(--color-heading);
  width: 0;
  left: 0;
  bottom: 0;
  transition: all 300ms ease-in-out;
}

header .nav > li > a:hover::after {
  width: 100%;
}

header .right > ul > li > a > i {
  color: var(--color-heading);
}
/* header end *************************** */

/* mobile menu start ******************** */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -250px;
  height: 100vh;
  width: 250px;

  background-color: var(--color-white);
  z-index: 100;
  transition: all 0.3s ease-in-out;
  padding: 20px 30px 10px;
}

.mobile-menu ul > li {
  list-style: none;
}

.mobile-menu ul > li > a {
  color: var(--color-heading);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.mobile-menu.show {
  right: 0px;
}

/* mobile menu end ********************** */

/* banner section starts here */

#banner {
  height: 100vh;
  background-color: #f9f3f0;
}

#banner .container {
  height: 100%;
}

#banner .d-flex {
  flex-wrap: wrap;
}

#banner .bnr {
  row-gap: 30px;
}

#banner .bnr {
  height: 100%;
}

#banner .bnr-left {
  height: 100%;
}
#banner .bnr-left .h2 {
  letter-spacing: -0.03em;
  margin-bottom: 50px;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

#banner .bnr-left .bnr-left-btn {
  background-color: var(--color-white);
  padding: 20px 40px;
  color: #27272e;
  font-weight: 700;
}

#banner .bnr-left .bnr-author-img li {
  list-style: none;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: -25px;
}

#banner .bnr-left .bnr-author-img li:nth-child(1) {
  margin-left: 0px;
}

/* @media screen and (min-width: 768px) and (max-width: 991.9px) {
  .banner-content-details > p:nth-child(2) {
    font-size: 50px;
  }
}
@media screen and (max-width: 575.9px) {
  .banner-content-details { 
    text-align: center;
  }
  .banner-content-details:nth-child(1) {
    position: relative;
  }
  .banner-content-details > p:nth-child(1) {
    left: 15px;
  }
}

.banner-carousel.owl-carousel .owl-item {
  display: flex;
  justify-content: left;
}
.banner-carousel.owl-carousel .item {
  transform: scale(0.2) translate(-200%, 200%);
  transition: all 300ms ease;
}
.banner-carousel.owl-carousel .owl-item.active.center .item {
  transform: scale(1);
  transition: all 300ms ease;
}
.banner-carousel.owl-carousel .item img {
  max-width: 100%;
  height: auto;
}
.banner-content-details {
  

  transition: all 300ms ease;
  position: absolute;
  top: 0;
}

.banner-content-details > p:nth-child(1) {
  color: #ff497c;
  opacity: 0;
  animation: show-up 300ms ease 1 forwards;
}
@keyframes show-up {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.banner-content-details:nth-child(2) {
  opacity: 1;
}
.banner-content-details > div:nth-child(3) > div:nth-child(2) > ul > li {
  margin-left: -20px;
}
.banner-content-rating > ul > li > i {
  font-size: 13px;
  color: #ffa800;
  margin-left: 0px;
}
.banner-content-rating > div:nth-child(2) p {
  font-size: 12px;
}
.banner-animate p,
.banner-animate div {
  opacity: 0;
  animation: show-up 700ms ease-out 1 forwards;
}
.banner-carousel.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.banner-carousel.owl-carousel .owl-nav .owl-prev,
.banner-carousel.owl-carousel .owl-nav .owl-next {
  height: 5px;
  width: 30px;
}
.banner-carousel.owl-carousel .owl-nav .owl-prev {
  background: #ff497c;
}
.banner-carousel.owl-carousel .owl-nav .owl-next {
  background: #ff497d54;
}
.banner-carousel.owl-carousel .owl-nav .owl-prev span,
.banner-carousel.owl-carousel .owl-nav .owl-next span {
  display: none;
} */

/* banner section ends here */

/* catagory start ********************** */

#catagory {
  padding-top: 80px;
}

#catagory .catagory-txt-left > div > i {
  color: var(--color-secondary);
}

#catagory .catagory-txt-left > div > p {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}

#catagory .catagory-carousel .catagory-card {
  padding: 20px 0px;
  display: flex;
  justify-content: center;
}

#catagory .catagory-carousel .catagory-card a {
  text-decoration: none;
  margin: 0px auto;
  padding: 28px 12px;
  border-radius: 10px;
  transition: all 500ms ease-in-out;
}

#catagory .catagory-carousel .catagory-card a:hover {
  box-shadow: var(--shadow-primary);
}

#catagory .catagory-carousel .catagory-card p {
  text-align: center;
  color: var(--color-heading);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

#catagory .catagory-carousel-nav button {
  background-color: transparent;
  border: none;
}

/* catagory end ************************* */

/* miss start *************************** */

@media screen and (min-width: 768px) {
  .sound {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 575.9px) {
  .sound {
    width: 150px;
    height: 150px;
  }
}

#miss {
  padding-top: 80px;
  padding-bottom: 80px;
}

#miss > div {
  padding: 80px;
  background-color: var(--color-lighter);
}

#miss .h2 {
  font-size: 48px;
}

#miss .miss-countdown > div > p:nth-child(1) {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 5px;
}

#miss .miss-countdown > div > p:nth-child(2) {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
}

#miss .miss-btn {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  display: inline-block;
  padding: 16px 38px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#miss .miss-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-color: var(--color-primary);
  border-radius: 6px;
  left: 0;
  top: 0;
  z-index: -1;
}
.sound {
  top: 50%;
  left: 50%;
  transform: translate(-10%, -10%) rotate(-63deg);
}
.wave {
  height: calc(100% - 25px * var(--a));
  width: calc(100% - 25px * var(--a));
  border: 2px solid #e76458;
  border-width: 4px 6px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  padding: 10px;
  box-sizing: border-box;
  opacity: 0;
  transition: all 300ms ease;
}

/* miss end ***************************** */

/* product strat ********************** */

#product {
  padding-bottom: 80px;
}

#product .img-fluid {
  width: 100% !important;
}

#product .product-list {
  row-gap: 30px;
}

#product .product-img-area > div:nth-child(2) {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out;
}
#product .product-img-area > div:nth-child(2) > a:nth-child(1) {
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 4px;
  background-color: var(--color-white);
  display: block;
  text-align: center;
  transition: 0.3s;
  position: relative;
  font-size: 14px;
  color: var(--color-heading);
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 6%);
  position: relative;
  z-index: 1;
}

#product .product-img-area > div:nth-child(2) > a:nth-child(2) {
  height: 40px;
  line-height: 39px;
  padding: 0 18px;
  display: block;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-secondary);
  transition: 0.3s;
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 6%);
  position: relative;
  z-index: 1;
  text-decoration: none;
}

#product .product-img-area > div:nth-child(2) > a:nth-child(3) {
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 4px;
  background-color: var(--color-white);
  display: block;
  text-align: center;
  transition: 0.3s;
  position: relative;
  font-size: 14px;
  color: var(--color-heading);
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 6%);
  position: relative;
  z-index: 1;
}

#product .product-img-area:hover > div:nth-child(2) {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}

#product .product-img-area > p:nth-child(3) {
  background-color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: -10px;
}

#product .product-txt-area > a:nth-child(2) {
  color: var(--color-body);
  font-size: 16px;
  font-weight: 500;

  transition: var(--transition);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

#product .product-txt-area > a:nth-child(2):hover {
  color: var(--color-primary);
}

#product .product-txt-area > div:nth-child(3) > p:nth-child(1) {
  color: var(--color-heading);
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-secondary);
}

#product .product-txt-area > div:nth-child(3) > p:nth-child(2) {
  color: #d6d6d6;
  text-decoration: line-through;
  margin-left: 0;

  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-secondary);
}

#product .product-all-btn {
  background-color: var(--color-lighter);
  color: var(--color-body);

  position: relative;
  margin-top: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  padding: 16px 38px;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

/* product end ************************** */

/* feedback start *********************** */

#feedback {
  background-color: #f9f3f0;
  padding-top: 80px;
  padding-bottom: 80px;
}

#feedback .feedback-carousel-nav button {
  background-color: transparent;
  border: none;
}

.feedback-carousel .feedback-card .feedback-card-top {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 4%);
  border-radius: 10px;
  position: relative;
}

.feedback-carousel .feedback-card .feedback-card-top::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #fff;
  height: 50px;
  width: 50px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);

  left: 100px;
  bottom: -25px;
}

.feedback-carousel .feedback-card .feedback-card-top > p {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-body);
}

.feedback-carousel
  .feedback-card
  .feedback-card-bottom
  > div
  > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback-carousel
  .feedback-card
  .feedback-card-bottom
  > div
  > div:nth-child(2)
  > p:nth-child(1) {
  font-size: 14px;
  color: var(--color-body);
}

.feedback-carousel
  .feedback-card
  .feedback-card-bottom
  > div
  > div:nth-child(2)
  > p:nth-child(2) {
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
  font-size: 18px;
}
.feedback-carousel .owl-stage {
  margin-bottom: 50px;
}
.feedback-carousel .owl-item.center {
  transition: all 300ms ease;
}

/* feedback end ************************* */

/* new arrival start ******************** */

#arrival {
  padding-top: 80px;
  padding-bottom: 80px;
}

#arrival .arrival-carousel-nav button {
  background-color: transparent;
  border: none;
}

#arrival .arrival-card .discount-tag {
  background-color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0px;
}

#arrival .arrival-carousel .arrival-card > a:nth-child(2) {
  color: var(--color-body);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

#arrival .arrival-carousel .arrival-card > a:nth-child(2):hover {
  color: var(--color-primary);
}

#arrival .arrival-carousel .arrival-card > div:nth-child(3) > p:nth-child(1) {
  color: #d6d6d6;
  text-decoration: line-through;
  margin-left: 0;

  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-secondary);
}

#arrival .arrival-carousel .arrival-card > div:nth-child(3) > p:nth-child(2) {
  color: var(--color-heading);
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-secondary);
}

#arrival .arrival-carousel .arrival-card > div:nth-child(4) > a:nth-child(1) {
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 4px;
  background-color: var(--color-white);
  display: block;
  text-align: center;
  transition: 0.3s;
  position: relative;
  font-size: 14px;
  color: var(--color-heading);
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 6%);
  position: relative;
  z-index: 1;
}

#arrival .arrival-carousel .arrival-card > div:nth-child(4) > a:nth-child(2) {
  height: 40px;
  line-height: 39px;
  padding: 0 18px;
  display: block;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-secondary);
  transition: 0.3s;
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 6%);
  position: relative;
  z-index: 1;
  text-decoration: none;
}

#arrival .arrival-carousel .arrival-card > div:nth-child(4) > a:nth-child(3) {
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 4px;
  background-color: var(--color-white);
  display: block;
  text-align: center;
  transition: 0.3s;
  position: relative;
  font-size: 14px;
  color: var(--color-heading);
  box-shadow: 0 16px 32px 0 rgb(0 0 0 / 6%);
  position: relative;
  z-index: 1;
}

/* new arrival end ********************** */

/* choose start ************************* */

#choose {
  padding-top: 80px;
  padding-bottom: 80px;
}

#choose .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid #f1f1f1;
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 6px;
}

#choose .service-card > p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: var(--color-heading);
}

#choose .poster {
  row-gap: 30px;
}

#choose .poster a {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  display: block;
}

#choose .poster .poster-img {
  transition: all 300ms ease-in-out;
  width: 100% !important;
}

#choose .poster-left .poster-txt {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translatey(-50%);
  z-index: 3;
}

#choose .poster a:hover > .poster-img {
  scale: 1.1;
}

#choose .poster a:hover > .poster-txt > span {
  color: var(--color-body);
}

#choose .poster .poster-txt > p {
  line-height: 1;
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--color-white);
  font-weight: 700;
}

#choose .poster .poster-txt > span {
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

#choose .poster-right .poster-txt {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translatey(-50%);
  z-index: 3;
}

/* choose end *************************** */

/* news start ***************************** */

#news > div > div {
  background-image: url(../../image/bg-image-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 107px 85px;
  border-radius: 6px;
  overflow: hidden;
}

#news .news-search > div {
  row-gap: 15px;
  flex-wrap: wrap;
}

#news .news-search > div > div {
  background-color: #fff;
  border-radius: 6px;
}

#news .news-search input {
  border: none;
  max-width: 300px;
  outline: none;
}

#news .news-search button {
  outline: none;
  border: none;
  background-color: var(--color-heading);
  color: #fff;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
  height: 72px;
}

#news .news-search button:hover {
  background-color: #000000;
}

/* news end ****************************** */

/* footer start ***************************/

footer .footer-top {
  padding-top: 80px;
  padding-bottom: 80px;
}

footer .footer-top {
  row-gap: 30px;
}

footer .footer-top .footer-top-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--color-heading);
}

footer .footer-top .footer-top-txt {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-body);
  text-decoration: none;
  list-style: none;
}

footer .footer-top .footer-top-txt > a {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-body);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

footer .footer-top .footer-top-txt > a:hover {
  color: var(--color-heading);
}

footer .footer-bottom {
  padding-bottom: 20px;
  row-gap: 10px;
}

footer .footer-bottom .footer-bottom-txt {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-body);
  text-decoration: none;
  list-style: none;
}

footer .footer-bottom .footer-bottom-txt {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-body);
  text-decoration: none;
}

footer .footer-bottom > div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* footer end  *****************************/

.background-red {
  background-color: red;
}
.opacity1 {
  opacity: 1;
}
