@import url("https://use.typekit.net/pvp1dzx.css");
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(40px) scale3d(0.5, 0.5, 0.5);
    transform: translateY(40px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(40px) scale3d(0.5, 0.5, 0.5);
    transform: translateY(40px) scale3d(0.5, 0.5, 0.5);
  }
}
@-webkit-keyframes topIcon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@keyframes topIcon {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
.min15max60 {
  --min-size: 15;
  --max-size: 60;
  --font-size: calc(
    (var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) *
      ((100cqw - 320px) / (3840 - 320))
  );
  font-size: clamp(
    var(--min-size) * 1px,
    var(--font-size),
    var(--max-size) * 1px
  );
}

.smartMoves {
  overflow: hidden;
  background: #000;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.smartMoves .toTopWrap {
  position: fixed;
  right: 3%;
  bottom: 5%;
  z-index: 50;
}
.smartMoves .toTopWrap .topIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.smartMoves .toTopWrap .topIcon__itembox {
  position: relative;
  -webkit-animation: topIcon 1.5s infinite;
  animation: topIcon 1.5s infinite;
  width: 100px;
  height: 100px;
  border-radius: 999em;
  background: linear-gradient(45deg, #fb00ff, #0b07fe);
}
.smartMoves .toTopWrap .topIcon__itembox:hover {
  -webkit-animation: none;
  animation: none;
}
.smartMoves .toTopWrap .topIcon__itembox p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
}
.smartMoves .toTopWrap .totop {
  margin: 10% auto 0;
  text-align: center;
  cursor: pointer;
}
.smartMoves .toTopWrap .totop p {
  color: #ffffff;
  background: linear-gradient(45deg, #fb00ff, #0b07fe);
  width: 40px;
  height: 40px;
  margin: auto;
  border-radius: 999em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
}
.smartMoves .toTopWrap__arrow {
  width: 50px;
  height: 50px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.smartMoves .toTopWrap__arrow-chevron {
  position: absolute;
  width: 25px;
  height: 10px;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
  animation: move 3s ease-out infinite;
  opacity: 0;
  top: 0;
}
.smartMoves .toTopWrap__arrow-chevron:first-of-type {
  -webkit-animation: move 3s ease-out 1s infinite;
  animation: move 3s ease-out 1s infinite;
}
.smartMoves .toTopWrap__arrow-chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
  animation: move 3s ease-out 2s infinite;
}
.smartMoves .toTopWrap__arrow-chevron::before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
  transform: skew(0deg, 30deg);
}
.smartMoves .toTopWrap__arrow-chevron::after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
  transform: skew(0deg, -30deg);
}
.smartMoves .toTopWrap__arrow-chevron::before,
.smartMoves .toTopWrap__arrow-chevron::after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
}
.smartMoves .toTopWrap__arrow-chevron:nth-of-type(1)::before,
.smartMoves .toTopWrap__arrow-chevron:nth-of-type(1)::after {
  content: " ";
  background: #8c00ff;
  background: #033eff;
}
.smartMoves .toTopWrap__arrow-chevron:nth-of-type(2)::before,
.smartMoves .toTopWrap__arrow-chevron:nth-of-type(2)::after {
  content: " ";
  background: #033eff;
}
.smartMoves .toTopWrap__arrow-chevron:nth-of-type(3)::before,
.smartMoves .toTopWrap__arrow-chevron:nth-of-type(3)::after {
  content: " ";
  background: #fb00ff;
  background: #033eff;
}
.smartMoves img {
  max-width: 100%;
  width: 100%;
  display: block;
}
.smartMoves a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.smartMoves .navBox {
  display: block;
  background: #ffffff;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100;
  width: 100%;
  margin: auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.smartMoves .navBox-item--active {
  color: #d0ab17 !important;
}
.smartMoves .navBox-logo {
  width: 20%;
}
.smartMoves .navBox-logo img {
  max-width: 95px;
  margin: auto;
}

/* Hamburger menu styles */
.smartMoves .navBox-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.smartMoves .navBox-hamburger span {
  width: 25px;
  height: 3px;
  background-color: #716b69;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.smartMoves .navBox-hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.smartMoves .navBox-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.smartMoves .navBox-hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.smartMoves .navBox .navBoxFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1280px;
  margin: auto;
}

.smartMoves .navBox .msi__container {
  padding: 0;
}
.smartMoves .navBox-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.smartMoves .navBox-flex a {
  color: #716b69;
  font-size: 22px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  word-break: break-word;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-size: 200% auto;
  line-height: 1;
  padding: 0 5px;
  margin: 3%;
  width: 40%;
}
.smartMoves .navBox-flex a:hover {
  color: #716b69;
  font-size: 26px;
}

@media (min-width: 768px) {
  .smartMoves .navBox-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/* Mobile hamburger menu styles */
@media (max-width: 995px) {
  .smartMoves .navBox {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
  }

  .smartMoves .navBox.sticky {
    top: 0;
  }

  .smartMoves .navBox-hamburger {
    display: flex;
  }

  .smartMoves .navBox-flex {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .smartMoves .navBox-flex.active {
    left: 0;
  }

  .smartMoves .navBox-flex a {
    width: auto;
    margin: 15px 0;
    font-size: 20px;
    padding: 10px 20px;
  }

  .smartMoves .navBoxFlex {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }

  .smartMoves .kv {
    margin-top: 0;
    padding-top: 5.4rem;
  }
}
@media (min-width: 996px) {
  .smartMoves .navBox-logo img {
    margin: 0;
  }
  .smartMoves .navBox-logo {
    width: 10%;
  }
  .smartMoves .navBox.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 200;
    background: rgba(237, 240, 245, 0.95);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: #fff;
    border-radius: 0;
  }
  .smartMoves .navBox.sticky .msi__container {
    max-width: 100%;
  }
  .smartMoves .navBox.sticky .navBox-flex a {
    min-height: auto;
    padding: 1%;
  }
  .smartMoves .navBox {
    display: block;
    background: #ffffff;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 100;
    width: 80%;
    margin: auto;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .smartMoves .navBox .navBoxFlex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 90%;
  }
  .smartMoves .navBox-flex {
    width: 90%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .smartMoves .navBox-flex a:nth-last-of-type(1) {
    margin-right: 0;
  }
  .smartMoves .navBox-flex a {
    color: #716b69;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-right: 3%;
    width: auto;
  }
  .smartMoves .navBox-flex a:hover {
    color: #716b69;
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .smartMoves .navBox-flex {
    width: 80%;
  }
  .smartMoves .navBox-flex a {
    color: #716b69;
    font-size: 22px;
  }
  .smartMoves .navBox-flex a:hover {
    color: #716b69;
    font-size: 24px;
  }
}
@media (min-width: 1930px) {
  .smartMoves .navBox {
    top: 5%;
  }
  .smartMoves .navBox-flex a {
    color: #716b69;
    font-size: 24px;
    padding: 1%;
  }
  .smartMoves .navBox-flex a:hover {
    color: #716b69;
    font-size: 28px;
  }
}
.smartMoves .kv {
  position: relative;
  overflow: hidden;
  background-color: #fafbfb;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.smartMoves .kv__mainBoxWrap {
  width: 100%;
  padding: 0 3% 5%;
  margin: 5% auto;
  /* margin-top: -48%; */
  text-align: center;
}
.smartMoves .kv__mainBox {
  position: relative;
  text-align: center;
}
.smartMoves .kv__mainBox h1 {
  color: #434343;
  font-size: 2.2rem;
  text-transform: capitalize;
  margin: auto;
  position: relative;
  z-index: 1;
  line-height: 1;
  /* color: transparent;
  background-image: linear-gradient(45deg, #689ee6, #466ac0 30%, #3451e0 80%);
  -webkit-background-clip: text;
  background-clip: text; */
  font-weight: 600;
  margin-bottom: 3%;
}
.smartMoves .kv__mainBox-sub {
  color: #434343;
  font-size: 1.3rem;
  /* color: transparent;
  background-image: linear-gradient(
    280deg,
    #689ee6,
    #466ac0 30%,
    #3b69be 80%,
    #689ee6
  );
  -webkit-background-clip: text;
  background-clip: text; */
}
.smartMoves .kv__mainBox-sub em {
  color: #3f3422;
  font-weight: 600;
}
.smartMoves .kv__mainBox-txt {
  color: #716b69;
  font-size: 17px;
  margin: 3% auto 1%;
  font-weight: 600;
}
.smartMoves .kv__mainBox-txt b {
  color: #334eac;
}
.smartMoves .kv__mainBox-date {
  background: #e4e4e4;
  border-radius: 30px;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 5%;
  text-align: center;
}
.smartMoves .kv__mainBox-date p {
  color: #3f3422;
  font-size: 17px;
}
.smartMoves .kv__mainBox-note {
  color: #434343;
  font-size: 15px;
}
.smartMoves .kv__mainBox-icon {
  max-width: 15rem;
  margin: 6% auto;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.smartMoves .kv-floatBox {
  display: none;
}

.smartMoves .kv__logoBox img {
  width: 80px;
  margin: auto;
}
.smartMoves .kv__logoBox {
  margin: auto;
  margin-top: -44%;
  position: relative;
  right: auto;
  top: auto;
}

.smartMoves .kv__logoBox p {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 5px;
}
@media (min-width: 499px) {
  .smartMoves .kv__mainBoxWrap {
    width: 90%;
  }
  .smartMoves .kv__mainBox h1 {
    font-size: 7vw;
  }
  .smartMoves .kv-txt {
    color: #716b69;
    font-size: 20px;
  }
  .smartMoves .kv-icon {
    max-width: 260px;
    max-width: 20rem;
  }
  .smartMoves .kv-date p {
    color: #334eac;
    font-size: 20px;
  }
}
@media (min-width: 996px) {
  .smartMoves .kv__logoBox p {
    text-align: right;
  }
  .smartMoves .kv__logoBox img {
    margin-right: 0;
  }
  .smartMoves .kv-floatBox {
    display: block;
  }
  .smartMoves .kv__mainBox {
    text-align: left;
  }
  .smartMoves .kv__mainBox h1 {
    font-size: 2.4vw;
  }
  .smartMoves .kv__mainBox-sub {
    font-size: 1.3vw;
  }
  .smartMoves .kv__mainBoxWrap {
    position: absolute;
    right: 21.5%;
    top: 53%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 30%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  .smartMoves .kv__mainBox-icon {
    /* max-width: 160px; */
    width: 17vw;
    margin: 5% 0;
  }
  .smartMoves .kv__mainBox-date {
    text-align: left;
  }
  .smartMoves .kv__mainBox-date p {
    font-size: 1.2vw;
  }
  .smartMoves .kv-floatBox-img {
    position: absolute;
  }

  .smartMoves .kv__logoBox {
    position: absolute;
    right: 7%;
    top: 22%;
    margin-top: 0;
  }
}
@media (min-width: 1300px) {
  .smartMoves .kv__mainBoxWrap {
    position: absolute;
    right: 20%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 35%;
    padding: 0 3%;
    margin: 0;
  }
  .smartMoves .kv__mainBox-icon {
    /* max-width: 260px; */
  }
  .smartMoves .kv__logoBox {
    right: 10%;
  }
}
@media (min-width: 1440px) {
  .smartMoves .kv__mainBox-icon {
    /* max-width: 320px; */
  }
  .smartMoves .kv__mainBox h1 {
    font-size: 2.4vw;
  }
}
@media (min-width: 1930px) {
  .smartMoves .kv {
    margin-top: -3%;
  }
  .smartMoves .kv__mainBoxWrap {
    right: 19%;
    width: 35%;
  }
  .smartMoves .kv__mainBox h1 {
    color: #434343;
    font-size: 2.4vw;
    /* color: transparent;
    background-image: linear-gradient(45deg, #689ee6, #466ac0 30%, #3451e0 80%);
    -webkit-background-clip: text;
    background-clip: text; */
  }
  .smartMoves .kv__logoBox {
    top: 28%;
  }
  .smartMoves .kv__logoBox img {
    width: 100px;
  }
  .smartMoves .kv__mainBox-sub {
    font-size: 1.5vw;
  }
  .smartMoves .kv__mainBox-txt {
    color: #716b69;
    font-size: 36px;
  }
  .smartMoves .kv__mainBox-date {
    padding: 10px 30px;
  }
  .smartMoves .kv__mainBox-date p {
    font-size: 1vw;
  }
  .smartMoves .kv__mainBox-note {
    font-size: 20px;
  }
  .smartMoves .kv__mainBox-icon {
    max-width: 400px;
  }
}
.smartMoves .marqueeBar {
  padding-top: 5%;
  position: relative;
  width: 100vw;
  max-width: 100%;
  padding: 2rem 0;
  background: #3f3422;
  z-index: 3;
  display: block;
  overflow: hidden;
}
.smartMoves .marqueeBar-bg {
  /* background: #cccccc; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
  width: 200%;
  animation: marquee 40s linear infinite;
}
.smartMoves .marqueeBar-txt {
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  padding: 8px 0;
  flex-shrink: 0;
  display: inline-block;
}
.smartMoves .marqueeBar-txt span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 0 15px;
}
/* .smartMoves .marqueeBar::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #172f70;
  width: 100%;
  height: 50%;
  -webkit-transform: rotate(359deg);
  transform: rotate(359deg);
}
.smartMoves .marqueeBar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #081f5c;
  width: 100%;
  height: 50%;
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
} */
/* Responsive marquee styles */
/* Mobile - faster animation */
@media (max-width: 576px) {
  .smartMoves .marqueeBar-bg {
    animation: marquee 20s linear infinite;
  }
}

@media (min-width: 499px) {
  .smartMoves .marqueeBar-txt {
    font-size: 18px;
  }
  .smartMoves .marqueeBar-txt span {
    font-size: 18px;
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .smartMoves .marqueeBar-txt {
    font-size: 20px;
  }
  .smartMoves .marqueeBar-txt span {
    font-size: 20px;
    padding: 0 25px;
  }
}

@media (min-width: 996px) {
  .smartMoves .marqueeBar {
    margin-top: -5%;
  }
  .smartMoves .marqueeBar-txt {
    font-size: 22px;
  }
  .smartMoves .marqueeBar-txt span {
    font-size: 22px;
    padding: 0 30px;
  }
}
.smartMoves .pd {
  position: relative;
  padding: 5% 0;
  /* background-image: linear-gradient(
    157deg,
    #05020c 20%,
    #2a0769 40%,
    #05020c 100%
  );
  background: url(https://storage-asset.msi.com/event/2024/ID/boost-your-success/images/pd-bg.jpg)
    no-repeat top center #000;
  background-size: cover;
  background-attachment: fixed; */
  background-color: #ececec;
}

.smartMoves .pd__titleBox {
  text-align: center;
  margin-bottom: 5%;
}
.smartMoves .pd__titleBox h2 {
  font-size: 2.2rem;
  color: #434343;
}
.smartMoves .pd__flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.smartMoves .pd-nav {
  position: relative;
  margin: 0 1%;
  max-width: 300px;
  border: 3px solid #3f3422;
  border-radius: 30px;
  padding: 5px 25px;
  cursor: pointer;
  width: 100%;
  margin: 3% auto;
  text-align: center;
}
.smartMoves .pd-nav--active {
  background: #3f3422;
}
.smartMoves .pd-nav--active .pd-txtBox h3 {
  color: #fff;
}
/* .smartMoves .pd-nav::after {
  content: "";
  position: absolute;
  bottom: -10%;
  width: 100%;
  height: 80%;
  background: linear-gradient(225deg, #fff, #9fadcf, #64719b, #303a56);
  border-radius: 20px;
  -webkit-box-shadow: 4px 2px 15px rgba(163, 164, 168, 0.6);
  box-shadow: 4px 2px 15px rgba(163, 164, 168, 0.6);
}
.smartMoves .pd-nav--active::after {
  content: "";
  position: absolute;
  bottom: -10%;
  width: 100%;
  height: 80%;
  background: linear-gradient(225deg, #fff, #8ea5dc, #2942c2, #191d52);
  border-radius: 20px;
} */
.smartMoves .pd-nav--active .pd-txtBox b {
  color: #ffffff;
  font-size: 17px;
}
.smartMoves .pd-wrapBox {
  position: relative;
  z-index: 1;
}
.smartMoves .pd-txtBox {
}
.smartMoves .pd-txtBox h3 {
  color: #3f3422;
  font-size: 1.4rem;
  font-weight: normal;
}
.smartMoves .pd-txtBox p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}
.smartMoves .pd-txtBox b {
  color: #c2cfec;
  font-size: 15px;
  font-weight: 600;
}
.smartMoves .pd-floatBox {
  display: none;
}
.smartMoves .pd-floatBox-right-img,
.smartMoves .pd-floatBox-left-img {
  position: absolute;
}

.smartMoves .pd-floatBox-left--0 {
  left: 5%;
  top: 11%;
  width: 18vw;
}
.smartMoves .pd-floatBox-right--0 {
  right: 3%;
  top: 11%;
  width: 18vw;
}
.smartMoves .pdContentWrap {
  display: none;
}
.smartMoves .pdContent {
  margin-top: 15%;
}
.smartMoves .pdContent--active {
  display: block;
}
.smartMoves .pdContent__flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 3% auto;
}
.smartMoves .pdContent__itemBox {
  position: relative;
  margin: 0 auto;
  width: 100%;
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}
.smartMoves .pdContent__itemBox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 99%;
  height: 80%;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.smartMoves .pdContent__itemBox:hover {
  /* -webkit-filter: drop-shadow(0 3px 10px rgba(208, 171, 23, 0.6));
  filter: drop-shadow(0 3px 10px rgba(208, 171, 23, 0.6)); */
  -webkit-transform: scale(1);
  transform: scale(1);
}
.smartMoves .pdContent__itemBox:hover::after {
  border: 3px solid #d0ab17;
  -webkit-filter: drop-shadow(0 3px 10px rgba(208, 171, 23, 0.6));
  filter: drop-shadow(0 3px 10px rgba(208, 171, 23, 0.6));
}
.smartMoves .pdContent__itemBox:hover .pdContent-txtBox--btn {
  color: #ffffff;
  background: #d0ab17;
  display: inline-block;
  border-radius: 0 0 15px 15px;
  width: 100%;
  font-size: 24px;
  padding: 5% 25px;
  text-align: center;
  line-height: 1.2;
}
.smartMoves .pdContent__itemBox--1:hover {
  /* -webkit-transform: scale(0.97);
  transform: scale(0.97); */
}
.smartMoves .pdContent__itemBox--1 .pdContent-txtBox li {
  color: #858585;
  font-size: 15px;
}
.smartMoves .pdContent__itemBox--2:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
.smartMoves .pdContent__itemBox--2::after {
}
.smartMoves .pdContent__itemBox--3:hover {
  /* -webkit-transform: scale(0.97);
  transform: scale(0.97); */
}
.smartMoves .pdContent__itemBox--3 .pdContent-txtBox li {
  color: #858585;
  font-size: 15px;
}
.smartMoves .pdContent-txtBox {
  padding: 0 8% 5%;
  text-align: center;
}
.smartMoves .pdContent-txtBox h3 {
  color: #3f3422;
  font-size: 22px;
  font-weight: 600;
}
.smartMoves .pdContent-txtBox li {
  color: #858585;
  font-size: 15px;
  font-weight: 600;
  padding: 2px 0;
}
.smartMoves .pdContent-txtBox--highlight {
  color: #858585;
  font-size: 15px;
  font-weight: 600;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 5px 20px;
  display: inline-block;
  margin: 5% 2%;
}
.smartMoves .pdContent-txtBox--btn {
  color: #000000;
  font-size: 24px;
  padding: 5% 25px;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.smartMoves .pdContent-txtBox em {
  color: #858585;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
}
.smartMoves .pdContent-txtBox b {
  color: #ffffff;
  font-size: 15px;
}
.smartMoves .pdContent-wrapBox {
  position: relative;
  z-index: 1;
}
@media (min-width: 499px) {
  .smartMoves .pd__flexBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .smartMoves .pd-nav {
    position: relative;
    margin: 0 1%;
    max-width: 300px;
    border: 3px solid #3f3422;
    border-radius: 30px;
    padding: 5px 25px;
    cursor: pointer;
    width: 50%;
    text-align: center;
  }
  .smartMoves .pd-txtBox h3 {
    font-size: 1.2rem;
  }
  .smartMoves .pd-txtBox p {
    color: #ffffff;
    font-size: 17px;
  }
  .smartMoves .pd-txtBox b {
    color: #c2cfec;
    font-size: 17px;
  }
  .smartMoves .pdContent__itemBox {
    width: 80%;
  }
  .smartMoves .pd__titleBox h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .smartMoves .pd__flexBox {
    width: 80%;
    margin: auto;
  }
}
@media (min-width: 996px) {
  .smartMoves .pdContent-txtBox ul {
    min-height: 100px;
  }
  .smartMoves .pdContent-txtBox em {
    font-size: 1.1rem;
  }
  .smartMoves .pd-txtBox h3 {
    font-size: 1.2rem;
  }
  .smartMoves .pd-floatBox {
    display: block;
  }
  .smartMoves .pdContent-txtBox h3 {
    font-size: 1.1rem;
  }
  .smartMoves .pd-floatBox-right--3 {
    right: 0;
    z-index: 0;
  }
}
@media (min-width: 1200px) {
  .smartMoves .pdContent-txtBox h3 {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .smartMoves .pd-floatBox-left--0 {
    left: 0;
  }
  .smartMoves .pd-floatBox-left--1 {
    left: 9%;
  }
  .smartMoves .pd-floatBox-left--2 {
    left: 2%;
  }
  .smartMoves .pd-floatBox-left--3 {
    left: 0;
  }
  .smartMoves .pd-floatBox-right--0 {
    right: 0;
  }
  .smartMoves .pd-floatBox-right--1 {
    right: 8%;
  }
  .smartMoves .pd-floatBox-right--2 {
    right: 0;
  }
  .smartMoves .pd-floatBox-right--3 {
    right: 0;
  }
}
@media (min-width: 1440px) {
  .smartMoves .pd-floatBox-left--0 {
    left: 0%;
  }
  .smartMoves .pd-floatBox-left--1 {
    left: 10%;
  }
  .smartMoves .pd-floatBox-left--2 {
    left: 3%;
  }
  .smartMoves .pd-floatBox-left--3 {
    left: 0%;
  }
  .smartMoves .pd-floatBox-right--0 {
    right: 0;
  }
  .smartMoves .pd-floatBox-right--1 {
    right: 9%;
  }
  .smartMoves .pd-floatBox-right--2 {
    right: 1%;
  }
  .smartMoves .pd-floatBox-right--3 {
    right: 1.8%;
    z-index: 2;
  }
}

@media (min-width: 1681px) {
  .smartMoves .pd-floatBox-left--0 {
    left: 5%;
    top: 11%;
    width: 18vw;
  }
  .smartMoves .pd-floatBox-right--0 {
    right: 3%;
    top: 11%;
    width: 18vw;
  }
}
@media (min-width: 1930px) {
  .smartMoves .pdContent-txtBox em {
    font-size: 1.4rem;
  }
  .smartMoves .pd-txtBox h3 {
    font-size: 1.6rem;
  }
  .smartMoves .pdContent-txtBox h3 {
    font-size: 1.6rem;
  }
  .smartMoves .pdContent__itemBox .pdContent-txtBox li {
    font-size: 1.2rem;
  }
  .smartMoves .pdContent-txtBox--btn,
  .smartMoves .pdContent-txtBox--btn b {
    font-size: 1.2rem;
  }
  .smartMoves .pd-floatBox-left--0 {
    left: 12%;
    top: 11%;
    width: 18vw;
  }

  .smartMoves .pd-floatBox-right--0 {
    right: 10%;
    top: 11%;
    width: 18vw;
  }
}

@media (min-width: 499px) {
  .smartMoves .pdContent {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .smartMoves .pdContent__flexBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .smartMoves .pdContent__itemBox {
    margin: 0 10px;
    width: auto;
  }
  /* .smartMoves .pdContent__itemBox--1 {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  .smartMoves .pdContent__itemBox--3 {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  } */
}
@media (min-width: 996px) {
  .smartMoves .pdContent__flexBox {
    width: 90%;
  }
}
@media (min-width: 1300px) {
  .smartMoves .pdContent__flexBox {
    width: 75%;
  }
}
@media (min-width: 1440px) {
  .smartMoves .pdContent__flexBox {
    width: 70%;
  }
}
@media (min-width: 1681px) {
  .smartMoves .pdContent__flexBox {
    width: 57%;
  }
}
.smartMoves .redeem {
  position: relative;
  padding: 5% 0;
  background: #fafbfb;
}
.smartMoves .redeem__titleBox {
  text-align: center;
  margin-bottom: 5%;
}
.smartMoves .redeem__titleBox h2 {
  color: #434343;
  font-size: 32px;
  font-family: "poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.smartMoves .redeem__flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.smartMoves .redeem hr {
  width: 10vw;
  height: 1px;
  margin-top: 9%;
  display: none;
}
.smartMoves .redeem__stepBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 3% auto;
  text-align: center;
}
.smartMoves .redeem__stepBox-icon {
  max-width: 140px;
  margin: auto;
  position: relative;
}
.smartMoves .redeem__stepBox-icon p {
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translate(0, -50%);
  width: 45px;
  height: 45px;
  border-radius: 999em;
  background-color: #d0ab17;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
}
.smartMoves .redeem__stepBox-text h3 {
  color: #3f3422;
  font-size: 24px;
  margin-bottom: 7%;
  padding: 3px;
}
.smartMoves .redeem__stepBox-txt p {
  color: #3f3422;
  font-size: 17px;
}
.smartMoves .redeem__stepBox-txt p.redeem__stepBox-note {
  color: #3f3422;
  font-size: 14px;
  margin-top: 3%;
}
.smartMoves .redeem__stepBox-txt a {
  color: #d0ab17;
  font-size: 17px;
  display: block;
}
.smartMoves .redeem__stepBox-txt a:hover {
  text-decoration: underline;
}
.smartMoves .redeem__stepBox-text {
  margin-top: 10%;
}
.smartMoves .redeem__linkBoxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
  margin-top: 3%;
  width: 100%;
}
.smartMoves .redeem__linkBox {
  border-radius: 30px;
  padding: 10px 30px;
  display: inline-block;
  text-align: center;
  margin: 1%;
  cursor: pointer;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 3px solid #3f3422;
  border-radius: 30px;
}
.smartMoves .redeem__linkBox:hover {
  background: #d0ab17;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-filter: drop-shadow(0 3px 10px rgba(208, 171, 23, 0.5));
  filter: drop-shadow(0 3px 10px rgba(208, 171, 23, 0.5));
  border: 3px solid #d0ab17;
}
.smartMoves .redeem__linkBox:hover a {
  color: #ffffff;
}
.smartMoves .redeem__linkBox a {
  color: #3f3422;
  font-size: 20px;
}
@media (min-width: 499px) {
  .smartMoves .redeem__stepBox {
    width: 80%;
  }
  .smartMoves .redeem__linkBox {
    width: 80%;
  }
}
@media (min-width: 576px) {
  .smartMoves .redeem__stepBox {
    width: calc(50% - 20px);
    margin: 3% 0;
  }
}
@media (min-width: 768px) {
  .smartMoves .redeem__linkBox {
    width: auto;
  }
}
@media (min-width: 996px) {
  .smartMoves .redeem {
  }
  .smartMoves .redeem__titleBox h2 {
    color: #434343;
    font-size: 50px;
  }
  .smartMoves .redeem__flexBox {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .smartMoves .redeem__stepBox {
    width: calc(25% - 20px);
  }
  .smartMoves .redeem hr {
    display: block;
  }
  .smartMoves .redeem__linkBoxWrap {
    width: 80%;
  }
}
@media (min-width: 1930px) {
  .smartMoves .redeem__linkBox a {
    font-size: 1.4rem;
  }
  .smartMoves .redeem__stepBox-txt p {
    font-size: 1.4rem;
  }
  .smartMoves .redeem hr {
    width: 2vw;
  }
  .smartMoves .redeem__stepBox {
    width: 25%;
  }
}
.smartMoves .wtb {
  position: relative;
  padding: 5% 0;
  background: #ececec;
}
.smartMoves .wtb img {
  width: auto;
  margin: auto;
}
.smartMoves .wtb__titleBox {
  text-align: center;
  margin-bottom: 5%;
}
.smartMoves .wtb__titleBox h2 {
  color: #434343;
  font-size: 32px;
  font-family: "poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
}
@media (min-width: 996px) {
  .smartMoves .wtb__titleBox h2 {
    color: #434343;
    font-size: 50px;
  }
}
.smartMoves .promo {
  position: relative;
  padding: 5% 0;
  background: #4a3d28;
}
.smartMoves .promo__titleBox {
  text-align: center;
  margin-bottom: 5%;
}
.smartMoves .promo__titleBox h2 {
  color: #ffffff;
  font-size: 32px;
  font-family: "poppins", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.smartMoves .promo__flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.smartMoves .promo__itemBox {
  width: 100%;
  margin: 5% 1%;
}
.smartMoves .promo__imgBox {
  margin-bottom: 3%;
}
.smartMoves .promo__imgBox a {
  display: block;
  margin: auto;
  text-align: center;
  background: #1a3369;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.smartMoves .promo__imgBox a img {
  border-radius: 20px 20px 0 0;
}
.smartMoves .promo__textBox {
  text-align: center;
}
.smartMoves .promo__textBox-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 5% 0;
}
.smartMoves .promo__textBox-txt {
  background: linear-gradient(135deg, #ebebeb, #e2e2e2);
  border-radius: 30px;
  padding: 8px 30px;
  display: inline-block;
  text-align: center;
  margin: 1% 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.smartMoves .promo__textBox-txt p {
  color: #3f3422;
  font-size: 17px;
  font-weight: 500;
}
.smartMoves .promo__textBox h4 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 2%;
}
.smartMoves .promo__textBox h4 ~ p {
  color: #d3d9ea;
  font-size: 17px;
}
.smartMoves .promo__textBox h4 ~ p ~ a {
  color: #fefefe;
  font-size: 17px;
  margin-top: 2%;
  display: inline-block;
  border-bottom: 1px solid;
  position: relative;
}
.smartMoves .promo__textBox h4 ~ p ~ a::after {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  display: none;
}
.smartMoves .promo__textBox h4 ~ p ~ a:hover::after {
  content: ">";
  display: block;
  position: absolute;
  left: auto;
  right: -20%;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.smartMoves .promo__textBox h4 ~ p ~ a:hover {
  border-bottom: 1px solid transparent;
  color: #c08feb;
}
@media (min-width: 499px) {
  .smartMoves .promo__itemBox {
    width: 80%;
  }
}
@media (min-width: 996px) {
  .smartMoves .promo__textBox-txt {
    margin: 0 1%;
  }
  .smartMoves .promo__textBox-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .smartMoves .promo__titleBox h2 {
    color: #ffffff;
    font-size: 50px;
  }
  .smartMoves .promo__itemBox {
    width: calc(50% - 30px);
  }
  .smartMoves .promo__textBox {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .smartMoves .promo__itemBox {
    width: calc(40% - 30px);
    margin: 2% 1%;
  }
}
@media (min-width: 1930px) {
  .smartMoves .promo__textBox h4 {
    font-size: 2rem;
  }
  .smartMoves .promo__textBox h4 ~ p {
    font-size: 1.4rem;
  }
  .smartMoves .promo__textBox-txt p {
    font-size: 1.4rem;
  }
  .smartMoves .promo__itemBox {
    width: calc(50% - 30px);
  }
}

/*# sourceMappingURL=main.css.map */
