body{
    padding: 0px;
    margin: 0px;
    font-family: "Montserrat", sans-serif;
}
*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
.container{
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}
img{
    vertical-align: middle;
}
.main-content{
    position: relative;
    background: #14E3C7;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    margin-bottom: 104px;
}
.main-content::after{
    position: fixed;
    content: "";
    width: 100%;
    height: 145px;
    bottom: 98px;
    left: 0px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 227, 199, 0)), to(#14E3C7));
    background: -o-linear-gradient(top, rgba(20, 227, 199, 0) 0%, #14E3C7 100%);
    background: linear-gradient(180deg, rgba(20, 227, 199, 0) 0%, #14E3C7 100%);
    z-index: 99;
}
/* .main-content::before{
    position: fixed;
    content: "";
    width: 100%;
    height: 80px;
    bottom: 104px;
    left: 0px;
    background: #14E3C7;
    backdrop-filter: blur(30px);
    z-index: 1;
} */
.content-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.left-column {
  width: 45%;
}
.right-column {
  width: 55%;
}
.phone-img img {
  width: 100%;
}
.content-descriptions h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #001A17;
  padding-bottom: 30px;
}
.content-descriptions {
  max-width: 500px;
}
.content-descriptions h2 span {
  color: #FFF;
}
.content-descriptions h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #004D44;
  padding-bottom: 30px;
}
.content-descriptions p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #004D44;
}
.list-item {
  padding-top: 53px;
  padding-bottom: 40px;
}
.list-item ul li {
  background: #12C9B1;
  padding: 13px 13px 13px 43px;
  border-radius: 15px;
  list-style: none;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  line-height: 0.7;
  letter-spacing: 0%;
  margin-bottom: 2px;
  position: relative;
}
.content-descriptions ul li:last-child {
  margin: 0px;
}
.list-item ul li::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/icon_chek.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    left: 5px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}
.protect-title h3 {
  background: #001A17;
  padding: 10px 10px 10px 19px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 22px;
  color: #D9FFFA;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  overflow: hidden;

  -webkit-animation: liftUp 3.5s ease-in-out infinite;

          animation: liftUp 3.5s ease-in-out infinite;
}
.protect-title span{
    position: relative;
    top: -3px;
}
.protect-title h3 a {
  padding: 10px 16px;
  background: #FFF;
  display: inline-block;
  font-weight: 800;
  font-size: 29px;
  color: #A259FF;
  border-radius: 10px;
  margin-left: 19px;
  text-decoration: none;
  line-height: 0.7;
  text-shadow: 0px 0px 0px 0px rgba(162, 89, 255, 1);

}

@media all and (min-width:767px){
/* Shine only during rising */
.protect-title h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: -o-linear-gradient(
    330deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  -webkit-transform: skewX(-20deg);
      -ms-transform: skewX(-20deg);
          transform: skewX(-20deg);
  opacity: 0;

  -webkit-animation: shineOnce 3.5s ease-in-out infinite;

          animation: shineOnce 3.5s ease-in-out infinite;
}
/* 🔼 Lift animation – goes 220px UP */
@-webkit-keyframes liftUp {
  0%   { -webkit-transform: translateY(0); transform: translateY(0); }
  30%  { -webkit-transform: translateY(-240px); transform: translateY(-240px); } /* Goes up 220px */
  60%  { -webkit-transform: translateY(-240px); transform: translateY(-240px); } /* Hold */
  100% { -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes liftUp {
  0%   { -webkit-transform: translateY(0); transform: translateY(0); }
  30%  { -webkit-transform: translateY(-240px); transform: translateY(-240px); } /* Goes up 220px */
  60%  { -webkit-transform: translateY(-240px); transform: translateY(-240px); } /* Hold */
  100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

/* ✨ Shine only during 0% → 30% */
@-webkit-keyframes shineOnce {
  0%   { left: -150%; opacity: 0; }
  5%   { opacity: 1; }
  30%  { left: 140%; opacity: 1; } /* Shine finishes exactly when reaching top */
  31%  { opacity: 0; }
  100% { left: -150%; opacity: 0; }
}
@keyframes shineOnce {
  0%   { left: -150%; opacity: 0; }
  5%   { opacity: 1; }
  30%  { left: 140%; opacity: 1; } /* Shine finishes exactly when reaching top */
  31%  { opacity: 0; }
  100% { left: -150%; opacity: 0; }
}
}

.phone-img {
	margin-right: -140px;
	margin-left: -140px;
}

/* footer css */

.footer-area {
  background: #001A17;
  padding: 30px;
  position: fixed;
  bottom: 0px;
  width: 100%;-webkit-box-shadow: inset 0px 16px 16px -14px rgba(20, 227, 199, 0.4);box-shadow: inset 0px 16px 16px -14px rgba(20, 227, 199, 0.4);
  z-index: 999;


}
.footer-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 55px;
  gap: 20px;
}
.download-content p {
  font-weight: 800;
  font-size: 20px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  color: #FFF;
}
.download-content p span {
  color: #D9FFFA;
}
.app-store-img img {
  max-width: 140px;
}

.no-underline {
  text-decoration: none;
}

.plain-link {
  text-decoration: none;
  color: inherit;         /* prevents color change */
}

.plain-link:hover,
.plain-link:active,
.plain-link:visited {
  text-decoration: none;
  color: inherit;         /* keeps the same color on all states */
}
