@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400&family=Manrope:wght@200;300;400;800&display=swap');  @font-face {
    font-family: Manrope;
  font-weight: normal;
  font-style: normal;
}

h3,p {
  font-family: Inconsolata, Arial, sans-serif;
}

h4, h5,
button {
  font-family: Manrope, Arial, sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

p {
  font-size: 18px;
}

main {
  margin: 0 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
}

:root {
  --ratio: 0.75;
  --grid-item-width: 20vw;
  --color-text: #000;
  --color-bg: hsl(0, 0%, 100%);
  --color-text-alt: hsl(1deg 69% 50%);
  --color-link: #000;
  --color-link-hover: #000;
  --svgHeight: calc(100vh/6.4);
  --radius: 8px;
  --gap: 2.5vw;
}

.fade-img {
  background: radial-gradient(circle, rgba(0,31,119,0.8113620448179272) 0%, rgba(71,183,123,0) 100%);
}

.shadows1{
  width: 1px; height: 1px; border-radius: 100%;
  --shadow-spread: 100px;
  --shadow-blur: 290px;
  box-shadow: 60px 100px var(--shadow-blur) var(--shadow-spread) rgba(0,31,119,1);
  -webkit-box-shadow: 60px 100px var(--shadow-blur) var(--shadow-spread) rgba(0,31,119,1);
  -moz-box-shadow: 60px 100px var(--shadow-blur) var(--shadow-spread) rgba(0,31,119,1);
}

.shadows2{
  width: 1px; height: 1px; border-radius: 100%;
  --shadow-spread: 100px;
  --shadow-blur: 290px;
  box-shadow: 60px 100px var(--shadow-blur) var(--shadow-spread) #a3ceff;
  -webkit-box-shadow: 60px 100px var(--shadow-blur) var(--shadow-spread) #a3ceff;
  -moz-box-shadow: 60px 100px var(--shadow-blur) var(--shadow-spread) #a3ceff;
}

.background-img{
  padding: 30px 60px;
  background-size: 90%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat ;
}

.gradient {
  background: linear-gradient(0deg, #45b77b, #0a82c5);
  color: #fff;
}
.gradient1 {
  background: linear-gradient(170deg, #45b77b, #0a82c5);
  color: #fff;
}
.gradient2 {
  background: linear-gradient(120deg, #45b77b, #0a82c5);
  color: #fff;
}

.glass{
  background: rgba(12, 12, 12, 0.35);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/*
background: rgba(12, 12, 12, 0.35);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
*/

.svgs{
  height: var(--svgHeight);
}

/* Page Loader */
#remove-after-load {
  z-index: 1000;
  position: fixed;
  margin: 24vh 24.5vw;
  /*min-height:100vh;*/
  min-height: 52vh;
  min-width: 51vw;
}

.icon{
  cursor: pointer;
  border-radius: 100%;
  color: white;
  padding: 19px 19px;
  border: 1px solid rgba(255,255,255,0.31);
  transition: border-color 0.2s linear;
  font-size: 15px;
}

.icon:hover {
  border-color: white;
}

.loading {
  opacity: 0;
}

.section {
  line-height: 1;
  position: static;
  top: 0;
  z-index: 4;
  width: 100%;
  min-height: 100vh;
  background: var(--color-bg);
}

.offset {
  margin-bottom: 450vh;
}

.end {
  margin-bottom: 100vh;
}

.section--intro {
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.receipt {
  --grid-item-height: calc(var(--grid-item-width) * var(--ratio));
  width: calc(var(--grid-item-width) * 0.75);
  height: var(--grid-item-height);
  position: absolute;
  overflow: visible;
  border-radius: var(--radius);
  margin: calc(45vh - var(--grid-item-height) / 2) 0 0
    calc(55vw - var(--grid-item-width) / 2);
  z-index: 1;
  will-change: transform, filter;
}

.receipt > img {
}

.r-img1 {
  width: var(--grid-item-width);
}

.r-img2 {
  width: var(--grid-item-width);
}

.r-img3 {
  width: var(--grid-item-width);
}

.r-img4 {
  height: 200%;
  width: auto;
}

.hand-phone {
  --hand-phone-width: calc(var(--grid-item-width) * 1.5);
  --hand-phone-height: 80vh;
  width: var(--hand-phone-width);
  height: var(--hand-phone-height);
  margin-top: 20vh;
  margin-left: calc(60vw - var(--hand-phone-width) / 2);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}

.phone{
  --hand-phone-width: calc(var(--grid-item-width) * 1.5);
  --hand-phone-height: 92vh;
  width: var(--hand-phone-width);
  height: var(--hand-phone-height);
  margin-left:calc((100vw - var(--hand-phone-width))/2);
  margin-top: -2vh;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.hero-consumers-header{
  font-family: 'Inconsolata', monospace;
  font-size: 38px;
  text-transform: uppercase;
  color: rgba(21, 20, 24, 0.6);
  text-align: center;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 4px;
}

.hero-consumers-subheader{
  color: #151418;
  font-family: 'Manrope', monospace;
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
  text-align: center;
  letter-spacing: -2px;
}

.text-anim{
}

.sub-title {
  width: 300px;
  height: 40px;
}

.sub-title1 {
  width: 267px;
  height: 46px;
}

.sub-title2 {
  width: 293px;
  height: 46px;
}

.sub-title-container {
  margin-bottom: 40px;
  padding: 40px 0px 0px 0px;
  display: flex;
}

.sub-title-offset {
  width: 75px;
  height: 39px;
  margin-right: 10px;
}

.line1 {
  background-color: #fff;
  height: 3px;
  margin-left: 35px;
  width: calc(100vw - 455px);
}

.line2 {
  background-color: #fff;
  height: 6px;
  width: 100%;
}

.intro-text {
  margin-left: 3vw;
  position: absolute;
  margin-top: 26vh;
  width: 40vw;
  height: 30vh;
}

.intro-text > p {
  background: linear-gradient(
    to right,
    rgba(12, 123, 232, 0.81) 50%,
    rgba(220, 224, 247, 0.89) 50%
  );
  background-size: 200% 100%;
  background-position-x: 100%;
  font-family: Manrope, Arial, sans-serif;
  font-size: 65px;
  font-weight: 800;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  margin-bottom: -5px;
  margin-left: 50px;
  line-height: 1.2;
  /*   outline: 6px dotted teal; */
}

.z5 {
  z-index: 5;
}

.hp1 {
  z-index: 4;
}

.hp2 {
  z-index: 3;
}

.hp3 {
  z-index: 2;
}

.hp4 {
  z-index: 1;
}

.background-img > p {
  font-weight: 400;
}

.background-img > h5 {
  font-weight: 800;
}

.bt-download {
  transition: transform 0.2s ease-in-out;
}

.bt-download:hover {
  transform: scale(1.1);
  cursor: pointer;
}

  .btn-cs {
    position:relative;
    z-index:1;
    background: #1ad6fd;
    background-image: -webkit-linear-gradient(top, #1ad6fd, #1d62f0);
    background-image: -moz-linear-gradient(top, #1ad6fd, #1d62f0);
    background-image: -ms-linear-gradient(top, #1ad6fd, #1d62f0);
    background-image: -o-linear-gradient(top, #1ad6fd, #1d62f0);
    background-image: linear-gradient(to bottom, #1ad6fd, #1d62f0);
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    -webkit-box-shadow: 0px 5px 35px #5ac8fa;
    -moz-box-shadow: 0px 5px 35px #5ac8fa;
    box-shadow: 0px 5px 35px #5ac8fa;
    color: #ffffff;
    font-size: 15px;
    padding: 10px 45px 10px 45px;
    border: none;

  }

  .btn-cs::before{
    position:absolute;
    border-radius: 28px;
    background-image: -webkit-linear-gradient(top, #1ad6fd, #1ad6fd);
    background-image: -moz-linear-gradient(top, #1ad6fd, #1ad6fd);
    background-image: -ms-linear-gradient(top, #1ad6fd, #1ad6fd);
    background-image: -o-linear-gradient(top, #1ad6fd, #1ad6fd);
    background-image: linear-gradient(to bottom, #1ad6fd, #1ad6fd);
    transition: opacity 0.2s linear;
    opacity: 0;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .btn-cs:hover::before {
    opacity:1;
  }

  .btn-cs2 {
    margin-left: 17px;
    padding: 10px 45px 10px 45px;
    color: #ffffff;
    border-radius: 28px;
    background: transparent;
    border: 1px solid transparent;
    font-size: 15px;
    transition: border-color 0.2s linear;
  }

  .btn-cs2:hover{
    border-color: rgba(255,255,255,0.65);
  }

.chart-parent{
  width: 100%;
  height: 50px;
  background: transparent;
  overflow: hidden
}

.magicpattern {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,%3Csvg height=%22auto%22 viewBox=%220 0 2000 1400%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d=%22M0 1400h266.667V873.368q0-4-4-4H4q-4 0-4 4ZM333.333 1400H600V572.633q0-4-4-4H337.333q-4 0-4 4ZM666.667 1400h266.666V729.001q0-4-4-4H670.667q-4 0-4 4ZM1000 1400h266.667V412.14q0-4-4-4H1004q-4 0-4 4ZM1333.333 1400H1600V997.502q0-4-4-4h-258.667q-4 0-4 4ZM1666.667 1400h266.666V521.663q0-4-4-4h-258.666q-4 0-4 4Z%22 fill=%22%235ac8fa%22%2F%3E%3C%2Fsvg%3E");
}

.thin {
  position: absolute;
  border-radius: 25px;
  width: 330px;
  height: 56px;
}

#cs0 {
  max-width:72vw;
  height: 98vh;
}

#cs02 {
  position:absolute;
  left: 140px;
  max-width: 220px;
  min-height:150px;
  border-radius: 25px;
}

#cs02-1, #cs02-3 {
  color: rgba(255,255,255,0.65);
  font-size:12px;
}

#cs02-2 {
  color: white;
  font-size: 24px
}

#cs01 {
  position: absolute;
  top:200px;
  left: 335px;
  max-width:280px;
  min-height: 200px;
  border-radius: 25px
}

#cs01-1 {
  color: white;
  font-size: 18px
}

#cs01-2 {
  color: rgba(255,255,255,0.65);
  font-size:15px;
}

#cs01-3 {
  color: rgba(255,255,255,0.65);
  font-size: 13px
}

#cs03{
  top: 110px;
  left:280px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/slider-2.svg);
}

#cs04{
  top: 10px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/top-bar-2.svg);
}


#cs1 {
  font-size: 60px;
  margin-bottom: 21px;
}

#cs2 {
  font-size: 16px;
  margin-bottom: 33px;
}

#device4 {
  position: absolute;
  margin-left: -25%;
  margin-top: -1%;
  max-width: 44%;
}

#c4 {
  width: 80%;
}

#c4-container {
  max-width: 60%;
}

#formK {
  background-color: lightgrey;
  padding: 20px;
  position: relative;
}

.striped {
  background-image: linear-gradient(
    135deg,
    #45b77b 2.38%,
    transparent 2.38%,
    transparent 50%,
    #45b77b 50%,
    #45b77b 52.38%,
    transparent 52.38%,
    transparent 100%
  );
  background-size: 29.7px 29.7px;
  width: 100%;
  height: 100%;
}

.consumer-download {
  max-width: 230px;
}

.ab1{
  display: none !important;
}

.ab2{
  display: block;
}

@media (max-width: 1399px) {
  #c4 {
    font-size: 2.1rem;
  }

  #c4 p{
    font-size: 1.1rem;
  }

  .logo {
    width: 130px;
  }
}
.for-retailers-div {
  margin-top: 10%;;
  height: 100%;
  width: 100%;
  background-color: #DCE0F7;
  margin-bottom: 200px;
}
.retailers-image-section {
  position: relative;
}
.retailers-image {
    background-image: linear-gradient(to right, #1ad6fd, #1d62f0);
  border-radius: 40px;
  position: relative;
  width: 330px;
  height: 561px;
}

/* slide in animation for the retailers-image */
.retailers-image-animation {
  animation: slide-in 1.5s  forwards;
  animation-timing-function: cubic-bezier(.08,.87,0,1.03);
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.retailers-elements-animation {
  animation: elem-anim 1.5s forwards;
  animation-timing-function: cubic-bezier(.08,.87,0,1.03);
}
@keyframes elem-anim {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.retailers-img-animation {
  animation: img-anim 1.5s forwards;
  animation-timing-function: cubic-bezier(.08,.87,0,1.03);
  animation-delay: 0.2s;
}
@keyframes img-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ori-retailer {
  position: absolute;
  top: -5%;
  left: 50%;
}
.img-retailer {
  /* image be positioned in the center of the retailers-image div  */
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;


}
.for-retailers {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 120px;
  justify-content: center;
}
.retailers-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.retailer-header-text {
  font-family: 'Inconsolata', monospace;
  font-size: 64px;
  text-transform: uppercase;
  color : #151418;
  opacity: 0.6;
  text-align: left;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 5px;
}

.for-retailers {
  overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 120px;
    justify-content: center;
  }
  .retailers-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .retailer-header-text {
  font-family: 'Inconsolata', monospace;
  font-size: 64px;
  text-transform: uppercase;
  color : rgba(21, 20, 24, 0.6);
  text-align: left;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 5px;
  max-width: 200px;
  max-height: 110px;

  }

  .for-retailers-copy {
    color : #151418;
    font-family: 'Manrope', monospace;
    font-size: 80px;
    font-weight: 800;
    line-height: 80px;
    position:relative;
    text-align: left;
    display: block;
    max-width: 510px;
    max-height: 400px;
    letter-spacing: -5px;

  }

  .transaction-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    justify-content: center;
  }
  .transaction-text {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    align-self: center;
  }
  .triangle {
    position: absolute;
    top: -14%;
    left: 95%;
    animation: rotateTriangle 8s linear infinite;
  }
  @keyframes rotateTriangle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
  .transaction-text-header {
      font-family: 'Inconsolata', monospace;
  font-size: 16px;
  text-transform: uppercase;
  color : #151418;
  opacity: 0.7;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 4px;
  }
  .transaction-text-copy {
    color : #151418;
    font-family: 'Manrope', monospace;
    font-size: 80px;
    font-weight: 800;
    line-height: 80px;
    position:relative;
    text-align: left;
    display: block;
    max-width: 510px;
    max-height: 400px;
    letter-spacing: -5px;
  }
  .blue-origami {
    position: absolute;
    opacity: 0;
    top: 80%;
    left: -15%;
  }

.phones-image {
  width: 514px;
  height: auto;
  position: relative; /* Add position property for z-index to work */
  z-index: 1;
}

.transaction-image {
  overflow: hidden;
  position: relative;
}

.transaction-background-image {
  background-image: linear-gradient(to bottom, #52edc7, #5ac8fb);

  border-radius: 40px;
  width: 330px;
  height: 412px;
  position: absolute;
  top: 15%;
  left: 20%;
  z-index: 0; /* Set a higher z-index to place it in front of phones-image */
}
.work-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #151418;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;

}
.work-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-section-title-icon {
  opacity: 1;
  width: 100px;
  height: 100px;
  animation: moveUpDown 2s ease-in-out infinite;

}
@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.work-section-title-text {
  font-size: 70px;
  line-height: 80px;
  font-family: 'Manrope';
  letter-spacing: -5px;
  color : #dce0f7;
}
.work-section-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap : 28px;
}
.work-section-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.work-card-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-caption-title {
  font-size: 26px;
  line-height: 40px;
  font-family: 'Manrope';
  letter-spacing: 0px;
  color: #dce0f7;
  font-weight: 800;
}
.card-caption-text {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  font-family: 'Inconsolata';
  color : rgba(220,224,247,0.6);
  max-width: 350px;
  text-align: center;
}

.work-image {
  max-width :360px;
  height: auto;

}

@media (min-width: 1000px) {

  #cs01 {
    left: 250px;
  }

  .phone{
    --hand-phone-width: calc(var(--grid-item-width) * 2.5);
    --hand-phone-height: 92vh;
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
    margin-left: calc((100vw - var(--hand-phone-width))/2);
    margin-top: -2vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }

  .background-img {
    padding: 30px 55px;
  }

  h5 {
    font-size: 1.2rem;
  }

  p {
    font-size: 15px;
  }

  .btn-cs, .btn-cs2 {
    font-size: 14px;
    padding: 12px 34px;
  }

  #cs02 {
    left: 55px;
    top: 250px
  }

  #cs03 {
    left: 200px;
  }
}
.collaboration-section {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap:18px;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
}
.collaboration-bird {
  position: absolute;
  max-width: 300px;
  max-height: 300px;
  top: -10%;
  left: 65%;
  animation: moveLeftAndRight 3s ease-in-out infinite;

}
@keyframes moveLeftAndRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}
.collaboration-header {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 4px;
  font-family : 'Inconsolata';
  color : rgba(21,20,24,0.6);
  text-transform: uppercase;
}
.collaboration-copy {
  display: flex;
  flex-direction : column;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.collaboration-copy-title {
  font-size: 50px;
  line-height: 80px;
  letter-spacing: -3px;
  font-family: Manrope, sans-serif;
  color : #151418;
}
.collaboration-copy-text {
  font-size: 18px;
  max-width: 568px;
  text-align: center;
  line-height: 20px;
  font-family: Manrope, sans-serif;
  color : #464649;
}
.collaboration-cta {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
}
.cta-button {
  position:relative;
  z-index: 1;
  border-radius: 50px;
  max-width: 250px;
  font-size: 20px;
  line-height: 70px;
  font-family: 'Inconsolata';
  font-weight: 800;
  color: #dce0f7;
  background-color: #151418;
  border: none;
  padding-left: 35px;
  padding-right: 35px;
}

.cta-button::before{
  position: absolute;
  z-index: -1;
  background: linear-gradient(135deg, #1ad6fd, #1d62f0);
  border-radius: 50px;
  color: white;
  transition: opacity 0.15s linear;
  opacity: 0;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cta-button:hover::before {
  opacity: 1;
}
.about-us-section {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-us-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.about-us-header-text {
  font-size: 60px;
  line-height: 90px;
  letter-spacing: -4px;
  font-family: Poppins, sans-serif;
  font-weight: 900;
  color: #5ac8fa;
}
.spinning-earth {
  width: 50px;
  height: 50px;
}
.about-us-copy {
  display: flex;
  flex-direction: column;
  gap: 12Px;
  font-size: 16px;
  line-height: 20px;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: center;
  max-width: 724px;
  color: rgba(0,0,0,0.6);
}
.about-us-cards {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  align-items: center;
  padding: 36px;

}
.about-us-card {
  background-color: rgba(230,232,248,0.5);
  border-radius: 20px;
  padding: 40px;
  display:flex;
  gap: 48px;
  flex-direction:column;
  height: 400px;
}
.about-us-card-copy {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Inconsolata', sans-serif;
  font-weight: 400;
  color : #151418;
  max-width: 352px;
}
.about-us-card-image {
  max-width: 20px;
  height: auto;
  margin-top: 20px;
}
.blue-shadow {
  position: absolute;
  width: 50%;
  height: 90%;
  top: 15%;
  left: 30%;
  filter: blur(200px);
  background: linear-gradient(135deg, #1ad6fd, #1d62f0);
  opacity: 0.2;
  z-index: -1;
}
.footer-section {
  overflow: hidden;
  background-color: #151418 ;
  padding: 60px;
  display: flex;
  justify-content: space-around;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-text {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  font-family: 'Inconsolata', sans-serif;
  font-weight: 400;
  color : rgba(220,224,247,0.6);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-header {
  font-size: 26px;
  line-height: 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: 0px;
  color : #dce0f7;
}
.sitemap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 a {
  text-decoration: none;
}
.collaboration-section {
  overflow: hidden;
}
.for-retailers-div {
}


@media (min-width: 1300px){

  h5 {
    font-size: 1.2rem;
  }

  .background-img {
    padding: 30px 55px;
  }

  p {
    font-size: 18px;
  }

}

@media (min-width: 1400px) {
  .shadows1{
    width: 1px; height: 1px; border-radius: 100%;
    opacity: 0;
    --shadow-spread: 110px;
    --shadow-blur: 320px;
  }

  .background-img{
    padding: 40px 75px ;
  }

  p {
    font-size: 18px;
  }

  #cs01 {
    left: 360px;
  }

  #cs02 {
    min-height: 185px;
    left: 140px;
  }

  #cs03{
    left: 280px;
    top: 120px;
  }

  #cs02-2 {
    font-size: 28px;
  }

  .chart-parent {
    height: 60px;
  }

  #cs02-1, #cs02-3 {
    font-size: 14px;
  }

  #cs1{
    font-size: 80px;
  }

  #cs2 {
    font-size: 18px;
  }

  #c4 h1{
    font-size: 2.5rem;
  }

  #c4 p{
    font-size: 1.25rem;
  }

  .nav-link {
    font-size: 22px;
  }

  .consumer-download {
    max-width: 350px;
  }

  .hand-phone {
    --hand-phone-width: calc(var(--grid-item-width) * 1.5);
    --hand-phone-height: 80vh;
    margin-left: calc(80vw - var(--hand-phone-width) / 2);
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
  }

  .receipt {
    width: calc(var(--grid-item-width) * 1);
    margin: calc(35vh - var(--grid-item-height) / 2) 0 0
      calc(74vw - var(--grid-item-width) / 2);
  }


  h1 {
    font-size: 1.9rem;
  }

  h4 {
    font-size: 2rem;
  }

  h5{
    font-size: 22px;;
  }

  .intro-text > p {
    font-size: 5.25rem;
  }
}

@media (min-width: 1600px){

  .btn-cs, .btn-cs2{
    font-size: 17px;
    padding: 15px 60px;
  }

  .btn-cs2{
    margin-left: 24px;
  }

  #cs01 {
    max-width:350px;
    left: 420px;
    top: 240px;
  }

  #cs03 {
    left: 500px;
    top: 140px;
  }

  #cs02 {
    position:absolute;
    left: 175px;
    top: 300px;
    max-width: 230px;
    min-height:215px;
    border-radius: 25px;
  }

  #cs02-2 {
    font-size: 34px;
  }

  .chart-parent {
    height: 70px;
  }

  #cs02-1, #cs02-3 {
    font-size: 16px;
  }

  #cs01-1 {
    font-size: 22px;
  }

  #cs01-2, #cs01-3 {
    font-size: 16px;
  }

  .shadows1{
    width: 1px; height: 1px; border-radius: 100%;
    opacity: 0;
    --shadow-spread: 120px;
    --shadow-blur: 330px;
  }

  .background-img{
    padding: 40px 75px ;
  }

  p {
    font-size: 26px;
  }

  h5{
    font-size: 1.7rem;
  }
  h4 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2.1rem;
  }

  .intro-text > p {
    font-size: 6.25rem;
  }
}

@media (min-width: 2000px){

  .transaction-text-header{

  }
  .retailer-header-text {
    /*font-size: 96px;

     */
    line-height: 62px;
    
  }
  .for-retailers-div {
  
  }
  .transaction-text-header {
    font-size: 36px;
    max-width: 660px;
  }
  .work-section-title-text {
    font-size: 105px;
  }
  .work-section-title {
    gap: 32px;
  }
  .work-section-title-icon {
    height: 150px;
    width: 150px
  }
  .work-image {
    max-width: 540px;
  }
  .work-section-cards {
    gap: 42Px;
  }

  .work-card-caption {
    gap: 12px;
  }
  .card-caption-title {
    font-size: 39px;
  }

  .card-caption-text {
    font-size: 27px;
  }

  .collaboration-header {
    font-size: 60px;
  }

  .collaboration-copy-title {
    font-size: 75px;

  }
  .collaboration-copy-text {
    font-size: 27px;
    max-width: 800px;
  }
  .about-us-header-text {
    font-size: 90px;
  }
  .spinning-earth {
    width: 75px;
    height: 75px;
  }
  .about-us-copy-para {
    font-size: 27px;
    max-width: 800px;
    line-height: 40px;
  }
  .about-us-card-copy {
    font-size: 35px;
  }
  .footer-text {
    font-size: 28px;
  }
  .footer-header {
    font-size: 36px;
  }
  .about-us-card{
    width: 600px;
    height: 500px;
  }
  .btn-cs2, .btn-cs{
    font-size: 25px;
    padding: 25px 85px;
    border-radius: 55px;
    margin-top: 35px;
  }

  .btn-cs2 {
    margin-left: 36px;
  }

  .btn-cs::before {
    border-radius: 55px;
  }

  .thin{
    border-radius: 40px;
    width: 480px;
    height: 85px;
  }

  #cs03{
    left: 510px;
    top: 200px;
  }

  #cs02 {
    top: 415px;
    left: 295px;
    max-width: 300px;
    min-height: 260px;
  }

  #cs02-2 {
    font-size: 40px;
  }

  .chart-parent{
    height: 90px;
  }

  #cs02-1, #cs02-3 {
    font-size: 22px;
  }

  #cs01{
    max-width: 485px;
    left: 600px;
    top: 350px;
  }

  #cs01-1, #cs01-2, #cs01-3 {
    font-size: 22px;
  }

  .shadows1{
    width: 1px; height: 1px; border-radius: 100%;
    opacity: 0;
    --shadow-spread: 140px;
    --shadow-blur: 370px;
  }

  .background-img {
    padding: 40px 103px;
  }

  p {
    font-size: 2.4rem;
  }
  h5{
    font-size: 2.9rem;
  }
  h4 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 3.1rem;
  }

  #cs1{
    font-size: 7.5rem;
  }

  #cs2 {
    font-size: 1.9rem;
  }

  .intro-text > p {
    font-size: 8.25rem;
  }

}

@media(min-width: 3000px){
  .shadows1{
    width: 1px; height: 1px; border-radius: 100%;
    opacity: 0;
    --shadow-spread: 220px;
    --shadow-blur: 490px;
  }
  p {
    font-size: 4.8rem;
  }

  #Landing p{
    font-size: 14rem;
  }

  h5{
    font-size: 5rem;
  }
  h4 {
    font-size: 5.4rem;
  }
  h3 {
    font-size: 5.2rem;
  }

}

@media (min-width: 4000px){
  .shadows1{
    width: 1px; height: 1px; border-radius: 100%;
    opacity: 0;
    --shadow-spread: 290px;
    --shadow-blur: 760px;
  }
  p {
    font-size: 6.6rem;
  }
  h5{
    font-size: 7rem;
  }

}


@media (min-width: 1200px) and (max-width: 1400px) {
  #device4 {
    margin-left: -25%;
  }

  .hand-phone {
    --hand-phone-width: calc(var(--grid-item-width) * 1.75);
    --hand-phone-height: 80vh;
    margin-left: calc(60vw - var(--hand-phone-width) / 2);
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
  }

  .receipt {
    width: calc(var(--grid-item-width) * 1);
    margin: calc(35vh - var(--grid-item-height) / 2) 0 0 calc(54vw - var(--grid-item-width) / 2);
  }
}
/*
@media (min-width: 1000px) and (max-width: 1175px){
    #device4{
        max-width: 60vw;
        margin: 25px 20vw;
        position: relative;
    }
}
*/

  .overflow{
    overflow-y: hidden;
  }

@media (max-width: 1000px) {
  .overflow{
    overflow-y: visible;
  }

  .ab1{
    display: block !important;
  }

  .ab2{
    display: none !important;
  }

  #device4 {
    position: relative;
    max-width: 60vw;
    margin: 25px 20vw;
  }

  .background-img{
    padding: 30px 17px;
  }

  h5{
    font-size: 1rem;
  }

  p{
    font-size: 14px;
  }

  #c4 {
    width: 100vw;
  }

  #ccs {
    text-align: center ;
    position: absolute;
    top: 7.5%;
  }

  #rcs {
    flex-direction: column-reverse !important;
  }

  #cs1{
    margin-bottom: 16px;
  }

  #cs2{
    font-size: 15px;
    margin-bottom: 25px;
  }

  #cs0 {
    max-width: 85vw;
    margin-top: 5%;
    height: 100vh;
  }

  #cs01{
    text-align: left;
    top: 470px;
    max-width: 281px;
    min-height: 170px;
    border-radius: 25px;
    left: 455px;
  }

  #cs02 {
    text-align: left;
    left: 45px;
    top: 530px;
  }

  #cs03 {
    top: 420px;
    left: 25px;
  }

  #cs04{
    top: 300px;
    left: 300px;
  }

  .reverse1 {
    display: flex;
    flex-direction: column-reverse;
  }

  .intro-text > p {
    font-size: 3.25rem;
  }


}

@media (min-width: 768px) and (max-width: 1175px) {
  #device4 {
    max-width: 52%;
    margin-top: -1%;
    margin-left: -33%;
    position: absolute;
  }

  .phone{
    --hand-phone-width: calc(var(--grid-item-width) * 2.5);
    --hand-phone-height: 92vh;
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
    margin-left: calc((100vw - var(--hand-phone-width))/2);
    margin-top: -5vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }

  #c4 {
    width: 80%;
    padding: 2rem !important;
  }

  .hand-phone {
    --hand-phone-width: calc(var(--grid-item-width) * 2);
    --hand-phone-height: 80vh;
    margin-left: calc(80vw - var(--hand-phone-width) / 2);
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
  }
  .receipt {
    width: calc(var(--grid-item-width) * 1);
    margin: calc(30vh - var(--grid-item-height) / 2) 0 0
      calc(70vw - var(--grid-item-width) / 2);
  }

  .r-img1 {
    width: calc(var(--grid-item-width) * 1.15);
  }

  .r-img2 {
    width: calc(var(--grid-item-width) * 1.15);
  }

  .r-img3 {
    width: calc(var(--grid-item-width) * 1.15);
  }

  .r-img4 {
    height: 250%;
    width: auto;
  }

  .ori-retailer {
    position: absolute;
    width: 158px;
    height: 158px;
    top: -15%;
    left: 20%;
  }

  .for-retailers {
    flex-direction:column-reverse;
    gap: 75px;
  }
  .retailers-text {
    align-items: center;
    text-align: center;
  }
  .retailer-header-text {
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 36px;
  }
  .for-retailers-copy {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -3px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
  }

  .img-retailer{
    top: 50%;
    left: 50%;
    height: 437px;
    width: 459px;
  }

  .retailers-image {
    width: 361px;
    height: 376px;
  }

  .for-retailers-div {
    margin-top: 200px;
  }
  .transaction-wrapper {
    flex-direction: column;
  }
  .triangle {
    top: 125%;
    left: 90%;
  }

  .blue-origami {
    position: absolute;
    opacity: 0;
    top: 80%;
    left: -5%;
  }

  .transaction-background-image {
    background-image: linear-gradient(to bottom, #52edc7, #5ac8fb);
    border-radius: 40px;
    width: 359px;
    height: 375px;
    position: absolute;
    top: 10%;
    left: 8%;
    z-index: 0;
  }
  .phones-image {
    max-width: 420px;
  }
  .transaction-text-header {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 2px;
    text-align: center;
    align-self: center;
  }
  .transaction-text-copy {
    font-size: 60px;
    letter-spacing: -3px;
    text-align : center;
    line-height: 68px;
    max-width: 200%;
    max-height: 90%;
    align-self: center;
  }
  .work-section-title-text {
    font-size: 60px;
    letter-spacing: -3px;
    line-height: 60px;
  }
  .work-section-title-icon {
    height: 60px;
    width: 60px;
  }
  .work-image {
    max-width: 212px;
  }
  .card-caption-title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
  .card-caption-text {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
  .collaboration-section {
    gap: 12px;
  }
  .collaboration-header {
    font-size: 36px;
  }
  .collaboration-bird {
    display: none;
  }
  .collaboration-copy-title {
    font-size: 48px;
    line-height: 48px;
  }
  .about-us-header-text {
    font-size: 36px;
    letter-spacing: -2px;
  }
  .about-us-copy {
    font-size: 18px;
    line-height: 18Px;
    letter-spacing: 0px;
  }
  .work-section {
    padding: 30px;

  }
  .collaboration-section {
    padding: 30px;
  }
  .about-us-cards {
    align-items: start;
    justify-content: start;
  }
  .about-us-card {
    width: 100%;
    height: 100%;
    gap: 12Px;
    padding: 24px;
  }
  .about-us-card-copy {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0px;
  }
  .footer-section {
    padding:60px;
  }

}

@media screen and (max-width: 767px) {
  #device4 {
    position: relative;
    max-width: 60vw;
  }

  .phone{
    --hand-phone-width: calc(var(--grid-item-width) * 2.5);
    --hand-phone-height: 92vh;
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
    margin-left: calc((100vw - var(--hand-phone-width))/2);
    margin-top: -2vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }

  .hero-consumers-header {
    font-family: 'Inconsolata', monospace;
    font-size: 24px;
    text-transform: uppercase;
    color: rgba(21, 20, 24, 0.6);
    text-align: center;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: 4px;
  }

  .hero-consumers-subheader {
    color: #151418;
    font-family: 'Manrope', monospace;
    font-size: 36px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    letter-spacing: -2px;
  }

  .background-img{
    padding: 70px 152px;
  }

  .background-img > p {
    padding-left: 40px;
    padding-right: 40px;
  }

  .consumers-wrapper{
    padding-top: 75px;
  }

  h5{
    font-size: 1rem;
  }

  p{
    font-size: 14px;
  }

  #c4 {
    width: 100%;
    padding: 0 !important;
  }

  #c4-container {
    max-width: 100%;
  }

  .hand-phone {
    --hand-phone-width: calc(var(--grid-item-width) * 2.75);
    --hand-phone-height: 80vh;
    margin-left: calc(75vw - var(--hand-phone-width) / 2);
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
  }

  .receipt {
    width: calc(var(--grid-item-width) * 1.5);
    margin: calc(30vh - var(--grid-item-height) / 2) 0 0
      calc(60vw - var(--grid-item-width) / 2);
  }

  .r-img1 {
    width: calc(var(--grid-item-width) * 1.5);
  }

  .r-img2 {
    width: calc(var(--grid-item-width) * 1.5);
  }

  .r-img3 {
    width: calc(var(--grid-item-width) * 1.5);
  }

  .r-img4 {
    height: 300%;
    width: auto;
  }

  .ori-retailer {
    position: absolute;
    width: 118px;
    height: 118px;
    top: -13%;
    left: 15%;
  }

  .retailers-image {
    width: 100%;
    height: 296px;
    margin-top: -5%;
  }

  .for-retailers-div {
    margin-bottom: 100px;

  }
  .retailers-image-section {
    margin-top: -5%;
    width: 200px;
    height: 341px;
  }
  .for-retailers {
    gap: 70px;
    flex-direction:column-reverse;
    width: 100%;
    height: 94vh;
  }
  .retailers-text {
    align-items: center;
    text-align: center;
  }
  .retailer-header-text {
    font-size: 24px;
    text-transform: uppercase;
    color: rgba(21, 20, 24, 0.6);
    text-align: center;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: 2px;
  }
  .for-retailers-copy {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
  }

  .img-retailer {
    position: absolute;
    width: 300px;
    top: 42%;
  }
  .triangle {
    display: none;
  }
  .blue-origami {
    width: 128px;
    height: 128px;
    top: 90%;
    left: 2%;
  }
  .transaction-background-image {
    height: 270px;
    top: 10%;
    width: 300px;
    left: 2%;
  }
  .transaction-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .transaction-text {
    justify-content: center;
    align-items: center;

  }
  .transaction-text-header {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
  }
  .transaction-text-copy {
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    max-width: 96%;
    max-height: 90%;
    letter-spacing: -1px;
  }
  .phones-image {
    max-width: 310px;
  }
  .work-section-title-icon {
    display: none;
  }
  .collaboration-section {
    padding-left: 30px;
    padding-right: 30px;
  }
  .work-section-title-text {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
  }
  .work-section-cards {
    flex-direction: column;
  }
  .work-image {
    max-width: 260px;
  }
  .card-caption-title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0px;
  }
  .caption-card-text {
    font-size: 18px;
    line-height: 30px;

  }
  .collaboration-bird {
    display: none;
  }
  .collaboration-header {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1px;
  }
  .collaboration-copy-text {
    font-size: 16px;
    line-height: 22px;

    letter-spacing: 0px;
  }
  .collaboration-copy-title {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
  }

  .about-us-section {
    gap: 18px;
  }

 .about-us-header-text {
  font-size: 22px;
  line-height: 34px;
  letter-spacing: -1px;
  font-weight: 800;
 }
 .spinning-earth {
  display: none;
 }
 .about-us-copy {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  padding: 30px;
 }
 .about-us-cards {
  flex-direction: column;
 }
 .about-us-card {
  width: 300px;
 }
 .about-us-card-copy {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
 }
 .footer-section {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 12px;
 }


}

@media screen and (max-width: 590px) {

  .img-retailer {
    position: absolute;
    width: 300px;
    top: 48%;
  }

  .receipt img {
    display: none;
  }

  .phone{
    --hand-phone-width: calc(var(--grid-item-width) * 2.5);
    --hand-phone-height: 92vh;
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
    margin-left: calc((100vw - var(--hand-phone-width))/2);
    margin-top: -2vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }

  .intro-text > p {
    font-size: 35px;
    margin-bottom: -0px;
  }

  .background-img {
    padding: 40px 156px;
  }

  .background-img > p {
    padding-right: 0;
    padding-left: 0;
  }
}




@media screen and (max-width: 475px) {

  .blue-origami {
    width: 128px;
    height: 128px;
    top: 80%;
    left: 75%;
  }

  .phone{
    --hand-phone-width: calc(var(--grid-item-width) * 3.5);
    --hand-phone-height: 96vh;
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
    margin-left: calc((100vw - var(--hand-phone-width))/2);
    margin-top: -2vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }

  .background-img{
    padding: 30px 100px;
  }

  h3{
    margin-top: 60px ;
  }

  h5{
    font-size: 1rem;
  }

  p{
    font-size: 14px;
  }

  #cs0 {
    width: 90vw;
    height: auto;
  }

  #cs1{
    font-size: 40px;
  }

  #cs2 {
    font-size: 15px;
  }

  #cs01{
    text-align: left;
    top: 550px;
    max-width: 281px;
    min-height: 170px;
    border-radius: 25px;
    left: 145px;
  }

  #cs02 {
    text-align: left;
    left: 45px;
    top: 885px;
  }

  #cs03 {
    top: 440px;
    left: -25px;
  }

  #cs04{
    top: 315px;
    left: 90px;
  }

  .hand-phone {
    height: 66vh;
    width: 74vw;
    margin-top: 37vh;
    margin-left: 26vw;
    background-position: 0 50%;
  }

  .receipt img {
    display: none;
  }

  .intro-text {
    position: absolute;
    margin-top: 16vh;
    width: 100vw;
    height: 25vh;
  }
  .intro-text > p {
    font-size: 35px;
  }
}


@media screen and (max-width: 400px) {

  .transaction-background-image {
    height: 270px;
    width: 312px;
    top: 10%;
    left: 0%;
  }

  .blue-origami {
    width: 128px;
    height: 128px;
    top: 80%;
    left: 75%;
  }

  .for-retailers {
    gap: 60px;
    flex-direction: column-reverse;
    width: 100%;
    height: 103vh;
  }

  .for-retailers-div {
    margin-bottom: 75px;
  }

  .background-img{
    padding: 30px 70px;
  }

  .thin{
    width: 275px;
    height: 50px;
  }

  #cs01{
    text-align: left;
    top: 527px;
    max-width: 225px;
    min-height: 149px;
    border-radius: 25px;
    left: 132px;
  }

  #cs01-1 {
    font-size: 15px;
  }

  #cs01-2 {
    font-size: 12px;
  }

  #cs01-3 {
    font-size: 10px;
  }

  #cs0 {
    margin-bottom: 25px;
  }

  #cs02 {
    text-align: left;
    left: 178px;
    top: 887px;
  }

  #cs03 {
    top: 800px;
    left: -25px;
  }

  #cs04{
    top: 387px;
    left: 24px;
  }

  .btn-cs, .btn-cs2 {
    font-size: 14px;
    padding: 8px 30px;
  }

  .hand-phone {
    height: 63vh;
    width: 80vw;
    margin-top: 37vh;
    margin-left: 20vw;
    background-position: 0% 50%;
  }

  .receipt img {
    display: none;
  }

  .intro-text {
    margin-left: -2vw;
    position: absolute;
    margin-top: 16vh;
    width: 100vw;
    height: 25vh;
  }
  .intro-text > p {
    font-size: 35px;
  }
}

@media screen and (max-width: 350px) {

  .blue-origami {
    width: 128px;
    height: 128px;
    top: 85%;
    left: 70%;
  }

  .transaction-background-image {
    height: 270px;
    width: 295px;
    top: 10%;
    left: 2.2%;
  }

  .background-img{
    padding: 30px 35px;
  }

  #cs04{
    top: 407px;
    left: 24px;
  }

  #cs02{
    text-align: left;
    left: 140px;
    top: 860px;
  }

  #cs02-1, #cs02-3 {
    color: rgba(255,255,255,0.65);
    font-size: 10px;
  }

  #cs02-2 {
    font-size: 18px;
  }

  .btn-cs, .btn-cs2 {
    font-size: 12px;
    padding: 7px 25px;
  }

  .intro-text {
    position: absolute;
    margin-top: 15vh;
    margin-left: 0;
    width: 100vw;
    height: 25vh;
  }
  .intro-text > p {
    font-size: 30px;
    margin-bottom: -10px;
  }
}

@media screen and (max-width: 476px) and (min-height:735px){
  .img-retailer {
    position: absolute;
    width: 300px;
    top: 41%;
  }

  .phone {
    --hand-phone-width: calc(var(--grid-item-width) * 5.5);
    --hand-phone-height: 96vh;
    width: var(--hand-phone-width);
    height: var(--hand-phone-height);
    margin-left: calc((100vw - var(--hand-phone-width))/2);
    margin-top: -2vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }
}
