body {
  background: #f4f5ff;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

@font-face {
  font-family: "WorkSans-Bold";
  src: url("./fonts/WorkSans-Bold.eot");
  src: url("WorkSans-Bold.eot?#iefix") format("embedded-opentype"),
    url("./fonts/WorkSans-Bold.woff2") format("woff2"),
    url("./fonts/WorkSans-Bold.woff") format("woff"),
    url("./fonts/WorkSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WorkSans-Light";
  src: url("./fonts/WorkSans-Light.eot");
  src: url("WorkSans-Light.eot?#iefix") format("embedded-opentype"),
    url("./fonts/WorkSans-Light.woff2") format("woff2"),
    url("./fonts/WorkSans-Light.woff") format("woff"),
    url("./fonts/WorkSans-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WorkSans-Medium";
  src: url("./fonts/WorkSans-Medium.eot");
  src: url("WorkSans-Medium.eot?#iefix") format("embedded-opentype"),
    url("./fonts/WorkSans-Medium.woff2") format("woff2"),
    url("./fonts/WorkSans-Medium.woff") format("woff"),
    url("./fonts/WorkSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WorkSans-SemiBold";
  src: url("./fonts/WorkSans-SemiBold.eot");
  src: url("WorkSans-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("./fonts/WorkSans-SemiBold.woff2") format("woff2"),
    url("./fonts/WorkSans-SemiBold.woff") format("woff"),
    url("./fonts/WorkSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "WorkSans-Regular";
  src: url("./fonts/WorkSans-Regular.eot");
  src: url("WorkSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("./fonts/WorkSans-Regular.woff2") format("woff2"),
    url("./fonts/WorkSans-Regular.woff") format("woff"),
    url("./fonts/WorkSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --star-color: #fff;
  --star-background: #fc0;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.red-text{
    color: #ff004e !important;
}
.coupon .coupon-inner {
  border-left: 1px dashed #ddd;
  position: relative;
  padding: 15px;
}

.coupon .coupon-inner .info::after,
.coupon .coupon-inner .info::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f4f5ff;
  border-radius: 100%;
}
.coupon .coupon-inner .info::before {
  top: -10px;
  left: -10px;
}

.coupon .coupon-inner .info::after {
  bottom: -10px;
  left: -10px;
}
.coupon .time {
  color: #132238;
  font-size: 1.6rem;
}

.info-container .info-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-container .info-row h6 {
  font-family: "WorkSans-Regular";
  font-size: 14px;
  color: #132238;
}

.coupon-middle-content h2 {
  font-family: "WorkSans-SemiBold";
  font-size: 22px;
  color: #132238;
}

.coupon-middle-content p {
  font-family: "WorkSans-Regular";
  font-size: 16px;
  color: #132238;
  line-height: 140%;
}

.coupon {
  background-color: #ffffff;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  border: 1px solid #d8dae0;
}

.coupon-middle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 15px;
}

.button-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.button {
  font-size: 16px;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #2c3e50 50%, #6840cb 50%);
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  /* position: relative; */
  top: 50%;
  margin: 0 auto;
  padding: 5px 10px;
  border-radius: 8px;
  transition: all 0.4s;
  display: block;
  text-decoration: none;
}
.button:after {
  content: "Get Offer";
  font-family: "WorkSans-Medium";
}
.button:hover {
  color: white;
  background-position: -100% 0;
}
.button:hover:after {
  content: "Claim";
  font-family: "WorkSans-Medium";
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 30px;
  line-height: 0;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    var(--star-background) var(--percent),
    var(--star-background) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
}

.coupon-end-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-row i {
  color: #6840cb;
  font-size: 19px;
}

.coupon-start-column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  max-width: 100px;
  width: 100%;
}
.image-box img {
  max-width: 60px;
  height: auto;
  display: block;
}

.coupon-start-column h5 {
  font-family: "WorkSans-SemiBold";
  font-size: 18px;
  color: #6840cb;
}
.info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .navbar {
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
}
.title-sec {
  padding: 100px 0 0 0;
}
.navbar ul li a {
  font-family: "WorkSans-Regular";
  font-size: 14px;
  color: #673de6 !important;
font-weight: 600;
}
.navbar .logo img {
 
  width: 100%;
  height: auto;
}
.main-title-box .title-text h1 {
  font-family: "WorkSans-SemiBold";
  font-size: 27px;
  color: #132238;
  text-align: center;
}
.main-title-box .title-img img {
  max-width: 240px;
  width: 100%;
  height: auto;
}

.main-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 60px 0 50px 0;
}

.foot-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 0;
  padding-left: 0;
}
.foot-nav ul li {
  list-style-type: none;
}

.foot-nav ul li a {
  font-family: "WorkSans-Regular";
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

footer {
  background-color: #000000;
  width: 100%;
  bottom: 0;
  padding: 15px 0;
  margin: 80px 0 0 0;
}

.copy-right-txt h6 {
  font-family: "WorkSans-Regular";
  font-size: 14px;
}
.copy-right-txt {
  text-align: end;
}
.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-link:hover,
.nav-link.active:hover {
  color: #6840cb;
}
.foot-nav a:hover {
  color: #e9e5e5;
}
.copy-right-txt p {
  font-size: 14px;
  color: #ffffff;
}

.coupon .coupon-inner .info::before,
.coupon .coupon-inner .info::after {
  display: block;
}
.search-form .search-submit {
  display: none;
}
.main-coupon-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.website-content {
  height: 0;
  width: 0;
  overflow: hidden;
  text-align: center;
  margin: auto;
}
.aligned-column {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.coupon-procedure {
  padding: 135px 0 0 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.benefits-container h4 {
  font-family: "WorkSans-Semibold";
  font-size: 22px;
}

.benefits-list li {
  font-family: "WorkSans-Regular";
  position: relative;
  padding-left: 20px;
  color: #555;
  font-size: 16px;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 18px;
  color: #6840cb;
}

.bottom-content .bottom-title {
  font-family: "WorkSans-Bold";
  color: #fc5185;
  font-size: 18px;
}
.bottom-content .small-text {
  font-family: "WorkSans-Medium";
  font-size: 16px;
}
.bottom-content p {
  font-family: "WorkSans-SemiBold";
  font-size: 16px;
  color: #fc5185;
}
.img-box img {
  width: 100%;
  height: auto;
}
.top-content .top-list h5 {
  font-family: "WorkSans-Medium";
  font-size: 16px;
  color: #132238;
}
.top-content .top-list ul li {
  font-family: "WorkSans-Regular";
  color: #000000;
}
.top-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.top-list ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top-list ol li span {
  font-family: "WorkSans-Semibold";
  color: #000000;
}
.top-list ol li {
  border-bottom: 1px solid #d8dae0;
  width: fit-content;
  font-size: 16px;
}
.coupon-procedure .main-procedure-box {
  background-color: #ffffff;
  border: 1px solid #d8dae0;
  padding: 35px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.top-content {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.top-content h1 {
  font-family: "WorkSans-SemiBold";
  font-size: 27px;
  color: #132238;
  line-height: 140%;
}

.flash-sale{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: red;
    animation: blinker 1s step-end infinite;
    
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}



    .video-container {
      position: relative;
      width: 100%;
      margin: 0 auto;
    }

    .video-container video {
      width: 100%;
      height: auto;
      display: block;
      cursor: pointer;
    }

    .play-pause {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.4);
      border: none;
      padding: 1rem;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s ease, opacity 0.3s ease;
      opacity: 0;
    }

    .play-pause:hover {
      background: rgba(0, 0, 0, 0.6);
    }

    .play-pause svg {
      display: block;
      width: 40px;
      height: 40px;
      fill: #ffffff;
    }

    .video-container:hover .play-pause,
    .video-container.paused .play-pause {
      opacity: 1;
    }

    .home-banner img:hover {
        filter: brightness(75%);
    }
    .home-banner img {
        transition: all 0.16s ease-in-out;
    }







/**************************************** Responsive ********************************************/

@media screen and (max-width: 1200px) {
  .coupon-middle-content h2 {
    font-size: 19px;
  }
  .coupon-start-column h5 {
    font-size: 14px;
  }
  .coupon-start-column {
    padding: 10px;
    max-width: 80px;
  }
  .image-box img {
    max-width: 55px;
  }
}
@media screen and (max-width: 992px) {
  .coupon-procedure {
    padding: 125px 0 0 0;
  }

  .title-sec {
    padding: 70px 0 0 0;
  }
  .navbar-collapse .navbar-nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 100%;
    background: white;
    left: 0;
    z-index: 4;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar-collapse.show .navbar-nav {
    animation: slideDown 0.3s ease forwards;
  }

  .navbar-toggler:focus,
  .button.navbar-toggler.collapsed {
    box-shadow: none;
    border: none !important;
  }
  .button.navbar-toggler {
    border: none !important;
  }

  .main-title-box {
    padding: 50px 0;
  }
  .coupon-middle-content {
    max-width: 300px;
    width: 100%;
    padding: 8px;
  }
  .coupon-middle-content h2 {
    font-size: 17px;
  }
  .coupon-middle-content p {
    font-size: 14px;
    line-height: 130%;
  }
  .coupon .coupon-inner {
    padding: 12px;
  }
  footer {
    padding: 8px 0;
    margin: 27px 0 0 0;
  }
  .coupon-start-column {
    padding: 8px;
    max-width: 90px;
  }
  .button {
    font-size: 14px;
  }
  .top-list ol li {
    font-size: 14px;
  }
  .top-content h1 {
    font-size: 24px;
  }
  .benefits-container h4 {
    font-size: 19px;
  }
  .benefits-list li {
    font-size: 14px;
    /* padding-left: 17px; */
  }
  .benefits-list li::before {
    font-size: 14px;
  }
  .bottom-content h5 span {
    font-size: 14px;
  }
  .bottom-content h5 {
    font-size: 16px;
  }
  .bottom-list ul li {
    font-size: 14px;
  }
  .benefits-list li::before {
    top: 0;
  }
  .coupon-procedure .main-procedure-box {
    gap: 20px;
  }

  .benefits-container h4 {
    font-size: 18px;
  }
  .top-content {
    display: flex;
    gap: 20px;
  }
  .coupon-procedure {
    padding: 115px 0 0 0;
  }
  .bottom-content .bottom-title {
    font-size: 17px;
  }
  .bottom-content p {
    font-size: 14px;
  }
  .bottom-content .small-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .coupon {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    border-radius: 8px;
  }
  .coupon .coupon-inner .info::before,
  .coupon .coupon-inner .info::after {
    display: none;
  }
  .coupon .coupon-inner {
    position: unset;
  }
  .info-container {
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
  }
  .coupon-middle-content {
    align-items: flex-start;
    padding: 0;
    max-width: 100%;
    width: 100%;
  }

  .coupon .coupon-inner {
    border: none;
    padding: 0;
  }

  .aligned-column {
    flex-direction: column;
    gap: 10px;
  }
  .coupon {
    flex-direction: row;
    gap: 8px;
    padding: 15px;
    align-items: flex-start;
  }
  .image-box img {
    max-width: 75px;
  }
  .info-container .info-row {
    gap: 2px;
  }
  .info-container .info-row h6 {
    font-size: 12px;
  }
  .coupon-middle-content p {
    font-size: 13px;
  }
  .button {
    margin: unset;
  }
  .coupon-start-column {
    padding: 6px 0 0 0;
  }
  .main-coupon-column {
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .title-sec {
    padding: 55px 0 0 0;
  }
  .coupon-middle-content p {
    font-size: 12px;
  }
  .main-title-box .title-text h1 {
    font-size: 22px;
  }
  .main-title-box .title-img img {
    max-width: 170px;
  }
  .main-title-box {
    padding: 40px 0;
  }
  .foot-nav ul {
    gap: 10px;
    justify-content: center;
  }
  .info-container {
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
  }
  .coupon-middle-content h2 {
    font-size: 16px;
  }
  .navbar {
    padding: 4px 0;
  }

  .coupon {
    gap: 10px;
    padding: 15px 10px;
  }

  .main-title-box {
    padding: 35px 0 20px;
  }
  .info-container .info-row h6 {
    font-size: 12px;
  }
  .info-row i {
    font-size: 14px;
  }
  .info-container .info-row {
    gap: 2px;
    align-items: baseline;
  }
  .main-coupon-column {
    gap: 10px;
  }
  footer {
    margin: 32px 0 0 0;
  }
  .copy-right-txt {
    text-align: center;
  }
  .coupon-start-column {
    max-width: 50px;
  }
  .image-box img {
    max-width: 50px;
  }
  .coupon-start-column h5 {
    font-size: 12px;
  }
  .Stars::before {
    font-size: 22px;
  }
  .aligned-column {
    flex-direction: column;
    gap: 8px;
  }

  .top-content h1 {
    font-size: 20px;
  }

  .coupon-procedure .main-procedure-box {
    padding: 20px;
  }

  .bottom-content h5 span {
    font-size: 14px;
  }
  .bottom-content .small-text,
  .bottom-content p {
    font-size: 12px;
  }
  .bottom-content .bottom-title {
    font-size: 14px;
  }
  .copy-right-txt {
    text-align: center;
  }
  .foot-nav ul {
    justify-content: center;
  }
  .coupon-procedure {
    padding: 105px 0 0 0;
  }
}

@media screen and (max-width: 420px) {
  .main-title-box .title-text h1 {
    font-size: 18px;
  }
  .main-title-box .title-img img {
    max-width: 120px;
  }
  .info-container {
    gap: 2px;
  }
  .info-container .info-row {
    gap: 1px;
  }
  .coupon {
    gap: 6px;
  }
}
