:root {
  --primary-color: #F0801E;
  --primary-text-color: #474747;
  --secondary-color: #192462;
}

/* Common */
body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-text-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
img, video {
  max-width: 100%;
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all .3s ease-in-out;
}
.btn {
  height: 50px;
  border-radius: 50px;
  line-height: 50px;
  border: 0;
  padding: 0 30px;
}
.btn.btn-primary {
  background: linear-gradient(90deg, #F4AA0D 0%, #F0801E 100%);
}
.btn.effect {
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.btn.effect:after {
  content: '';
  background: var(--primary-color);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
  border-radius: 50px;
}
.btn.effect:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
}
.btn.effect.blue:after {
	background: var(--secondary-color);
}
h2 {
  position: relative;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--secondary-color) !important;
  /* text-align: center; */
  /* background: linear-gradient(90.61deg, #FFA75A -22.26%, #4A3F36 101.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  /* padding: 10px 0 0; */
}
h2 span {
  color: var(--primary-color);
}
/* h2::before {
  content: '';
  display: block;
  height: 6px;
  width: 100px;
  position: absolute;
  left: calc(50% - 50px);
  top: 0;
  background: var(--primary-color);
} */

/* swiper */
.swiper-pagination {
  position: relative;
  margin: 10px 0 0;
}
.swiper-pagination-bullet {
  height: 12px;
  width: 12px;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Header */
header {
  background: #FFF;
  /* padding: 10px 0; */
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0px 6px 12px 0px #0000001C;
}
header .btn.btn.btn-primary:after {
	background: var(--secondary-color);
}
.bx-menu {
  display: none;
  color: white;
  font-size: 1.8em;
  position: absolute;
  right: 40px;
  cursor: pointer;
}
.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div {
  font-size: 45px;
  font-weight: 600;
}
nav .wrapper {
  /* position: relative; */
  height: 80px;
  /* line-height: 80px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .nav-links {
  display: inline-flex;
  margin: 0;
}
.nav-links > li {
  list-style: none;
  position: relative;
}
.nav-links li > a {
  display: inline-block;
  padding: 0 20px;
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 80px;
  position: relative;
}
/* .nav-links li.primary-link > a::before {
  content: '';
  display: inline-block;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.3s;
  bottom: 0;
  opacity: 0;
}
.nav-links li.primary-link > a:hover::before {
  bottom: 20px;
  opacity: 1;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.3s;
} */
.nav-links li.mega-menu > a::after {
  content: '';
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: relative;
  top: -3px;
  right: -4px;
}
.nav-links li.mega-menu:hover > a::after {
  border-color: var(--primary-color);
}

.nav-links li > .divider {
  font-size: 20px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  top: 1px;
  color: var(--primary-color);
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.nav-links li:hover > a {
  color: var(--primary-color);
}
.nav-links li.active .mcd-menu,
.nav-links li:hover .mcd-menu {
  transition: all 0.4s ease;
  top: 80px;
  opacity: 1;
  visibility: visible;
  color: #FFF;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

header .btn {
  margin: 0 0 0 10px;
}

/* Hero */
.hero {
  height: 550px;
  position: relative;
  color: #FFF;
  background: #000;
}
.hero video {
  height: 90%;
  width: 670px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 16px;
  z-index: 0;
}
.hero .text-content {
  padding: 80px 40px 80px 0;
  position: relative;
  z-index: 1;
}
.text-content .swiper-slide {
  background: #000;
  height: 380px;
}
.hero .text-content h1 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 200;
  margin: 0 0 20px;
}
.hero .text-content h1 strong {
  font-weight: 700;
}
.hero .text-content p {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 30px;
}
.hero .text-content .btn {
  position: absolute;
  left: 0;
  top: 300px;
}

/* Clients */
.partners {
  padding: 0;
  background: #f5f6f7;
}
.partners img {
  height: 100px;
  width: 160px;
  object-fit: contain;
  object-position: center;
}
.partners img.small {
  height: 80px;
  width: 180px;
}

/* Experience */
.experience {
  padding: 60px 0;
}
.experience h2 {
  font-size: 34px;
}
p.subtitle {
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 28px;
}
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}
.experience-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #fff;
  border-radius: 26px;
}
.experience-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.experience-card:after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.experience-card:hover:after {
  opacity: 1;
  transition: opacity calc(var(--d) * 1.5) var(--e);
}
.experience-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
/* .experience-card.large video {
  width: 100%;
  height: 616px;
  object-fit: cover;
  object-position: center;
} */

.experience-card .content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  z-index: 1;
  transition: transform var(--d) var(--e);
  background-color: rgba(0, 0, 0, 0.8);
}
.experience-card .content > * + * {
  margin-top: 1rem;
}

.experience-card .content .title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

.experience-card .content .copy {
  font-size: 15px;
  font-style: italic;
  line-height: 25px;
}

@media (hover: hover) {
  .experience-card:after {
    transform: translateY(0);
  }
  .experience-card .content {
    transform: translateY(calc(100% - 3.9rem));
  }
  .experience-card .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }
  .experience-card:hover,
  .experience-card:focus-within {
      align-items: center;
    }
  .experience-card:hover:before,
  .experience-card:focus-within:before {
      transform: translateY(-4%);
    }
  .experience-card:hover:after,
  .experience-card:focus-within:after {
      transform: translateY(-50%);
    }
  .experience-card:hover .content,
  .experience-card:focus-within .content {
      transform: translateY(0);
      background-color: transparent;
  }
  .experience-card:hover .content > *:not(.title),
  .experience-card:focus-within .content > *:not(.title) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: calc(var(--d) / 8);
  }
  .experience-card:focus-within:before, .experience-card:focus-within:after,
  .experience-card:focus-within .content,
  .experience-card:focus-within .content > *:not(.title) {
      transition-duration: 0s;
  }
}

/* Solutions */
.solutions {
  padding: 60px 0;
}
.solutions h2 {
  margin: 30px 0;
}
.solutions p.subtitle {
  font-weight: 400;
  line-height: 30px;
  margin: 0 0 16px;
}
p.tag {
  border: 1px solid var(--primary-text-color);
  color: var(--primary-text-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  padding: 7px 17px;
  margin: 0 0 16px;
  display: inline-block;
}
.solutions .accent-elements img {
  border-radius: 24px;
  margin: 0 20px 20px 0;
  object-fit: cover;
  object-position: center;
}
.solutions .accent-elements img.main-img {
  height: 370px;
  width: 240px;
}
.solutions .accent-elements img.secondary-img {
  height: 173px;
  width: 100%;
  object-position: 0 -30px;
}
.solutions .accent-elements .satisfaction {
  padding: 25px 20px;
  border-radius: 20px;
  background: var(--primary-color);
  text-align: center;
}
.solutions .accent-elements .satisfaction .icon {
  margin-bottom: 18px;
}
.solutions .accent-elements .satisfaction .icon img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(200%) contrast(100%);
  margin: 0;
}
.solutions .accent-elements .satisfaction span {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-transform: capitalize;
  color: #FFF;
}
.solution-card {
  border: 1px solid #E2E4EA;
  padding: 20px;
  border-radius: 24px;
  height: 220px;
  background: #FFF;
}
.solution-card .icon {
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px 0 0;
  background: rgba(240, 128, 30, 0.1);
  border-radius: 12px;
}
.solution-card .icon img {
  height: 40px;
  width: 40px;
  /* filter: invert(1000%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(200%) contrast(100%); */
  filter: invert(67%) sepia(47%) saturate(4127%) hue-rotate(346deg) brightness(96%) contrast(97%);
}
.solution-card > div {
  width: calc(100% - 80px);
}
.solution-card p {
  margin: 0 0 5px;
}
.solutions .swiper-pagination {
  margin: 5px 0 0;
  text-align: left;
}
.swiper-pagination-bullet {
  height: 4px;
  width: 30px;
  border-radius: 0;
}
.stats {
  padding: 60px 0;
}
.stats .counter-item {
  border: 1px solid #CFD8E2;
  padding: 24px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(72, 72, 72, 0.2);
}
.stats .counter-content .title {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 20px;
  color: #192462;
}
.stats .counter-content .count {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 48px;
  margin-bottom: 0;
  line-height: 1;
  padding-top: 35px;
  font-weight: 700;
}
.stats .counter-item .shape {
  position: absolute;
  right: 40px;
  bottom: 40px;
  color: #CFD8E2;
  transition: all 0.3s ease-out 0s;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #f5f6f7;
}
.testimonial-nav-wrap button {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: #FFF;
  color: var(--primary-color);
  border-radius: 10px;
}
.testimonial-item {
  background: #FFF;
  padding: 30px 24px 30px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  cursor: grab;
}
.testimonial-item .rating {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  gap: 4px;
}
.testimonial-item .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.testimonial-item p {
  min-height: 140px;
  margin: 0;
}
.testimonial-avatar {
  display: flex;
  align-items: center;
  gap: 12px 17px;
}
.testimonial-avatar .thumb {
  width: 80px;
  flex: 0 0 auto;
}
.testimonial-avatar .thumb img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
}
.testimonial-avatar .thumb img.small {
  width: 150px;
  height: 80px;
}
.testimonial-avatar .content .name {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-avatar .content span {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.testimonial-item .shape {
  position: absolute;
  right: 24px;
  bottom: -10px;
  z-index: -1;
}

/* Footer CTA */
.footer-cta {
  padding: 80px 0;
  background: var(--secondary-color);
  background: url('../images/cta_bg3.webp') no-repeat right top;
  background-size: cover;
  color: #FFF;
}
.footer-cta h3 {
  font-size: 42px;
  line-height: 42px;
  font-weight: 700;
  margin: 0;
}
.footer-cta h3 span {
  font-size: 26px;
  font-weight: 500;
}
.footer-cta .btn {
  padding: 0 100px;
  font-size: 22px;
  line-height: 68px;
  height: 68px;
}
/* .footer-cta .btn.btn.effect:hover {
  color: var(--primary-color);
}
.footer-cta .btn.btn.effect:after {
  background-color: #FFF;
} */

/* Footer */
footer {
  padding: 60px 0 30px;
}
footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
footer ul li {
  padding: 0;
  margin: 0;
}
footer ul li a {
  color: var(--primary-text-color);
  text-decoration: none;
}
footer ul li a:hover {
  color: var(--primary-color);
}
footer hr {
  height: 2px;
  border: 0;
  background: var(--primary-color);
}
footer h5 {
  margin: 5px 0 16px;
}
footer .quicklinks ul li {
  padding: 0 0 0 16px;
  background: url('../images/footer-bullet.png') no-repeat left center;
  background-size: 8px;
  margin: 0 0 10px;
}

/* Floating */
/* .certification {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 70px;
} */

/* Clients */
.clients {
  padding: 40px 0;
}
.clients .border-right {
  border-right: 1px solid var(--primary-color);
}
.clients .clent-card {
  padding: 16px;
  border: 1px solid #E2E4EA;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients img {
  height: 70px;
  width: 150px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.clients img.large {
  height: 100px;
  width: 150px;
}
.clients img.small {
  height: 70px;
  width: 200px;
}
.clients .certification img {
  height: 100px;
  width: 160px;
}

/* accreditations */
.accreditations {
  padding: 40px 0 60px;
}
.accreditation-card {
  border: 1px solid #E2E4EA;
  padding: 16px;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0px 14px 30px rgba(11, 20, 34, .09);
  text-align: center;
  width: calc(50% - 16px);
}
.accreditation-card img {
  margin: 0 0 16px;
}
.accreditation-card p {
  margin: 0;
  line-height: 22px;
}

/* About */
.company {
  padding: 60px 0;
  background: #f5f6f7;
}
.company .container {
  position: relative;
}
.company ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.company ul li {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  background: url('../images/icons/checked.png') no-repeat left 0;
  background-size: 24px;
  padding: 0 0 5px 30px;
  margin: 0 0 16px;
  color: var(--primary-color);
}
.approach-card {
  border: 1px solid #E2E4EA;
  padding: 20px;
  border-radius: 24px;
  background: #FFF;
  margin: 0 0 20px;
  height: 400px;
}
.approach-card .icon {
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  background: rgba(240, 128, 30, 0.1);
  border-radius: 12px;
}
.approach-card .icon img {
  height: 40px;
  width: 40px;
  /* filter: invert(1000%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(200%) contrast(100%); */
  filter: invert(67%) sepia(47%) saturate(4127%) hue-rotate(346deg) brightness(96%) contrast(97%);
}
.approach-card > div {
  width: calc(100% - 80px);
}
.approach-card p {
  margin: 0 0 5px;
}

/* Core values */
.values {
  padding: 60px 0;
}
.values p.subtitle {
  width: 60%;
  margin: 0 auto 40px;
}
.values-card {
  border: 1px solid #E2E4EA;
  padding: 20px;
  border-radius: 24px;
  background: #FFF;
  margin: 0 0 20px;
  height: 250px;
  box-shadow: 0px 14px 30px rgba(11, 20, 34, .04);
}
.values-card .icon {
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px 16px 0;
  background: rgba(240, 128, 30, 0.1);
  border-radius: 12px;
}
.values-card .icon img {
  height: 35px;
  width: 35px;
  /* filter: invert(67%) sepia(47%) saturate(4127%) hue-rotate(346deg) brightness(96%) contrast(97%); */
}
.values-card > div {
  width: calc(100% - 80px);
}
.values-card h4 {
  font-size: 20px;
  line-height: 24px;
}
.values-card p {
  margin: 0 0 5px;
}

/* Contact */
.contact {
  padding: 80px 0;
  background: #f5f6f7;
}
.contact-card {
  border: 1px solid #E2E4EA;
  padding: 24px;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 14px 30px rgba(11, 20, 34, .04);
}
.contact-card .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px 0 0;
  background: rgba(240, 128, 30, 0.1);
  border-radius: 12px;
}
.contact-card .icon img {
  height: 35px;
  width: 35px;
  filter: invert(67%) sepia(47%) saturate(4127%) hue-rotate(346deg) brightness(96%) contrast(97%);
}
.contact-card > div {
  width: calc(100% - 80px);
}
.contact-card p {
  margin: 0;
}
.contact-card p small {
  color: #8d8d8d;
}
.contact-card p strong {
  font-weight: 500;
}
.contact iframe {
  width: 100%;
  height: 250px;
  border-radius: 24px;
  margin: 30px 0 20px;
  box-shadow: 0px 14px 30px rgba(11, 20, 34, .04);
}
.contact-form {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #E2E4EA;
  background: #FFF;
  box-shadow: 0px 14px 30px rgba(11, 20, 34, .04);
}
.form-control, input[type="text"],
.form-control, input[type="email"],
.form-control, input[type="tel"],
.form-control, textarea {
  border: none;
  border-bottom: 1px solid var(--primary-color);
  background: transparent;
  outline: none;
  width: 100%;
  padding: 1rem 0.4rem;
  border-radius: 0;
  margin: 0 0 20px;
}
textarea.form-control {
  height: 130px;
}

/* blogs */
.blog-card {
  border: 1px solid #E2E4EA;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 14px 30px rgba(11, 20, 34, .04);
  min-height: 400px;
  margin: 0 0 16px;
}
.blog-card a {
  color: var(--primary-text-color);
}
.blog-card .meta {
  padding: 16px;
}
.blog-card img {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.blog-card h2 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 10px;
}
.blog-card p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-details {
  padding: 60px 0;
}
.blog-details article h1 {
  color: var(--secondary-color);
  font-size: 46px;
  line-height: 52px;
  font-weight: 700;
  margin: 0 0 16px;
}
.blog-details article h2 {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 1px;
  margin: 10px 0 5px;
}
.blog-details article img {
  border-radius: 24px;
  margin: 0 0 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.blog-details article .meta {
  color: #8d8d8d;
}
.blog-details .blog-card {
  border: 0;
  border-radius: 16px;
  background: transparent;
  min-height: auto;
  margin: 0 0 20px;
  box-shadow: none;
}
.blog-details .blog-card a {
  color: var(--primary-text-color);
}
.blog-details .blog-card .meta {
  padding: 16px 0 0;
}
.blog-details .blog-card img {
  border-radius: 16px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.blog-details .blog-card h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 10px;
}

/* Years */
.discount-wrapp {
  position: absolute;
  left: 120px;
  bottom: 20px;
  border-radius: 50%;
  background: #FFF;
  border: 0;
  padding: 14px;
  width: 206px;
  height: 206px;
}
.discount-wrapp .counter-number {
  background: rgba(240, 128, 30, 0.1);
  border-radius: 50%;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
}
.discount-tag {
  position: relative;
  display: inline-block;
  min-height: 180px;
  min-width: 180px;
  border-radius: 50%;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-text-color);
  text-align: center;
  transform: rotate(30deg);
  animation: spin 10s infinite alternate-reverse;
}
.discount-wrapp .discount-tag span {
  --rotate-letter: 7.8deg;
  font-size: 16px;
  font-weight: 400;
  min-height: 95px;
  top: -2px;
  text-transform: none;
  position: absolute;
  min-width: 85px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  transform-origin: bottom center;
  transform: rotate(var(--rotate-letter));
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
.discount-tag span.char2 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
  transform: rotate(calc(var(--rotate-letter) * 2))
}

.discount-tag span.char3 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
  transform: rotate(calc(var(--rotate-letter) * 3))
}

.discount-tag span.char4 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
  transform: rotate(calc(var(--rotate-letter) * 4))
}

.discount-tag span.char5 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
  transform: rotate(calc(var(--rotate-letter) * 5))
}

.discount-tag span.char6 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
  transform: rotate(calc(var(--rotate-letter) * 6))
}

.discount-tag span.char7 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
  transform: rotate(calc(var(--rotate-letter) * 7))
}

.discount-tag span.char8 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
  transform: rotate(calc(var(--rotate-letter) * 8))
}

.discount-tag span.char9 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
  transform: rotate(calc(var(--rotate-letter) * 9))
}

.discount-tag span.char10 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
  transform: rotate(calc(var(--rotate-letter) * 10))
}

.discount-tag span.char11 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
  transform: rotate(calc(var(--rotate-letter) * 11))
}

.discount-tag span.char12 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
  transform: rotate(calc(var(--rotate-letter) * 12))
}

.discount-tag span.char13 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
  transform: rotate(calc(var(--rotate-letter) * 13))
}

.discount-tag span.char14 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
  transform: rotate(calc(var(--rotate-letter) * 14))
}

.discount-tag span.char15 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
  transform: rotate(calc(var(--rotate-letter) * 15))
}

.discount-tag span.char16 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
  transform: rotate(calc(var(--rotate-letter) * 16))
}

.discount-tag span.char17 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
  transform: rotate(calc(var(--rotate-letter) * 17))
}

.discount-tag span.char18 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
  transform: rotate(calc(var(--rotate-letter) * 18))
}

.discount-tag span.char19 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
  transform: rotate(calc(var(--rotate-letter) * 19))
}

.discount-tag span.char20 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
  transform: rotate(calc(var(--rotate-letter) * 20))
}

.discount-tag span.char21 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
  transform: rotate(calc(var(--rotate-letter) * 21))
}

.discount-tag span.char22 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
  transform: rotate(calc(var(--rotate-letter) * 22))
}

.discount-tag span.char23 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
  transform: rotate(calc(var(--rotate-letter) * 23))
}

.discount-tag span.char24 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
  transform: rotate(calc(var(--rotate-letter) * 24))
}

.discount-tag span.char25 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
  transform: rotate(calc(var(--rotate-letter) * 25))
}

.discount-tag span.char26 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
  transform: rotate(calc(var(--rotate-letter) * 26))
}

.discount-tag span.char27 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
  transform: rotate(calc(var(--rotate-letter) * 27))
}

.discount-tag span.char28 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
  transform: rotate(calc(var(--rotate-letter) * 28))
}

.discount-tag span.char29 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
  transform: rotate(calc(var(--rotate-letter) * 29))
}

.discount-tag span.char30 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
  transform: rotate(calc(var(--rotate-letter) * 30))
}

.discount-tag span.char31 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
  transform: rotate(calc(var(--rotate-letter) * 31))
}

.discount-tag span.char32 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
  transform: rotate(calc(var(--rotate-letter) * 32))
}

.discount-tag span.char33 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
  transform: rotate(calc(var(--rotate-letter) * 33))
}

.discount-tag span.char34 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 34));
  transform: rotate(calc(var(--rotate-letter) * 34))
}

.discount-tag span.char35 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 35));
  transform: rotate(calc(var(--rotate-letter) * 35))
}

.discount-tag span.char36 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 36));
  transform: rotate(calc(var(--rotate-letter) * 36))
}

.discount-tag span.char37 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 37));
  transform: rotate(calc(var(--rotate-letter) * 37))
}

.discount-tag span.char38 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 38));
  transform: rotate(calc(var(--rotate-letter) * 38))
}

.discount-tag span.char39 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 39));
  transform: rotate(calc(var(--rotate-letter) * 39))
}

.discount-tag span.char40 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 40));
  transform: rotate(calc(var(--rotate-letter) * 40))
}

.discount-tag span.char41 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 41));
  transform: rotate(calc(var(--rotate-letter) * 41))
}

.discount-tag span.char42 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 42));
  transform: rotate(calc(var(--rotate-letter) * 42))
}

.discount-tag span.char43 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 43));
  transform: rotate(calc(var(--rotate-letter) * 43))
}

.discount-tag span.char44 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 44));
  transform: rotate(calc(var(--rotate-letter) * 44))
}

.discount-tag span.char45 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 45));
  transform: rotate(calc(var(--rotate-letter) * 45))
}

.discount-tag span.char46 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 46));
  transform: rotate(calc(var(--rotate-letter) * 46))
}

.discount-tag span.char47 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 47));
  transform: rotate(calc(var(--rotate-letter) * 47))
}

.discount-tag span.char48 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 48));
  transform: rotate(calc(var(--rotate-letter) * 48))
}

.discount-tag span.char49 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 49));
  transform: rotate(calc(var(--rotate-letter) * 49))
}

.discount-tag span.char50 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 50));
  transform: rotate(calc(var(--rotate-letter) * 50))
}

.discount-tag span.char51 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 51));
  transform: rotate(calc(var(--rotate-letter) * 51))
}

.discount-tag span.char52 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 52));
  transform: rotate(calc(var(--rotate-letter) * 52))
}

.discount-tag span.char53 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 53));
  transform: rotate(calc(var(--rotate-letter) * 53))
}

/* 404 */
.not-found {
  padding: 200px 0;
}