@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Young Serif', serif;
}

.navbar-toggler-icon {
  color: #000;
}

.darkHeader {
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

.nav-item .nav-link {
  letter-spacing: 0.2px;
  font-size: 17px;
  color: #fff;
}

.darkHeader .nav-link {
  color: #41a1e6;
}

.banner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  overflow-x: clip;
}

.circle {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  top: -300px;
  right: -110px;
  background: linear-gradient(120deg, #1857f0, #05d8e0);
  z-index: -1;
}

.mini-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  bottom: 0px;
  left: 0;
  right: 0;
  background: linear-gradient(335deg, #1857f0, #05d8e0);
  z-index: -1;
  margin: auto;
  animation: 5s linear infinite gradient-bg;
}

@keyframes gradient-bg {
}

.left-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: 0px;
  left: -75px;
  background: linear-gradient(300deg, #1857f0, #05d8e0);
  z-index: -1;  /* opacity: .7; */
}

.banner-text {
}

.banner-text p {
}

.main-heading {
  font-size: 4rem;
}

.banner-btn {
  text-decoration: none;
  display: inline-block;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  overflow: hidden;
}

.banner-btn img {
  width: 150px;
}

.banner-btn:hover {
  box-shadow: none;
}

.numbers-wrapper {
}

.number-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.number {
  font-size: 2rem;
  background: linear-gradient(90deg, #1857f0, #05d8e0);
  background-size: auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

.number-box span {
  font-weight: 600;
}

.features-wrapper {
  margin-top: 100px;
}

.heading-box {
  position: relative;
}

.fade-heading {
  font-size: 8vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: .03;
  position: relative;
}

.ott-heading {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 30px);
  font-size: 2.5rem;
}

.feature-box {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
}

.feature-box:hover {
  box-shadow: none;
  background: linear-gradient(48deg, #1857f0, #05d8e0);
  color: #fff;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(48deg, #1857f0, #05d8e0);
}

.feature-icon img {
}

.feature-box h4 {
  margin-top: 20px;
}

.feature-box p {
  margin-bottom: 0px;
}

.how-use {
  margin-top: 100px;
  position: relative;
}

.how-use-text {
}

.play-watch {
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(48deg, #1857f0, #05d8e0);
  padding: 15px 25px;
  border-radius: 40px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, .2);
  transition: 0.3s;
}

.play-watch:hover {
  background: linear-gradient(48deg, #05d8e0, #1857f0);
  box-shadow: none;
}

.vdo-box {
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: ripple-out 1.5s linear infinite;
}

@keyframes ripple-out {
  0% {
    box-shadow: 0px 0px 0px 0px rgb(24 87 240 / 100%);
  }

  100% {
    box-shadow: 0px 0px 0px 25px rgb(24 87 240 / 0%);
  }

}

.play-btn img {
  width: 100px;
}

.svg-shape {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.play-app-store {
}

.play-store {
  width: 180px;
  text-align: center;
  background: linear-gradient(48deg, #1857f0, #05d8e0);
  border-radius: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
  display: inline-block;
  border: 1px solid #03A9F4;
  padding: 1px;
}

.play-store span {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  margin: 10px auto;  /* color: #fff; */
}

.play-store span i {
}

.app-qr-code {
  background: whitesmoke;
  border-radius: 15px;
  padding: 15px;
}

.app-qr-code img {
  width: 150px;
  border-radius: 15px;
}
.download-app {
  background: linear-gradient(to bottom, #1857f0, #05d8e0);
  margin-top: -100px;
  z-index: 1;
  position: relative;
  padding-bottom: 70px;
}
.new-section {
}

.left-box {
  position: relative;
}

.left-box .left-box-text {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: #fff;
  width: 80%;
}

.left-box .left-box-text p {
  display: inline-block;
  background: rgb(255 255 255 / 25%);
  padding: 5px 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.left-box .left-box-text h3 {
  padding-right: 35%;
  margin: .5rem 0rem 1.5rem;
}

.left-box img {
}

footer {
  background: black;
  /* margin-top: 100px; */
  padding-top: 10px;
}

.copyright p, .designed_by p {
  font-size: 14px;
  opacity: .5;
  color: rgba(255,255,255, 1);
}

.designed_by p a {
  text-decoration: none;
  color: inherit;
  opacity: 0.4;
}

@media screen and (max-width:1399px) {
  .banner-wrapper {
    padding-top: 50px;
  }

  .circle {
    width: 800px;
    height: 800px;
    right: -184px;
  }

  .feature-box {
    min-height: 320px;
  }

  .ott-heading {
    top: calc(50% - 24px);
  }

}

@media screen and (max-width:1199px) {
  body {
    overflow-x: hidden;
  }

  .banner-wrapper {
    padding-top: 30px;
  }

  .circle {
    width: 700px;
    height: 720px;
    top: -230px;
    right: -160px;
  }

  .mini-circle {
    width: 250px;
    height: 250px;
    left: 0;
    right: 110px;
  }

  .main-heading {
    font-size: 3rem;
  }
  
  .download-app{
    padding-bottom: 50px;
  }
}

@media screen and (max-width:991px) {
  .main-heading {
    font-size: 2.5rem;
  }

  .features-wrapper, .how-use {
    margin-top: 50px;
  }

  .feature-box {
    min-height: auto;
  }

  .how-use-row {
    flex-direction: column-reverse;
  }

  .download-app {
    margin-top: -50px;    
  }

  .by-em {
    justify-content: center;
  }

  .download-content, .how-use-text {
    margin-top: 40px;
  }
  .left-box .left-box-text h3{
    padding-right: 0%;
    font-size: 1.5rem;
  }
}

@media screen and (max-width:767px) {
  .circle {
    width: 450px;
    height: 450px;
    top: auto;
    right: -60px;
    bottom: 35px;
  }

  .mini-circle {
    right: 0px;
  }

  .left-circle {
    width: 150px;
    height: 150px;
    bottom: 45%;
    left: -60px;
  }

  .app-img {
    margin-top: 40px;
  }

  .ott-heading {
    font-size: 1.75em;
    position: static;
    margin-bottom: 35px;
  }

  .fade-heading {
    display: none;
  }

  .nav-item .nav-link {
    color: #41a1e6;
  }

  footer {
    /* margin-top: 50px; */
  }

}

@media screen and (max-width:575px) {
  .navbar-brand img{
    width: 250px;
  }
  .banner-text {
    text-align: center;
  }
  .left-circle {
    display: none;
  }

  .number {
    font-size: 1.5rem;
  }

  .download-app {
    margin-top: 0;
  }

  .play-store {
    width: 155px;
  }

}
