/*++++++++++++++++++++++++++++++
          NEWS SECTION  
++++++++++++++++++++++++++++++++*/
.news-sec {
  padding: 0;
  display: flex;
  align-items: center;
  background: var(--text-200);
}
.news-sec .i-box {
  padding: 0.4rem;
  background: var(--primary);
  color: var(--bg-100);
}
.news-sec marquee {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.news-sec marquee > div {
  display: flex;
  align-items: center;
}
.news-sec marquee > div > *:not(:last-child) {
  margin-right: 1rem;
}
.news-sec p {
  margin: 0;
  position: relative;
  color: var(--bg-100);
}
.news-sec p:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--secoundry);
  position: inherit;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 1rem;
}

/*++++++++++++++++++++++++++++++
          HERO SECTION  
++++++++++++++++++++++++++++++++*/
.hero-sec {
  width: 100%;
  position: relative;
}
.hero-sec .img-card {
  display: block;
}
.hero-sec .img-card img {
  width: 100%;
  height: 85dvh;
  object-fit: cover;
}

.scroll-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  z-index: +5;
  height: 3rem;
  width: 1.8rem;
  border: 2px solid #edebeb;
  margin: auto;
  border-radius: 50px;
}

.scroll-btn:before {
  position: absolute;
  content: "";
  margin: auto;
  left: 0;
  right: 0;
  top: 0.3rem;
  height: 0.4rem;
  width: 0.4rem;
  background-color: #fff;
  border-radius: 50%;
  animation: move-down 3s infinite;
}

@keyframes move-down {
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}

@media (max-width: 800px) {
  .scroll-btn {
    display: none;
  }

  .hero-sec .img-card img {
    height: auto;
    object-fit: unset;
  }
}

/*++++++++++++++++++++++++++++++
          ABOUT INTRO SECTION  
++++++++++++++++++++++++++++++++*/
.my-row {
  display: flex;
  flex-wrap: wrap;
}

.about-sec .container .cols:nth-child(1) {
  display: flex;
  align-items: center;
  padding-right: var(--gap-col);
}

/* ==> Img Collarge */
.about-sec .img-collarge {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--gap-card);
  margin-bottom: var(--gap-card);
}

.about-sec .img-collarge > div {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.about-sec .img-collarge > div:last-child {
  align-items: center;
}

.about-sec .img-collarge img {
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: var(--Ltrns);
}
.about-sec .img-collarge img:hover {
  transform: rotateX(10deg) rotateY(-11deg);
  border: 1px solid var(--secoundry);
}

.about-sec .img-collarge .img1 {
  height: 30dvh;
  width: 100%;
}
.about-sec .img-collarge .img2 {
  height: 30dvh;
  width: 85%;
  animation: var(--aniTopBot);
}

@media (max-width: 800px) {
  .my-row .cols {
    width: 100%;
  }

  .my-row .cols:nth-child(1) {
    padding-right: 0;
    padding-bottom: var(--gap-col);
  }
}

/*++++++++++++++++++++++++++++++
     my Slider SECTION
++++++++++++++++++++++++++++++++*/
.infoSlider {
  width: 100%;
  max-width: 70rem;
  margin: auto;
}
.infoSlider .info-card a {
  display: block;
}

/*++++++++++++++++++++++++++++++
     APP PROMO SECTION  
++++++++++++++++++++++++++++++++*/
.app-promo {
  overflow: hidden;
}
@supports (-webkit-overflow-scrolling: touch) {
  .app-promo {
    overflow: hidden;
    transform: translate3d(0, 0, 0);
  }
}
.app-promo .img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.app-promo .img-col .shape {
  position: absolute;
  width: 100%;
  height: calc(100% + 8rem);
  z-index: 1;
  background-color: var(--primary);
  animation: aniWooferBeat 20s infinite forwards;
}
@keyframes aniWooferBeat {
  0% {
    background-color: var(--primary);
  }

  50% {
    background-color: var(--secoundry);
  }

  100% {
    background-color: var(--primary);
  }
}

.app-promo .img-col .mokup {
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  max-height: 30rem;
  object-fit: contain;
  transition: var(--Ltrns);
  animation: var(--aniTopBot);
}

.app-promo .img-col .mokup:hover {
  animation-play-state: paused;
}
@media (max-width: 800px) {
  .app-promo .img-col .shape {
    height: 60%;
    width: calc(100% + (1.25rem * 2));
  }

  .app-promo .img-col .mokup {
    width: auto;
    height: 100%;
    max-height: 400px;
  }
}

/* =========> Animate Slides */
.animateit .owl-item {
  -webkit-animation: fadeOut 1s linear;
  animation: fadeOut 1s linear;
}
.animateit .owl-item.active {
  -webkit-animation: fadeIn 1s linear;
  animation: fadeIn 1s linear;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
