:root {
  --font-family: "Montserrat", sans-serif;
  --white: #fff;
  --black: #000;
  --mx-blue: #074bb6;
  --mx-yellow: #dcf343;
  --mx-black: #212021;
  --mx-grey: #f4f4f4;
  --heading1: 50px;
  --headingLH1: 65px;
  --heading2: 36px;
  --headingLH2: 48px;
  --heading3: 24px;
  --headingLH3: 36px;
  --headingLH3_2: 36px;
  --p: 15px;
  --pLH: 24px;
  --fs16: 14px;
  --fs16LH: 21px;
  --gutter: 25px;
  --gutter30: 20px;
  --gutter70: 70px;
  --pl70: 70px;
  --p35: 25px;
  --mt35: 25px;
  --mb35: 25px;
  --p70: 70px;
  --p50: 50px;
  --max-w1920: 1920px;
  --max-w1440: 1440px;
  --max-w1240: 1240px;
  --max-wblue: 1680px;
}

@media (max-width: 1200px) {
  :root {
    --heading1: 48px;
    --headingLH1: 54px;
    --heading2: 24px;
    --headingLH2: 34px;
    --heading3: 20px;
    --headingLH3: 28px;
    --headingLH3_2: 28px;
    --p: 14px;
    --pLH: 24px;
    --gutter: 15px;
    --gutter70: 20px;
    --pl70: 20px;
    --p70: 50px;
    --p50: 30px;
  }
}
@media (max-width: 1024px) {
  :root {
    --heading1: 42px;
    --headingLH1: 52px;
    --heading2: 24px;
    --headingLH2: 34px;
    --heading3: 20px;
    --headingLH3: 30px;
    --headingLH3_2: 30px;
    --p: 14px;
    --pLH: 24px;
    --gutter70: 20px;
    --pl70: 20px;
    --mb35: 15px;
  }
}
@media (max-width: 991px) {
  :root {
    --p70: 50px;
    --p50: 50px;
  }
}
@media (max-width: 360px) {
  :root {
    --heading1: 32px;
    --headingLH1: 40px;
  }
}
*,
::after,
::before {
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  box-sizing: border-box;
}

html {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  font-size: var(--p);
  line-height: var(--pLH);
  font-weight: 400;
  font-family: var(--font-family);
  color: var(--black);
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1,
.h1 {
  font-size: var(--heading1);
  line-height: var(--headingLH1);
}
h1 strong,
.h1 strong {
  color: var(--mx-blue);
}

h2,
.h2 {
  font-size: var(--heading2);
  line-height: var(--headingLH2);
}
h2 strong,
.h2 strong {
  color: var(--mx-blue);
}

h3,
.h3 {
  font-size: var(--heading3);
  line-height: var(--headingLH3);
}
h3 strong,
.h3 strong {
  color: var(--mx-blue);
}

h4 {
  font-size: var(--p);
  line-height: var(--pLH);
  font-weight: 700;
}

p {
  font-size: var(--p);
  line-height: var(--pLH);
  font-weight: 400;
}

.fs16 {
  font-size: var(--fs16);
  line-height: var(--fs16LH);
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

.container-fluid {
  width: 100%;
  padding-right: var(--gutter70);
  padding-left: var(--gutter70);
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}
@media (max-width: 1200px) {
  .container-fluid {
    max-width: 100%;
  }
}

.btn,
button,
a {
  transition: all 0.3s ease-in-out;
}

.btn {
  color: var(--mx-blue);
  font-size: var(--fs16);
  font-weight: 700;
  line-height: 33px;
  text-align: center;
  border: 1px solid var(--mx-yellow);
  background: var(--mx-yellow);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 20px;
}

.btn-ico-cst {
  color: var(--mx-yellow);
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--mx-blue);
  background: var(--mx-blue);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5px;
  min-width: 45px;
  height: 45px;
  font-weight: 500;
  cursor: pointer;
}
.btn-ico-cst svg.share-svg {
  width: 28px;
  height: 28px;
  padding: 0 3px 0 0;
}
@media (max-width: 767px) {
  .btn-ico-cst .play-svg,
  .btn-ico-cst .pause-svg {
    width: 16px;
  }
}

img {
  max-width: 100%;
}

.content-dv h2 {
  margin-bottom: var(--mb35);
}

.desc-global {
  margin-bottom: var(--mb35);
}

.desc-global p {
  margin-bottom: 20px;
}
.desc-global p:last-child {
  padding-bottom: 0;
}

.display-desktop {
  display: block !important;
}
@media only screen and (max-width: 991px) {
  .display-desktop {
    display: none !important;
  }
}

.display-ipad {
  display: grid !important;
}
@media only screen and (max-width: 991px) {
  .display-ipad {
    display: none !important;
  }
}

.display-mobile {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .display-mobile {
    display: block !important;
  }
}

.display-mobile-noipad {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .display-mobile-noipad {
    display: block !important;
  }
}

.btn-dv {
  position: relative;
  width: 350px;
  height: 53px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--mx-yellow);
  border-radius: 30px;
}
@media only screen and (max-width: 567px) {
  .btn-dv {
    width: 100%;
  }
}
.btn-dv .btn {
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  -webkit-mask: url(../../assets/images/mask.png);
  mask: url(../../assets/images/mask.png);
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  transition: -webkit-mask-position 0.7s steps(29), mask-position 0.7s steps(29),
    background-color 0.3s;
}
.btn-dv:hover {
  border-color: var(--mx-blue);
}
.btn-dv:hover .btn {
  background-color: var(--mx-blue);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}
.btn-dv .mas {
  color: var(--mx-blue);
  text-align: center;
  width: 100%;
  top: 10px;
  position: absolute;
  overflow: hidden;
  font-size: var(--fs16);
  font-weight: 700;
  line-height: 33px;
}

.btn-dv-modal .mas {
  color: var(--mx-blue);
  text-align: center;
  width: 100%;
  top: 10px;
  position: absolute;
  overflow: hidden;
  font-size: var(--fs16);
  font-weight: 700;
  line-height: 33px;
}

@-webkit-keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@-webkit-keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
.mb-0 {
  margin-bottom: 0 !important;
}

input[type="checkbox"] + label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  padding: 0;
  color: #000;
  position: relative;
}
@media only screen and (max-width: 991px) {
  input[type="checkbox"] + label {
    gap: 10px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  input[type="checkbox"] + label {
    font-size: 12px;
    line-height: 1.5;
  }
}

input[type="checkbox"] {
  opacity: 0;
  width: 20px;
  height: 20px;
  z-index: 9;
  position: relative;
  cursor: pointer;
  margin-top: 3px;
}
@media only screen and (max-width: 991px) {
  input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }
}

input[type="checkbox"] + label:before,
.form-group:has(input[type="checkbox"])::before {
  content: "";
  border: 1px solid #000;
  border-radius: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  margin-top: 3px;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  input[type="checkbox"] + label:before,
  .form-group:has(input[type="checkbox"])::before {
    width: 14px;
    height: 14px;
    min-width: 14px;
    border-radius: 2px;
    margin-top: 5px;
  }
}

.checkbox label {
  padding-left: 10px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .checkbox label {
    padding-left: 10px;
  }
}

input[type="checkbox"] + label:after,
.form-group:has(input[type="checkbox"])::after {
  content: "";
  transition: 0.2s;
  position: absolute;
  background: url(../../assets/images/arrow.svg) no-repeat;
  left: 3px;
  top: 3px;
  transform: scale(0);
  transition: 0.2s ease-in-out;
}

input[type="checkbox"]:checked + label:after,
.form-group:has(input[type="checkbox"]:checked)::after {
  transform: scale(1);
  width: 26px;
  height: 15px;
  background-size: contain;
}
@media only screen and (max-width: 991px) {
  input[type="checkbox"]:checked + label:after,
  .form-group:has(input[type="checkbox"]:checked)::after {
    width: 16px;
    height: 17px;
    background-size: contain;
    left: 2px;
  }
}
@media only screen and (max-width: 767px) {
  input[type="checkbox"]:checked + label:after,
  .form-group:has(input[type="checkbox"]:checked)::after {
    top: 4px;
  }
}

.select2-container--default {
  max-width: 100%;
  min-width: 100%;
}
.select2-container--default .select2-selection {
  border-radius: 50px;
  background: var(--mx-grey);
  border: none;
  padding: 15px 27px;
  min-height: 59px;
  color: #a7a9ac;
  font-family: Montserrat;
  font-size: var(--p);
  font-style: normal;
  font-weight: 400;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .select2-container--default .select2-selection {
    border-radius: 25px;
    padding: 15px 12px;
    min-height: 48px;
  }
}
.select2-container--default .select2-selection .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  height: 15px;
  background: url(../../assets/images/arrow-down.svg) no-repeat;
  background-size: contain;
  transition: 0.3s ease-in-out;
}
.select2-container--default .select2-selection .select2-selection__arrow b {
  display: none;
}
.select2-container--default.select2-container--open
  .select2-selection
  .select2-selection__arrow {
  transform: rotate(180deg);
  margin-top: -6px;
}
.select2-container--default .select2-selection__rendered {
  width: 100%;
}
.select2-container--default .select2-dropdown {
  background: var(--mx-grey);
  border: none;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}
.select2-container--default .select2-search__field {
  border-radius: 20px;
  border: none;
  padding: 10px;
  margin-bottom: 5px;
  border: none;
}
.select2-container--default .select2-results__option {
  padding: 12px 27px;
}
.select2-container--default
  .select2-results__option.select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--mx-blue);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
  color: var(--black);
}
@media only screen and (max-width: 991px) {
  .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 15px;
  }
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #a7a9ac;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.down-arrow svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
.down-arrow svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.down-arrow svg.active .svg-elem-1 {
  fill: var(--mx-yellow);
}
.down-arrow svg.active .svg-elem-2 {
  fill: var(--mx-yellow);
}

.read-more-btn {
  color: var(--mx-blue);
  font-size: var(--p);
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.read-more-btn .img-stroke8 {
  width: 100%;
  height: 18px;
  left: 0;
  top: auto;
  bottom: -3px;
  z-index: -1;
}
.read-more-btn .img-stroke8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blue-section,
.inner-banner-section {
  background-color: var(--mx-blue);
}
.blue-section h1,
.blue-section h2,
.blue-section h3,
.inner-banner-section h1,
.inner-banner-section h2,
.inner-banner-section h3 {
  color: var(--white);
  word-break: break-word;
}
.blue-section h1 b,
.blue-section h1 strong,
.blue-section h2 b,
.blue-section h2 strong,
.blue-section h3 b,
.blue-section h3 strong,
.inner-banner-section h1 b,
.inner-banner-section h1 strong,
.inner-banner-section h2 b,
.inner-banner-section h2 strong,
.inner-banner-section h3 b,
.inner-banner-section h3 strong {
  color: var(--mx-yellow);
}
.blue-section p,
.inner-banner-section p {
  color: var(--white);
  word-break: break-word;
}

.contact-detail {
  border-radius: 30px;
  background: var(--mx-blue);
  padding: 25px 40px;
  min-height: calc(100% - 90px);
  max-height: calc(100% - 90px);
}
@media (max-width: 991px) {
  .contact-detail {
    min-height: auto;
    max-height: inherit;
    max-width: inherit;
    margin-left: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
    padding: var(--p50) var(--gutter70);
    margin-top: 20px;
  }
}
.contact-detail h3 {
  color: var(--white);
  margin-bottom: var(--mb35);
}
.contact-detail h3 b,
.contact-detail h3 strong {
  color: var(--mx-yellow);
}
.contact-detail .swiper .swiper-slide {
  color: var(--white);
  display: grid;
  gap: 20px;
}
.contact-detail .swiper .swiper-slide a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--gutter);
}
.contact-detail .swiper .swiper-slide a:hover {
  color: var(--mx-yellow);
}
.contact-detail .swiper .swiper-slide a img {
  max-width: 50px;
}
.contact-detail .swiper .swiper-slide a:first-child {
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .contact-detail .swiper .swiper-slide a:first-child {
    min-height: 144px;
  }
}
.contact-detail .swiper .swiper-slide a strong span {
  display: block;
}
.contact-detail .swiper .swiper-pagination {
  position: relative;
  margin-top: var(--mb35);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail .swiper .swiper-pagination .swiper-pagination-bullet {
  border-radius: 10px;
  background: rgba(33, 32, 33, 0.5);
  min-width: 91px;
  height: 7px;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.contact-detail
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  background-color: var(--mx-yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: fill 5s;
  border-radius: 10px;
}

.inner-banner {
  background-color: var(--mx-blue);
  padding-top: 160px;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .inner-banner {
    padding-top: 110px;
    padding-bottom: 63px;
  }
}
@media (max-width: 567px) {
  .inner-banner {
    padding-bottom: 58px;
  }
}
.inner-banner .banner-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.inner-banner .banner-grid .grid-right {
  width: 715px;
  height: 422px;
}
.inner-banner .banner-grid .grid-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inner-banner .banner-grid .grid-left {
  max-width: 565px;
}
.inner-banner .banner-grid .grid-left h1 {
  color: var(--white);
}
@media (max-width: 567px) {
  .inner-banner .banner-grid .grid-left h1 {
    margin-bottom: 80px;
  }
}
.inner-banner .banner-grid .grid-left h1 b,
.inner-banner .banner-grid .grid-left h1 strong {
  color: var(--mx-yellow);
}
.inner-banner .banner-grid .grid-left p {
  color: var(--white);
  font-size: 20px;
  margin-top: 30px;
  line-height: 1.7;
}
@media (max-width: 567px) {
  .inner-banner .banner-grid .grid-left p {
    display: none;
  }
}
.inner-banner .banner-grid .grid-left p strong {
  display: block;
  font-size: 700;
}

.inner-banner-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--mx-blue);
}
.inner-banner-section .inner-banner {
  padding-top: 100px;
  width: 100%;
  min-height: calc(100dvh - 100px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .inner-banner-section .inner-banner {
    min-height: 650px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .inner-banner-section .inner-banner {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .inner-banner-section .inner-banner {
    padding-top: 110px;
    padding-bottom: 0;
    width: 100%;
    min-height: 650px;
    max-height: 650px;
    align-items: flex-start;
  }
}
.inner-banner-section .banner-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 80px;
  row-gap: 20px;
  flex-direction: column;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .inner-banner-section .banner-content {
    padding: 0 0 100px;
  }
}
@media (max-width: 991px) {
  .inner-banner-section .banner-content {
    padding-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .inner-banner-section .banner-content {
    text-align: left;
  }
}
.inner-banner-section .banner-content h1,
.inner-banner-section .banner-content h2 {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .inner-banner-section .banner-content h1,
  .inner-banner-section .banner-content h2 {
    --heading1: 52px;
    --headingLH1: 62px;
    width: 50%;
  }
}
.inner-banner-section .banner-content p + p {
  margin-top: -15px;
}
.inner-banner-section .banner-img {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 100%;
  pointer-events: none;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .inner-banner-section .banner-img {
    width: 57%;
  }
}
@media (max-width: 991px) {
  .inner-banner-section .banner-img {
    position: relative;
    bottom: auto;
  }
}
.inner-banner-section .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  max-height: 800px;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .inner-banner-section .banner-img img {
    max-height: 510px;
  }
}
@media (max-width: 991px) {
  .inner-banner-section .banner-img img {
    max-height: 280px;
  }
}
@media (max-width: 768px) {
  .inner-banner-section .banner-img img {
    max-height: 250px;
  }
}
.inner-banner-section .banner-img lottie-player {
  display: none;
}
@media (max-width: 991px) {
  .inner-banner-section .banner-img {
    max-height: 300px;
    width: 85%;
  }
}
.inner-banner-section.center-align .inner-banner {
  position: relative;
}
.inner-banner-section.center-align .banner-img {
  align-items: center;
}
@media (max-width: 991px) {
  .inner-banner-section.center-align .banner-img {
    width: 100%;
  }
}
.inner-banner-section.center-align .banner-img img {
  object-position: center center;
  max-height: 500px;
}
@media (max-width: 1200px) {
  .inner-banner-section.center-align .banner-img img {
    max-height: 400px;
  }
}
@media (max-width: 991px) {
  .inner-banner-section.center-align .banner-img img {
    max-height: 280px;
  }
}
@media (max-width: 768px) {
  .inner-banner-section.center-align .banner-img img {
    max-height: 250px;
  }
}
.inner-banner-section.center-justify-align .inner-banner {
  position: relative;
}
.inner-banner-section.center-justify-align .banner-img {
  align-items: center;
}
.inner-banner-section.center-justify-align .banner-img img {
  object-position: center center;
  max-height: 500px;
}
@media (max-width: 991px) {
  .inner-banner-section.center-justify-align .banner-img img {
    max-height: 280px;
  }
}
@media (max-width: 768px) {
  .inner-banner-section.center-justify-align .banner-img img {
    max-height: 250px;
  }
}
.inner-banner-section.center-end-align .banner-img {
  align-items: center;
}
.inner-banner-section.center-end-align .banner-img img {
  object-position: center right;
  max-height: 500px;
}
@media (max-width: 991px) {
  .inner-banner-section.center-end-align .banner-img img {
    max-height: 250px;
  }
}

.mt-parent {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .mt-parent {
    margin-top: 80px;
  }
}

.swiper-pagination-dots {
  top: auto !important;
  bottom: 30px !important;
}
.swiper-pagination-dots .swiper-pagination-bullet {
  border-radius: 10px;
  background: rgba(33, 32, 33, 0.5);
  min-width: 91px;
  height: 7px;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.swiper-pagination-dots
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  background-color: var(--mx-yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: fill 5s;
  border-radius: 10px;
}

.d-none {
  display: none !important;
}

.landscape-message {
  display: none;
}

@media screen and (max-width: 992px) and (orientation: landscape) {
  .landscape-message {
    width: 100%;
    height: 100vh;
    background: var(--mx-blue);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .landscape-message h1 {
    font-size: 20px;
    color: var(--white);
    text-align: center;
    width: 80%;
    line-height: 1.5;
  }
  body section,
  body header,
  body footer,
  body #loader-wrapper,
  body main {
    display: none !important;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background: url(../../assets/images/arr.svg);
  background-size: 100% 100%;
  background-position: center;
  width: 15px;
  height: 15px;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(90%) saturate(3325%)
    hue-rotate(213deg) brightness(85%) contrast(94%);
  -webkit-filter: brightness(0) saturate(100%) invert(17%) sepia(90%)
    saturate(3325%) hue-rotate(213deg) brightness(85%) contrast(94%);
}

.swiper-button-next:after {
  transform: rotate(180deg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled,
.swiper-button-disabled,
.swiper-btn-arrow.disabled {
  opacity: 1 !important;
  background: #688ecb !important;
  pointer-events: none !important;
}

address {
  font-style: normal;
}

.d-block {
  display: block !important;
}

.picture-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

/* Error 404 Section */
.error-page-body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 50px);
}

.error-404-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 70px 0 0;
  background: var(--mx-blue);
  background-size: cover;
  min-height: calc(100vh - 50px);
}
@media only screen and (max-width: 991px) {
  .error-404-section {
    min-height: calc(100vh - 136px);
    overflow: hidden;
  }
}

.error-404 {
  text-align: center;
  color: var(--white);
}
.error-404 h1 {
  font-weight: 700;
  line-height: 1;
  font-size: 110px;
  color: rgba(0, 0, 0, 0.5019607843);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .error-404 h1 {
    font-size: 40px;
  }
}
.error-404 h2 {
  margin: 0 auto 5px;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .error-404 h2 {
    font-size: 40px;
  }
}
.error-404 p {
  font-weight: 400;
  color: var(--white);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .error-404 p {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .error-404 img {
    scale: 2;
    padding: 5vh 0;
  }
}
@media only screen and (max-width: 767px) {
  .error-404 .newimg {
    scale: 1.6;
    padding: 40px 0;
    transform: translateX(-2px);
  }
}
.error-404 .error-p {
  margin-block: 15px;
}
@media only screen and (max-width: 991px) {
  .error-404 .error-p {
    margin-bottom: 20px;
  }
}
.error-404 a {
  color: var(--mx-yellow);
  position: relative;
  font-weight: 700;
}
.error-404 a:before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  background-color: var(--mx-yellow);
  height: 1px;
}
.error-404 a:hover:before,
.error-404 a:focus:before {
  width: 0;
}

.error-404-oops,
.error-403 {
  max-width: 800px;
  width: 100%;
}

.error-403-section {
  padding-top: 475px;
  background: var(--mx-blue);
  background-size: cover;
}
.error-403-section .error-404 h2 {
  max-width: none;
}

/* End Error 404 Section */
@media only screen and (max-width: 991px) {
  .privacy-policy .full-width,
  .page-gdpr-compliance .full-width,
  .page-terms-of-use .full-width,
  .page-refund-policy .full-width {
    padding-bottom: 0;
  }
}
.privacy-policy .full-width .contact-detail,
.page-gdpr-compliance .full-width .contact-detail,
.page-terms-of-use .full-width .contact-detail,
.page-refund-policy .full-width .contact-detail {
  display: block;
  width: 646px;
  min-height: auto;
  max-height: inherit;
}
@media only screen and (max-width: 991px) {
  .privacy-policy .full-width .contact-detail,
  .page-gdpr-compliance .full-width .contact-detail,
  .page-terms-of-use .full-width .contact-detail,
  .page-refund-policy .full-width .contact-detail {
    min-height: auto;
    max-height: inherit;
    max-width: inherit;
    margin-left: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
    padding: var(--p50) var(--gutter70);
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .privacy-policy .full-width .form,
  .page-gdpr-compliance .full-width .form,
  .page-terms-of-use .full-width .form,
  .page-refund-policy .full-width .form {
    grid-template-columns: 100%;
  }
}
.privacy-policy .down-arrow,
.page-gdpr-compliance .down-arrow,
.page-terms-of-use .down-arrow,
.page-refund-policy .down-arrow {
  display: none;
}
.privacy-policy .desc a,
.page-gdpr-compliance .desc a,
.page-terms-of-use .desc a,
.page-refund-policy .desc a {
  color: var(--mx-black);
}
.privacy-policy .inner-banner-section p,
.page-gdpr-compliance .inner-banner-section p,
.page-terms-of-use .inner-banner-section p,
.page-refund-policy .inner-banner-section p {
  width: 100%;
}

.page-id-18 .inner-banner-section.center-align .banner-img img {
  display: none;
}
.page-id-18 .inner-banner-section .banner-img lottie-player {
  display: block;
}

.page-homepage-dupicate .home-rc-desktop .img-stroke3 img {
  display: none;
}

.search-result-section {
  min-height: calc(100vh - 50px);
  padding: 130px 0 60px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .search-result-section {
    min-height: calc(100vh - 135px);
    min-height: calc(100dvh - 135px);
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section {
    padding: 100px 0 30px;
  }
}
.search-result-section .stroke-img {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -40px;
  bottom: -140px;
  z-index: -1;
  transform: rotate(340deg);
}
@media only screen and (max-width: 991px) {
  .search-result-section .stroke-img {
    display: none;
  }
}
.search-result-section .search-ic {
  width: 110px;
  position: absolute;
  left: 330px;
  top: -24px;
  transform: rotate(266deg);
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .search-result-section .search-ic {
    width: 70px;
    left: 336px;
    top: -4px;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-ic {
    width: 80px;
    right: -90px;
    left: auto;
    top: -14px;
  }
}
@media only screen and (max-width: 375px) {
  .search-result-section .search-ic {
    width: 70px;
    min-width: 70px;
    left: 190px;
    right: auto;
  }
}
.search-result-section .section-title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .search-result-section .section-title {
    margin-bottom: 20px;
  }
}
.search-result-section .section-title h2 {
  font-size: 35px;
}
@media only screen and (max-width: 767px) {
  .search-result-section .section-title h2 {
    font-size: 24px;
  }
}
.search-result-section .section-title h2 span {
  position: relative;
}
.search-result-section .section-title h2 b {
  display: block;
  color: var(--mx-blue);
}
@media only screen and (max-width: 767px) {
  .search-result-section .section-title h2 b {
    display: inline;
  }
}
.search-result-section .search-result-row {
  border-top: 1px solid var(--mx-black);
  padding: 30px 0;
}
@media only screen and (max-width: 991px) {
  .search-result-section .search-result-row {
    padding: 20px 0;
  }
}
.search-result-section .search-result-row:last-child {
  border-bottom: 1px solid var(--mx-black);
}
.search-result-section .search-result-row h4 {
  font-weight: 700;
  font-size: 27px;
  line-height: 1.5;
  color: var(--mx-black);
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-row h4 {
    font-size: 18px;
  }
}
.search-result-section .search-result-row p {
  color: var(--mx-black);
  display: none;
}
.search-result-section .search-result-link {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-link {
    align-items: center;
  }
}
.search-result-section .search-result-link .arrow-dv {
  display: flex;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-link .arrow-dv {
    margin-top: 0;
  }
}
.search-result-section .search-result-link .arrow-dv img {
  transition: 0.3s ease-in-out;
}
.search-result-section .search-result-link:hover .arrow-dv img {
  transform: translateX(10px);
}

.page-id-1194 .milestone .img-stroke19 img {
  display: none;
}
.page-id-1194 .for-rc-section .img-stroke3 img,
.page-id-1194 .how-it-began .section-stroke img,
.page-id-1194 .stroke-img-bottom img {
  display: none;
}
.page-id-1194 .how-it-began .section-stroke {
  left: -100px;
}
.page-id-1194 .full-width .stroke-img-bottom {
  bottom: -226px;
}
.page-id-1194 .inner-banner-section.center-align .banner-img img {
  display: none;
}
.page-id-1194 .inner-banner-section .banner-img lottie-player {
  display: block;
}
.page-id-1194 .contact-page-section .down-arrow {
  top: -20px !important;
  width: 390px !important;
  left: 391px !important;
  transform: rotate(-10deg);
}
.page-id-1194 .contact-page-section .down-arrow img {
  display: none;
}

::-webkit-scrollbar {
  display: none !important;
  color: #fff !important;
  height: 0 !important;
  width: 0 !important;
}

.header {
  padding: 10px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  background-color: var(--mx-blue);
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 15px 0;
    min-height: 80px;
  }
}

.header-inner {
  display: flex;
  top: 0;
  width: 100%;
  left: 0;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
    padding: 10px 20px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.social-header {
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .social-header {
    margin-bottom: 10px;
  }
}
.social-header h4 {
  margin-bottom: 10px;
}
.social-header .front {
  display: none;
}
.social-header .social {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.social-header .social li {
  display: flex;
  align-items: center;
}
.social-header .social a {
  width: 30px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .social-header .social a {
    width: 25px;
  }
}

.header-logo {
  display: flex;
  flex-wrap: wrap;
}
.header-logo a {
  display: flex;
  flex-wrap: wrap;
}
.header-logo .white-logo {
  display: block;
}
.header-logo .black-logo {
  display: none;
}
.header-logo img {
  width: 165px;
  height: 75px;
  object-fit: contain;
}
@media only screen and (max-width: 991px) {
  .header-logo img {
    width: 125px;
    height: auto;
  }
}
@media only screen and (max-width: 567px) {
  .header-logo img {
    width: 105px;
  }
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media only screen and (max-width: 991px) {
  .menu-right {
    gap: 7px;
  }
}

.right-btn {
  position: absolute;
  top: 30px;
  right: 95px;
  text-transform: initial;
}
@media only screen and (max-width: 1200px) {
  .right-btn {
    right: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .right-btn {
    top: 20px;
  }
}
@media only screen and (max-width: 360px) {
  .right-btn {
    right: 63px;
  }
}
.right-btn .btn-dv {
  width: 147px;
  height: 40px;
  border-color: var(--mx-yellow);
}
@media only screen and (max-width: 420px) {
  .right-btn .btn-dv {
    width: 135px;
    height: 40px;
  }
}
.right-btn .btn-dv:hover {
  background: var(--white);
}
.right-btn .btn-dv .mas {
  line-height: 19px;
}
.right-btn .btn-dv .btn {
  line-height: 19px;
  border-color: var(--mx-yellow);
  background: var(--mx-yellow);
  color: var(--mx-blue);
}
@media only screen and (max-width: 420px) {
  .right-btn .btn-dv .btn {
    line-height: 1.3;
    padding: 10px;
  }
}

.nav-logo-link {
  position: absolute;
  top: 13px;
  left: var(--gutter70);
}
@media only screen and (max-width: 567px) {
  .nav-logo-link {
    top: 22px;
  }
}
.nav-logo-link img {
  width: 165px;
  height: 75px;
  object-fit: contain;
}
@media only screen and (max-width: 991px) {
  .nav-logo-link img {
    width: 125px;
    height: auto;
  }
}
@media only screen and (max-width: 567px) {
  .nav-logo-link img {
    width: 105px;
  }
}

.logo {
  position: relative;
  z-index: 99;
}
.logo a {
  display: inline-block;
  width: 120px;
}
.logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poilcy {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--mx-yellow);
  text-transform: initial;
  gap: 5px;
  margin-bottom: 20px;
  transform: translateY(250px);
  transition: all 0.5s ease-in-out;
  transition-delay: 1s;
  display: none;
}
@media only screen and (max-width: 991px) {
  .poilcy {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.poilcy .policy-link {
  display: flex;
  gap: 5px;
  line-height: 1;
}
.poilcy .main-menu-list-ul {
  display: flex;
  gap: 5px;
  line-height: 1;
}
.poilcy .main-menu-list-ul li:last-child a {
  border: none;
  padding: 0;
}
.poilcy a a,
.poilcy .main-menu-list-ul li a {
  color: var(--mx-yellow);
  border-right: 1px solid var(--mx-yellow);
  padding-right: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
.poilcy a a::before,
.poilcy .main-menu-list-ul li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: calc(100% - 5px);
  height: 1px;
  transform-origin: right;
  background-color: var(--mx-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.poilcy a.current-menu-item a::before,
.poilcy .main-menu-list-ul li.current-menu-item a::before {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-close {
  display: inline-flex;
  width: 80px;
  height: 80px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 100%;
  font-size: 48px;
  color: var(--white);
  position: absolute;
  top: 43px;
  right: 40px;
  cursor: pointer;
}

/* Scroll Down css */
.scroll-down {
  position: absolute;
  z-index: 2;
  left: 115px;
  bottom: 96px;
  display: inline-flex;
  transform: translateY(0) rotate(-90deg);
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  transition: all 1s linear;
  transform-origin: top left;
}

.scroll-down .scroll-text {
  border-bottom: 1px solid var(--white);
}

.scroll-down .icon-chevron-left-light {
  padding-top: 10px;
}

.scroll-down:hover {
  animation: scroll-hover 2.5s linear infinite;
}

@keyframes scroll-hover {
  0% {
    transform: translateY(0px) rotate(-90deg);
  }
  50% {
    transform: translateY(40px) rotate(-90deg);
  }
  100% {
    transform: translateY(0px) rotate(-90deg);
  }
}
@keyframes opacitylogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
nav {
  position: fixed;
  left: 0;
  top: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  will-change: clip-path;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--mx-blue);
  padding-block: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 1s ease-in-out;
  text-transform: uppercase;
}
@supports (-webkit-hyphens: none) {
  @media (min-device-width: 768px) and (max-device-width: 1080px) and (hover: none) and (pointer: coarse) {
    nav {
      /* Safari on iPad only */
      transform: translateY(-100%);
    }
  }
}
@media only screen and (max-width: 767px) {
  nav {
    padding-block: 12dvh 0;
    flex-direction: inherit;
  }
}
nav .right-btn {
  transition: 0.1s ease;
}
nav .right-btn .btn-dv {
  border-color: var(--mx-yellow);
}
nav .right-btn .btn-dv .btn {
  border-color: var(--mx-yellow);
  background: var(--mx-yellow);
  color: var(--mx-blue);
}
nav .right-btn .btn-dv:hover {
  border-color: var(--white);
}
nav.open-nav {
  transition: all 1s ease-in-out;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 9;
}
@supports (-webkit-hyphens: none) {
  @media (min-device-width: 768px) and (max-device-width: 1080px) and (hover: none) and (pointer: coarse) {
    nav.open-nav {
      /* Safari on iPad only */
      transform: translateY(0);
    }
  }
}
@media only screen and (max-width: 767px) {
  nav.open-nav {
    min-height: 100dvh;
    overflow: auto;
  }
}
nav.open-nav .nav-left ul.main-menu li a {
  transform: translate3d(0px, 0, 0px);
  transition: all 0.5s ease-in-out;
}
nav.open-nav ul.main-menu li:first-child a {
  transition-delay: 0.2s;
}
nav.open-nav ul.main-menu li:nth-child(2) a {
  transition-delay: 0.3s;
}
nav.open-nav ul.main-menu li:nth-child(3) a {
  transition-delay: 0.4s;
}
nav.open-nav ul.main-menu li:nth-child(4) a {
  transition-delay: 0.5s;
}
nav.open-nav ul.main-menu li:nth-child(5) a {
  transition-delay: 0.6s;
}
nav.open-nav ul.main-menu li:nth-child(6) a {
  transition-delay: 0.7s;
}
nav.open-nav ul.main-menu li:nth-child(7) a {
  transition-delay: 0.8s;
}
nav.open-nav ul.main-menu li:nth-child(8) a {
  transition-delay: 0.9s;
}
nav.open-nav .nav-details {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transition-delay: 1.3s;
}
nav.open-nav .nav-details.nav-address {
  transition-delay: 1.3s;
}
nav.open-nav .nav-details.nav-contact {
  transition-delay: 1.5s;
}
nav.open-nav .nav-details.nav-email {
  transition-delay: 1.7s;
}
nav.open-nav .social-icons {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s 1.9s ease-in-out;
}
nav.open-nav .poilcy {
  transform: translateY(0);
  opacity: 1;
}

.search-nav-header-open-header {
  display: block;
}
.search-nav-header-open-header .search__border {
  border-color: var(--mx-yellow);
}
.search-nav-header-open-header .search__border::after {
  background: var(--mx-yellow);
}

.button-stroke {
  display: block;
  width: 100%;
  height: 43px;
  stroke: transparent;
  position: absolute;
  left: 0;
  bottom: -21px;
  stroke-width: 4;
  stroke-dasharray: 650px;
  stroke-dashoffset: 650px;
  stroke: rgb(211.075, 239.94, 19.06);
  stroke-width: 5;
  transition: stroke-dashoffset 800ms ease-out;
}

.nav-left {
  width: 100%;
  padding-right: var(--gutter70);
  padding-left: var(--gutter70);
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .nav-left {
    min-height: calc(100dvh - 260px);
    max-height: calc(100dvh - 260px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }
}
.nav-left .tooltip {
  visibility: hidden;
  background-color: var(--mx-yellow);
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 6px 4px;
  position: absolute;
  z-index: 1;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-size: 12px;
  top: 35px;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  text-transform: capitalize;
}
@media only screen and (max-width: 1200px) {
  .nav-left .tooltip {
    top: 28px;
    left: 0;
    transform: none;
  }
}
.nav-left #menu-item-502 .tooltip {
  margin-left: 3px;
}
@media only screen and (max-width: 1199px) {
  .nav-left ul.main-menu {
    margin-top: 15px;
  }
}
.nav-left ul.main-menu li {
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  padding-bottom: 50px;
}
@media only screen and (max-width: 1600px) {
  .nav-left ul.main-menu li {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .nav-left ul.main-menu li {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-left ul.main-menu li {
    height: 58px;
    padding-bottom: 0;
  }
}
.nav-left ul.main-menu li a {
  color: var(--white);
  font-size: var(--heading3);
  line-height: var(--headingLH3);
  height: 100%;
  transform: translate3d(0px, 80px, 0px);
  font-weight: 700;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .nav-left ul.main-menu li a {
    height: auto;
  }
}
.nav-left ul.main-menu li a span {
  display: block;
}
.nav-left ul.main-menu li a span:nth-child(2) {
  transform: translateY(-46px) rotateX(95deg) skewX(-11deg);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.nav-left ul.main-menu li a span:nth-child(1) {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.nav-left ul.main-menu li a:hover .button-stroke {
  stroke-dashoffset: 0;
}
.nav-left ul.main-menu li a:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.nav-left ul.main-menu li.current-menu-item a .button-stroke {
  stroke-dashoffset: 0;
}
.nav-left ul.main-menu li.no-link a:hover svg {
  display: none;
}

.nav-img {
  width: 447px;
  height: 267px;
  margin-bottom: 39px;
}
.nav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.nav-details {
  color: var(--white);
  font-family: var(--title-font);
  text-align: right;
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: normal;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.nav-details:last-child {
  margin-bottom: 0;
}

a.nav-details:hover {
  color: var(--yellow);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  margin-top: 48px;
}
.social-icons li a {
  color: var(--yellow);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-icons li a:hover {
  color: var(--white);
}

.menu-btn {
  background: transparent;
  border: none;
  height: 40px;
  width: 40px;
  position: relative;
  z-index: 99;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--mx-blue);
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 250ms 1100ms ease,
    width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
    height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 6px;
}

.menu-btn__line {
  height: 0;
  width: 25px;
  border-radius: 10px;
  display: block;
  padding: 1px;
  display: block;
  background-color: var(--mx-yellow);
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}

.menu-btn__line-left {
  width: 25px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.menu-btn__line-right {
  width: 25px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  margin: 0;
}

body.nav-active {
  overflow: hidden;
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  body.nav-active .grecaptcha-badge {
    display: none !important;
  }
}
body.nav-active .search-nav-header {
  display: none;
}
body.nav-active .nav-up {
  transform: none;
}
body.nav-active .header-logo .white-logo {
  display: block !important;
  animation: opacitylogo 2.5s linear;
}
body.nav-active .header-logo .black-logo {
  display: none !important;
}
body.nav-active .menu-btn__line {
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
  display: none;
}
body.nav-active .menu-btn__line-left {
  width: 25px;
  -webkit-transform: translate(0px, 3px) rotate(45deg);
  transform: translate(0px, 3px) rotate(45deg);
  display: block;
}
body.nav-active .menu-btn__line-right {
  width: 25px;
  float: right;
  -webkit-transform: translate(0px, -4px) rotate(-45deg);
  transform: translate(0px, -4px) rotate(-45deg);
  display: block;
}
body .swiper-scrollbar {
  z-index: -1 !important;
  left: 0 !important;
}
body .search-nav .search__input {
  color: var(--mx-yellow);
}
body .search-nav .search__input::placeholder {
  color: var(--mx-yellow);
}
body .search-nav .search__input::-webkit-placeholder {
  color: var(--mx-yellow);
}
body .search-nav .search__input::-moz-placeholder {
  color: var(--mx-yellow);
}
body .search-nav .search__border {
  border-color: var(--mx-yellow);
}
body .search-nav .search__border::after {
  background: var(--mx-yellow);
}
body .search-nav .search__close:before,
body .search-nav .search__close:after {
  background: var(--mx-yellow);
}

.menu-inactive nav .nav-left ul li a {
  transform: translate(0px, 100px);
  transition: all 0.5s ease-in-out;
}
.menu-inactive nav .nav-left ul li:first-child a {
  transition-delay: 0.4s;
}
.menu-inactive nav .nav-left ul li:nth-child(2) a {
  transition-delay: 0.35s;
}
.menu-inactive nav .nav-left ul li:nth-child(3) a {
  transition-delay: 0.3s;
}
.menu-inactive nav .nav-left ul li:nth-child(4) a {
  transition-delay: 0.25s;
}
.menu-inactive nav .nav-left ul li:nth-child(5) a {
  transition-delay: 0.2s;
}
.menu-inactive nav .nav-left ul li:nth-child(6) a {
  transition-delay: 0.15s;
}
.menu-inactive nav .nav-left ul li:nth-child(7) a {
  transition-delay: 0.1s;
}
.menu-inactive nav .nav-left ul li:nth-child(8) a {
  transition-delay: 0.05s;
}

.main-menu {
  display: grid;
  grid-template-columns: repeat(4, 230px);
  gap: var(--gutter);
  justify-content: space-between;
  max-width: calc(100% - 57px);
}
@media only screen and (max-width: 991px) {
  .main-menu {
    grid-template-columns: repeat(1, 1fr);
    overflow-y: auto;
    gap: 0;
    max-width: 100%;
    width: 100%;
    max-height: calc(100% - 80px);
  }
}

.contact-div {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter70);
  padding-right: var(--gutter70);
}
@media only screen and (max-width: 991px) {
  .contact-div .link {
    margin-bottom: 15px;
    position: absolute;
    right: 15px;
    top: 2px;
    font-size: 0;
    display: none;
  }
}
.contact-div .link span {
  position: relative;
}
.contact-div .link a {
  color: var(--white);
  font-size: var(--heading3);
  line-height: 1.44;
  transition: all 0.5s ease-in-out;
  font-weight: 700;
  display: inline-flex;
  position: relative;
  gap: 12px;
}
@media only screen and (max-width: 991px) {
  .contact-div .link a {
    font-size: 0;
  }
}
.contact-div .link a img {
  width: 30px;
  margin-top: -7px;
}
@media only screen and (max-width: 991px) {
  .contact-div .link a img {
    width: 30px;
    display: block;
    margin-top: 0;
  }
}
.contact-div .link a:hover .button-stroke,
.contact-div .link a.active .button-stroke {
  stroke-dashoffset: 0;
}
@media only screen and (max-width: 991px) {
  .contact-div .swiper {
    padding: 15px 0;
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .contact-div .swiper .swiper-slide {
    display: grid;
    gap: var(--gutter30);
  }
}
.contact-div .swiper .swiper-slide a {
  display: inline-grid;
  grid-template-columns: 35px auto;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  text-transform: initial;
  position: relative;
  justify-content: flex-start;
}
@media only screen and (max-width: 1600px) {
  .contact-div .swiper .swiper-slide a {
    font-size: 14px;
  }
}
.contact-div .swiper .swiper-slide a p {
  font-size: 16px;
}
@media only screen and (max-width: 1600px) {
  .contact-div .swiper .swiper-slide a p {
    font-size: 14px;
  }
}
.contact-div .swiper .swiper-slide a:hover {
  color: var(--mx-yellow);
}
.contact-div .swiper .swiper-slide a:first-child {
  align-items: flex-start;
  min-height: 143px;
}
.contact-div .swiper .swiper-slide a img {
  width: 24px;
}
.contact-div .swiper .swiper-slide a span {
  position: relative;
  display: inline-block;
}
.contact-div .swiper-pagination {
  position: relative;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.contact-div .swiper-pagination .swiper-pagination-bullet {
  border-radius: 10px;
  background: rgba(33, 32, 33, 0.5);
  min-width: 91px;
  height: 7px;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.contact-div
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  background-color: var(--mx-yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: fill 5s;
  border-radius: 10px;
}

header.nav-up {
  transform: translateY(-100%);
  transition: all 0.5s ease;
}
header.nav-down {
  transform: none;
  transition: all 0.5s ease;
  background-color: var(--mx-blue);
}
header.nav-down.to-top {
  background-color: transparent !important;
}
header.nav-down .navbar {
  padding: 10px 0;
}
header.nav-down .navbar .navbar-brand {
  width: 120px;
}

.search-main {
  position: relative;
  margin-right: 170px;
}
@media only screen and (max-width: 767px) {
  .search-main {
    display: none;
  }
}
.search-main .search-icon {
  cursor: pointer;
}
.search-main input {
  background-color: transparent;
  border: 3px solid var(--mx-blue);
  border-radius: 15px;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  height: 22px;
  float: right;
  outline: none;
  transition: all 0.3s ease;
  width: 22px;
}
.search-main input:focus {
  border-radius: 20px;
  border-width: 2px;
  cursor: text;
  height: 40px;
  line-height: 1.6;
  padding: 0 15px;
  width: 300px;
  color: var(--black);
}
.search-main label {
  background-color: var(--mx-blue);
  bottom: -6px;
  display: block;
  right: 0;
  position: absolute;
  height: 12px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  width: 3px;
}
.search-main input:focus + label {
  height: 1px;
  bottom: 6px;
  right: 6px;
}

.home .header-logo .white-logo,
.page-blog .header-logo .white-logo,
.single-post .header-logo .white-logo,
.page-homepage-dupicate .header-logo .white-logo,
.search .header-logo .white-logo {
  display: none;
}
.home .header-logo .black-logo,
.page-blog .header-logo .black-logo,
.single-post .header-logo .black-logo,
.page-homepage-dupicate .header-logo .black-logo,
.search .header-logo .black-logo {
  display: block;
}
.home .search-nav-mobile .search-ic img,
.page-blog .search-nav-mobile .search-ic img,
.single-post .search-nav-mobile .search-ic img,
.page-homepage-dupicate .search-nav-mobile .search-ic img,
.search .search-nav-mobile .search-ic img {
  filter: none;
}
.home .search-nav-open-mobile .search-ic img,
.page-blog .search-nav-open-mobile .search-ic img,
.single-post .search-nav-open-mobile .search-ic img,
.page-homepage-dupicate .search-nav-open-mobile .search-ic img,
.search .search-nav-open-mobile .search-ic img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(17%) saturate(1662%)
    hue-rotate(19deg) brightness(114%) contrast(91%);
}
.home header,
.page-blog header,
.single-post header,
.page-homepage-dupicate header,
.search header {
  background-color: transparent;
}
.home header .btn-dv,
.page-blog header .btn-dv,
.single-post header .btn-dv,
.page-homepage-dupicate header .btn-dv,
.search header .btn-dv {
  border-color: var(--mx-blue);
}
.home header .btn-dv .btn,
.page-blog header .btn-dv .btn,
.single-post header .btn-dv .btn,
.page-homepage-dupicate header .btn-dv .btn,
.search header .btn-dv .btn {
  border-color: var(--mx-blue);
  background: var(--mx-blue);
  color: var(--mx-yellow);
}
.home header .right-btn-nav .btn-dv,
.page-blog header .right-btn-nav .btn-dv,
.single-post header .right-btn-nav .btn-dv,
.page-homepage-dupicate header .right-btn-nav .btn-dv,
.search header .right-btn-nav .btn-dv {
  border-color: var(--mx-yellow);
}
.home header .right-btn-nav .btn-dv .btn,
.page-blog header .right-btn-nav .btn-dv .btn,
.single-post header .right-btn-nav .btn-dv .btn,
.page-homepage-dupicate header .right-btn-nav .btn-dv .btn,
.search header .right-btn-nav .btn-dv .btn {
  border-color: var(--mx-yellow);
  background: var(--mx-yellow);
  color: var(--mx-blue);
}
.home header .search-nav-header .search__border,
.page-blog header .search-nav-header .search__border,
.single-post header .search-nav-header .search__border,
.page-homepage-dupicate header .search-nav-header .search__border,
.search header .search-nav-header .search__border {
  border-color: var(--mx-blue);
}
.home header .search-nav-header .search__border::after,
.page-blog header .search-nav-header .search__border::after,
.single-post header .search-nav-header .search__border::after,
.page-homepage-dupicate header .search-nav-header .search__border::after,
.search header .search-nav-header .search__border::after {
  background: var(--mx-blue);
}
.home header .search-nav-header .search__close:before,
.home header .search-nav-header .search__close:after,
.page-blog header .search-nav-header .search__close:before,
.page-blog header .search-nav-header .search__close:after,
.single-post header .search-nav-header .search__close:before,
.single-post header .search-nav-header .search__close:after,
.page-homepage-dupicate header .search-nav-header .search__close:before,
.page-homepage-dupicate header .search-nav-header .search__close:after,
.search header .search-nav-header .search__close:before,
.search header .search-nav-header .search__close:after {
  background: var(--mx-blue);
}
.home header .search-nav-open-header .search__border,
.page-blog header .search-nav-open-header .search__border,
.single-post header .search-nav-open-header .search__border,
.page-homepage-dupicate header .search-nav-open-header .search__border,
.search header .search-nav-open-header .search__border {
  border-color: var(--mx-yellow);
}
.home header .search-nav-open-header .search__border::after,
.page-blog header .search-nav-open-header .search__border::after,
.single-post header .search-nav-open-header .search__border::after,
.page-homepage-dupicate header .search-nav-open-header .search__border::after,
.search header .search-nav-open-header .search__border::after {
  background: var(--mx-yellow);
}
.home header .search-nav-open-header .search__close:before,
.home header .search-nav-open-header .search__close:after,
.page-blog header .search-nav-open-header .search__close:before,
.page-blog header .search-nav-open-header .search__close:after,
.single-post header .search-nav-open-header .search__close:before,
.single-post header .search-nav-open-header .search__close:after,
.page-homepage-dupicate header .search-nav-open-header .search__close:before,
.page-homepage-dupicate header .search-nav-open-header .search__close:after,
.search header .search-nav-open-header .search__close:before,
.search header .search-nav-open-header .search__close:after {
  background: var(--mx-yellow);
}
.home header.nav-down,
.page-blog header.nav-down,
.single-post header.nav-down,
.page-homepage-dupicate header.nav-down,
.search header.nav-down {
  background-color: var(--mx-blue);
}
.home header.nav-down .search-nav-mobile-main .search-ic img,
.page-blog header.nav-down .search-nav-mobile-main .search-ic img,
.single-post header.nav-down .search-nav-mobile-main .search-ic img,
.page-homepage-dupicate header.nav-down .search-nav-mobile-main .search-ic img,
.search header.nav-down .search-nav-mobile-main .search-ic img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(17%) saturate(1662%)
    hue-rotate(19deg) brightness(114%) contrast(91%);
}
.home header.nav-down .right-btn .btn-dv,
.page-blog header.nav-down .right-btn .btn-dv,
.single-post header.nav-down .right-btn .btn-dv,
.page-homepage-dupicate header.nav-down .right-btn .btn-dv,
.search header.nav-down .right-btn .btn-dv {
  border-color: var(--mx-yellow);
}
.home header.nav-down .right-btn .btn-dv .btn,
.page-blog header.nav-down .right-btn .btn-dv .btn,
.single-post header.nav-down .right-btn .btn-dv .btn,
.page-homepage-dupicate header.nav-down .right-btn .btn-dv .btn,
.search header.nav-down .right-btn .btn-dv .btn {
  border-color: var(--mx-yellow);
  background: var(--mx-yellow);
  color: var(--mx-blue);
}
.home header.nav-down .search-nav-header .search__border,
.page-blog header.nav-down .search-nav-header .search__border,
.single-post header.nav-down .search-nav-header .search__border,
.page-homepage-dupicate header.nav-down .search-nav-header .search__border,
.search header.nav-down .search-nav-header .search__border {
  border-color: var(--mx-yellow);
}
.home header.nav-down .search-nav-header .search__border::after,
.page-blog header.nav-down .search-nav-header .search__border::after,
.single-post header.nav-down .search-nav-header .search__border::after,
.page-homepage-dupicate
  header.nav-down
  .search-nav-header
  .search__border::after,
.search header.nav-down .search-nav-header .search__border::after {
  background: var(--mx-yellow);
}
.home header.nav-down .search-nav-header .search__close:before,
.home header.nav-down .search-nav-header .search__close:after,
.page-blog header.nav-down .search-nav-header .search__close:before,
.page-blog header.nav-down .search-nav-header .search__close:after,
.single-post header.nav-down .search-nav-header .search__close:before,
.single-post header.nav-down .search-nav-header .search__close:after,
.page-homepage-dupicate
  header.nav-down
  .search-nav-header
  .search__close:before,
.page-homepage-dupicate header.nav-down .search-nav-header .search__close:after,
.search header.nav-down .search-nav-header .search__close:before,
.search header.nav-down .search-nav-header .search__close:after {
  background: var(--mx-yellow);
}
.home header.nav-down.to-top,
.page-blog header.nav-down.to-top,
.single-post header.nav-down.to-top,
.page-homepage-dupicate header.nav-down.to-top,
.search header.nav-down.to-top {
  background-color: transparent !important;
}
.home header.nav-down.to-top .search-nav-mobile-main .search-ic img,
.page-blog header.nav-down.to-top .search-nav-mobile-main .search-ic img,
.single-post header.nav-down.to-top .search-nav-mobile-main .search-ic img,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-mobile-main
  .search-ic
  img,
.search header.nav-down.to-top .search-nav-mobile-main .search-ic img {
  filter: none;
}
.home header.nav-down.to-top .white-logo,
.page-blog header.nav-down.to-top .white-logo,
.single-post header.nav-down.to-top .white-logo,
.page-homepage-dupicate header.nav-down.to-top .white-logo,
.search header.nav-down.to-top .white-logo {
  display: none;
}
.home header.nav-down.to-top .black-logo,
.page-blog header.nav-down.to-top .black-logo,
.single-post header.nav-down.to-top .black-logo,
.page-homepage-dupicate header.nav-down.to-top .black-logo,
.search header.nav-down.to-top .black-logo {
  display: block;
}
.home header.nav-down.to-top .btn-dv,
.page-blog header.nav-down.to-top .btn-dv,
.single-post header.nav-down.to-top .btn-dv,
.page-homepage-dupicate header.nav-down.to-top .btn-dv,
.search header.nav-down.to-top .btn-dv {
  border-color: var(--mx-blue);
}
.home header.nav-down.to-top .btn-dv .btn,
.page-blog header.nav-down.to-top .btn-dv .btn,
.single-post header.nav-down.to-top .btn-dv .btn,
.page-homepage-dupicate header.nav-down.to-top .btn-dv .btn,
.search header.nav-down.to-top .btn-dv .btn {
  border-color: var(--mx-blue);
  background: var(--mx-blue);
  color: var(--mx-yellow);
}
.home header.nav-down.to-top .right-btn-nav .btn-dv,
.page-blog header.nav-down.to-top .right-btn-nav .btn-dv,
.single-post header.nav-down.to-top .right-btn-nav .btn-dv,
.page-homepage-dupicate header.nav-down.to-top .right-btn-nav .btn-dv,
.search header.nav-down.to-top .right-btn-nav .btn-dv {
  border-color: var(--mx-yellow);
}
.home header.nav-down.to-top .right-btn-nav .btn-dv .btn,
.page-blog header.nav-down.to-top .right-btn-nav .btn-dv .btn,
.single-post header.nav-down.to-top .right-btn-nav .btn-dv .btn,
.page-homepage-dupicate header.nav-down.to-top .right-btn-nav .btn-dv .btn,
.search header.nav-down.to-top .right-btn-nav .btn-dv .btn {
  border-color: var(--mx-yellow);
  background: var(--mx-yellow);
  color: var(--mx-blue);
}
.home header.nav-down.to-top .search-nav-header .search__input,
.page-blog header.nav-down.to-top .search-nav-header .search__input,
.single-post header.nav-down.to-top .search-nav-header .search__input,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__input,
.search header.nav-down.to-top .search-nav-header .search__input {
  color: var(--black);
}
.home header.nav-down.to-top .search-nav-header .search__input::placeholder,
.page-blog
  header.nav-down.to-top
  .search-nav-header
  .search__input::placeholder,
.single-post
  header.nav-down.to-top
  .search-nav-header
  .search__input::placeholder,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__input::placeholder,
.search header.nav-down.to-top .search-nav-header .search__input::placeholder {
  color: #757575;
}
.home
  header.nav-down.to-top
  .search-nav-header
  .search__input::-webkit-placeholder,
.page-blog
  header.nav-down.to-top
  .search-nav-header
  .search__input::-webkit-placeholder,
.single-post
  header.nav-down.to-top
  .search-nav-header
  .search__input::-webkit-placeholder,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__input::-webkit-placeholder,
.search
  header.nav-down.to-top
  .search-nav-header
  .search__input::-webkit-placeholder {
  color: #757575;
}
.home
  header.nav-down.to-top
  .search-nav-header
  .search__input::-moz-placeholder,
.page-blog
  header.nav-down.to-top
  .search-nav-header
  .search__input::-moz-placeholder,
.single-post
  header.nav-down.to-top
  .search-nav-header
  .search__input::-moz-placeholder,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__input::-moz-placeholder,
.search
  header.nav-down.to-top
  .search-nav-header
  .search__input::-moz-placeholder {
  color: #757575;
}
.home header.nav-down.to-top .search-nav-header .search__border,
.page-blog header.nav-down.to-top .search-nav-header .search__border,
.single-post header.nav-down.to-top .search-nav-header .search__border,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__border,
.search header.nav-down.to-top .search-nav-header .search__border {
  border-color: var(--mx-blue);
}
.home header.nav-down.to-top .search-nav-header .search__border::after,
.page-blog header.nav-down.to-top .search-nav-header .search__border::after,
.single-post header.nav-down.to-top .search-nav-header .search__border::after,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__border::after,
.search header.nav-down.to-top .search-nav-header .search__border::after {
  background: var(--mx-blue);
}
.home header.nav-down.to-top .search-nav-header .search__close:before,
.home header.nav-down.to-top .search-nav-header .search__close:after,
.page-blog header.nav-down.to-top .search-nav-header .search__close:before,
.page-blog header.nav-down.to-top .search-nav-header .search__close:after,
.single-post header.nav-down.to-top .search-nav-header .search__close:before,
.single-post header.nav-down.to-top .search-nav-header .search__close:after,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__close:before,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-header
  .search__close:after,
.search header.nav-down.to-top .search-nav-header .search__close:before,
.search header.nav-down.to-top .search-nav-header .search__close:after {
  background: var(--mx-blue);
}
.home header.nav-down.to-top .search-nav-open-header .search__input,
.page-blog header.nav-down.to-top .search-nav-open-header .search__input,
.single-post header.nav-down.to-top .search-nav-open-header .search__input,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-open-header
  .search__input,
.search header.nav-down.to-top .search-nav-open-header .search__input {
  color: var(--mx-yellow);
}
.home
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::placeholder,
.page-blog
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::placeholder,
.single-post
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::placeholder,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::placeholder,
.search
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::placeholder {
  color: var(--mx-yellow);
}
.home
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-webkit-placeholder,
.page-blog
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-webkit-placeholder,
.single-post
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-webkit-placeholder,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-webkit-placeholder,
.search
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-webkit-placeholder {
  color: var(--mx-yellow);
}
.home
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-moz-placeholder,
.page-blog
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-moz-placeholder,
.single-post
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-moz-placeholder,
.page-homepage-dupicate
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-moz-placeholder,
.search
  header.nav-down.to-top
  .search-nav-open-header
  .search__input::-moz-placeholder {
  color: var(--mx-yellow);
}
.home header.nav-down .white-logo,
.page-blog header.nav-down .white-logo,
.single-post header.nav-down .white-logo,
.page-homepage-dupicate header.nav-down .white-logo,
.search header.nav-down .white-logo {
  display: block;
}
.home header.nav-down .black-logo,
.page-blog header.nav-down .black-logo,
.single-post header.nav-down .black-logo,
.page-homepage-dupicate header.nav-down .black-logo,
.search header.nav-down .black-logo {
  display: none;
}
@media (max-width: 768px) {
  .home .for-rc-mobile .primary-user-card,
  .page-blog .for-rc-mobile .primary-user-card,
  .single-post .for-rc-mobile .primary-user-card,
  .page-homepage-dupicate .for-rc-mobile .primary-user-card,
  .search .for-rc-mobile .primary-user-card {
    align-items: flex-end;
  }
}
.home.nav-active .search-nav-mobile .search-ic img,
.page-blog.nav-active .search-nav-mobile .search-ic img,
.single-post.nav-active .search-nav-mobile .search-ic img,
.page-homepage-dupicate.nav-active .search-nav-mobile .search-ic img,
.search.nav-active .search-nav-mobile .search-ic img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(17%) saturate(1662%)
    hue-rotate(19deg) brightness(114%) contrast(91%);
}
.home.nav-active header.nav-down.to-top .search-nav-mobile .search-ic img,
.page-blog.nav-active header.nav-down.to-top .search-nav-mobile .search-ic img,
.single-post.nav-active
  header.nav-down.to-top
  .search-nav-mobile
  .search-ic
  img,
.page-homepage-dupicate.nav-active
  header.nav-down.to-top
  .search-nav-mobile
  .search-ic
  img,
.search.nav-active header.nav-down.to-top .search-nav-mobile .search-ic img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(17%) saturate(1662%)
    hue-rotate(19deg) brightness(114%) contrast(91%);
}

.nav-right {
  background: rgba(0, 0, 0, 0.5);
  min-height: 50vh;
  padding-block: 57px;
}
@media only screen and (max-width: 1400px) {
  .nav-right {
    padding-block: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-right {
    background: #1d3568;
    padding: 0;
    min-height: auto;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
  }
}

@keyframes border-transform {
  0%,
  100% {
    border-radius: 83% 57% 64% 66%/65% 50% 62% 88%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.mobile-contact {
  font-size: var(--heading3);
  line-height: 1.44;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px;
  display: none;
  background: url(../../assets/images/icon/toggle-up.svg) no-repeat;
  background-position: center right 15px;
  background-size: 30px;
}
@media only screen and (max-width: 991px) {
  .mobile-contact {
    display: block;
  }
}

.social-header-mobile {
  display: none;
}

.search-nav {
  position: absolute;
  top: 35px;
  right: 285px;
  margin-left: 0;
  margin-top: 0;
  width: 22rem;
  height: 2.2rem;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .search-nav {
    right: 229px;
  }
}
@media only screen and (max-width: 991px) {
  .search-nav {
    top: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .search-nav {
    display: none;
  }
}
.search-nav .search__border {
  position: absolute;
  top: 0;
  right: 10px;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.2rem solid var(--mx-blue);
  border-radius: 10rem;
  transition: width 0.4s 0.4s, height 0.4s 0.4s;
}
.search-nav input[type="checkbox"]:checked ~ .search__border {
  transition: width 0.4s 0.4s, height 0.4s 0.4s;
  right: 10px;
  height: 100%;
  /* height: 2rem; */
  width: calc(100% - 16px);
}
.search-nav input[type="checkbox"]:checked ~ .search__border:after {
  width: 0;
  transition: width 0.2s cubic-bezier(0.42, -0.7, 0.62, 1.25);
}
.search-nav .search__border:after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -4px;
  width: 0.7rem;
  height: 0.2rem;
  background: var(--mx-blue);
  border-radius: 0.6rem;
  transform-origin: 100% 50%;
  transform: rotate(225deg) translateX(0.6rem);
  transition: width 0.2s 0.8s;
}
.search-nav .search__input {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  border: none;
  font-size: 14px;
  padding: 0 45px 0 20px;
  color: var(--black);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s;
}
.search-nav input[type="checkbox"]:checked ~ .search__input {
  opacity: 1;
  z-index: auto;
  transition: opacity 0.2s 0.6s;
}
.search-nav .search__checkbox {
  position: absolute;
  top: -9999px;
  left: -9999px;
  opacity: 0;
  z-index: -10;
}
.search-nav .search__label-init {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 100%;
  cursor: pointer;
}
.search-nav .search__label-init::after,
.search-nav .search__label-init::before {
  content: none;
}
.search-nav input[type="checkbox"]:checked ~ .search__label-init {
  transform: scale(0);
}
.search-nav .search__label-active {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 1.5rem;
  height: 100%;
  cursor: pointer;
  transform: scale(0);
}
.search-nav input[type="checkbox"]:checked ~ .search__label-active {
  tranition: transform 0 0.6s;
  transform: scale(1);
}
.search-nav .search__close {
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 1.1rem;
  height: 100%;
  cursor: pointer;
  z-index: -1;
}
.search-nav input[type="checkbox"]:checked ~ .search__close {
  z-index: auto;
}
.search-nav input[type="checkbox"]:checked ~ .search__close:before {
  transform: rotate(-45deg);
  opacity: 1;
  transition: transform 0.2s 0.6s cubic-bezier(0.73, 0.14, 0.4, 1.58),
    opacity 0.1s 0.6s;
}
.search-nav input[type="checkbox"]:checked ~ .search__close:after {
  transform: rotate(45deg);
  opacity: 1;
  transition: transform 0.2s 0.8s cubic-bezier(0.73, 0.14, 0.4, 1.58),
    opacity 0.1s 0.8s;
}
.search-nav .search__close:before,
.search-nav .search__close:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: var(--mx-blue);
  border-radius: 0.5rem;
  opacity: 0;
}
.search-nav .search__close:before {
  transform: rotate(-45deg) translateX(2rem);
  transition: transform 0.2s, opacity 0.1s 0.1s;
}
.search-nav .search__close:after {
  transform: rotate(45deg) translateX(2rem);
  transition: transform 0.2s 0.2s, opacity 0.1s 0.3s;
}

@media (min-width: 992px) {
  .contact-div {
    display: grid;
    grid-template-columns: calc(27.2% - var(--gutter) / 2) calc(
        72.8% - var(--gutter) / 2
      );
    gap: var(--gutter);
    margin-left: 0;
  }
  .contact-div .swiper-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
  .contact-div .swiper-menu {
    overflow: visible;
    margin-left: 0;
    width: 100%;
  }
  .contact-div .swiper-menu .swiper-button-next,
  .contact-div .swiper-menu .swiper-menu .swiper-button-prev {
    display: none;
  }
  .contact-div .swiper-menu .swiper-slide {
    display: grid;
    flex-direction: column;
    display: grid;
    width: 100%;
    gap: var(--gutter);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1600px) {
  .contact-div .swiper-menu .swiper-slide {
    gap: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-div .swiper-menu .swiper-slide {
    gap: 15px;
  }
}
@media (min-width: 992px) {
  .contact-div .swiper-menu .swiper-slide a {
    color: #fff;
    text-transform: initial;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-div .swiper-menu .swiper-slide a:first-child {
    min-height: 145px;
  }
}
@media (max-width: 1199px) {
  .contact-div {
    grid-template-columns: 230px 1fr;
  }
}
@media (max-width: 1199px) {
  .contact-div .swiper-wrapper {
    grid-template-columns: 1fr 320px;
  }
}
@media (max-width: 991px) {
  .active .link {
    display: block;
  }
  .active .mobile-contact {
    background-image: none;
  }
  .active .contact-div {
    display: block;
  }
}
.search-input {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  visibility: hidden;
  transform: scale(0);
}

.search-input.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.search-nav-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .search-nav-mobile {
    display: block;
  }
}
.search-nav-mobile form {
  width: 100%;
}
.search-nav-mobile .search-ic img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(17%) saturate(1662%)
    hue-rotate(19deg) brightness(114%) contrast(91%);
}
.search-nav-mobile .search_close {
  position: absolute;
  right: 64px;
  top: 30px;
  width: 20px;
}
.search-nav-mobile .search-ic {
  position: absolute;
  right: 230px;
  top: 27px;
  background: transparent;
  padding: 0;
  border: none;
  width: 27px;
}
@media only screen and (max-width: 420px) {
  .search-nav-mobile .search-ic {
    right: 220px;
  }
}
@media only screen and (max-width: 360px) {
  .search-nav-mobile .search-ic {
    right: 206px;
  }
}
.search-nav-mobile .search-input {
  position: absolute;
  right: 0;
  z-index: 9999;
  width: 100%;
  top: 0;
  background: var(--mx-blue);
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 5px var(--gutter70);
}
.search-nav-mobile .search-input input {
  width: 100%;
  background-color: #ffffff;
  border: solid 1px #ffffff;
  border-radius: 30px;
  padding: 10px 45px 10px 15px;
  line-height: 1.5;
  color: var(--mx-blue);
  outline: none;
}
.search-nav-mobile .search-input .submit-btn {
  position: absolute;
  background: transparent;
  right: 37px;
  top: 29px;
  border: none;
}
.search-nav-mobile .search-input .submit-btn img {
  width: 20px;
}

/* Footers style  */
/* footer ant-animation */
@keyframes walkingAntOne {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntTwo {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntThree {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntFour {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntFive {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
/*animation*/
footer {
  background: var(--mx-blue);
}
@media (max-width: 991px) {
  footer {
    background: var(--mx-yellow);
  }
}
footer .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding-block: 0;
}
@media (max-width: 1024px) {
  footer .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  footer .container-fluid {
    padding-block: 30px;
    justify-content: center;
  }
}
footer p {
  display: flex;
  margin-bottom: 0;
  line-height: 1;
  color: var(--mx-yellow);
}
@media (max-width: 991px) {
  footer p {
    color: var(--mx-blue);
  }
}
footer p a {
  color: var(--mx-yellow);
  border-left: 1px solid var(--mx-yellow);
  padding: 0 6px;
  overflow: visible;
  position: relative;
}
@media (max-width: 991px) {
  footer p a {
    color: var(--mx-blue);
  }
}
footer p a:first-child {
  margin-left: 6px;
  border: none;
}
footer p a.border-0 {
  border: none;
}
footer p a:hover {
  color: var(--mx-yellow);
}
footer p a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: right;
  background-color: var(--mx-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
footer p a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
footer p a.main-link {
  border: none;
  padding: 0;
  margin-left: 5px;
}
footer p a.active {
  color: var(--white);
}
footer p span {
  display: flex;
  font-weight: 700;
}
@media (max-width: 991px) {
  footer p span {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
  }
}
footer p span.allreserved {
  font-weight: 400;
  padding-left: 5px;
}
@media (max-width: 991px) {
  footer p span.allreserved {
    padding-left: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1499px) {
  footer p span {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  footer p span {
    font-size: 14px;
  }
}
footer .policies {
  margin-left: 5px;
  display: flex;
  align-items: center;
  color: var(--mx-yellow);
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  footer .policies {
    display: none;
  }
}
footer .policies strong {
  margin-right: 5px;
}
footer .policies a {
  font-weight: 400;
  color: var(--mx-yellow);
  margin: 0 5px;
  overflow: visible;
  position: relative;
  line-height: 1;
}
footer .policies a:hover {
  color: var(--mx-yellow);
}
footer .policies a::after {
  content: "";
  border-right: 1px solid var(--mx-yellow);
  width: 1px;
  height: 100%;
  position: absolute;
  right: -8px;
}
footer .policies a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: right;
  background-color: var(--mx-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
footer .policies a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
footer .policies .current-menu-item a::before {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer-list-ul {
  display: flex;
}
footer .footer-list-ul li {
  padding: 0 2px;
  display: flex;
  align-items: center;
}
footer .footer-list-ul li:first-child a {
  border-left: 0;
}
footer .footer-list-ul li:last-child a::after {
  content: none;
}
footer .footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  footer .footer-left {
    flex-direction: column;
  }
}
footer .footer-bottom {
  overflow: hidden;
  position: relative;
  min-height: 50px;
}
@media (max-width: 991px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}
footer .footer-bottom .content-inner {
  position: static;
}
footer .walking-ant {
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: rotateY(180deg);
  right: -30px;
  position: absolute;
  bottom: -5px;
}
footer .walking-ant svg path {
  fill: var(--mx-blue);
}
footer .footer-hover-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 2rem;
  cursor: default;
  text-align: center;
  background: var(--mx-yellow);
  transform: translateX(100%);
  transition: transform linear 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 111;
}
footer .footer-hover-content img {
  margin: 0 5px;
  width: 20px;
}
footer .footer-hover-content a {
  color: var(--mx-blue) !important;
  padding-bottom: 0;
}
footer .footer-hover-content:hover {
  transform: translateX(0);
  background-color: var(--mx-yellow);
}
footer
  .footer-hover-content:hover
  > .walking-ants-container
  .walking-ant:nth-child(1) {
  animation: walkingAntOne 60s infinite forwards linear;
}
footer
  .footer-hover-content:hover
  > .walking-ants-container
  .walking-ant:nth-child(2) {
  animation: walkingAntTwo 60s 20s infinite forwards linear;
}
footer
  .footer-hover-content:hover
  > .walking-ants-container
  .walking-ant:nth-child(3) {
  animation: walkingAntThree 60s 21.5s infinite forwards linear;
}
footer
  .footer-hover-content:hover
  > .walking-ants-container
  .walking-ant:nth-child(4) {
  animation: walkingAntFour 60s 40s infinite forwards linear;
}
footer
  .footer-hover-content:hover
  > .walking-ants-container
  .walking-ant:nth-child(5) {
  animation: walkingAntFive 60s 48s infinite forwards linear;
}
footer .footer-hover-content > a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
footer .logo-to-hover {
  position: relative;
  background: transparent;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0rem;
}
footer .logo-to-hover:hover + .footer-hover-content {
  transform: translateX(0);
  background-color: var(--mx-yellow);
}
footer
  .logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(1) {
  animation: walkingAntOne 60s infinite forwards linear;
}
footer
  .logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(2) {
  animation: walkingAntTwo 60s 20s infinite forwards linear;
}
footer
  .logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(3) {
  animation: walkingAntThree 60s 21.5s infinite forwards linear;
}
footer
  .logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(4) {
  animation: walkingAntFour 60s 40s infinite forwards linear;
}
footer
  .logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(5) {
  animation: walkingAntFive 60s 48s infinite forwards linear;
}
footer .logo-to-hover:hover {
  background: transparent;
}
footer .logo-to-hover .ma-logo {
  display: flex;
}
@media (max-width: 1024px) {
  footer .logo-to-hover .ma-logo {
    width: 50px;
  }
}
footer .logo-to-hover .ma-logo img {
  width: 40px;
}
footer .footer-ma-logo {
  min-width: 120px;
}
@media (max-width: 991px) {
  footer .footer-ma-logo {
    min-width: auto;
  }
}
footer .footer-mobile {
  display: none;
}

@media (max-width: 991px) {
  .footer-desktop {
    display: none;
  }
  footer .footer-mobile {
    display: block;
  }
}
.banner-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.banner-section .container-fluid {
  max-width: 100%;
  --gutter70: 0;
}
@media (max-width: 991px) {
  .banner-section {
    padding-top: 80px;
  }
}

.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gutter);
  min-height: calc(100vh - 100px);
  min-height: calc(100dvh - 100px);
  padding-left: var(--pl70);
}
@media only screen and (max-width: 991px) {
  .banner-inner {
    min-height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    max-height: calc(100svh - 120px);
  }
}
@media (max-width: 991px) {
  @supports (-webkit-touch-callout: none) {
    .banner-inner {
      /* iPhone 5, 5S, 5C, SE (1st gen) styles */
      min-height: calc(100vh - 195px);
      max-height: calc(100vh - 195px);
      max-height: calc(100svh - 195px);
    }
  }
}
.banner-inner .banner-image {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  flex: 0 0 50%;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .banner-inner .banner-image {
    flex: auto;
    width: 100%;
  }
}
.banner-inner .banner-image picture {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.banner-inner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .banner-inner .banner-image img {
    min-height: calc(100vh - 100px);
  }
}
@media (max-width: 991px) {
  .banner-inner .banner-image img {
    min-height: calc(100vh - 280px);
  }
}
@media (max-width: 991px) {
  .banner-inner .banner-image {
    position: relative;
  }
  .banner-inner .banner-image .text-dv {
    position: absolute;
    bottom: 0;
    padding: 30px 20px;
    height: 80%;
    align-content: flex-end;
    background: linear-gradient(
      5deg,
      #074bb6 -1.99%,
      rgba(7, 75, 182, 0) 43.43%
    );
  }
  .banner-inner .banner-image .text-dv p {
    color: var(--white);
  }
}
.banner-inner .banner-content {
  display: grid;
  gap: var(--gutter30);
  flex: 0 0 50%;
  max-width: 520px;
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 2000px) {
  .banner-inner .banner-content {
    margin-left: calc((100% - 1780px) / 2);
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .banner-inner .banner-content {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .banner-inner .banner-content {
    width: 100%;
    max-width: 100%;
    padding: 30px 20px 10px;
  }
}
.banner-inner .banner-content h1 {
  position: relative;
}
@media (max-width: 360px) {
  .banner-inner .banner-content h1 {
    --heading1: 36px;
    --headingLH1: 46px;
  }
}
.banner-inner .banner-content h1 .img-stroke1 {
  position: absolute;
  top: 59px;
  right: 54px;
  width: 180px;
  height: 84px;
  pointer-events: none;
  z-index: -1;
  object-fit: contain;
  transform: rotate(-153.591deg);
}
@media (max-width: 1200px) {
  .banner-inner .banner-content h1 .img-stroke1 {
    top: 30px;
    left: 0;
    right: auto;
    width: 140px;
    position: relative;
    margin-top: -60px;
  }
}
@media (max-width: 991px) {
  .banner-inner .banner-content h1 .img-stroke1 {
    position: absolute;
    left: 340px;
    top: 107px;
    transform: rotate(-20deg);
  }
}
@media (max-width: 567px) {
  .banner-inner .banner-content h1 .img-stroke1 {
    left: 150px;
    bottom: 0;
    top: auto;
  }
}
@media (max-width: 360px) {
  .banner-inner .banner-content h1 .img-stroke1 {
    left: 120px;
    bottom: -10px;
    width: 120px;
  }
}
@media (max-width: 991px) {
  .banner-inner .banner-content h1 strong {
    display: block;
  }
}
@media (max-width: 567px) {
  .banner-inner .banner-content h1 strong {
    max-width: 120px;
  }
}
.banner-inner .banner-content .text-dv {
  max-width: 470px;
}
@media (min-width: 2000px) {
  .banner-inner {
    --pl70: 0;
  }
}
@media (max-width: 1700px) {
  .banner-inner {
    --pl70: 50px;
  }
}
@media (max-width: 1200px) {
  .banner-inner {
    --pl70: 20px;
  }
}
@media (max-width: 991px) {
  .banner-inner {
    flex-direction: column;
    --pl70: 0;
  }
}

.phygital-section {
  padding: var(--p70) 0;
  background-color: var(--mx-grey);
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .phygital-section {
    min-height: auto;
  }
}
@media (max-width: 1200px) {
  .phygital-section .card {
    grid-template-columns: calc(100% - 80px) 80px;
    gap: 0;
  }
}

.phygital-inner {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: var(--gutter);
}
@media (max-width: 991px) {
  .phygital-inner {
    grid-template-columns: 100%;
  }
}
.phygital-inner .content-dv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 490px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .phygital-inner .content-dv {
    max-width: 100%;
  }
}
.phygital-inner .content-dv h2,
.phygital-inner .content-dv p,
.phygital-inner .content-dv .desc-global {
  position: relative;
  z-index: 2;
}
.phygital-inner .content-dv .img-stroke-new1 {
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .phygital-inner .content-dv .img-stroke-new1 {
    width: 140px;
    height: 100px;
    left: -21px;
  }
}
@media only screen and (max-width: 567px) {
  .phygital-inner .content-dv .img-stroke-new1 {
    top: 37px;
  }
}

.card-lst {
  display: grid;
  gap: var(--gutter);
}
@media (max-width: 991px) {
  .card-lst {
    --gutter: 20px;
  }
}

.card {
  padding: var(--p35);
  background-color: var(--white);
  border-radius: 30px;
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: calc(100% - 140px) 120px;
  row-gap: 25px;
}
@media (max-width: 1700px) {
  .card {
    grid-template-columns: calc(100% - 150px) 120px;
  }
}
@media (max-width: 991px) {
  .card {
    row-gap: 10px;
    grid-template-columns: calc(100% - 92px) 84px;
  }
}
.card h4 {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .card h4 {
    margin-bottom: 5px;
  }
}

.phygital-right-dv {
  position: sticky;
  top: 120px;
  height: calc(100dvh - 120px);
  display: flex;
  align-items: center;
  padding: 0 0 78px;
}
@media (max-width: 1024px) {
  .phygital-right-dv {
    padding: 0 0 66px;
  }
}
@media (max-width: 991px) {
  .phygital-right-dv {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .phygital-right-dv {
    height: auto;
  }
}
.phygital-right-dv .img-stroke2 {
  position: absolute;
  bottom: -30px;
  right: -70px;
  z-index: -1;
  overflow: hidden;
  width: 200px;
}
@media (max-width: 1700px) {
  .phygital-right-dv .img-stroke2 {
    right: -50px;
  }
}
@media (max-width: 1200px) {
  .phygital-right-dv .img-stroke2 {
    right: -20px;
    width: 90px;
    bottom: 0px;
  }
}
@media (max-width: 991px) {
  .phygital-right-dv .img-stroke2 {
    display: none;
  }
}
.phygital-right-dv .stroke {
  width: 270px;
  height: 270px;
  animation: rotateInfinitely 10s linear infinite;
}
@media (max-width: 1200px) {
  .phygital-right-dv .stroke {
    width: 160px;
    height: 160px;
  }
}
@keyframes rotateInfinitely {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.video-group {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  background: var(--mx-black);
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .video-group {
    display: none;
  }
}
.video-group .btn-video-dv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.video-group:hover .btn-video-dv {
  opacity: 1;
}
.video-group .video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.video-group.video-group-mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .video-group.video-group-mobile {
    display: block;
    margin-bottom: var(--gutter);
  }
}

.btn-video-dv .btn-video .play-svg {
  display: none;
}
.btn-video-dv .btn-video .pause-svg {
  display: block;
}
.btn-video-dv .btn-video.pause .play-svg {
  display: block;
}
.btn-video-dv .btn-video.pause .pause-svg {
  display: none;
}

.blue-block-section {
  padding: var(--p70) 0;
  background-color: var(--mx-blue);
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blue-block-section .container-fluid {
  max-width: var(--max-wblue);
  margin: 0 auto;
}
.blue-block-section .img-dv {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.blue-block-section .img-dv picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.blue-block-section .img-dv img {
  object-fit: contain;
  object-position: center bottom;
}
.blue-block-section .content-dv {
  width: 100%;
}
.blue-block-section .content-dv h2 {
  color: var(--white);
  margin-bottom: 25px;
}
.blue-block-section .content-dv h2 b,
.blue-block-section .content-dv h2 strong {
  color: var(--mx-yellow);
}
@media (max-width: 1200px) {
  .blue-block-section .content-dv h2 {
    margin-bottom: 15px;
  }
}
.blue-block-section .content-dv p {
  color: var(--white);
}
.blue-block-section .app-icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter);
}
@media (max-width: 460px) {
  .blue-block-section .app-icons-list {
    flex-wrap: nowrap;
  }
}
.blue-block-section .app-icons-list a {
  display: flex;
  flex-wrap: wrap;
}
.blue-block-section .app-icons-list img {
  max-height: 60px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .blue-block-section .app-icons-list img {
    max-height: 48px;
  }
}
@media (max-width: 991px) {
  .blue-block-section .app-icons-list img {
    max-height: 38px;
  }
}
@media (max-width: 460px) {
  .blue-block-section .app-icons-list img {
    max-height: inherit;
  }
}
@media (max-width: 767px) {
  .blue-block-section .app-icons-list {
    gap: 10px;
  }
}
.blue-block-section .desc-dv {
  margin-bottom: var(--mb35);
}
.blue-block-section.blue-fre-section .content-dv {
  max-width: 680px;
}
@media (max-width: 1200px) {
  .blue-block-section.blue-fre-section .content-dv {
    max-width: 100%;
  }
}
.blue-block-section.blue-device-section {
  padding: 0;
  margin-top: 0;
}
@media (max-width: 1023px) {
  .blue-block-section.blue-device-section {
    margin: calc(var(--p70) + 30px) 0 0;
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section {
    margin: 0;
  }
}
.blue-block-section.blue-device-section .content-dv {
  padding: 100px 0 50px;
}
@media (max-width: 1221px) {
  .blue-block-section.blue-device-section .content-dv {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section .content-dv {
    padding: var(--p70) 0 var(--gutter);
  }
}
.blue-block-section.blue-device-section .desc-dv {
  max-width: 862px;
}
.blue-block-section.blue-device-section .img-dv {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 330px;
  height: calc(100% - 40px);
  position: relative;
  margin-top: -60px;
}
@media (max-width: 1200px) {
  .blue-block-section.blue-device-section .img-dv {
    width: 340px;
  }
}
@media (max-width: 991px) {
  .blue-block-section.blue-device-section .img-dv {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section .img-dv {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .blue-block-section.blue-device-section .img-dv picture {
    position: absolute;
    bottom: 0;
    height: calc(100% + 80px);
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section .img-dv picture {
    position: relative;
    height: auto;
    justify-content: center;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .blue-block-section.blue-device-section .img-dv {
    height: 100%;
  }
  .blue-block-section.blue-device-section .img-dv img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section .img-dv {
    order: 1;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section .img-dv img {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .blue-block-section.blue-device-section .blue-block-inner {
    align-items: flex-end;
    grid-template-columns: 2fr 6fr;
  }
}
@media (max-width: 767px) {
  .blue-block-section.blue-device-section .blue-block-inner {
    align-items: center;
    grid-template-columns: 1fr;
  }
}
.blue-block-section.blue-gsn-section .img-dv picture {
  display: flex;
}
.blue-block-section.blue-gsn-section .img-dv img {
  object-fit: contain;
}
.blue-block-section.blue-gsn-section .desc-dv {
  max-width: 862px;
}
.blue-block-section.blue-gsn-section .content-dv {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blue-block-section.blue-gsn-section .btn-dv {
  margin-top: auto;
}
.blue-block-section.blue-apply-section {
  padding: var(--p70) 0;
}
@media (max-width: 767px) {
  .blue-block-section.blue-apply-section {
    padding: 30px 0;
  }
}
.blue-block-section.blue-apply-section .content-dv {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blue-block-section.blue-apply-section .btn-dv {
  margin-top: auto;
}
.blue-block-section.blue-apply-section .img-dv {
  justify-content: center;
}
.blue-block-section.blue-apply-section picture {
  max-width: 380px;
  display: flex;
}
.blue-block-section .btn-dv:hover {
  background: #1d3568;
  border-color: #1d3568;
}
.blue-block-section .btn-dv:hover .btn {
  color: var(--white);
}
.blue-block-section .btn-dv:hover .mas {
  color: var(--white);
}
.phygital-section + .blue-block-section .blue-block-inner {
  align-items: flex-start;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .phygital-section + .blue-block-section .blue-block-inner {
    grid-template-columns: 400px calc(100% - (410px - var(--gutter)));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .phygital-section + .blue-block-section .blue-block-inner {
    grid-template-columns: 320px calc(100% - 335px);
  }
}
.phygital-section + .blue-block-section .img-dv img {
  max-width: 500px;
}
@media only screen and (max-width: 1500px) {
  .phygital-section + .blue-block-section .img-dv img {
    max-width: 380px;
  }
}
@media only screen and (max-width: 991px) {
  .phygital-section + .blue-block-section .img-dv img {
    max-width: 320px;
  }
}
@media only screen and (max-width: 460px) {
  .phygital-section + .blue-block-section .img-dv img {
    max-width: 100%;
  }
}
.phygital-section + .blue-block-section .container-fluid {
  --max-wblue: 1410px;
}
@media only screen and (max-width: 1200px) {
  .phygital-section + .blue-block-section .container-fluid {
    --max-wblue: 900px;
  }
}
@media only screen and (max-width: 991px) {
  .phygital-section + .blue-block-section .container-fluid {
    --max-wblue: 100%;
  }
}

.blue-block-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 3fr 5fr;
  gap: var(--gutter);
}
@media only screen and (max-width: 767px) {
  .blue-block-inner {
    grid-template-columns: 1fr;
  }
}

.for-rc-section {
  padding: var(--p70) 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .for-rc-section {
    padding: var(--p70) 0;
  }
}
.for-rc-section .container-fluid {
  display: grid;
  row-gap: 80px;
}
@media only screen and (max-width: 1200px) {
  .for-rc-section .img-stroke3 {
    top: -160px;
    right: -90px;
    width: 300px !important;
    height: 300px;
  }
}
.for-rc-section .primary-user-card h2 {
  font-size: var(--heading1);
  line-height: var(--headingLH1);
}
.for-rc-section .primary-user-card p {
  display: none;
}

.for-rc-inner {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  grid-template-rows: auto auto;
  gap: var(--gutter);
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .for-rc-inner {
    height: 610px;
  }
}
@media only screen and (max-width: 567px) {
  .for-rc-inner {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 568px) {
  .for-rc-inner.for-retailers-inner .item1 {
    grid-column: 1;
    grid-row: 1;
  }
  .for-rc-inner.for-retailers-inner .item2 {
    grid-column: 2 / span 2;
    grid-row: 1;
  }
  .for-rc-inner.for-retailers-inner .item3 {
    grid-column: 1;
    grid-row: 2;
  }
  .for-rc-inner.for-retailers-inner .item4 {
    grid-column: 2;
    grid-row: 2;
  }
  .for-rc-inner.for-retailers-inner .item5 {
    grid-column: 3;
    grid-row: 2;
  }
}
@media only screen and (min-width: 568px) {
  .for-rc-inner.for-consumers-inner .item1 {
    grid-column: 3;
    grid-row: 1;
  }
  .for-rc-inner.for-consumers-inner .item2 {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .for-rc-inner.for-consumers-inner .item3 {
    grid-column: 1;
    grid-row: 2;
  }
  .for-rc-inner.for-consumers-inner .item4 {
    grid-column: 2;
    grid-row: 2;
  }
  .for-rc-inner.for-consumers-inner .item5 {
    grid-column: 3;
    grid-row: 2;
  }
}
.for-rc-inner .stretch-height {
  top: -90px;
  height: calc(100% + 90px);
}
@media only screen and (max-width: 1200px) {
  .for-rc-inner .stretch-height {
    top: -78px;
    height: calc(100% + 78px);
  }
}
@media only screen and (max-width: 991px) {
  .for-rc-inner .stretch-height {
    top: -118px;
    height: calc(100% + 118px);
  }
}
@media only screen and (max-width: 567px) {
  .for-rc-inner .stretch-height {
    top: 0;
    height: 100%;
  }
}
.for-rc-inner .stretch-height .primary-image-link {
  height: 100%;
}

/* Stroke Animation */
.img-stroke3 {
  position: absolute;
  top: -270px;
  right: -120px;
  width: 600px !important;
  height: 600px;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
}

.img-stroke3_2 {
  position: absolute;
  bottom: -530px;
  left: -300px;
  width: 600px !important;
  height: 600px;
  max-width: 100%;
  z-index: -1;
  transform: rotate(90deg);
  pointer-events: none;
}

.img-stroke3_3 {
  position: absolute;
  bottom: -515px;
  right: -120px;
  width: 600px !important;
  height: 600px;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
}

.img-stroke3_4 {
  position: absolute;
  top: -220px;
  right: -85px;
  width: 600px !important;
  height: 600px;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 567px) {
  .img-stroke3_4 {
    top: -50px;
    right: -50px;
    width: 200px !important;
    height: 200px;
  }
}

.img-stroke3_5 {
  position: absolute;
  top: -360px;
  right: -85px;
  width: 600px !important;
  height: 600px;
  max-width: 100%;
  z-index: -1;
  transform: rotate(-28.917deg);
  pointer-events: none;
}

.img-stroke3_6 {
  position: absolute;
  bottom: -360px;
  right: -85px;
  width: 600px;
  height: 600px;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
}

.img-stroke4 {
  position: absolute;
  right: -125px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  transform: rotate(90deg);
  max-width: 100%;
  pointer-events: none;
}

.img-stroke5 {
  position: absolute;
  top: 88px;
  left: -15px;
  width: 370px;
  height: 100px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .img-stroke5 {
    top: 24px;
    left: 0;
    width: 270px;
    height: 84px;
  }
  .img-stroke5 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.img-stroke6 {
  width: 300px;
  height: 100px;
  pointer-events: none;
  position: absolute;
  top: -50px;
  left: 115px;
  z-index: -1;
}
@media (max-width: 1700px) {
  .img-stroke6 {
    width: 240px;
    height: 100px;
    top: -45px;
    left: 90px;
  }
}

.img-stroke7 {
  width: 200px;
  height: 60px;
  pointer-events: none;
  position: absolute;
  top: 33px;
  right: 95px;
  z-index: -1;
}
@media (max-width: 1700px) {
  .img-stroke7 {
    width: 200px;
    height: 70px;
    top: 28px;
    right: -30px;
  }
}
.img-stroke8 {
  position: absolute;
  top: -33px;
  left: -55px;
  width: 270px;
  height: 100px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .img-stroke8 {
    top: -2vh;
    left: -25px;
    width: 156px;
    height: auto;
  }
}
@media (max-width: 567px) {
  .img-stroke8 {
    top: -2vh;
    left: -6vw;
    width: 156px;
    height: auto;
  }
}

.img-stroke-new1 {
  width: 210px;
  height: 120px;
  pointer-events: none;
  position: absolute;
  top: 60px;
  left: -35px;
  z-index: -1;
}
@media only screen and (max-width: 1320px) {
  .img-stroke-new1 {
    top: 115px;
  }
}
@media only screen and (max-width: 1200px) {
  .img-stroke-new1 {
    width: 160px;
    height: 110px;
    top: 95px;
    left: -25px;
  }
}
@media only screen and (max-width: 1024px) {
  .img-stroke-new1 {
    top: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .img-stroke-new1 {
    width: 140px;
    top: 30px;
    left: -20px;
    top: 0px;
  }
}
@media only screen and (max-width: 567px) {
  .img-stroke-new1 {
    top: 30px;
  }
}
.img-stroke-new1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-stroke-new2 {
  width: 290px;
  height: 110px;
  pointer-events: none;
  position: absolute;
  top: 45px;
  left: 510px;
  z-index: 0;
  transform: rotate(28.598deg);
}
.img-stroke-new2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* End of Stroke Animation */
.primary-user-card {
  position: relative;
  padding: var(--p35);
  border-radius: 30px;
  background: var(--mx-blue);
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 250px;
}
@media (max-width: 1700px) {
  .primary-user-card {
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .primary-user-card {
    border-radius: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .primary-user-card {
    padding: 10px;
    height: 220px;
  }
}
@media only screen and (max-width: 991px) {
  .primary-user-card {
    height: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .primary-user-card {
    height: auto;
  }
}
.primary-user-card h2 {
  color: var(--white);
}
@media only screen and (max-width: 1024px) {
  .primary-user-card h2 {
    line-height: 1.2;
    font-size: 35px;
  }
}
.primary-user-card h2 b,
.primary-user-card h2 strong {
  color: var(--mx-yellow);
}
.primary-user-card::before {
  content: "";
  border-radius: 30px;
  background: linear-gradient(
    0deg,
    var(--mx-blue) -3.62%,
    rgba(7, 75, 182, 0) 50.07%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .primary-user-card::before {
    border-radius: 20px;
  }
}
.primary-user-card .img-dv {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.primary-user-card .img-dv img {
  object-fit: contain;
  max-height: 300px;
  width: 100%;
  border-radius: 0 0 30px 0;
  object-position: bottom right;
}
@media (max-width: 1700px) {
  .primary-user-card .img-dv img {
    max-height: 300px;
  }
}
@media (max-width: 1200px) {
  .primary-user-card .img-dv img {
    max-height: 260px;
  }
}
@media (max-width: 991px) {
  .primary-user-card .img-dv img {
    max-height: 210px;
  }
}
@media (max-width: 767px) {
  .primary-user-card .img-dv img {
    max-height: 170px;
  }
}
.primary-user-card .text-dv {
  position: relative;
  z-index: 2;
}

.primary-image-card {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --oneBI: -3.62%;
  --twoBI: 50.07%;
  position: relative;
}
.primary-image-card::before {
  content: "";
  border-radius: 30px;
  background: linear-gradient(
    0deg,
    var(--mx-blue) var(--oneBI),
    rgba(7, 75, 182, 0) var(--twoBI)
  );
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .primary-image-card::before {
    border-radius: 20px;
  }
}
.primary-image-card::after {
  --oneBI: 30%;
  --twoBI: 60%;
  content: "";
  border-radius: 30px;
  background: linear-gradient(
    359.27deg,
    var(--mx-blue) -3.44%,
    rgba(7, 75, 182, 0) 138.89%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
@media only screen and (max-width: 1200px) {
  .primary-image-card::after {
    border-radius: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .primary-image-card::after {
    opacity: 1 !important;
  }
}
.primary-image-card:hover::after {
  opacity: 1;
}
.primary-image-card h3 {
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .primary-image-card h3 br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .primary-image-card h3 {
    --heading3: 16px;
    --headingLH3: 24px;
  }
}
.primary-image-card .img-dv {
  display: flex;
  flex-wrap: wrap;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .primary-image-card .img-dv {
    border-radius: 20px;
  }
}
.primary-image-card .img-dv img {
  object-fit: cover;
  object-position: top;
  height: 100%;
  width: 100%;
}
.primary-image-card .text-dv {
  z-index: 2;
  display: grid;
  transform: translateY(40%);
  transform: translateY(var(--desc_height));
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 0 var(--p35);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 1024px) {
  .primary-image-card .text-dv {
    transform: none;
    --p35: 20px;
  }
}
.primary-image-card .text-dv p {
  color: var(--white);
}
.primary-image-card .desc-dv {
  max-width: 100%;
  opacity: 0;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 1024px) {
  .primary-image-card .desc-dv {
    opacity: 1;
  }
}
.primary-image-card .primary-image-link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: var(--p35);
  width: 100%;
  height: 350px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .primary-image-card .primary-image-link {
    height: 100%;
    padding: 10px;
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .primary-image-card .primary-image-link {
    height: 250px;
    padding: 20px;
  }
}
@media (max-width: 567px) {
  .primary-image-card .primary-image-link {
    height: 450px;
  }
}
.primary-image-card:hover .text-dv {
  transform: translateY(0%);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.primary-image-card:hover .desc-dv {
  opacity: 1;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.partnering-section {
  padding: var(--p70) 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 567px) {
  .partnering-section .img-stroke4 {
    position: absolute;
    right: -40px;
    bottom: 250px;
    width: 200px;
    height: 200px;
  }
}

.partnering-inner {
  display: grid;
  grid-template-columns: 3fr 5fr;
  width: 100%;
  gap: var(--gutter);
}
.partnering-inner .content-dv {
  max-width: 375px;
  position: relative;
}
@media (max-width: 768px) {
  .partnering-inner .content-dv {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .partnering-inner .content-dv h2 strong {
    display: block;
  }
}
@media (max-width: 768px) {
  .partnering-inner .img-stroke5 {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .partnering-inner {
    grid-template-columns: 100%;
  }
}
.partnering-inner .desc-global {
  max-width: 330px;
}
@media (max-width: 991px) {
  .partnering-inner .desc-global {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .partnering-inner .img-stroke4 {
    right: -65px;
    bottom: -150px;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .partnering-inner .img-stroke4 {
    right: -45px;
    top: 50%;
    width: 160px;
    height: 160px;
    transform: translateY(-50%) rotate(90deg);
    bottom: auto;
  }
}

.partnering-info-dv {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  gap: 40px 25px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1200px) {
  .partnering-info-dv {
    gap: 35px 25px;
  }
}
@media (max-width: 567px) {
  .partnering-info-dv {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 568px) {
  .partnering-info-dv h3 + p {
    position: absolute;
  }
}

.news-section {
  position: relative;
  padding-bottom: var(--p70);
}

.news-insights-parent {
  position: relative;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-insights-parent {
    padding: 0;
  }
}
.news-insights-parent .news-section {
  padding-top: calc(var(--p70) + 50px);
}
@media only screen and (max-width: 991px) {
  .news-insights-parent .news-section {
    padding-top: var(--p70);
  }
}
@media only screen and (max-width: 767px) {
  .news-insights-parent .news-section {
    padding-bottom: 20px;
  }
}
.news-insights-parent .news-section .img-stroke6 {
  width: 250px;
  height: auto;
  top: -44px;
  left: 85px;
}
@media only screen and (max-width: 1200px) {
  .news-insights-parent .news-section .img-stroke6 {
    width: 180px;
    top: -32px;
    left: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .news-insights-parent .news-section .img-stroke6 {
    width: 130px;
    top: -29px;
    left: 110px;
  }
}
@media only screen and (max-width: 420px) {
  .news-insights-parent .news-section .img-stroke6 {
    width: 100px;
    top: -20px;
    left: 114px;
  }
}
.news-insights-parent .news-section .img-stroke3_5 {
  top: -430px;
}
@media only screen and (max-width: 1200px) {
  .news-insights-parent .news-section .img-stroke3_5 {
    top: -340px;
    right: -30px;
    width: 500px !important;
    height: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .news-insights-parent .news-section .img-stroke3_5 {
    top: -160px;
    right: -72px;
    width: 200px !important;
    height: 200px;
    transform: rotate(90deg);
  }
}
@media only screen and (max-width: 420px) {
  .news-insights-parent .news-section .img-stroke3_5 {
    top: -110px;
    right: -43px;
    width: 120px !important;
    height: 120px;
  }
}

@media (max-width: 1023px) {
  .for-rc-desktop {
    display: none;
  }
}

.for-rc-mobile {
  display: none;
  padding: var(--p70) 0;
  position: relative;
}
@media (max-width: 1023px) {
  .for-rc-mobile {
    display: block;
  }
}
@media (max-width: 1023px) {
  .for-rc-mobile .content-dv {
    margin-bottom: 30px;
  }
}
.for-rc-mobile .img-stroke3-r-mobile {
  position: absolute;
  top: -64px;
  left: -30px;
  width: 140px;
  height: 140px;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
  transform: rotate(95deg);
  display: none;
}
.for-rc-mobile .swiper-scrollbar {
  position: relative;
  margin-top: 20px;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 7px;
  background: var(--mx-grey);
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.for-rc-mobile .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--mx-yellow);
}
@media (max-width: 1023px) {
  .for-rc-mobile .retailers-mobile {
    margin-top: 30px;
  }
}
@media (max-width: 1023px) {
  .for-rc-mobile .primary-user-card {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .for-rc-mobile .primary-user-card {
    padding: 20px;
  }
}
.for-rc-mobile .consumer-mobile {
  margin-top: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .for-rc-mobile .consumer-mobile {
    margin-top: 90px;
  }
}
.for-rc-mobile .consumer-mobile .img-stroke3-c-mobile {
  position: absolute;
  top: -60px;
  left: -10px;
  width: 140px;
  height: 130px;
  max-width: 100%;
  z-index: -1;
  pointer-events: none;
  transform: rotate(95deg);
}

@media only screen and (max-width: 1023px) {
  .for-rc-mobile-inner:first-child {
    margin-bottom: 20px;
  }
}

.news-blue-home-root {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: var(--gutter);
}
@media (max-width: 1700px) {
  .news-blue-home-root {
    grid-template-columns: calc(60% - var(--gutter) / 2) calc(
        40% - var(--gutter) / 2
      );
  }
}
@media (max-width: 1200px) {
  .news-blue-home-root {
    grid-template-columns: calc(50% - var(--gutter) / 2) calc(
        50% - var(--gutter) / 2
      );
  }
}
@media (max-width: 767px) {
  .news-blue-home-root {
    grid-template-columns: 100%;
  }
}

.news-inner {
  display: grid;
  row-gap: 30px;
  position: relative;
}
.news-inner .content-dv {
  position: relative;
}
.news-inner .content-dv h2 {
  margin-bottom: var(--mb35);
}
@media (max-width: 1700px) {
  .news-inner {
    row-gap: 35px;
  }
}

.news-blue-root {
  position: relative;
  z-index: 2;
}

.news-blue-card {
  position: relative;
  --heightCard: 100%;
}
.news-blue-card .news-blue-link-card {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  color: var(--white);
  background: var(--mx-blue);
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .news-blue-card .news-blue-link-card {
    border-radius: 20px;
  }
}
.news-blue-card .img-dv {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: var(--heightCard);
  overflow: hidden;
}
.news-blue-card .img-dv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-blue-card .text-dv {
  padding: 20px var(--p35);
}
.news-blue-card .text-dv p.fs16 {
  color: var(--mx-yellow);
}
.news-blue-card .text-dv h3 {
  line-height: var(--headingLH3_2);
  margin-block: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 991px) {
  .news-blue-card .text-dv h3 {
    margin-block: 5px;
  }
}
.news-blue-card .text-dv p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-blue-card.full-news-card {
  --heightCard: 370px;
  grid-row: span 2;
}
@media only screen and (max-width: 991px) {
  .news-blue-card.full-news-card {
    --heightCard: 220px;
  }
}
.news-blue-card.half-news-card .news-blue-link-card {
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .news-blue-card.half-news-card .news-blue-link-card {
    flex-direction: column;
    flex-wrap: inherit;
  }
}
.news-blue-card.half-news-card .img-dv {
  width: 150px;
}
@media only screen and (max-width: 767px) {
  .news-blue-card.half-news-card .img-dv {
    width: 100%;
  }
}
.news-blue-card.half-news-card .text-dv {
  padding: 20px var(--p35);
  flex: calc(100% - 150px);
}
@media only screen and (max-width: 767px) {
  .news-blue-card.half-news-card .text-dv {
    flex: auto;
  }
}

.stories-section {
  padding: var(--p70) 0;
  background-color: var(--mx-grey);
  position: relative;
  overflow: hidden;
}
.stories-section .container-fluid {
  max-width: 100%;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .stories-section .container-fluid {
    padding-left: var(--gutter70);
    padding-right: var(--gutter70);
  }
}
.stories-section .content-dv {
  padding-left: var(--gutter70);
}
@media only screen and (max-width: 991px) {
  .stories-section .content-dv {
    padding-left: 0;
  }
}
.stories-section .card-slider-root {
  width: 100%;
}
.stories-section .swiper {
  height: 100%;
}
.stories-section .swiper .swiper-wrapper {
  height: auto;
}
.stories-section .swiper .swiper-slide {
  min-height: 100%;
  height: auto;
}

.stories-inner {
  display: grid;
  grid-template-columns: calc(31% - var(--gutter) / 2) calc(
      69% - var(--gutter) / 2
    );
  column-gap: var(--gutter);
}
@media only screen and (max-width: 991px) {
  .stories-inner {
    grid-template-columns: 100%;
  }
}
.stories-inner .content-dv {
  position: relative;
  margin-top: 89px;
  max-width: 425px;
}
.stories-inner .content-dv h2 {
  margin-bottom: 25px;
}
.stories-inner .content-dv h2,
.stories-inner .content-dv p {
  position: relative;
  z-index: 2;
}
.stories-inner .content-dv .img-stroke7 {
  z-index: 1;
  left: 135px;
  right: auto;
}
@media (max-width: 1200px) {
  .stories-inner .content-dv .img-stroke7 {
    left: 88px;
    top: 20px;
    width: 150px;
  }
}
@media (max-width: 1200px) {
  .stories-inner .content-dv {
    margin-top: 69px;
  }
}
@media (max-width: 991px) {
  .stories-inner .content-dv {
    margin-top: 0;
  }
}
.stories-inner .btn-dv {
  margin-top: -55px;
  position: relative;
  margin-left: var(--gutter70);
}
@media (max-width: 768px) {
  .stories-inner .btn-dv {
    margin-top: var(--mt35);
    margin-left: 0;
  }
}
@media (min-width: 2000px) {
  .stories-inner {
    grid-template-columns: calc(20% - var(--gutter) / 2) calc(
        80% - var(--gutter) / 2
      );
    margin-left: calc((100% - 1780px) / 2);
    width: auto;
  }
}
@media (max-width: 1700px) {
  .stories-inner {
    margin-left: 0%;
  }
}
@media (max-width: 1200px) {
  .stories-inner {
    margin-left: 0;
  }
}

.card-slider-root {
  position: relative;
  width: calc(100% + 70px);
}
@media (max-width: 567px) {
  .card-slider-root {
    width: 100%;
  }
}
.card-slider-root .swiper {
  padding-top: 89px;
}
@media (max-width: 1200px) {
  .card-slider-root .swiper {
    padding-top: 64px;
  }
}

.navigation-dv {
  position: absolute;
  top: 0;
  right: var(--gutter70);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1200px) {
  .navigation-dv {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .navigation-dv {
    right: 0;
    gap: 10px;
  }
}

.swiper-btn-arrow {
  width: 50px;
  height: 50px;
  background: var(--mx-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.swiper-btn-arrow svg {
  width: 10px;
}
.swiper-btn-arrow svg path {
  transition: all 0.3s ease-in-out;
}
.swiper-btn-arrow:hover {
  border-color: var(--mx-blue);
  background: var(--mx-yellow);
}
.swiper-btn-arrow:hover svg path {
  fill: var(--mx-blue);
  color: transparent;
}
@media (max-width: 1200px) {
  .swiper-btn-arrow {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .swiper-btn-arrow svg {
    width: 8px;
  }
}

.stories-card {
  display: grid;
  padding: var(--p35);
  row-gap: 25px;
  border-radius: 30px;
  background: var(--white);
  grid-template-rows: 50px auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .stories-card {
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .stories-card {
    row-gap: 10px;
  }
}
.stories-card h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 1700px) {
  .stories-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .stories-card h3 {
    font-size: 16px;
    line-height: 27px;
  }
}
.stories-card .user-row-dv {
  display: grid;
  grid-template-columns: 60px calc(100% - 80px);
  gap: var(--gutter30);
  align-items: center;
  margin-top: auto;
}
.stories-card .user-row-dv .img-user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
  padding: 5px;
  background-color: var(--mx-grey);
}
.stories-card .quotes-dv {
  display: flex;
  flex-wrap: wrap;
  width: 50px;
}
@media only screen and (max-width: 1024px) {
  .stories-card .quotes-dv {
    width: 35px;
    align-items: flex-start;
  }
}

.update-section {
  padding: var(--p70) 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 567px) {
  .update-section {
    padding-bottom: 123px;
  }
}
.update-section h2 {
  position: relative;
}
.update-section .swiper-slide {
  border-radius: 30px;
  overflow-y: hidden;
}
.update-section .swiper-slide .icon {
  transition: 0.3s ease-in-out;
  width: 15px;
}
.update-section .swiper-slide:hover .icon {
  transform: translateX(10px);
}
@media (max-width: 1200px) {
  .update-section .swiper-slide {
    border-radius: 20px;
  }
}
.update-section .content-sec {
  background: var(--mx-blue);
  position: absolute;
  bottom: 0;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .update-section .content-sec {
    padding: 10px 15px;
  }
}
.update-section .content-sec h3 {
  color: var(--white);
}
.update-section .update-inner {
  display: grid;
  grid-template-columns: calc(23% - var(--gutter) / 2) calc(
      77% - var(--gutter) / 2
    );
  gap: var(--gutter);
}
@media only screen and (max-width: 991px) {
  .update-section .update-inner {
    grid-template-columns: calc(30% - var(--gutter) / 2) calc(
        70% - var(--gutter) / 2
      );
  }
}
@media only screen and (max-width: 567px) {
  .update-section .update-inner {
    grid-template-columns: 100%;
  }
}
.update-section .update-inner .content-dv {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 567px) {
  .update-section .update-inner .content-dv {
    position: static;
  }
}
@media only screen and (max-width: 567px) {
  .update-section .update-inner .desc-global {
    margin-bottom: 0;
  }
}
.update-section .update-inner .btn-dv {
  position: absolute;
  bottom: 28px;
  left: 0;
}
@media only screen and (max-width: 567px) {
  .update-section .update-inner .btn-dv {
    width: calc(100% - var(--gutter70));
    margin: 0 auto;
    inset: auto 0 40px;
  }
}
.update-section .update-inner .btn-dv a {
  display: block;
}
.update-section .swiper-scrollbar {
  position: relative;
  margin-top: 20px;
  top: 0;
  width: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 7px;
  background: var(--mx-grey);
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.update-section .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--mx-yellow);
}
.update-section .swiper-pagination {
  position: relative;
  margin-top: 35px;
  top: 0;
  width: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.update-section .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  background: var(--mx-grey);
  width: 100%;
  height: 7px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  margin: 0;
}
.update-section
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  background-color: var(--mx-yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: fill 5s;
  border-radius: 10px;
}
.update-section .progress-fill {
  height: 100%;
  background: #007aff;
  width: 0%;
  transition: width 0.3s ease;
}
.update-section picture img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .update-section picture img {
    height: 350px;
  }
}
.update-section.insight-section .img-stroke8 {
  top: -22px;
  left: -45px;
  width: 210px;
  height: 100px;
}
@media only screen and (max-width: 1024px) {
  .update-section.insight-section .img-stroke8 {
    top: -15px;
    left: -20px;
    width: 140px;
  }
}
@media only screen and (max-width: 1024px) {
  .update-section.insight-section .img-stroke3_4 {
    display: none;
  }
}
.update-section.blog-update-section {
  padding-bottom: 120px;
}
@media (max-width: 1200px) {
  .update-section.blog-update-section {
    padding-bottom: var(--p70);
  }
  .update-section.blog-update-section .update-inner {
    gap: 30px;
  }
  .update-section.blog-update-section .update-inner .content-dv {
    position: relative;
  }
}
.update-section.blog-update-section .update-inner {
  grid-template-columns: calc(27% - var(--gutter) / 2) calc(
      73% - var(--gutter) / 2
    );
}
@media only screen and (max-width: 1290px) {
  .update-section.blog-update-section .update-inner {
    grid-template-columns: calc(30% - var(--gutter) / 2) calc(
        70% - var(--gutter) / 2
      );
  }
}
@media only screen and (max-width: 768px) {
  .update-section.blog-update-section .update-inner {
    grid-template-columns: 100%;
  }
}
.update-section.blog-update-section picture img {
  width: 100%;
}
.update-section.blog-update-section .img-stroke8 {
  top: 10px;
  left: 80px;
  width: 240px;
}
@media (max-width: 1200px) {
  .update-section.blog-update-section .img-stroke8 {
    top: 5px;
    left: 46px;
    width: 170px;
  }
}
@media (max-width: 768px) {
  .update-section.blog-update-section .img-stroke8 {
    top: 5px;
    left: -17px;
    width: 200px;
  }
}
@media (max-width: 1024px) {
  .update-section.blog-update-section .content-dv h2 {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .update-section.blog-update-section .content-dv h2 {
    max-width: inherit;
  }
}
.update-section.blog-update-section .content-dv h2 strong {
  display: block;
}
.update-section.similar-blogs-section {
  background-color: var(--mx-grey);
}
.update-section.similar-blogs-section .img-stroke8 {
  top: -23px;
  left: -45px;
  width: 210px;
}
@media (max-width: 1024px) {
  .update-section.similar-blogs-section .img-stroke8 {
    top: -15px;
    left: -25px;
    width: 140px;
  }
}
@media (max-width: 991px) {
  .update-section.similar-blogs-section h2 br {
    display: none;
  }
}
.update-section.similar-blogs-section .swiper-scrollbar {
  background-color: var(--white);
}
@media (max-width: 1200px) {
  .update-section.similar-blogs-section {
    padding-bottom: var(--p70);
  }
  .update-section.similar-blogs-section .update-inner .content-dv {
    position: relative;
  }
}

.swiper-progress-root .swiper-scrollbar {
  position: relative;
  margin-top: 20px;
  top: 0;
  width: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 7px;
  background: var(--mx-grey);
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.swiper-progress-root .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--mx-yellow);
}
.swiper-progress-root .swiper-pagination {
  position: relative;
  margin-top: 35px;
  top: 0;
  width: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.swiper-progress-root .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  background: var(--mx-grey);
  width: 100%;
  height: 7px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  margin: 0;
}
.swiper-progress-root
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  background-color: var(--mx-yellow);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: fill 5s;
  border-radius: 10px;
}
.swiper-progress-root .progress-fill {
  height: 100%;
  background: #007aff;
  width: 0%;
  transition: width 0.3s ease;
}

.img-stroke-contact {
  display: none;
  width: 490px;
  height: 100px;
  top: -85px;
  left: 410px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .img-stroke-contact {
    width: 310px;
    height: 70px;
    top: -75px;
    left: 260px;
    transform: rotate(-5deg);
  }
}
@media only screen and (max-width: 1024px) {
  .img-stroke-contact {
    width: 200px;
    height: 70px;
    top: -35px;
    left: 230px;
  }
}
@media only screen and (max-width: 767px) {
  .img-stroke-contact {
    top: -41px;
    right: auto;
    left: 270px;
  }
}
@media only screen and (max-width: 567px) {
  .img-stroke-contact {
    left: 100px;
    top: -46px;
    display: block;
  }
}

body.home .stories-section {
  display: none;
}

body.home .for-rc-section,
body.page-homepage-dupicate .for-rc-section {
  padding: calc(var(--p70) + 30px) 0 calc(var(--p70) + 50px);
}
body.home .for-rc-section .img-stroke3_2,
body.page-homepage-dupicate .for-rc-section .img-stroke3_2 {
  display: none;
}
body.home .blue-device-section .content-dv h2 strong,
body.page-homepage-dupicate .blue-device-section .content-dv h2 strong {
  display: block;
}
body.home .for-retailers-inner .primary-image-card::after,
body.home .for-consumers-inner .primary-image-card::after,
body.page-homepage-dupicate .for-retailers-inner .primary-image-card::after,
body.page-homepage-dupicate .for-consumers-inner .primary-image-card::after {
  content: none;
}
body.home .for-retailers-inner .primary-image-card .text-dv,
body.home .for-consumers-inner .primary-image-card .text-dv,
body.page-homepage-dupicate .for-retailers-inner .primary-image-card .text-dv,
body.page-homepage-dupicate .for-consumers-inner .primary-image-card .text-dv {
  transform: none;
}
body.home .for-retailers-inner .primary-image-card .desc-dv,
body.home .for-consumers-inner .primary-image-card .desc-dv,
body.page-homepage-dupicate .for-retailers-inner .primary-image-card .desc-dv,
body.page-homepage-dupicate .for-consumers-inner .primary-image-card .desc-dv {
  display: none;
}
body.home .for-consumers-inner .img-stroke3_3,
body.page-homepage-dupicate .for-consumers-inner .img-stroke3_3 {
  bottom: -215px;
  right: -50px;
  width: 250px !important;
  height: 250px;
}
body.home .contact-sec,
body.page-homepage-dupicate .contact-sec {
  padding-top: calc(var(--p70) + 50px);
}
body.home .contact-sec h2 .img-stroke-contact,
body.page-homepage-dupicate .contact-sec h2 .img-stroke-contact {
  display: block;
}
@media only screen and (max-width: 567px) {
  body.home .contact-sec h2 .img-stroke-contact,
  body.page-homepage-dupicate .contact-sec h2 .img-stroke-contact {
    right: -20px;
    left: auto;
    top: -46px;
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  body.home .update-section .img-stroke3_4,
  body.page-homepage-dupicate .update-section .img-stroke3_4 {
    width: 440px !important;
    height: 440px;
    top: -165px;
    right: -75px;
  }
}
body.home .update-section .img-stroke8,
body.page-homepage-dupicate .update-section .img-stroke8 {
  top: -22px;
  left: -45px;
  width: 210px;
  height: 100px;
}
@media only screen and (max-width: 1200px) {
  body.home .update-section .img-stroke8,
  body.page-homepage-dupicate .update-section .img-stroke8 {
    top: -15px;
    left: -20px;
    width: 140px;
  }
}
@media only screen and (max-width: 1024px) {
  body.home .update-section .img-stroke3_4,
  body.page-homepage-dupicate .update-section .img-stroke3_4 {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  body.home .update-section .content-sec,
  body.page-homepage-dupicate .update-section .content-sec {
    min-height: 100px;
  }
}
body.home .primary-user-card p,
body.page-homepage-dupicate .primary-user-card p {
  display: block;
}
body.home .img-stroke3-r-mobile,
body.page-homepage-dupicate .img-stroke3-r-mobile {
  display: block;
}
@media only screen and (max-width: 1023px) {
  body.home .for-rc-mobile-inner:first-child,
  body.page-homepage-dupicate .for-rc-mobile-inner:first-child {
    margin-bottom: 90px;
    margin-top: 40px;
  }
}
body.home .for-rc-mobile-inner:nth-child(2),
body.page-homepage-dupicate .for-rc-mobile-inner:nth-child(2) {
  position: relative;
}
body.home .career-section-testi .content-dv .img-stroke7,
body.page-homepage-dupicate .career-section-testi .content-dv .img-stroke7 {
  left: 195px;
  top: 33px;
}
@media only screen and (max-width: 1200px) {
  body.home .career-section-testi .content-dv .img-stroke7,
  body.page-homepage-dupicate .career-section-testi .content-dv .img-stroke7 {
    left: 105px;
    top: 21px;
  }
}
@media only screen and (max-width: 991px) {
  body.home .career-section-testi .content-dv .img-stroke7,
  body.page-homepage-dupicate .career-section-testi .content-dv .img-stroke7 {
    left: 83px;
    top: 27px;
    width: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  body.home .career-section-testi .stories-inner,
  body.page-homepage-dupicate .career-section-testi .stories-inner {
    grid-template-columns: calc(36% - var(--gutter) / 2) calc(
        64% - var(--gutter) / 2
      );
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  body.home .career-section-testi .stories-inner .btn-dv,
  body.page-homepage-dupicate .career-section-testi .stories-inner .btn-dv {
    width: auto;
  }
}
@media only screen and (max-width: 991px) {
  body.home .career-section-testi .stories-inner .btn-dv,
  body.page-homepage-dupicate .career-section-testi .stories-inner .btn-dv {
    margin-top: 30px;
    margin-left: 0;
  }
}

.grecaptcha-badge {
  bottom: 64px !important;
  z-index: 9;
}

.page-homepage-dupicate .news-section {
  display: block !important;
}

.contact-sec {
  padding: var(--p70) 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .contact-sec {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .contact-sec {
    padding-top: calc(var(--p70) + 20px);
  }
}
@media only screen and (max-width: 1200px) {
  .contact-sec .img-stroke3_6 {
    width: 460px;
    height: 510px;
  }
}
.contact-sec p {
  margin-top: 10px;
}
.contact-sec .desc p {
  margin-top: 10px;
}
.contact-sec h2 {
  margin-bottom: 15px;
}
.contact-sec h2 span {
  position: relative;
  display: block;
}
@media only screen and (max-width: 567px) {
  .contact-sec h2 span {
    position: static;
  }
}
.contact-sec h2 .down-arrow {
  position: absolute;
  top: -80px;
  right: -420px;
}
@media only screen and (max-width: 991px) {
  .contact-sec h2 .down-arrow {
    top: -104px;
    right: -110px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-sec h2 .down-arrow {
    top: -104px;
    right: -60px;
  }
}
@media only screen and (max-width: 567px) {
  .contact-sec h2 .down-arrow {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .contact-sec h2 .down-arrow svg {
    width: 220px;
  }
}
.contact-sec .form {
  display: grid;
  grid-template-columns: calc(60% - 17.5px) calc(40% - 17.5px);
  gap: var(--gutter);
  margin-top: 35px;
}
@media (max-width: 1500px) {
  .contact-sec .form {
    grid-template-columns: calc(62% - 17.5px) calc(38% - 17.5px);
  }
}
@media (max-width: 991px) {
  .contact-sec .form {
    grid-template-columns: 100%;
    margin-top: 20px;
  }
}
.contact-sec .form textarea {
  height: 130px;
  resize: none;
}
.contact-sec .checkbox {
  display: flex;
}
.contact-sec .common-form,
.contact-sec .wpcf7-form {
  display: grid;
  gap: 20px;
  font-weight: 400;
}
.contact-sec .common-form .form-group,
.contact-sec .wpcf7-form .form-group {
  position: relative;
}
.contact-sec .common-form .upload-file,
.contact-sec .wpcf7-form .upload-file {
  background: var(--mx-grey);
  border-radius: 50px;
}
.contact-sec .common-form .upload-file::after,
.contact-sec .wpcf7-form .upload-file::after {
  content: "";
  background: url(../../assets/images/upload.svg) no-repeat;
  background-position: right center;
  position: absolute;
  right: 30px;
  transform: translateY(-50%);
  top: 50%;
  width: 20px;
  height: 20px;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .contact-sec .common-form .upload-file::after,
  .contact-sec .wpcf7-form .upload-file::after {
    right: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-sec .common-form .upload-file,
  .contact-sec .wpcf7-form .upload-file {
    min-height: 48px;
  }
}
.contact-sec .common-form .upload-file label,
.contact-sec .wpcf7-form .upload-file label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 27px;
  color: #a7a9ac;
}
@media only screen and (max-width: 991px) {
  .contact-sec .common-form .upload-file label,
  .contact-sec .wpcf7-form .upload-file label {
    left: 12px;
  }
}
.contact-sec .common-form .upload-file span[style="margin-left: 10px;"],
.contact-sec .wpcf7-form .upload-file span[style="margin-left: 10px;"] {
  position: absolute;
  right: 60px;
  top: 58px;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 87px);
  text-overflow: ellipsis;
  top: 50%;
  transform: translateY(-50%);
  left: 27px;
  right: auto;
  background: #f4f4f4;
  z-index: 9;
  margin-left: 0 !important;
}
@media only screen and (max-width: 991px) {
  .contact-sec .common-form .upload-file span[style="margin-left: 10px;"],
  .contact-sec .wpcf7-form .upload-file span[style="margin-left: 10px;"] {
    left: 12px;
  }
}
.contact-sec .common-form .form-control,
.contact-sec .wpcf7-form .form-control {
  border-radius: 50px;
  background: var(--mx-grey);
  padding: 20px 27px;
  color: var(--black);
  font-size: var(--p);
  font-style: normal;
  font-weight: 400;
  border: none;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .contact-sec .common-form .form-control,
  .contact-sec .wpcf7-form .form-control {
    border-radius: 25px;
    padding: 15px 12px;
  }
}
.contact-sec .common-form .form-control::placeholder,
.contact-sec .wpcf7-form .form-control::placeholder {
  color: #a7a9ac;
}
.contact-sec .common-form .form-control::-webkit-placeholder,
.contact-sec .wpcf7-form .form-control::-webkit-placeholder {
  color: #a7a9ac;
}
.contact-sec .common-form .form-control::-moz-placeholder,
.contact-sec .wpcf7-form .form-control::-moz-placeholder {
  color: #a7a9ac;
}
.contact-sec .common-form [type="file"],
.contact-sec .wpcf7-form [type="file"] {
  font-size: 0;
  line-height: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  appearance: none; /* Reset default styling in Firefox */
  -moz-appearance: none; /* Specifically for Firefox */
  -webkit-appearance: none;
  opacity: 0;
  z-index: 99;
  cursor: pointer;
}
.contact-sec .common-form [type="file"]::-webkit-file-upload-button,
.contact-sec .wpcf7-form [type="file"]::-webkit-file-upload-button {
  appearance: none;
  -webkit-appearance: none;
  visibility: hidden;
  border: none;
  /* Optional to fully hide */
  opacity: 0;
}
.contact-sec .common-form textarea.form-control,
.contact-sec .wpcf7-form textarea.form-control {
  border-radius: 25px;
}
.contact-sec .common-form .form-group-inline,
.contact-sec .wpcf7-form .form-group-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .contact-sec .common-form .form-group-inline,
  .contact-sec .wpcf7-form .form-group-inline {
    grid-template-columns: 1fr;
  }
}
.contact-sec .common-form .form-group-inline .form-group:nth-child(1),
.contact-sec .common-form .form-group-inline .form-group:nth-child(4),
.contact-sec .wpcf7-form .form-group-inline .form-group:nth-child(1),
.contact-sec .wpcf7-form .form-group-inline .form-group:nth-child(4) {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .contact-sec .common-form .form-group-inline .form-group:nth-child(1),
  .contact-sec .common-form .form-group-inline .form-group:nth-child(4),
  .contact-sec .wpcf7-form .form-group-inline .form-group:nth-child(1),
  .contact-sec .wpcf7-form .form-group-inline .form-group:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}
.contact-sec .common-form input[type="submit"],
.contact-sec .wpcf7-form input[type="submit"] {
  cursor: pointer;
}
.contact-sec .common-form span.wpcf7-not-valid-tip,
.contact-sec .wpcf7-form span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -24px;
  left: 27px;
  color: var(--mx-blue);
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  .contact-sec .common-form span.wpcf7-not-valid-tip,
  .contact-sec .wpcf7-form span.wpcf7-not-valid-tip {
    bottom: -22px;
    left: 17px;
    font-size: 11px;
  }
}
.contact-sec .common-form .checkbox a,
.contact-sec .wpcf7-form .checkbox a {
  color: var(--black);
  position: relative;
}
.contact-sec .common-form .checkbox a:hover,
.contact-sec .wpcf7-form .checkbox a:hover {
  color: var(--mx-blue);
}
.contact-sec .common-form .checkbox a::before,
.contact-sec .wpcf7-form .checkbox a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: right;
  background-color: var(--mx-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.contact-sec .common-form .checkbox a:hover::before,
.contact-sec .wpcf7-form .checkbox a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.contact-sec .wpcf7-response-output {
  color: var(--mx-blue);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.contact-sec .invalid .wpcf7-response-output {
  color: var(--mx-blue);
}
.contact-sec .screen-reader-response {
  display: none;
}
.contact-sec .screen-reader-response ul li {
  color: #f00;
  font-size: 12px;
}
.contact-sec .mandatory {
  color: var(--black);
  font-family: var(--font-family);
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  display: none;
}
@media only screen and (max-width: 567px) {
  .contact-sec .mandatory {
    text-align: center;
  }
}

@keyframes fill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.reach-out {
  position: relative;
  overflow: hidden;
  padding: var(--p70) 0;
}
.reach-out .title {
  margin-bottom: var(--mb35);
  position: relative;
  display: inline-block;
}
.reach-out .title h2 {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.reach-out .title .stroke-img {
  position: absolute;
  left: 0;
  width: 268px;
  object-fit: cover;
  height: 28px;
  bottom: -4px;
  transform: none;
}
@media only screen and (max-width: 991px) {
  .reach-out .title .stroke-img {
    top: auto;
    width: 138px;
  }
}
.reach-out .map-grid {
  display: grid;
  grid-template-columns: calc(60% - var(--gutter) / 2) calc(
      40% - var(--gutter) / 2
    );
  gap: var(--gutter);
  margin-top: var(--mt35);
}
@media only screen and (max-width: 991px) {
  .reach-out .map-grid {
    grid-template-columns: 100%;
    position: relative;
    gap: var(--p70);
  }
}
.reach-out .map-grid .img-container {
  border-radius: 30px;
  height: 500px;
}
@media (max-width: 991px) {
  .reach-out .map-grid .img-container {
    width: calc(100% + var(--gutter70) * 2);
    margin-left: calc(-1 * var(--gutter70));
    height: auto;
    border-radius: 0;
  }
}
.reach-out .map-grid .img-container img {
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .reach-out .map-grid .img-container img {
    border-radius: 0;
  }
}
.reach-out .map-grid .img-container .swiper {
  height: 100%;
}
.reach-out .map-grid .img-container .swiper .swiper-slide {
  border-radius: 30px;
  overflow: hidden;
  background: var(--mx-grey);
}
@media only screen and (max-width: 991px) {
  .reach-out .map-grid .img-container .swiper .swiper-slide {
    border-radius: 0;
  }
}
.reach-out .map-grid .img-container .swiper .swiper-slide:hover iframe {
  filter: grayscale(0);
}
.reach-out .map-grid .img-container .swiper iframe {
  filter: grayscale(1);
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .reach-out .map-grid .img-container .swiper iframe {
    height: 440px;
  }
}
.reach-out .map-grid .contact-detail {
  max-width: 100%;
  padding: 40px;
  min-height: 100%;
  max-height: inherit;
}
@media only screen and (max-width: 991px) {
  .reach-out .map-grid .contact-detail {
    border-radius: 20px;
    width: auto;
    margin: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 567px) {
  .reach-out .map-grid .contact-detail {
    padding: 20px;
  }
}
.reach-out .map-grid .contact-detail .swiper {
  min-height: calc(100% - 50px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.reach-out .stroke-img {
  width: 700px;
  height: 700px;
  transform: rotate(90deg);
  position: absolute;
  right: -100px;
  bottom: -420px;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .reach-out .stroke-img {
    width: 520px;
    height: 520px;
    right: -60px;
    bottom: -380px;
  }
}
@media only screen and (max-width: 991px) {
  .reach-out .stroke-img {
    width: 200px;
    height: 200px;
    bottom: auto;
    right: -90px;
    transform: rotate(0);
    top: -70px;
  }
}
.reach-out .stroke-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-connected {
  background-color: var(--mx-blue);
  padding: var(--p70) 0;
}
@media only screen and (max-width: 991px) {
  .stay-connected {
    background-color: var(--mx-grey);
  }
}
.stay-connected .main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--gutter);
  align-items: center;
}
@media (max-width: 1600px) {
  .stay-connected .main-grid {
    grid-template-columns: 350px 1fr;
  }
}
@media (max-width: 1024px) {
  .stay-connected .main-grid {
    grid-template-columns: 300px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .stay-connected .main-grid {
    grid-template-columns: 1fr;
  }
}
.stay-connected .title h2 {
  color: var(--white);
  margin-bottom: var(--mb35);
}
@media only screen and (max-width: 991px) {
  .stay-connected .title h2 {
    color: var(--mx-black);
  }
}
@media only screen and (max-width: 991px) {
  .stay-connected .title h2 br {
    display: none;
  }
}
.stay-connected .title h2 b {
  color: var(--mx-yellow);
}
@media only screen and (max-width: 991px) {
  .stay-connected .title h2 b {
    color: var(--mx-blue);
  }
}
.stay-connected .title p {
  color: var(--white);
  max-width: 360px;
}
@media only screen and (max-width: 991px) {
  .stay-connected .title p {
    color: var(--mx-black);
    max-width: inherit;
  }
}

.social-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gutter);
}
@media only screen and (max-width: 767px) {
  .social-column {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 567px) {
  .social-column {
    grid-template-columns: 1fr;
  }
}
.social-column li {
  border-radius: 30px;
  background-color: var(--white);
  padding: 25px 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1600px) {
  .social-column li {
    grid-template-columns: 52px 1fr;
    gap: 15px;
    padding: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .social-column li {
    border-radius: 20px;
    padding: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .social-column li {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
}
@media only screen and (max-width: 567px) {
  .social-column li {
    gap: 20px;
  }
}
.social-column li .full-link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 9;
}
.social-column li::before {
  content: "";
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask: url(../../assets/images/mask.png);
  mask: url(../../assets/images/mask.png);
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  border: none;
  cursor: pointer;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
  position: absolute;
  inset: 0;
  background: var(--white);
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .social-column li::before {
    background: var(--mx-blue);
  }
}
.social-column li .hover-img {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .social-column li .hover-img {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 991px) {
  .social-column li .main-img {
    opacity: 0;
    visibility: hidden;
  }
}
.social-column li:hover .main-img {
  opacity: 0;
  visibility: hidden;
}
.social-column li:hover .hover-img {
  opacity: 1;
  visibility: visible;
}
.social-column li:hover::before {
  background: var(--mx-yellow);
  -webkit-animation: ani 0.7s steps(29) forwards;
  animation: ani 0.7s steps(29) forwards;
}
@media only screen and (max-width: 991px) {
  .social-column li:hover .social-details {
    color: var(--mx-black);
  }
}
@media only screen and (max-width: 991px) {
  .social-column li:hover .social-details a {
    color: var(--mx-black);
  }
}
.social-column li .img-container {
  width: 60px;
  height: 60px;
  position: relative;
}
@media (max-width: 1600px) {
  .social-column li .img-container {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .social-column li .img-container {
    width: 40px;
    height: 40px;
  }
}
.social-column li .img-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: 0.2s ease-in-out;
}
.social-column li .social-details {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .social-column li .social-details {
    color: var(--white);
  }
}
.social-column li .social-details a {
  color: var(--black);
}
@media only screen and (max-width: 991px) {
  .social-column li .social-details a {
    color: var(--white);
  }
}

.contact-page-section {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contact-page-section {
    padding-bottom: var(--p70);
    padding-top: var(--p70);
  }
}
@media only screen and (max-width: 991px) {
  .contact-page-section h2 {
    position: relative;
  }
}
.contact-page-section h2 b {
  color: var(--mx-blue);
}
.contact-page-section h2 .down-arrow {
  top: -90px;
  left: 455px;
  width: 60vw;
  height: auto;
  z-index: -1;
  right: auto;
}
@media only screen and (max-width: 1600px) {
  .contact-page-section h2 .down-arrow {
    top: -70px;
    left: 456px;
    width: 56vw;
  }
}
@media only screen and (max-width: 1400px) {
  .contact-page-section h2 .down-arrow {
    top: -40px;
    width: 46vw;
  }
}
@media only screen and (max-width: 1200px) {
  .contact-page-section h2 .down-arrow {
    left: 302px;
    top: -35px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-page-section h2 .down-arrow {
    left: 303px;
    top: -21px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-page-section h2 .down-arrow {
    left: 163px;
    top: -28px;
    width: 250px;
  }
}
@media only screen and (max-width: 460px) {
  .contact-page-section h2 .down-arrow {
    left: 41vw;
    top: -18px;
    width: 190px;
  }
}
@media only screen and (max-width: 360px) {
  .contact-page-section h2 .down-arrow {
    left: 70px;
  }
}
.contact-page-section h2 .down-arrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stroke-img-bottom {
  position: absolute;
  width: 600px;
  height: 600px;
  right: 0;
  bottom: -411px;
  z-index: -1;
}
@media only screen and (max-width: 1400px) {
  .stroke-img-bottom {
    width: 639px;
    height: 600px;
    bottom: -401px;
  }
}
@media only screen and (max-width: 1200px) {
  .stroke-img-bottom {
    width: 200px;
    height: 200px;
    bottom: -110px;
  }
}
@media only screen and (max-width: 991px) {
  .stroke-img-bottom {
    display: none;
  }
}
.stroke-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width .form {
  grid-template-columns: 1fr;
}
.full-width .form .form-group-inline .form-group:nth-child(1),
.full-width .form .form-group-inline .form-group:nth-child(4) {
  grid-column: auto;
}
.full-width .contact-detail {
  display: none;
}
@media only screen and (max-width: 991px) {
  .full-width {
    padding-bottom: var(--p70);
    padding-top: var(--p70);
  }
}
@media only screen and (max-width: 991px) {
  .full-width h2 {
    position: relative;
  }
}
.full-width h2 b {
  color: var(--mx-blue);
}
.full-width h2 .down-arrow {
  top: -90px;
  left: 455px;
  width: 60vw;
  height: auto;
  z-index: -1;
  right: auto;
}
@media only screen and (max-width: 1600px) {
  .full-width h2 .down-arrow {
    top: -70px;
    left: 456px;
    width: 56vw;
  }
}
@media only screen and (max-width: 1400px) {
  .full-width h2 .down-arrow {
    top: -40px;
    width: 46vw;
  }
}
@media only screen and (max-width: 1200px) {
  .full-width h2 .down-arrow {
    left: 302px;
    top: -35px;
  }
}
@media only screen and (max-width: 768px) {
  .full-width h2 .down-arrow {
    left: 303px;
    top: -21px;
  }
}
@media only screen and (max-width: 767px) {
  .full-width h2 .down-arrow {
    left: 163px;
    top: -28px;
    width: 250px;
  }
}
@media only screen and (max-width: 460px) {
  .full-width h2 .down-arrow {
    left: 41vw;
    top: -18px;
    width: 190px;
  }
}
@media only screen and (max-width: 360px) {
  .full-width h2 .down-arrow {
    left: 70px;
  }
}
.full-width h2 .down-arrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-width .stroke-img-bottom {
  position: absolute;
  width: 540px;
  height: 540px;
  right: 0;
  bottom: -341px;
  transform: rotate(354deg);
}
@media only screen and (max-width: 1400px) {
  .full-width .stroke-img-bottom {
    width: 639px;
    height: 600px;
    bottom: -401px;
  }
}
@media only screen and (max-width: 1200px) {
  .full-width .stroke-img-bottom {
    width: 200px;
    height: 200px;
    bottom: -110px;
  }
}
@media only screen and (max-width: 991px) {
  .full-width .stroke-img-bottom {
    display: none;
  }
}
.full-width .stroke-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .page-contact-us .inner-banner-section .inner-banner {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .page-contact-us .inner-banner-section .inner-banner .banner-img {
    max-height: initial;
    width: 90%;
    position: absolute;
    bottom: 80px;
    right: 0;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .page-contact-us .inner-banner-section .inner-banner .banner-img img {
    max-height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .page-contact-us .inner-banner-section .inner-banner .banner-img img {
    max-height: 270px;
  }
}

.privacy-banner {
  background-color: var(--mx-blue);
  padding-top: 160px;
  padding-bottom: 83px;
}
@media (max-width: 1199px) {
  .privacy-banner {
    padding-top: 110px;
    padding-bottom: 63px;
  }
}
@media (max-width: 567px) {
  .privacy-banner {
    padding-bottom: 58px;
  }
}
.privacy-banner .banner-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.privacy-banner .banner-grid .grid-right {
  width: 525px;
  height: 470px;
}
@media (max-width: 1199px) {
  .privacy-banner .banner-grid .grid-right {
    width: 430px;
    height: 410px;
  }
}
@media (max-width: 991px) {
  .privacy-banner .banner-grid .grid-right {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 567px) {
  .privacy-banner .banner-grid .grid-right {
    width: 292px;
    height: 278px;
  }
}
.privacy-banner .banner-grid .grid-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.privacy-banner .banner-grid .grid-left {
  max-width: 565px;
}
@media (max-width: 1199px) {
  .privacy-banner .banner-grid .grid-left {
    max-width: 505px;
  }
}
@media (max-width: 567px) {
  .privacy-banner .banner-grid .grid-left {
    max-width: 100%;
    width: 100%;
  }
}
.privacy-banner .banner-grid .grid-left h1 {
  color: var(--white);
}
@media (max-width: 567px) {
  .privacy-banner .banner-grid .grid-left h1 {
    margin-bottom: 80px;
  }
}
.privacy-banner .banner-grid .grid-left h1 b {
  color: var(--mx-yellow);
}
.privacy-banner .banner-grid .grid-left p {
  color: var(--white);
  font-size: 20px;
  margin-top: 30px;
  line-height: 1.7;
}
@media (max-width: 567px) {
  .privacy-banner .banner-grid .grid-left p {
    display: none;
  }
}
.privacy-banner .banner-grid .grid-left p strong {
  display: block;
  font-size: 700;
}

.privacy-content {
  padding-top: 74px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .privacy-content {
    padding-top: 55px;
  }
}
@media (min-width: 568px) {
  .privacy-content .desktop-hide {
    display: none;
  }
}
.privacy-content .stroke-image {
  position: absolute;
  right: -32px;
  bottom: -265px;
  width: 600px;
  height: 600px;
  z-index: -1;
}
.privacy-content h1,
.privacy-content h2,
.privacy-content h3 {
  margin-bottom: 25px;
}
.privacy-content p,
.privacy-content span {
  color: var(--mx-black);
  margin-bottom: 15px;
}
.privacy-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}
.privacy-content h3 {
  margin-block: 40px 15px;
}
.privacy-content h2 + h3 {
  margin-top: 15px;
}
.privacy-content a {
  display: inline-block;
  color: var(--mx-black);
  position: relative;
}
.privacy-content a:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: var(--mx-black);
  bottom: 5px;
  transition: all 0.4s ease-in-out;
}
.privacy-content a:hover {
  color: var(--mx-blue);
  transition: all 0.4s ease-in-out;
}
.privacy-content a:hover:before {
  background-color: var(--mx-blue);
  transition: all 0.4s ease-in-out;
}
.privacy-content ol {
  margin: 20px 0;
  counter-reset: count;
}
.privacy-content ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
@media (max-width: 567px) {
  .privacy-content ol li {
    padding-left: 15px;
  }
}
.privacy-content ol li:before {
  counter-increment: count;
  content: counter(count) ".";
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .privacy-content .contact-sec {
    margin-top: 20px;
  }
}
.privacy-content .contact-sec p,
.privacy-content .contact-sec span {
  color: var(--white);
  margin-bottom: 0;
}
.privacy-content .contact-sec a:before {
  content: none;
}
.privacy-content ul {
  margin: 20px 0 20px 20px;
  list-style: disc;
}
.privacy-content ul li {
  padding-bottom: 5px;
}
.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.privacy-content table,
.privacy-content th,
.privacy-content td {
  border: 1px solid #ddd;
}
.privacy-content th,
.privacy-content td {
  padding: 12px;
  text-align: left;
}

.general-content {
  padding: 0;
}

.about-page-reach-out .title .stroke-img {
  left: auto;
  right: 60px;
  height: 46px;
  bottom: -20px;
}
.about-page-reach-out p {
  margin-bottom: 20px;
}

.vision-principle {
  background: var(--mx-grey);
  padding-top: var(--p70);
  padding-bottom: 0;
}
.vision-principle .title {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.vision-principle .title .stroke-img {
  width: 120px;
  height: 120px;
  position: absolute;
  right: 40px;
  top: 10px;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .vision-principle .title .stroke-img {
    width: 70px;
    height: 70px;
    top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .vision-principle .text-dv {
    transform: translateY(var(--desc_height));
  }
}
.vision-principle .desc-dv {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .vision-principle .desc-dv {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .vision-principle .desc-dv {
    opacity: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .vision-principle .primary-image-card::after {
    content: none;
  }
}

.vision-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--gutter);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 567px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}
.vision-grid.right-active {
  grid-template-columns: 2fr 3fr;
}
@media only screen and (max-width: 567px) {
  .vision-grid.right-active {
    grid-template-columns: 1fr;
  }
}
.vision-grid.left-active {
  grid-template-columns: 3fr 2fr;
}
@media only screen and (max-width: 567px) {
  .vision-grid.left-active {
    grid-template-columns: 1fr;
  }
}
.vision-grid .text-dv h3 {
  color: var(--mx-yellow);
}
.vision-grid .primary-image-card.active .text-dv {
  transform: translateY(0);
}
.vision-grid .primary-image-card.active .desc-dv {
  opacity: 1;
}
.vision-grid .primary-image-card.active::before {
  content: none;
}
.vision-grid .primary-image-card.active::after {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .vision-grid .primary-image-card.active::after {
    content: "";
    opacity: 1;
  }
}
.vision-grid .primary-image-card.active:hover .text-dv {
  transform: translateY(0);
}
.vision-grid .primary-image-card.active:hover .desc-dv {
  opacity: 1;
}
.vision-grid .primary-image-card.active:hover::before {
  content: none;
}
.vision-grid .primary-image-card.active:hover::after {
  content: "";
  opacity: 1;
  background: linear-gradient(
    358.9deg,
    #074bb6 0.11%,
    rgba(7, 75, 182, 0.1) 96.54%
  );
}
@media only screen and (max-width: 567px) {
  .vision-grid .primary-image-card.active .primary-image-link {
    height: 330px;
    min-height: auto;
  }
}
.vision-grid .primary-image-card:hover .text-dv {
  transform: translateY(var(--desc_height));
}
.vision-grid .primary-image-card:hover .desc-dv {
  opacity: 0;
}
.vision-grid .primary-image-card:hover::before {
  content: "";
}
.vision-grid .primary-image-card:hover::after {
  content: none;
}
.vision-grid .primary-image-card .primary-image-link {
  height: 480px;
  min-height: auto;
}
@media only screen and (max-width: 567px) {
  .vision-grid .primary-image-card .primary-image-link {
    height: 200px;
  }
}

.swiper-core-values .stories-card .quotes-img {
  width: 60px;
  height: 50px;
}
.swiper-core-values .stories-card .quotes-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.swiper-core-values .stories-card h3 strong {
  color: var(--black);
  line-height: 34px;
}
.swiper-core-values .stories-card p {
  max-width: 347px;
}

@media (min-width: 2000px) {
  .core-values .stories-inner {
    grid-template-columns: calc(25% - var(--gutter) / 2) calc(
        75% - var(--gutter) / 2
      );
  }
}
.core-values .stories-inner h3 {
  font-size: var(--p);
  line-height: var(--pLH);
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .core-values .stories-inner h3 {
    min-height: auto;
  }
}
.core-values .content-dv {
  max-width: 525px;
}
.core-values .content-dv .img-stroke7 {
  width: 260px;
  height: 90px;
  top: 31px;
  left: 220px;
}
@media only screen and (max-width: 1200px) {
  .core-values .content-dv .img-stroke7 {
    width: 120px;
    height: 90px;
    top: 7px;
    left: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .core-values .content-dv .img-stroke7 {
    left: 201px;
    top: 17px;
    width: 90px;
    transform: rotate(-2deg);
  }
}
@media only screen and (max-width: 340px) {
  .core-values .content-dv .img-stroke7 {
    top: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .core-values .content-dv .img-stroke7 .desk {
    display: none;
  }
}
.core-values .content-dv .img-stroke7 .mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .core-values .content-dv .img-stroke7 .mobile {
    display: block;
  }
}
.core-values .content-dv .img-stroke7 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1720px) {
  .about-core-values .stories-inner,
  .about-choose-section .stories-inner {
    grid-template-columns: calc(40% - var(--gutter) / 2) calc(
        60% - var(--gutter) / 2
      );
  }
}
@media (max-width: 1366px) {
  .about-core-values .stories-inner,
  .about-choose-section .stories-inner {
    grid-template-columns: calc(45% - var(--gutter) / 2) calc(
        55% - var(--gutter) / 2
      );
  }
}
@media (max-width: 1200px) {
  .about-core-values .stories-inner,
  .about-choose-section .stories-inner {
    grid-template-columns: calc(45% - var(--gutter) / 2) calc(
        55% - var(--gutter) / 2
      );
  }
}
@media (max-width: 991px) {
  .about-core-values .stories-inner,
  .about-choose-section .stories-inner {
    grid-template-columns: 100%;
  }
}
.about-core-values .swiper-slide,
.about-choose-section .swiper-slide {
  min-height: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .about-core-values .stories-card p,
  .about-choose-section .stories-card p {
    max-width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .about-core-values .stories-card p,
  .about-choose-section .stories-card p {
    max-width: 100%;
  }
}

.challenges-faced {
  background: var(--mx-grey);
  padding: var(--p70) 0;
  overflow-x: hidden;
}
.challenges-faced .container-fluid {
  padding-right: 0;
}
@media (max-width: 768px) {
  .challenges-faced .container-fluid {
    padding-right: var(--gutter70);
  }
}
@media only screen and (max-width: 1024px) {
  .challenges-faced .primary-image-card .text-dv {
    transform: translateY(0);
  }
}
.challenges-faced .primary-image-card:hover .text-dv {
  transform: translateY(0);
}
.challenges-faced .swiper-scrollbar {
  background: #d9d9d9;
}
.challenges-faced .update-inner {
  grid-template-columns: calc(35% - var(--gutter) / 2) calc(
      65% - var(--gutter) / 2
    );
}
@media (max-width: 1460px) {
  .challenges-faced .update-inner {
    grid-template-columns: calc(38% - var(--gutter) / 2) calc(
        62% - var(--gutter) / 2
      );
  }
}
@media (max-width: 768px) {
  .challenges-faced .update-inner {
    grid-template-columns: 100%;
  }
}
.challenges-faced .update-inner .content-dv {
  max-width: 550px;
}
@media (max-width: 768px) {
  .challenges-faced .update-inner .content-dv h2 {
    max-width: 300px;
  }
}
.challenges-faced .update-inner .content-dv p {
  margin-bottom: 20px;
}
.challenges-faced .update-inner .primary-image-card .primary-image-link {
  height: 340px;
}
@media only screen and (max-width: 1200px) {
  .challenges-faced .update-inner .primary-image-card .primary-image-link {
    height: 340px;
  }
}
@media only screen and (max-width: 767px) {
  .challenges-faced .update-inner .primary-image-card .primary-image-link {
    height: 400px;
  }
}
.challenges-faced .img-stroke8 {
  width: 188px;
  height: 105px;
  left: 270px;
  top: auto;
  right: 0;
  bottom: -31px;
}
@media only screen and (max-width: 1352px) {
  .challenges-faced .img-stroke8 {
    width: 148px;
    height: 65px;
    right: auto;
    left: 149px;
    bottom: -11px;
  }
}
@media only screen and (max-width: 1200px) {
  .challenges-faced .img-stroke8 {
    left: 99px;
    bottom: -21px;
  }
}
@media only screen and (max-width: 1024px) {
  .challenges-faced .img-stroke8 {
    left: 179px;
    width: 100px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .challenges-faced .img-stroke8 {
    left: 100px;
  }
}
.challenges-faced .img-stroke8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-it-began {
  padding: var(--p70) 0;
  position: relative;
  overflow: hidden;
}
.how-it-began .section-stroke {
  width: 500px;
  height: 500px;
  position: absolute;
  bottom: -170px;
  transform: rotate(95deg);
  left: -119px;
  z-index: -1;
}
@media only screen and (max-width: 1500px) {
  .how-it-began .section-stroke {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (max-width: 1200px) {
  .how-it-began .section-stroke {
    width: 200px;
    height: 200px;
    bottom: -120px;
    left: -99px;
  }
}
.how-it-began .section-stroke img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-it-began .grid-wrapper {
  display: grid;
  grid-template-columns: calc(35% - var(--gutter) / 2) calc(
      65% - var(--gutter) / 2
    );
  gap: var(--gutter);
}
@media (max-width: 1023px) {
  .how-it-began .grid-wrapper {
    grid-template-columns: 100%;
  }
}
.how-it-began .grid-left .read-more {
  margin-top: 10px;
}
.how-it-began .grid-left h2 {
  margin-bottom: var(--mb35);
  position: relative;
}
.how-it-began .grid-left h2 .img-stroke {
  width: 305px;
  height: 60px;
  position: absolute;
  left: 58px;
  bottom: -24px;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .how-it-began .grid-left h2 .img-stroke {
    width: 195px;
    height: auto;
    left: 48px;
    bottom: -21px;
  }
}
@media only screen and (max-width: 768px) {
  .how-it-began .grid-left h2 .img-stroke {
    width: 215px;
    right: auto;
    height: auto;
    left: 20px;
    bottom: -23px;
  }
}
.how-it-began .grid-left h2 .img-stroke img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-it-began .grid-right {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-auto-rows: 300px 300px;
  gap: var(--gutter);
}
@media (max-width: 1200px) {
  .how-it-began .grid-right {
    grid-auto-rows: 200px 200px;
  }
}
@media only screen and (max-width: 768px) {
  .how-it-began .grid-right {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px 250px;
  }
}
@media only screen and (max-width: 567px) {
  .how-it-began .grid-right {
    grid-auto-rows: 160px 160px;
  }
}
.how-it-began .grid-right .img-container {
  border-radius: 20px;
}
.how-it-began .grid-right .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.how-it-began .grid-right .img-container:nth-child(2) {
  grid-row: 1/3;
  grid-column: 2;
}

.innovate-with-us {
  background: var(--mx-blue);
  overflow: hidden;
  padding: calc(var(--p70) + 30px) 0;
}
@media only screen and (max-width: 1024px) {
  .innovate-with-us {
    padding: var(--p70) 0;
  }
}
.innovate-with-us .inner-grid {
  max-width: 690px;
}
@media only screen and (max-width: 1200px) {
  .innovate-with-us .inner-grid {
    max-width: 550px;
  }
}
@media only screen and (max-width: 991px) {
  .innovate-with-us .inner-grid {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .innovate-with-us .inner-grid {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.innovate-with-us .inner-grid h2 {
  color: var(--white);
  margin-bottom: var(--mb35);
}
.innovate-with-us .inner-grid h2 b {
  color: var(--mx-yellow);
}
.innovate-with-us .inner-grid p {
  color: var(--white);
}
.innovate-with-us .inner-grid .desc-global {
  margin-bottom: var(--p70);
}
@media only screen and (max-width: 767px) {
  .innovate-with-us .inner-grid .desc-global {
    margin-bottom: var(--mb35);
  }
}
.innovate-with-us .desc-dv {
  margin-bottom: var(--p70);
}
@media only screen and (max-width: 767px) {
  .innovate-with-us .desc-dv {
    margin-bottom: var(--mb35);
  }
}
.innovate-with-us .grid-image,
.innovate-with-us .img-dv {
  width: 600px;
  height: 447px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 1200px) {
  .innovate-with-us .grid-image,
  .innovate-with-us .img-dv {
    width: 450px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .innovate-with-us .grid-image,
  .innovate-with-us .img-dv {
    width: 370px;
  }
}
@media only screen and (max-width: 767px) {
  .innovate-with-us .grid-image,
  .innovate-with-us .img-dv {
    position: relative;
    order: -1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    right: -20px;
    margin-bottom: var(--mb35);
  }
}
.innovate-with-us .grid-image img,
.innovate-with-us .img-dv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 767px) {
  .innovate-with-us .grid-image img,
  .innovate-with-us .img-dv img {
    max-width: 300px;
  }
}

.ceo-section {
  padding: var(--p70) 0;
  background: var(--mx-grey);
}
.ceo-section .inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .ceo-section .inner-grid {
    grid-template-columns: 1fr;
  }
}
.ceo-section .grid-left {
  position: relative;
  padding-bottom: 35px;
}
.ceo-section .grid-left .read-more {
  position: absolute;
  left: 0;
  bottom: 0;
}
.ceo-section .grid-left h2 {
  margin-bottom: var(--mb35);
}
.ceo-section .grid-left p {
  margin-top: 20px;
}
.ceo-section .grid-left p.desc {
  max-width: 610px;
}
.ceo-section .grid-left .ceo-name {
  margin-top: 0;
  font-size: 24px;
  display: inline-block;
  position: relative;
  overflow: visible;
  z-index: 1;
  margin-bottom: var(--mb35);
}
@media only screen and (max-width: 991px) {
  .ceo-section .grid-left .ceo-name {
    font-size: 20px;
  }
}
.ceo-section .grid-left .ceo-name span {
  display: block;
  font-size: 16px;
}
.ceo-section .grid-left .ceo-name .img-stroke2 {
  width: 210px;
  height: 45px;
  position: absolute;
  left: -30px;
  top: 3px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .ceo-section .grid-left .ceo-name .img-stroke2 {
    width: 170px;
    left: -20px;
    top: -1px;
  }
}
.ceo-section .grid-left .ceo-name .img-stroke2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ceo-section .ceo-pic-mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .ceo-section .ceo-pic-mobile {
    display: block;
    height: 510px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: var(--mb35);
  }
}
.ceo-section .ceo-pic-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .ceo-section .desk {
    display: none;
  }
}

.about-sect .img-stroke4-s {
  display: none;
}
.about-sect .btn-dv {
  margin-top: var(--mb35);
}
.about-sect .grid-left h2 {
  color: var(--mx-blue);
}
.about-sect .grid-left h2 strong {
  color: var(--mx-black);
}
.about-sect .grid-right {
  border-radius: 30px;
  overflow: hidden;
}
.about-sect .grid-right picture {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.images-block .title {
  display: inline-block;
  position: relative;
  margin-bottom: 35px;
}
.images-block .img-stroke {
  width: 182px;
  height: 74px;
  position: absolute;
  right: -140px;
  top: 16px;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .images-block .img-stroke {
    right: -156px;
    top: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .images-block .img-stroke {
    left: 15px;
    height: auto;
    top: 31px;
    width: 250px;
  }
}
.images-block .img-stroke img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 991px) {
  .images-block .img-stroke .desk {
    display: none;
  }
}
.images-block .img-stroke .mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .images-block .img-stroke .mobile {
    display: block;
  }
}
.images-block .img-stroke .mobile-partner {
  display: none;
}
.images-block.partner-slider {
  margin-bottom: 0;
  padding-bottom: var(--p70);
}
@media (max-width: 991px) {
  .images-block.partner-slider h2 {
    max-width: 370px;
  }
}
.images-block.partner-slider .img-stroke {
  width: 252px;
  height: 74px;
  position: absolute;
  right: 0;
  top: auto;
  bottom: -30px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .images-block.partner-slider .img-stroke {
    width: 142px;
    height: auto;
    left: -19px;
    right: auto;
    top: auto;
    bottom: -29px;
  }
}
.images-block.partner-slider .img-stroke .mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .images-block.partner-slider .img-stroke .mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .images-block.partner-slider .img-stroke .mobile-partner {
    display: block;
  }
}
.images-block + .contact-sec {
  padding-top: var(--p70);
  margin-top: -60px;
}
@media only screen and (max-width: 767px) {
  .images-block + .contact-sec {
    margin-top: -30px;
  }
}

.imageSlider {
  margin-bottom: var(--p70);
}
.imageSlider .swiper-slide {
  background-color: var(--mx-grey);
  height: 100px;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .imageSlider .swiper-slide {
    border-radius: 20px;
  }
}
.imageSlider .swiper-slide .img-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.imageSlider .swiper-slide .img-container img {
  max-width: 200px;
}
@media only screen and (max-width: 767px) {
  .imageSlider .swiper-slide .img-container img {
    max-width: 60%;
  }
}

.milestone {
  padding: var(--p70) 0;
  position: relative;
}
.milestone .title {
  margin-bottom: 35px;
}
@media (max-width: 567px) {
  .milestone .title {
    margin-bottom: var(--mb35);
  }
}
.milestone .title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--mb35);
}
.milestone .title h2 .img-stroke12 {
  position: absolute;
  right: -183px;
  bottom: -24px;
  width: 200px;
  height: 110px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .milestone .title h2 .img-stroke12 {
    left: 380px;
    top: -30px;
    bottom: auto;
    width: 150px;
    height: auto;
  }
}
@media only screen and (max-width: 567px) {
  .milestone .title h2 .img-stroke12 {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 440px) {
  .milestone .title h2 .img-stroke12 {
    left: 177px;
    right: 0;
    width: 130px;
    top: 7px;
  }
}
@media only screen and (max-width: 320px) {
  .milestone .title h2 .img-stroke12 {
    width: 110px;
    top: 13px;
  }
}
.milestone .title h2 .img-stroke12 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.milestone .title p {
  margin-bottom: 10px;
}
.milestone .img-stroke19 {
  position: absolute;
  bottom: -210px;
  left: -50px;
  transform: rotate(270deg);
  width: 480px;
}
@media (max-width: 1024px) {
  .milestone .img-stroke19 {
    width: 360px;
    left: -40px;
  }
}
@media (max-width: 567px) {
  .milestone .img-stroke19 {
    display: none;
  }
}
.milestone .img-stroke19 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.milestone .swiper-container {
  overflow: hidden;
}
.milestone .swiper-container .swiper-slide {
  height: 50px;
}
.milestone .swiper-container .swiper-slide img {
  display: none;
}
.milestone .swiper-container .swiper-slide::before {
  content: "";
  background-color: var(--mx-yellow);
  width: 10px;
  height: 10px;
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 99;
  display: block;
  border-radius: 50%;
}
.milestone .swiper-container .swiper-slide.swiper-slide-thumb-active::before,
.milestone .swiper-container .swiper-slide.swiper-slide-active::before,
.milestone .swiper-container .swiper-slide.swiper-slide-next::before {
  transform: scale(1.2);
  background-color: var(--mx-blue);
}
.milestone .milestoneSlider {
  padding-top: 80px;
}
.milestone .milestoneSlider .slider-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
@media (max-width: 567px) {
  .milestone .milestoneSlider .slider-inner {
    grid-template-columns: 1fr;
  }
}
.milestone .milestoneSlider .slider-inner .slider-left {
  max-width: 650px;
  margin-left: 50px;
}
@media (max-width: 991px) {
  .milestone .milestoneSlider .slider-inner .slider-left {
    margin-left: 0;
  }
}
@media (max-width: 567px) {
  .milestone .milestoneSlider .slider-inner .slider-left {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background: var(--mx-blue);
    color: var(--white);
    border-radius: 0 0 20px 20px;
  }
}
.milestone .milestoneSlider .slider-inner .slider-left h3 {
  margin-bottom: var(--mb35);
}
.milestone .milestoneSlider .slider-inner .slider-right {
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .milestone .milestoneSlider .slider-inner .slider-right {
    height: 220px;
  }
}
@media (max-width: 567px) {
  .milestone .milestoneSlider .slider-inner .slider-right {
    border-radius: 20px;
    height: 500px;
  }
}
.milestone .milestoneSlider .slider-inner .slider-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.milestone .milestoneSlider .swiper-btn-arrow {
  position: absolute;
  top: 31px;
  z-index: 9999;
}
@media (max-width: 1200px) {
  .milestone .milestoneSlider .swiper-btn-arrow {
    top: 39px;
  }
}
@media (max-width: 991px) {
  .milestone .milestoneSlider .swiper-btn-arrow {
    top: 38px;
  }
}
.milestone .milestoneSlider .swiper-btn-arrow::after {
  font-size: 15px;
  color: transparent;
}
.milestone .milestoneSlider .swiper-btn-arrow:hover::after {
  color: transparent;
}
.milestone .milestoneSlider .swiper-button-prev {
  left: 0;
}
.milestone .milestoneSlider .swiper-button-next {
  right: 0;
}
.milestone .topbar-controls {
  --spacing: 51px;
  margin: calc(-1 * var(--spacing)) auto var(--spacing);
  max-width: calc(100% - 100px);
}
@media only screen and (max-width: 1200px) {
  .milestone .topbar-controls {
    max-width: calc(100% - 68px);
    --spacing: 52px;
  }
}
.milestone .custom-pagination {
  display: flex;
  justify-content: space-between;
  width: 67%;
  margin-top: 10px;
  gap: 10px;
  margin: 0 auto -9px;
}
@media only screen and (max-width: 768px) {
  .milestone .custom-pagination {
    margin: 0 auto -8px;
  }
}
.milestone .dot {
  width: 12px;
  height: 12px;
  background: var(--mx-yellow);
  border-radius: 50%;
  transform: scale(1);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .milestone .dot {
    width: 10px;
    height: 10px;
  }
}
.milestone .dot.active,
.milestone .dot.completed {
  background: var(--mx-blue);
  transform: scale(1.7);
}
@media only screen and (max-width: 567px) {
  .milestone .dot.active,
  .milestone .dot.completed {
    transform: scale(1.2);
  }
}
.milestone .progress-bar-container {
  width: 100%;
  margin: 0 auto;
  height: 6px;
  background-color: var(--mx-grey);
  overflow: hidden;
}
@media only screen and (max-width: 567px) {
  .milestone .progress-bar-container {
    height: 5px;
  }
}
.milestone .progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--mx-blue);
  transition: width 0.4s ease;
}

.more-text {
  display: none;
}

.about-revolution-section.revolution-section .img-stroke5 {
  top: 52px;
  left: 190px;
}
@media only screen and (max-width: 1200px) {
  .about-revolution-section.revolution-section .img-stroke5 {
    top: 42px;
    left: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .about-revolution-section.revolution-section .img-stroke5 {
    top: 4px;
    left: 130px;
    width: 220px;
    height: auto;
  }
}
@media only screen and (max-width: 417px) {
  .about-revolution-section.revolution-section .img-stroke5 {
    left: 110px;
  }
}
@media only screen and (max-width: 360px) {
  .about-revolution-section.revolution-section .img-stroke5 {
    left: 0;
    top: 30px;
  }
}

.about-rc-section h2 {
  margin-bottom: var(--mb35);
}
.about-rc-section h2 span {
  color: var(--mx-blue);
}
.about-rc-section .container-fluid {
  row-gap: var(--mb35);
}
.about-rc-section .h1 {
  margin-bottom: 0;
}
.about-rc-section .text-dv > br {
  display: none;
}

.about-rc-mobile .retailers-mobile {
  margin-top: 0;
}
.about-rc-mobile .content {
  margin-bottom: var(--gutter);
}
.about-rc-mobile .content h2 {
  margin-bottom: var(--mb35);
}
.about-rc-mobile .content h2 span {
  color: var(--mx-blue);
}
.about-rc-mobile .consumer-mobile {
  margin-top: 40px;
}

.about-rc-inner {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 160px);
  margin-bottom: 75px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .about-rc-inner {
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .about-rc-inner {
    grid-template-rows: repeat(4, 170px);
    height: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .about-rc-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    margin-bottom: 0;
  }
}
.about-rc-inner .primary-user-card {
  height: 100%;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .about-rc-inner .primary-user-card {
    align-items: flex-end;
  }
}
.about-rc-inner .img-stroke3 {
  top: -110px;
  right: -80px;
  transform: rotate(90deg);
}
.about-rc-inner .img-stroke3_2 {
  display: none;
}
.about-rc-inner.for-retailers-inner .item1 {
  grid-column: 1/4;
  grid-row: 1;
}
@media only screen and (max-width: 1023px) {
  .about-rc-inner.for-retailers-inner .item1 {
    grid-column: 1;
  }
}
.about-rc-inner.for-retailers-inner .item2 {
  grid-column: 4/6;
  grid-row: 1/3;
}
.about-rc-inner.for-retailers-inner
  .item2.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-rc-inner.for-retailers-inner .item3 {
  grid-column: 6/9;
  grid-row: 1/3;
}
.about-rc-inner.for-retailers-inner
  .item3.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-rc-inner.for-retailers-inner .item4 {
  grid-column: 1/4;
  grid-row: 2/5;
}
.about-rc-inner.for-retailers-inner .item4 .primary-image-link {
  height: 100%;
}
.about-rc-inner.for-retailers-inner .item5 {
  grid-column: 4/7;
  grid-row: 3/5;
}
.about-rc-inner.for-retailers-inner
  .item5.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-rc-inner.for-retailers-inner .item6 {
  grid-column: 7/9;
  grid-row: 3/5;
}
.about-rc-inner.for-retailers-inner
  .item6.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-rc-inner .stretch-height {
  top: 0;
  height: 100%;
}

.about-consumers-inner {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 160px);
}
@media only screen and (max-width: 1200px) {
  .about-consumers-inner {
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .about-consumers-inner {
    grid-template-rows: repeat(4, 170px);
    height: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .about-consumers-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
.about-consumers-inner .img-stroke3_2 {
  display: none;
}
.about-consumers-inner .primary-user-card {
  height: 100%;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .about-consumers-inner .primary-user-card {
    align-items: center;
  }
}
.about-consumers-inner .stretch-height {
  top: 0;
  height: 100%;
}
.about-consumers-inner.for-consumers-inner .item1 {
  grid-column: 6/9;
  grid-row: 1;
}
@media only screen and (max-width: 1023px) {
  .about-consumers-inner.for-consumers-inner .item1 {
    grid-column: 1;
  }
}
.about-consumers-inner.for-consumers-inner .item2 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.about-consumers-inner.for-consumers-inner
  .item2.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-consumers-inner.for-consumers-inner .item3 {
  grid-column: 3/6;
  grid-row: 1/3;
}
.about-consumers-inner.for-consumers-inner
  .item3.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-consumers-inner.for-consumers-inner .item4 {
  grid-column: 6/9;
  grid-row: 2/5;
}
.about-consumers-inner.for-consumers-inner
  .item4.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-consumers-inner.for-consumers-inner .item5 {
  grid-column: 4/6;
  grid-row: 3/5;
}
.about-consumers-inner.for-consumers-inner
  .item5.primary-image-card
  .primary-image-link {
  height: 100%;
}
.about-consumers-inner.for-consumers-inner .item6 {
  grid-column: 1/4;
  grid-row: 3/5;
}
.about-consumers-inner.for-consumers-inner .item6 .primary-image-link {
  height: 100%;
}

@media only screen and (min-width: 568px) {
  .about-contact h2 .down-arrow,
  .page-about-us .contact-sec h2 .down-arrow,
  .page-about-us-duplicate .contact-sec h2 .down-arrow {
    top: 26px;
  }
}
@media only screen and (min-width: 768px) {
  .about-contact h2 .down-arrow,
  .page-about-us .contact-sec h2 .down-arrow,
  .page-about-us-duplicate .contact-sec h2 .down-arrow {
    top: 18px;
    left: 262px;
  }
}
@media only screen and (min-width: 1024px) {
  .about-contact h2 .down-arrow,
  .page-about-us .contact-sec h2 .down-arrow,
  .page-about-us-duplicate .contact-sec h2 .down-arrow {
    left: 263px;
    top: 5px;
  }
}
@media only screen and (min-width: 1201px) {
  .about-contact h2 .down-arrow,
  .page-about-us .contact-sec h2 .down-arrow,
  .page-about-us-duplicate .contact-sec h2 .down-arrow {
    top: 10px;
    width: 580px;
    left: 406px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-contact h2 .down-arrow,
  .page-about-us .contact-sec h2 .down-arrow,
  .page-about-us-duplicate .contact-sec h2 .down-arrow {
    top: -5px;
    width: 740px;
    left: 400px;
  }
}
@media only screen and (min-width: 1600px) {
  .about-contact h2 .down-arrow,
  .page-about-us .contact-sec h2 .down-arrow,
  .page-about-us-duplicate .contact-sec h2 .down-arrow {
    top: -22px;
    left: 401px;
    width: 900px;
  }
}

@media only screen and (min-width: 768px) {
  .page-retail-phygital-solutions .contact-sec h2 .down-arrow,
  .page-solutions-duplicate .contact-sec h2 .down-arrow {
    left: 333px;
    top: -18px;
    width: 310px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-retail-phygital-solutions .contact-sec h2 .down-arrow,
  .page-solutions-duplicate .contact-sec h2 .down-arrow {
    left: 362px;
    top: -35px;
    width: 440px;
  }
}
@media only screen and (min-width: 1201px) {
  .page-retail-phygital-solutions .contact-sec h2 .down-arrow,
  .page-solutions-duplicate .contact-sec h2 .down-arrow {
    left: 537px;
    width: 44vw;
    top: -47px;
  }
}
@media only screen and (min-width: 1800px) {
  .page-retail-phygital-solutions .contact-sec h2 .down-arrow,
  .page-solutions-duplicate .contact-sec h2 .down-arrow {
    top: -109px;
    left: 537px;
    width: 64vw;
  }
}
.page-retail-phygital-solutions .ceo-section .ceo-pic-mobile,
.page-solutions-duplicate .ceo-section .ceo-pic-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .page-retail-phygital-solutions .for-rc-mobile .content-dv,
  .page-solutions-duplicate .for-rc-mobile .content-dv {
    position: relative;
  }
}
@media (max-width: 1023px) {
  .page-retail-phygital-solutions .for-rc-mobile .img-stroke5,
  .page-solutions-duplicate .for-rc-mobile .img-stroke5 {
    width: 338px;
    height: auto;
    top: 45px;
    left: 8px;
  }
}
@media (max-width: 768px) {
  .page-retail-phygital-solutions
    .for-rc-mobile
    .solution-consumers-content
    .img-stroke8,
  .page-solutions-duplicate
    .for-rc-mobile
    .solution-consumers-content
    .img-stroke8 {
    left: 0;
  }
}
@media only screen and (min-width: 991px) {
  .page-retail-phygital-solutions .solution-blue-section .img-dv,
  .page-solutions-duplicate .solution-blue-section .img-dv {
    bottom: -9px;
  }
}
@media only screen and (max-width: 991px) {
  .page-retail-phygital-solutions .solution-update-section,
  .page-solutions-duplicate .solution-update-section {
    padding-bottom: calc(var(--gutter70) + 120px);
  }
}
@media only screen and (max-width: 991px) {
  .page-retail-phygital-solutions .solution-update-section .desc-global,
  .page-solutions-duplicate .solution-update-section .desc-global {
    margin-bottom: 0;
  }
}
.page-retail-phygital-solutions .solution-update-section .container-fluid,
.page-solutions-duplicate .solution-update-section .container-fluid {
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  .page-retail-phygital-solutions .solution-update-section .container-fluid,
  .page-solutions-duplicate .solution-update-section .container-fluid {
    padding-right: var(--gutter70);
  }
}
.page-retail-phygital-solutions .solution-update-section .swiper-scrollbar,
.page-solutions-duplicate .solution-update-section .swiper-scrollbar {
  width: calc(100% - var(--gutter70));
}
@media (max-width: 768px) {
  .page-retail-phygital-solutions .solution-update-section .swiper-scrollbar,
  .page-solutions-duplicate .solution-update-section .swiper-scrollbar {
    width: 100%;
  }
}
.page-retail-phygital-solutions .solution-update-section .update-inner,
.page-solutions-duplicate .solution-update-section .update-inner {
  grid-template-columns: calc(40% - var(--gutter) / 2) calc(
      60% - var(--gutter) / 2
    );
}
@media only screen and (max-width: 991px) {
  .page-retail-phygital-solutions .solution-update-section .update-inner,
  .page-solutions-duplicate .solution-update-section .update-inner {
    grid-template-columns: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .page-retail-phygital-solutions
    .solution-update-section
    .update-inner
    .content-dv,
  .page-solutions-duplicate .solution-update-section .update-inner .content-dv {
    position: static;
  }
}
@media only screen and (max-width: 991px) {
  .page-retail-phygital-solutions
    .solution-update-section
    .update-inner
    .btn-dv,
  .page-solutions-duplicate .solution-update-section .update-inner .btn-dv {
    bottom: var(--p70);
    left: var(--gutter70);
  }
}
@media only screen and (max-width: 567px) {
  .page-retail-phygital-solutions
    .solution-update-section
    .update-inner
    .btn-dv,
  .page-solutions-duplicate .solution-update-section .update-inner .btn-dv {
    width: calc(100% - 2 * var(--gutter70));
    left: 0;
    right: 0;
  }
}
.page-retail-phygital-solutions .solution-update-section .content-dv,
.page-solutions-duplicate .solution-update-section .content-dv {
  max-width: 600px;
}
.page-retail-phygital-solutions .solution-update-section .img-stroke8,
.page-solutions-duplicate .solution-update-section .img-stroke8 {
  top: 54px;
  left: 155px;
  width: 300px;
}
@media only screen and (max-width: 1024px) {
  .page-retail-phygital-solutions .solution-update-section .img-stroke8,
  .page-solutions-duplicate .solution-update-section .img-stroke8 {
    top: 0;
    left: 65px;
    width: 220px;
  }
}

.page-about-us .update-section,
.page-about-us-duplicate .update-section {
  background: var(--mx-grey);
  padding: var(--p70) 0;
}
.page-about-us .update-section h2,
.page-about-us-duplicate .update-section h2 {
  color: var(--mx-blue);
}
.page-about-us .update-section h2 strong,
.page-about-us-duplicate .update-section h2 strong {
  color: var(--black);
}
.page-about-us .update-section .container-fluid,
.page-about-us-duplicate .update-section .container-fluid {
  padding-right: 0;
}
@media (max-width: 991px) {
  .page-about-us .update-section .container-fluid,
  .page-about-us-duplicate .update-section .container-fluid {
    padding-right: var(--gutter70);
  }
}
.page-about-us .update-section .swiper-scrollbar,
.page-about-us-duplicate .update-section .swiper-scrollbar {
  background: #d9d9d9;
}
.page-about-us .update-section .update-inner,
.page-about-us-duplicate .update-section .update-inner {
  grid-template-columns: calc(35% - var(--gutter) / 2) calc(
      65% - var(--gutter) / 2
    );
}
@media (max-width: 1460px) {
  .page-about-us .update-section .update-inner,
  .page-about-us-duplicate .update-section .update-inner {
    grid-template-columns: calc(38% - var(--gutter) / 2) calc(
        62% - var(--gutter) / 2
      );
  }
}
@media (max-width: 991px) {
  .page-about-us .update-section .update-inner,
  .page-about-us-duplicate .update-section .update-inner {
    grid-template-columns: 100%;
  }
}
.page-about-us .update-section .update-inner .content-dv,
.page-about-us-duplicate .update-section .update-inner .content-dv {
  max-width: 550px;
}
@media (max-width: 991px) {
  .page-about-us .update-section .update-inner .content-dv h2,
  .page-about-us-duplicate .update-section .update-inner .content-dv h2 {
    max-width: 300px;
  }
}
.page-about-us .update-section .update-inner .content-dv p,
.page-about-us-duplicate .update-section .update-inner .content-dv p {
  margin-bottom: 20px;
}
.page-about-us
  .update-section
  .update-inner
  .primary-image-card
  .primary-image-link,
.page-about-us-duplicate
  .update-section
  .update-inner
  .primary-image-card
  .primary-image-link {
  height: 340px;
}
@media only screen and (max-width: 1200px) {
  .page-about-us
    .update-section
    .update-inner
    .primary-image-card
    .primary-image-link,
  .page-about-us-duplicate
    .update-section
    .update-inner
    .primary-image-card
    .primary-image-link {
    height: 340px;
  }
}
@media only screen and (max-width: 767px) {
  .page-about-us
    .update-section
    .update-inner
    .primary-image-card
    .primary-image-link,
  .page-about-us-duplicate
    .update-section
    .update-inner
    .primary-image-card
    .primary-image-link {
    height: 400px;
  }
}
.page-about-us .update-section .img-stroke8,
.page-about-us-duplicate .update-section .img-stroke8 {
  width: 188px;
  height: 105px;
  left: 270px;
  top: auto;
  right: 0;
  bottom: -31px;
}
@media only screen and (max-width: 1352px) {
  .page-about-us .update-section .img-stroke8,
  .page-about-us-duplicate .update-section .img-stroke8 {
    width: 148px;
    height: 65px;
    right: auto;
    left: 149px;
    bottom: -11px;
  }
}
@media only screen and (max-width: 1200px) {
  .page-about-us .update-section .img-stroke8,
  .page-about-us-duplicate .update-section .img-stroke8 {
    left: 99px;
    bottom: -21px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-about-us .update-section .img-stroke8,
  .page-about-us-duplicate .update-section .img-stroke8 {
    left: 179px;
    width: 100px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .page-about-us .update-section .img-stroke8,
  .page-about-us-duplicate .update-section .img-stroke8 {
    left: 100px;
  }
}
.page-about-us .update-section .img-stroke8 img,
.page-about-us-duplicate .update-section .img-stroke8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-about-us .innovate-with-us .inner-grid,
.page-about-us-duplicate .innovate-with-us .inner-grid {
  gap: var(--gutter);
}
@media only screen and (max-width: 768px) {
  .page-about-us .innovate-with-us .img-dv picture,
  .page-about-us-duplicate .innovate-with-us .img-dv picture {
    width: auto;
  }
}
.page-about-us .about-choose-section .card-slider-root,
.page-about-us-duplicate .about-choose-section .card-slider-root {
  width: 100%;
}
.page-about-us .about-choose-section h2 br,
.page-about-us-duplicate .about-choose-section h2 br {
  display: none;
}
.page-about-us .about-choose-section h2 strong,
.page-about-us-duplicate .about-choose-section h2 strong {
  display: block;
}
.page-about-us .about-choose-section .container-fluid,
.page-about-us-duplicate .about-choose-section .container-fluid {
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  .page-about-us .about-choose-section .container-fluid,
  .page-about-us-duplicate .about-choose-section .container-fluid {
    padding-left: var(--gutter70);
    padding-right: var(--gutter70);
  }
}
.page-about-us .about-choose-section .content-dv,
.page-about-us-duplicate .about-choose-section .content-dv {
  padding-left: var(--gutter70);
  max-width: 545px;
}
@media only screen and (max-width: 1023px) {
  .page-about-us .about-choose-section .content-dv,
  .page-about-us-duplicate .about-choose-section .content-dv {
    padding-left: 0;
  }
}
.page-about-us .about-choose-section .content-dv .img-stroke7,
.page-about-us-duplicate .about-choose-section .content-dv .img-stroke7 {
  left: 290px;
}
@media only screen and (max-width: 1200px) {
  .page-about-us .about-choose-section .content-dv .img-stroke7,
  .page-about-us-duplicate .about-choose-section .content-dv .img-stroke7 {
    left: 190px;
  }
}
@media only screen and (max-width: 768px) {
  .page-about-us .about-choose-section .content-dv .img-stroke7,
  .page-about-us-duplicate .about-choose-section .content-dv .img-stroke7 {
    left: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .page-about-us .about-choose-section .content-dv .img-stroke7,
  .page-about-us-duplicate .about-choose-section .content-dv .img-stroke7 {
    left: 201px;
  }
}

.revolution-section {
  padding: var(--p70) 0;
  position: relative;
  overflow: hidden;
}
.revolution-section .revolution-inner {
  display: grid;
  width: 100%;
  gap: var(--gutter);
}
.revolution-section .img-stroke4 {
  transform: rotate(-30deg);
  bottom: -540px;
  right: -30px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .revolution-section .img-stroke4 {
    bottom: -360px;
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .revolution-section .img-stroke4 {
    transform: rotate(272deg);
    bottom: -100px;
    right: -50px;
    max-width: 210px;
    top: auto;
    height: auto;
  }
}
.revolution-section .img-stroke5 {
  top: 48px;
  left: 40px;
  width: 320px;
  height: 80px;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .revolution-section .img-stroke5 {
    top: 42px;
    width: 240px;
    height: 40px;
  }
}
@media (max-width: 1024px) {
  .revolution-section .img-stroke5 {
    top: 42px;
    width: 210px;
    height: 50px;
    left: -20px;
  }
}
@media (max-width: 767px) {
  .revolution-section .img-stroke5 {
    top: 37px;
    width: 260px;
    height: 60px;
    left: -30px;
  }
}
.revolution-section .content-dv {
  position: relative;
}
.revolution-section .desc-dv p {
  margin-bottom: 20px;
}
.revolution-section .desc-dv p:last-child {
  margin-bottom: 0;
}
.revolution-section .more-text {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .career-revolution-section .read-more {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .career-revolution-section .more-text {
    display: block;
  }
}

.no-apply-desktop-more .more-text {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .no-apply-desktop-more .more-text {
    display: block;
    margin-bottom: 20px;
  }
  .no-apply-desktop-more .read-more {
    display: none;
  }
}
.why-choose-section .core-values .content-dv .img-stroke7 {
  width: 210px;
  left: 300px;
}
@media (max-width: 1500px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    width: 170px;
    left: 322px;
  }
}
@media (max-width: 1366px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    width: 130px;
    left: 348px;
  }
}
@media (max-width: 1200px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    right: auto;
    height: 70px;
    top: 53px;
    left: 40px;
    width: 140px;
  }
}
@media (max-width: 991px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    right: auto;
    left: 110px;
    height: 60px;
    top: 38px;
    transform: rotate(6deg);
    width: 100px;
  }
}
@media (max-width: 768px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    top: 5px;
    left: 245px;
  }
}
@media (max-width: 567px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    top: 6px;
    left: 244px;
  }
}
@media (max-width: 365px) {
  .why-choose-section .core-values .content-dv .img-stroke7 {
    top: -34px;
    left: 160px;
    transform: rotate(-20deg);
  }
}
@media only screen and (max-width: 991px) {
  .why-choose-section .core-values .content-dv .img-stroke7 .desk {
    display: none;
  }
}
.why-choose-section .core-values .content-dv .img-stroke7 .mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .why-choose-section .core-values .content-dv .img-stroke7 .mobile {
    display: block;
  }
}
.why-choose-section .core-values .swiper-slide {
  height: auto;
  min-height: 100%;
}
@media (min-width: 1200px) and (max-width: 1700px) {
  .why-choose-section .stories-inner {
    grid-template-columns: calc(38% - var(--gutter) / 2) calc(
        62% - var(--gutter) / 2
      );
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .why-choose-section .core-values .content-dv {
    max-width: 385px;
  }
  .why-choose-section .core-values .content-dv .img-stroke7 {
    right: auto;
    top: 79px;
    left: 103px;
  }
}
@media (max-width: 1200px) {
  .why-choose-section .core-values .content-dv {
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .why-choose-section .core-values .content-dv {
    max-width: 100%;
  }
  .why-choose-section .stories-inner .btn-dv {
    margin-top: 20px;
  }
  .why-choose-section .stories-inner .content-dv h2 {
    margin-bottom: 20px;
  }
}

.culture-section {
  position: relative;
  padding: var(--p70) 0 0;
  overflow: hidden;
}
.culture-section .culture-inner {
  display: grid;
  row-gap: var(--gutter);
  position: relative;
}
.culture-section .primary-user-card h2 {
  font-size: var(--heading1);
  line-height: var(--headingLH1);
}
.culture-section .content-dv {
  position: relative;
}
@media (max-width: 400px) {
  .culture-section .content-dv {
    --heading2: 22px;
  }
}
.culture-section .content-dv .img-stroke6 {
  top: auto;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  left: 340px;
  width: 360px;
}
@media (max-width: 1200px) {
  .culture-section .content-dv .img-stroke6 {
    bottom: 21px;
    left: 230px;
    width: 240px;
  }
}
@media (max-width: 1024px) {
  .culture-section .content-dv .img-stroke6 {
    bottom: 13px;
    left: 250px;
    width: 210px;
  }
}
@media (max-width: 991px) {
  .culture-section .content-dv .img-stroke6 {
    bottom: 15px;
    left: 250px;
  }
}
@media (max-width: 767px) {
  .culture-section .content-dv .img-stroke6 {
    top: 45px;
    left: 0px;
    width: 300px;
    bottom: auto;
  }
}
@media (max-width: 567px) {
  .culture-section .content-dv .img-stroke6 {
    bottom: 42px;
    left: -10px;
    width: 300px;
  }
}
@media (max-width: 1200px) {
  .culture-section {
    --p35: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .primary-user-card {
    padding: var(--p35);
  }
}

.primary-grey-card {
  position: relative;
  --p35: 20px;
  padding: var(--p35);
  border-radius: 30px;
  background: var(--mx-grey);
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 270px;
  overflow: hidden;
}
.primary-grey-card.icon-text-card .img-dv {
  height: 100px;
  width: 100%;
}
.primary-grey-card.icon-text-card .img-dv img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .primary-grey-card.icon-text-card .img-dv {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .primary-grey-card.icon-text-card .img-dv {
    height: 110px;
  }
}
@media (max-width: 1200px) {
  .primary-grey-card {
    border-radius: 20px;
  }
}

.career-root {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: var(--gutter);
}
.career-root .primary-user-card {
  height: 230px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .career-root .primary-user-card {
    height: 260px;
  }
}
.career-root .primary-grey-card {
  height: 230px;
}
@media (max-width: 1024px) {
  .career-root .primary-grey-card {
    height: 260px;
  }
}
.career-root .primary-grey-card.icon-text-card .img-dv {
  margin-top: -30px;
}
@media (max-width: 1200px) {
  .career-root .primary-grey-card.icon-text-card .img-dv {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .career-root .primary-grey-card.icon-text-card .img-dv {
    margin-top: 0;
  }
}
.career-root .img-dv {
  pointer-events: none;
}
.career-root .text-dv {
  display: grid;
  row-gap: 5px;
  position: relative;
  z-index: 1;
}
.career-root .item1 {
  grid-column: span 3;
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item1 {
    grid-column: span 8;
  }
}
.career-root .item2 {
  grid-column: span 5;
  gap: var(--gutter);
}
.career-root .item2 .text-dv {
  flex: 1;
  max-width: 66%;
  display: grid;
  row-gap: var(--gutter);
}
@media (max-width: 1200px) {
  .career-root .item2 .text-dv {
    max-width: calc(100% - 250px) !important;
  }
}
@media (max-width: 767px) {
  .career-root .item2 .text-dv {
    max-width: 100% !important;
  }
}
.career-root .item2 .img-dv {
  position: absolute;
  height: calc(100% + 30px);
  top: -30px;
  right: 15px;
  pointer-events: none;
}
.career-root .item2 .img-dv img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .career-root .item2 .img-dv {
    max-width: 300px;
    top: -20px;
  }
}
@media (max-width: 767px) {
  .career-root .item2 .img-dv {
    height: auto;
    top: auto;
    bottom: 0;
    width: calc(100% + 10px);
    max-width: 370px;
    display: flex;
    max-height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item2 {
    grid-column: span 8;
  }
}
@media (max-width: 767px) {
  .career-root .item2 {
    padding-bottom: 320px;
  }
}
.career-root .item3 {
  grid-column: span 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item3 {
    grid-column: span 4;
  }
}
.career-root .item4 {
  grid-column: span 3;
  min-height: 230px;
}
.career-root .item4 .text-dv {
  max-width: 66%;
}
.career-root .item4 .img-dv {
  position: absolute;
  width: calc(100% + 50px);
  top: 20px;
  right: -12px;
  pointer-events: none;
  height: auto;
  margin-top: 0 !important;
}
.career-root .item4 .img-dv img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .career-root .item4 .img-dv {
    width: calc(100% + 150px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item4 {
    grid-column: span 4;
  }
}
.career-root .item5 {
  grid-column: span 3;
}
.career-root .item6 {
  grid-column: span 3;
}
.career-root .item6 .img-dv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.career-root .item6 .img-dv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .career-root .item6 .img-dv img {
    object-position: top;
  }
}
@media (max-width: 767px) {
  .career-root .item6 .img-dv {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(52deg);
  }
  .career-root .item6 .img-dv::before {
    content: "";
    background-color: #d5f301;
    width: 200px;
    height: 200px;
    display: flex;
    position: absolute;
    top: 120px;
    left: -130px;
    pointer-events: none;
  }
}
.career-root .item6 .text-dv {
  height: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 23%;
}
.career-root .item6 .text-dv .text-col-dv {
  display: grid;
  gap: 5px;
}
.career-root .item6 .text-dv .text-col-dv:nth-child(2) {
  margin-top: auto;
  max-width: 128px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .career-root .item6 .text-dv .text-col-dv:nth-child(2) {
    max-width: 200px;
  }
}
@media (max-width: 1200px) {
  .career-root .item6 .text-dv {
    gap: 28%;
  }
}
@media (max-width: 767px) {
  .career-root .item6 .text-dv {
    gap: 150px 0;
    grid-template-columns: 1fr;
  }
  .career-root .item6 .text-dv .text-col-dv {
    max-width: 200px;
  }
}
@media (max-width: 1200px) {
  .career-root .item6 {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item6 {
    grid-column: span 5;
  }
}
.career-root .item7 {
  grid-column: span 3;
}
.career-root .item7 .text-dv {
  max-width: 66%;
}
@media (max-width: 1200px) {
  .career-root .item7 .text-dv {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .career-root .item7 {
    grid-column: span 2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item7 {
    grid-column: span 4;
  }
}
.career-root .item8 {
  grid-column: span 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-root .item8 {
    grid-column: span 4;
  }
}
@media (max-width: 991px) {
  .career-root {
    --heading1: 36px;
    --headingLH1: 48px;
  }
  .career-root > *,
  .career-root > [class*="item"] {
    height: auto;
    border-radius: 20px;
    min-height: 220px;
  }
  .career-root > * .text-dv,
  .career-root > [class*="item"] .text-dv {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .career-root {
    grid-template-columns: 1fr;
    grid-gap: 15px 0;
  }
  .career-root > *,
  .career-root > [class*="item"] {
    grid-column: none;
    height: auto;
    border-radius: 20px;
  }
  .career-root > * .text-dv,
  .career-root > [class*="item"] .text-dv {
    width: 100%;
    max-width: 100%;
  }
}

.workplace-section {
  position: relative;
  padding: var(--p70) 0;
  overflow: hidden;
}
.workplace-section .workplace-inner {
  display: grid;
  row-gap: 30px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .workplace-section .workplace-inner {
    grid-template-columns: 100%;
  }
}
.workplace-section .workplace-inner .content-dv {
  position: relative;
}
.workplace-section .workplace-inner .content-dv .img-stroke6 {
  width: 330px;
  height: 100px;
  top: -35px;
  left: 300px;
}
.workplace-section .workplace-inner .content-dv .img-stroke6 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .workplace-section .workplace-inner .content-dv .img-stroke6 {
    width: 140px;
    height: 60px;
    top: -20px;
    left: 240px;
  }
}
@media (max-width: 767px) {
  .workplace-section .workplace-inner .content-dv .img-stroke6 {
    width: 170px;
    height: 80px;
    top: -10px;
    left: 180px;
  }
}
@media (max-width: 768px) {
  .workplace-section .primary-image-card .primary-image-link {
    min-height: 370px;
  }
}
@media (max-width: 1024px) {
  .workplace-section + .career-benefits-section {
    padding-top: 0;
  }
}

.workplace-root {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gutter);
  position: relative;
}
.workplace-root .item1 {
  grid-column: span 5;
}
.workplace-root .item2 {
  grid-column: span 3;
}
.workplace-root .item3 {
  grid-column: span 3;
}
.workplace-root .item4 {
  grid-column: span 5;
}

.career-benefits-section {
  background-color: var(--white);
}
@media (max-width: 768px) {
  .career-benefits-section {
    padding-bottom: calc(var(--p70) + 80px);
  }
}
@media (max-width: 991px) {
  .career-benefits-section .container-fluid {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .career-benefits-section .container-fluid {
    padding-right: var(--gutter70);
  }
}
.career-benefits-section .card-slider-root {
  width: 100%;
}
.career-benefits-section .primary-image-card .primary-image-link {
  min-height: 270px;
}
@media (max-width: 768px) {
  .career-benefits-section .primary-image-card .primary-image-link {
    min-height: 370px;
  }
}
@media (max-width: 1200px) {
  .career-benefits-section .primary-image-card .img-dv {
    z-index: -1;
  }
}
.career-benefits-section .swiper-progress-root .swiper-scrollbar {
  width: calc(100% - var(--gutter70));
}
@media (max-width: 768px) {
  .career-benefits-section .swiper-progress-root .swiper-scrollbar {
    width: 100%;
  }
}
.career-benefits-section .stories-inner {
  grid-template-columns: calc(25% - var(--gutter) / 2) calc(
      75% - var(--gutter) / 2
    );
}
@media only screen and (max-width: 768px) {
  .career-benefits-section .stories-inner {
    grid-template-columns: 100%;
  }
}
@media (min-width: 2000px) {
  .career-benefits-section .stories-inner {
    grid-template-columns: calc(20% - var(--gutter) / 2) calc(
        80% - var(--gutter) / 2
      );
    width: auto;
  }
}
.career-benefits-section .stories-inner .img-stroke4 {
  right: auto;
  left: -132px;
  bottom: -230px;
  width: 450px !important;
  height: 460px;
}
@media (max-width: 1200px) {
  .career-benefits-section .stories-inner .img-stroke4 {
    left: -90px;
    bottom: -180px;
    width: 300px !important;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .career-benefits-section .stories-inner .img-stroke4 {
    width: 188px !important;
    height: 188px;
    left: -30px;
    bottom: -120px;
    transform: rotate(0deg);
  }
}
.career-benefits-section .stories-inner .img-stroke8 {
  width: 100px;
  height: 100px;
  left: 175px;
  top: 122px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .career-benefits-section .stories-inner .img-stroke8 {
    width: 70px;
    height: 70px;
    left: 116px;
    top: 85px;
  }
}
@media (max-width: 767px) {
  .career-benefits-section .stories-inner .img-stroke8 {
    width: 60px;
    height: 60px;
    left: 286px;
    top: 20px;
  }
}
.career-benefits-section .stories-inner .content-dv {
  margin-top: 0;
}
@media (max-width: 767px) {
  .career-benefits-section .stories-inner .content-dv br:nth-child(1) {
    display: none;
  }
}
.career-benefits-section .card-slider-root .swiper {
  padding-top: 0;
}
@media (max-width: 767px) {
  .career-benefits-section {
    padding-bottom: 80px;
  }
}

.career-stories-team .container-fluid {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .career-stories-team .container-fluid {
    padding: 0 var(--gutter70);
  }
}
.career-stories-team .content-dv {
  padding-left: var(--gutter70);
}
@media only screen and (max-width: 768px) {
  .career-stories-team .content-dv {
    padding-left: 0;
  }
}
.career-stories-team .card-slider-root {
  width: 100%;
}
.career-stories-team .swiper-slide {
  min-height: 100%;
  height: auto;
}
.career-stories-team .content-dv {
  max-width: 395px;
}
@media only screen and (max-width: 567px) {
  .career-stories-team .content-dv h2 strong {
    display: block;
  }
}
.career-stories-team .content-dv .img-stroke7 {
  left: 105px;
  right: auto;
  top: 80px;
}
@media only screen and (max-width: 1200px) {
  .career-stories-team .content-dv .img-stroke7 {
    left: 185px;
    right: auto;
    top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .career-stories-team .content-dv .img-stroke7 {
    left: 155px;
  }
}
@media only screen and (max-width: 768px) {
  .career-stories-team .content-dv .img-stroke7 {
    left: 80px;
    top: 18px;
  }
}
@media only screen and (max-width: 567px) {
  .career-stories-team .content-dv .img-stroke7 {
    left: 178px;
    top: -13px;
    width: 150px;
    transform: rotate(-2deg);
  }
}
@media only screen and (max-width: 567px) {
  .career-stories-team .content-dv .img-stroke7 .desk {
    display: none;
  }
}
.career-stories-team .content-dv .img-stroke7 .mobile {
  display: none;
}
@media only screen and (max-width: 567px) {
  .career-stories-team .content-dv .img-stroke7 .mobile {
    display: block;
  }
}
.career-stories-team .stories-card {
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .career-stories-team .stories-card h3 {
    font-size: 18px;
  }
}

body .open-roles-section {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body .open-roles-section .content-dv {
    border: none;
    padding-right: 30px;
  }
}
@media (max-width: 380px) {
  body .open-roles-section .content-dv {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  body .open-roles-section .content-dv h2 br {
    display: none;
  }
}
body .open-roles-section h3.accordion-thumb {
  font-size: var(--heading1);
  line-height: var(--headingLH1);
}
@media (max-width: 767px) {
  body .open-roles-section h3.accordion-thumb {
    font-size: var(--heading2);
    line-height: var(--headingLH2);
  }
}
@media (max-width: 1200px) {
  body .open-roles-section .img-stroke-new2 {
    width: 200px;
    height: 85px;
    left: 345px;
    top: 33px;
  }
}
@media (max-width: 767px) {
  body .open-roles-section .img-stroke-new2 {
    width: 100px;
    height: 85px;
    top: -17px;
    right: 0;
    left: auto;
  }
}
@media (max-width: 380px) {
  body .open-roles-section .img-stroke-new2 {
    width: 100px;
    height: 85px;
    left: 40px;
    top: -47px;
    right: auto;
    transform: rotate(338deg);
  }
}

.accordion .accordion-panel .open-roles-bd-root {
  padding: 20px 0 0;
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(2, 1fr);
}
.accordion .accordion-panel .open-roles-bd-root .open-roles-col:nth-child(1) {
  grid-row: span 2;
}
.accordion .accordion-panel .open-roles-bd-root h3 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .accordion .accordion-panel .open-roles-bd-root h3 {
    margin-bottom: 20px;
  }
}
.accordion .accordion-panel .open-roles-bd-root ul {
  display: grid;
  row-gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .accordion .accordion-panel .open-roles-bd-root ul {
    row-gap: 10px;
  }
  .accordion .accordion-panel .open-roles-bd-root ul li::before {
    top: 12px;
  }
}
@media (max-width: 768px) {
  .accordion .accordion-panel .open-roles-bd-root {
    grid-template-columns: 100%;
  }
}

.page-careers .contact-sec h2 {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .page-careers .contact-sec h2 .down-arrow {
    left: 302px;
    top: -5px;
  }
}
@media only screen and (min-width: 1201px) {
  .page-careers .contact-sec h2 .down-arrow {
    top: 18px;
    width: 550px;
    left: 570px;
  }
}
@media only screen and (min-width: 1400px) {
  .page-careers .contact-sec h2 .down-arrow {
    top: -5px;
    width: 740px;
    left: 530px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-careers .contact-sec h2 .down-arrow {
    top: -22px;
    left: 529px;
    width: 900px;
  }
}
.page-careers .contact-sec h2 b {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .page-careers .inner-banner-section .inner-banner {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .inner-banner-section .inner-banner {
    padding-top: 140px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .page-careers .inner-banner-section .banner-img {
    width: 57%;
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .inner-banner-section .banner-img {
    max-height: initial;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-careers .inner-banner-section .banner-img {
    width: 75%;
  }
}
@media only screen and (max-width: 567px) {
  .page-careers .inner-banner-section .banner-img {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .inner-banner-section .banner-img img {
    max-height: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .page-careers .inner-banner-section .banner-img img {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  .page-careers .revolution-section .more-text {
    display: block;
  }
}
@media (min-width: 768px) {
  .page-careers .revolution-section .read-more {
    display: none;
  }
}
.page-careers .why-choose-section .container-fluid {
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  .page-careers .why-choose-section .container-fluid {
    padding: 0 var(--gutter70);
  }
}
.page-careers .why-choose-section .content-dv {
  padding-left: var(--gutter70);
}
@media only screen and (max-width: 1023px) {
  .page-careers .why-choose-section .content-dv {
    max-width: 100%;
    padding-left: 0;
  }
}
.page-careers .why-choose-section .content-dv .img-stroke7 {
  left: 370px;
  top: 36px;
}
@media only screen and (max-width: 1366px) {
  .page-careers .why-choose-section .content-dv .img-stroke7 {
    left: 400px;
  }
}
@media only screen and (max-width: 1200px) {
  .page-careers .why-choose-section .content-dv .img-stroke7 {
    left: 60px;
    top: 88px;
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .why-choose-section .content-dv .img-stroke7 {
    left: 245px;
    top: 5px;
  }
}
@media only screen and (max-width: 370px) {
  .page-careers .why-choose-section .content-dv .img-stroke7 {
    left: 178px;
    top: -30px;
    transform: rotate(-10deg);
  }
}
@media only screen and (max-width: 1024px) {
  .page-careers .why-choose-section .stories-card {
    min-height: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .page-careers .why-choose-section .stories-card {
    min-height: auto;
  }
}
.page-careers .why-choose-section .card-slider-root {
  width: 100%;
  padding-left: var(--gutter70);
}
@media only screen and (max-width: 1023px) {
  .page-careers .why-choose-section .card-slider-root {
    padding-left: 0;
  }
}
@media only screen and (max-width: 567px) {
  .page-careers .why-choose-section .navigation-dv {
    right: var(--gutter70);
  }
}
@media only screen and (max-width: 1200px) {
  .page-careers .why-choose-section .stories-inner {
    grid-template-columns: calc(37% - var(--gutter) / 2) calc(
        63% - var(--gutter) / 2
      );
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .why-choose-section .stories-inner {
    grid-template-columns: 100%;
  }
}
.page-careers .why-choose-section .stories-inner .btn-dv {
  margin-left: var(--gutter70);
}
@media only screen and (max-width: 1200px) {
  .page-careers .why-choose-section .stories-inner .btn-dv {
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .why-choose-section .stories-inner .btn-dv {
    margin-top: 30px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 567px) {
  .page-careers .why-choose-section .stories-inner .btn-dv {
    width: 100%;
    margin: 0 auto;
  }
}
.page-careers .card-sec {
  top: 29px;
}
.page-careers .career-section-testi h2 {
  color: var(--mx-blue);
  max-width: 402px;
}
.page-careers .career-section-testi h2 strong {
  color: var(--black);
}
.page-careers .career-section-testi h2 br {
  display: none;
}
.page-careers .career-section-testi .img-stroke7 {
  top: 80px;
  left: 180px;
}
@media only screen and (max-width: 1200px) {
  .page-careers .career-section-testi .img-stroke7 {
    top: 20px;
    left: 190px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-careers .career-section-testi .img-stroke7 {
    left: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .page-careers .career-section-testi .img-stroke7 {
    left: 70px;
  }
}

.faq {
  padding: var(--p70) 0;
  color: var(--white);
}
.faq .content-dv {
  margin-bottom: var(--mb35);
  position: relative;
}
.faq .img-stroke_s1 {
  width: 80px;
  height: 55px;
  position: absolute;
  left: 471px;
  top: 48px;
}
@media only screen and (max-width: 1200px) {
  .faq .img-stroke_s1 {
    width: 50px;
    height: 45px;
    left: 317px;
    top: 28px;
  }
}
@media only screen and (max-width: 360px) {
  .faq .img-stroke_s1 {
    height: 45px;
    left: 110px;
    top: 68px;
  }
}
.faq .img-stroke_s1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq #scroll-down {
  top: 50%;
  transform: translateY(-50%) rotate(0);
}

.accordion {
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .accordion {
    padding-top: var(--gutter);
  }
}
.accordion .accordion-item {
  border-bottom: 1px solid var(--white);
}
.accordion .accordion-item:first-child {
  border-top: 1px solid var(--white);
}
.accordion .accordion-item.is-active #scroll-down {
  transform: rotate(180deg);
}
.accordion .accordion-item:hover #scroll-down::before {
  -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}
.accordion .accordion-thumb {
  margin: 0;
  padding: 25px 35px 25px 0;
  cursor: pointer;
  font-weight: normal;
  position: relative;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.accordion .accordion-thumb:hover {
  color: var(--mx-yellow);
}
.accordion .accordion-panel {
  margin: 0;
  padding-bottom: 25px;
  display: none;
}
.accordion .accordion-panel p {
  margin-bottom: 5px;
}
.accordion .accordion-panel ul {
  margin-bottom: 20px;
}
.accordion .accordion-panel ul li {
  position: relative;
  padding-left: 15px;
  margin-left: 8px;
  font-weight: 400;
}
.accordion .accordion-panel ul li::before {
  content: "";
  background: var(--white);
  width: 3px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

#scroll-down {
  display: block;
  padding-top: 10px;
  text-align: center;
  position: absolute;
  right: 15px;
  top: 25px;
  transform: rotate(0);
}
#scroll-down::before {
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: 0;
  width: 2px;
  height: 20px;
  background: var(--mx-yellow);
  content: " ";
}
#scroll-down .arrow-down {
  display: block;
  margin: 0 auto;
  width: 8px;
  height: 10px;
}
#scroll-down .arrow-down:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--mx-yellow);
  border-right: 2px solid var(--mx-yellow);
  behavior: url(-ms-transform.htc);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@-moz-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@-o-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
.solution-leftright-sec {
  background: transparent;
  overflow: hidden;
  position: relative;
}
.solution-leftright-sec .img-stroke5-s {
  position: absolute;
  top: 99px;
  left: 110px;
  width: 320px;
  height: 100px;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 1200px) {
  .solution-leftright-sec .img-stroke5-s {
    top: 73px;
    left: 76px;
    width: 205px;
  }
}
@media only screen and (max-width: 767px) {
  .solution-leftright-sec .img-stroke5-s {
    top: 34px;
    left: 70px;
    width: 210px;
  }
}
.solution-leftright-sec .img-stroke4-s {
  position: absolute;
  right: -60px;
  bottom: -260px;
  width: 420px;
  height: 420px;
  transform: rotate(90deg);
  max-width: 100%;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .solution-leftright-sec .img-stroke4-s {
    display: none;
  }
}
.solution-leftright-sec .img-stroke4-s.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .solution-leftright-sec .img-stroke4-s.mobile {
    display: block;
    bottom: -80px;
    width: 130px;
    height: 130px;
    transform: rotate(0);
    right: -27px;
  }
}
.solution-leftright-sec .inner-grid {
  grid-template-columns: 3fr 5fr;
}
@media only screen and (max-width: 991px) {
  .solution-leftright-sec .inner-grid {
    grid-template-columns: 1fr;
  }
}
.solution-leftright-sec .grid-right {
  display: flex;
  flex-wrap: wrap;
  max-height: 500px;
  overflow: hidden;
  border-radius: 30px;
}
@media only screen and (max-width: 1200px) {
  .solution-leftright-sec .grid-right {
    max-height: 330px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-leftright-sec .grid-right {
    max-height: inherit;
    min-height: auto;
  }
}
@media only screen and (max-width: 567px) {
  .solution-leftright-sec .grid-right {
    max-height: 400px;
    min-height: 400px;
  }
}
.solution-leftright-sec .grid-right picture {
  display: flex;
}
.solution-leftright-sec .grid-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.solution-leftright-sec .grid-left {
  padding-right: 30px;
}
@media (max-width: 1700px) {
  .solution-leftright-sec .grid-left {
    padding-right: 25px;
  }
}
@media (max-width: 1200px) {
  .solution-leftright-sec .grid-left {
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .solution-leftright-sec .grid-left h2 strong br {
    display: none;
  }
  .solution-leftright-sec .grid-left .img-stroke5-s {
    top: 5px;
    left: 342px;
  }
}

.card-sec {
  padding: var(--p70) 0;
  background-color: var(--mx-grey);
  position: relative;
}
.card-sec .img-stroke-new1 {
  z-index: inherit;
  width: 290px;
  height: 140px;
  top: 39px;
  left: 5px;
}
@media only screen and (max-width: 1200px) {
  .card-sec .img-stroke-new1 {
    width: 140px;
    height: 80px;
    top: 49px;
    left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .card-sec .img-stroke-new1 {
    top: 29px;
  }
}
.card-sec h2 {
  margin-bottom: var(--mb35);
  position: relative;
}
.card-sec .card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 991px) {
  .card-sec .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .card-sec .card-grid {
    grid-template-columns: 1fr;
  }
}
.card-sec .card {
  align-items: flex-start;
  align-content: flex-start;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 1024px) {
  .card-sec .card {
    border-radius: 20px;
  }
}
.card-sec .card-img {
  width: 80px;
  height: 70px;
  object-fit: contain;
}
@media only screen and (max-width: 1500px) {
  .card-sec .card-img {
    width: 60px;
    height: 50px;
  }
}
.card-sec .card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

@media only screen and (max-width: 1024px) {
  .solution-card-sec .img-stroke-new1 {
    width: 170px;
    height: auto;
    top: 19px;
    left: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .solution-card-sec .img-stroke-new1 {
    width: 150px;
    top: 25px;
  }
}

.solution-rc-desktop .container-fluid {
  gap: 50px;
}
.solution-rc-desktop .content-dv {
  position: relative;
}
.solution-rc-desktop .img-stroke5 {
  top: 64px;
  left: 740px;
  width: 420px;
  height: 50px;
}
@media only screen and (max-width: 1235px) {
  .solution-rc-desktop .img-stroke5 {
    top: 224px;
    left: 60px;
    width: 260px;
    height: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .solution-rc-desktop .img-stroke5 {
    top: 46px;
    left: 490px;
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-rc-desktop .img-stroke5 {
    top: 84px;
    left: -20px;
    width: 180px;
  }
}

.solution-rc-inner {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 210px 235px 210px;
}
@media only screen and (max-width: 1200px) {
  .solution-rc-inner {
    grid-template-rows: 190px 190px 190px;
    height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .solution-rc-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .solution-rc-inner .primary-image-link {
    min-height: 100%;
    display: flex;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 1023px) {
  .solution-rc-inner .primary-image-link {
    min-height: 250px;
  }
}
.solution-rc-inner.for-retailers-inner .primary-user-card {
  height: 210px;
}
@media only screen and (max-width: 1200px) {
  .solution-rc-inner.for-retailers-inner .primary-user-card {
    height: 100%;
  }
}
.solution-rc-inner.for-retailers-inner .item1 {
  grid-column: 1/5;
  grid-row: 1;
}
@media only screen and (max-width: 1023px) {
  .solution-rc-inner.for-retailers-inner .item1 {
    grid-column: 1;
  }
}
.solution-rc-inner.for-retailers-inner .item2 {
  grid-column: 5/7;
  grid-row: 1/3;
}
.solution-rc-inner.for-retailers-inner
  .item2.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-rc-inner.for-retailers-inner .item3 {
  grid-column: 7/9;
  grid-row: 1/3;
}
.solution-rc-inner.for-retailers-inner
  .item3.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-rc-inner.for-retailers-inner .item4 {
  grid-column: 1/3;
  grid-row: 2/3;
}
.solution-rc-inner.for-retailers-inner
  .item4.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-rc-inner.for-retailers-inner .item5 {
  grid-column: 3/5;
  grid-row: 2/5;
}
.solution-rc-inner.for-retailers-inner
  .item5.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-rc-inner.for-retailers-inner .item6 {
  grid-column: 1/3;
  grid-row: 3/5;
}
.solution-rc-inner.for-retailers-inner
  .item6.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-rc-inner.for-retailers-inner .item7 {
  grid-column: 5/9;
  grid-row: 3/5;
}
.solution-rc-inner.for-retailers-inner
  .item7.primary-image-card
  .primary-image-link {
  height: 100%;
}

.solution-consumers-inner {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 210px 210px 210px;
}
@media only screen and (max-width: 1200px) {
  .solution-consumers-inner {
    grid-template-rows: 200px 200px 200px;
    height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .solution-consumers-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .solution-consumers-inner .primary-image-link {
    min-height: 100%;
    display: flex;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 1023px) {
  .solution-consumers-inner .primary-image-link {
    min-height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .solution-consumers-inner .primary-image-link .text-dv {
    --p35: 20px;
    bottom: 20px;
  }
}
.solution-consumers-inner.for-consumers-inner .primary-user-card {
  height: 210px;
}
@media only screen and (max-width: 1200px) {
  .solution-consumers-inner.for-consumers-inner .primary-user-card {
    height: 100%;
  }
}
.solution-consumers-inner.for-consumers-inner .item1 {
  grid-column: 5/9;
  grid-row: 1;
}
@media only screen and (max-width: 1023px) {
  .solution-consumers-inner.for-consumers-inner .item1 {
    grid-column: 1;
  }
}
.solution-consumers-inner.for-consumers-inner .item2 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.solution-consumers-inner.for-consumers-inner
  .item2.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-consumers-inner.for-consumers-inner .item3 {
  grid-column: 3/5;
  grid-row: 1/3;
}
.solution-consumers-inner.for-consumers-inner
  .item3.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-consumers-inner.for-consumers-inner .item4 {
  grid-column: 5/7;
  grid-row: 2/5;
}
.solution-consumers-inner.for-consumers-inner
  .item4.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-consumers-inner.for-consumers-inner .item5 {
  grid-column: 7/9;
  grid-row: 2/5;
}
.solution-consumers-inner.for-consumers-inner
  .item5.primary-image-card
  .primary-image-link {
  height: 100%;
}
.solution-consumers-inner.for-consumers-inner .item6 {
  grid-column: 1/5;
  grid-row: 3/5;
}
.solution-consumers-inner.for-consumers-inner
  .item6.primary-image-card
  .primary-image-link {
  height: 100%;
}

.solution-consumers-content {
  position: relative;
}
.solution-consumers-content .img-stroke8 {
  left: 360px;
  top: 63px;
  width: 420px;
  height: 50px;
}
@media only screen and (max-width: 1200px) {
  .solution-consumers-content .img-stroke8 {
    left: 230px;
    width: 300px;
    top: 47px;
  }
}

.solution-blue-section {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .solution-blue-section {
    padding: 60px 0;
  }
}
.solution-blue-section.blue-block-section .content-dv {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .solution-blue-section.blue-block-section .content-dv {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .solution-blue-section.blue-block-section .content-dv {
    padding: var(--mt35) 0 0;
  }
}
.solution-blue-section.blue-block-section .content-dv p {
  margin-bottom: var(--mb35);
}
.solution-blue-section .btn-dv {
  margin-top: 70px;
}
@media only screen and (max-width: 991px) {
  .solution-blue-section .btn-dv {
    margin-top: 30px;
  }
}
.solution-blue-section .img-dv {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .solution-blue-section .img-dv {
    position: relative;
    bottom: -9px;
  }
}
@media (max-width: 767px) {
  .solution-blue-section .img-dv {
    bottom: 0;
    justify-content: center;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .solution-blue-section .img-dv picture {
    justify-content: center;
  }
}
.solution-blue-section .img-dv img {
  max-width: 390px;
}
@media (max-width: 1024px) {
  .solution-blue-section .img-dv img {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .solution-blue-section .img-dv img {
    max-width: 300px;
  }
}

.solution-rc-mobile .content-dv {
  margin-bottom: var(--mb35);
  position: relative;
}
@media (max-width: 991px) {
  .solution-rc-mobile .img-stroke5 {
    top: 18px;
    left: 8px;
    width: 270px;
    height: 84px;
  }
}

.consumer-mobile-main {
  margin-top: var(--p70);
}
.consumer-mobile-main .consumer-mobile {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .consumer-mobile-main .img-stroke8 {
    top: 46px;
    left: -20px;
    width: 320px;
    height: auto;
  }
}

.solution-stories-section .container-fluid {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .solution-stories-section .container-fluid {
    padding: 0 var(--gutter70);
  }
}
.solution-stories-section .stories-card p {
  max-width: 100%;
}
.solution-stories-section .stories-inner {
  grid-template-columns: calc(40% - var(--gutter) / 2) calc(
      60% - var(--gutter) / 2
    );
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .solution-stories-section .stories-inner {
    grid-template-columns: calc(50% - var(--gutter) / 2) calc(
        50% - var(--gutter) / 2
      );
  }
}
@media only screen and (max-width: 991px) {
  .solution-stories-section .stories-inner {
    grid-template-columns: 100%;
  }
}
.solution-stories-section .stories-inner .card-slider-root {
  height: auto;
  width: 100%;
}
.solution-stories-section .content-dv {
  max-width: 600px;
  margin-top: 0;
  padding-left: var(--gutter70);
}
@media only screen and (max-width: 991px) {
  .solution-stories-section .content-dv {
    padding-left: 0;
    max-width: 100%;
  }
}
.solution-stories-section .content-dv .img-stroke7 {
  left: 385px;
  right: auto;
  top: 36px;
  width: 200px;
  height: 60px;
}
@media only screen and (max-width: 1200px) {
  .solution-stories-section .content-dv .img-stroke7 {
    left: 185px;
    top: 9px;
  }
}
@media only screen and (max-width: 991px) {
  .solution-stories-section .content-dv .img-stroke7 {
    left: 218px;
    top: 50px;
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-stories-section .content-dv .img-stroke7 {
    left: 185px;
    top: 20px;
    width: 140px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-stories-section .content-dv .img-stroke7 {
    left: 198px;
    top: 1px;
    width: 150px;
    transform: rotate(-2deg);
  }
}
.solution-stories-section .content-dv .img-stroke7 img {
  width: auto;
  height: auto;
  object-fit: inherit;
}
@media only screen and (max-width: 768px) {
  .solution-stories-section .content-dv .img-stroke7 .desk {
    display: none;
  }
}
.solution-stories-section .content-dv .img-stroke7 .mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .solution-stories-section .content-dv .img-stroke7 .mobile {
    display: block;
  }
}
.solution-stories-section .quotes-dv {
  width: 80px;
  height: 70px;
}
@media only screen and (max-width: 1500px) {
  .solution-stories-section .quotes-dv {
    width: 60px;
    height: 50px;
  }
}
.solution-stories-section .quotes-dv img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.solution-stories-section .text-content-dv h3 {
  font-size: var(--p);
  line-height: var(--pLH);
  font-weight: 700;
  min-height: calc((var(--pLH)) * 2);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solution-stories-section .swiper {
  height: 100%;
}
.solution-stories-section .swiper .swiper-slide {
  min-height: 100%;
  height: auto;
}

.solution-update-section .container-fluid {
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  .solution-update-section .container-fluid {
    padding-right: var(--gutter70);
  }
}
.solution-update-section .update-inner {
  grid-template-columns: calc(40% - var(--gutter) / 2) calc(
      60% - var(--gutter) / 2
    );
}
@media only screen and (max-width: 991px) {
  .solution-update-section .update-inner {
    grid-template-columns: 100%;
  }
}
.solution-update-section .content-dv {
  max-width: 600px;
}
.solution-update-section .img-stroke8 {
  top: 54px;
  left: 155px;
  width: 300px;
}
@media only screen and (max-width: 1024px) {
  .solution-update-section .img-stroke8 {
    top: 0;
    left: 65px;
    width: 220px;
  }
}

.rc-for-shape-root,
.solution-rc-desktop {
  position: relative;
  overflow: hidden;
}
.rc-for-shape-root .img-stroke3_2,
.solution-rc-desktop .img-stroke3_2 {
  transform: none;
  left: auto;
  bottom: -300px;
  right: -150px;
  width: 500px !important;
  height: 500px;
}
@media (max-width: 1700px) {
  .rc-for-shape-root .img-stroke3_2,
  .solution-rc-desktop .img-stroke3_2 {
    bottom: -240px;
  }
}
@media (max-width: 1200px) {
  .rc-for-shape-root .img-stroke3_2,
  .solution-rc-desktop .img-stroke3_2 {
    width: 270px !important;
    height: 270px;
    bottom: -170px;
    right: -60px;
  }
}
@media (max-width: 767px) {
  .rc-for-shape-root .img-stroke3_2,
  .solution-rc-desktop .img-stroke3_2 {
    display: none;
  }
}
.rc-for-shape-root .solution-rc-inner,
.solution-rc-desktop .solution-rc-inner {
  position: relative;
}

.solution-consumers-inner .img-stroke3_3,
.solution-consumers-inner .img-stroke3_2 {
  display: none;
}

.image-slider-section {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .image-slider-section .swiper-pagination-dots {
    bottom: 15px !important;
  }
  .image-slider-section .swiper-pagination-dots .swiper-pagination-bullet {
    height: 4px;
    min-width: 52px;
    margin: 0 2px !important;
  }
}

.image-slider-swiper {
  width: 100%;
  position: relative;
}

.blg-cnt-image-dv {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blg-cnt-image-dv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #074bb6 8%, rgba(7, 75, 182, 0) 66%);
  opacity: 0.7;
}
@media (max-width: 767px) {
  .blg-cnt-image-dv::before {
    background: linear-gradient(
      329deg,
      #074bb6 8.73%,
      rgba(7, 75, 182, 0) 66.6%
    );
  }
}
.blg-cnt-image-dv .overlay-img-dv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: -1;
}
.blg-cnt-image-dv .overlay-img-dv picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blg-cnt-image-dv .overlay-img-dv picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blg-cnt-image-dv .blog-cnt-link-card {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.blg-cnt-image-dv .blog-cnt-link-card .swiper-btn-arrow {
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  bottom: var(--p70);
}
@media (max-width: 767px) {
  .blg-cnt-image-dv .blog-cnt-link-card .swiper-btn-arrow {
    display: none;
  }
}
.blg-cnt-image-dv .blog-cnt-link-inner-card {
  display: grid;
  padding: var(--p70) 100px var(--p70) 0;
  position: relative;
  gap: var(--gutter);
}
@media (max-width: 767px) {
  .blg-cnt-image-dv .blog-cnt-link-inner-card {
    padding: 0 0 40px;
  }
}
.blg-cnt-image-dv .blog-cnt-link-inner-card .text-dv p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .blg-cnt-image-dv {
    min-height: calc(100vh - 80px);
  }
}

.blog-collection-section {
  position: relative;
  overflow: hidden;
  padding: var(--p70) 0;
}
.blog-collection-section .blog-collection-inner {
  position: relative;
}
.blog-collection-section .content-dv {
  position: relative;
  margin-bottom: 50px;
}
.blog-collection-section .content-dv .img-stroke6 {
  top: 10px;
  left: 70px;
  width: 240px;
}
@media (max-width: 1200px) {
  .blog-collection-section .content-dv .img-stroke6 {
    top: 3px;
    left: -20px;
    width: 210px;
  }
}
.blog-collection-section .top_right_stroke {
  top: -470px;
  right: -200px;
  transform: rotate(180deg);
}
@media (max-width: 1200px) {
  .blog-collection-section .top_right_stroke {
    display: none;
  }
}
.blog-collection-section .bottom_left_stroke {
  top: auto;
  right: auto;
  bottom: -410px;
  left: -200px;
  transform: rotate(0);
}
@media (max-width: 1200px) {
  .blog-collection-section .bottom_left_stroke {
    display: none;
  }
}

.blog-collection-root {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .blog-collection-root {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}

.blog-collection-card {
  width: 100%;
  border-radius: 30px;
  overflow-y: hidden;
  background-color: var(--mx-blue);
}
.blog-collection-card .img-sec {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.blog-collection-card .img-sec picture {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.blog-collection-card .img-sec picture img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1600px) {
  .blog-collection-card .img-sec picture img {
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .blog-collection-card .img-sec picture img {
    height: 240px;
  }
}
.blog-collection-card .content-sec {
  padding: 30px var(--p35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--gutter);
}
.blog-collection-card .content-sec h3 {
  flex: 1;
}
@media (max-width: 767px) {
  .blog-collection-card .content-sec {
    padding: 10px 15px;
  }
}
.blog-collection-card .blog-collection-link {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.blog-collection-card .blog-collection-link .icon {
  transition: 0.3s ease-in-out;
  width: 15px;
  object-fit: contain;
}
.blog-collection-card .blog-collection-link:hover .icon {
  transform: translateX(10px);
}
@media (max-width: 767px) {
  .blog-collection-card {
    border-radius: 20px;
  }
}

.btn-center-dv {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.static-banner-section .blg-cnt-image-dv::before {
  z-index: 1;
}
.static-banner-section .blg-cnt-image-dv .blog-cnt-link-inner-card {
  padding: var(--p70) 0;
}
.static-banner-section .blg-cnt-image-dv .overlay-img-dv {
  z-index: 0;
}
.static-banner-section .readtime-list {
  display: flex;
  flex-wrap: wrap;
  color: var(--white);
  gap: 20px;
}
.static-banner-section .readtime-list li {
  position: relative;
}
.static-banner-section .readtime-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 16px;
  left: -10px;
  background-color: var(--white);
  transform: translateY(-50%);
}

.blog-content-section {
  padding: var(--p70) 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.blog-content-section .img-stroke2 {
  position: absolute;
  width: 450px;
  height: 450px;
  right: 0;
  bottom: -337px;
  transform: rotate(354deg);
}
@media only screen and (max-width: 991px) {
  .blog-content-section .img-stroke2 {
    width: 330px;
    height: 330px;
    bottom: -237px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-content-section .img-stroke2 {
    width: 190px;
    height: 190px;
    bottom: -110px;
  }
}

.blog-user-col {
  display: grid;
  grid-template-columns: 60px calc(100% - 80px);
  gap: var(--gutter30);
  align-items: center;
  align-content: center;
}
.blog-user-col .img-user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
  background: #eee;
  padding: 5px;
}
@media (max-width: 767px) {
  .blog-user-col {
    grid-template-columns: 60px calc(100% - 65px);
    gap: 15px;
  }
}

.blog-user-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 50px;
}
@media (max-width: 1200px) {
  .blog-user-info {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-user-info {
    align-items: center;
  }
}

.custom-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: var(--mx-black);
  text-align: left;
  list-style: none;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
.dropdown-menu.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.dropdown-menu ul li {
  width: 100%;
}

.custom-share-dropdown .dropdown-menu {
  min-width: 68px;
}
.custom-share-dropdown .dropdown-menu ul li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-share-dropdown .dropdown-menu ul li .flipcard {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.custom-share-dropdown .dropdown-menu ul li .card-scl {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.custom-share-dropdown .dropdown-menu ul li .card-scl img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.custom-share-dropdown .dropdown-menu ul li .card-scl.front {
  background: rgba(255, 255, 255, 0);
}
.custom-share-dropdown .dropdown-menu ul li .card-scl.back {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, 0);
}
.custom-share-dropdown .dropdown-menu ul li .dropdown-item-link {
  position: relative;
  width: 100%;
  height: 62px;
  perspective: 1000px;
  display: flex;
  padding: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .custom-share-dropdown .dropdown-menu ul li .dropdown-item-link {
    padding: 8px;
    height: 42px;
  }
}
.custom-share-dropdown
  .dropdown-menu
  ul
  li
  .dropdown-item-link:hover
  .flipcard {
  transform: rotateY(180deg);
}
@media (max-width: 1200px) {
  .custom-share-dropdown .dropdown-menu {
    min-width: 48px;
    border-radius: 12px;
  }
}
@media (max-width: 1200px) {
  .custom-share-dropdown .btn-ico-cst {
    min-width: 28px;
    height: 28px;
    padding: 3px;
    border-radius: 6px;
  }
  .custom-share-dropdown .btn-ico-cst svg.share-svg {
    width: 21px;
    height: 21px;
    padding: 0 2px 0 0;
  }
}

.similar-blogs-section .content-sec {
  justify-content: space-between;
}

.page-blog .image-slider-section,
.single-post .image-slider-section {
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .page-blog .image-slider-section,
  .single-post .image-slider-section {
    margin-top: 80px;
  }
}

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