.text-font {
  font-family: 'Nunito', sans-serif !important;
}

.sec-padding {
  padding: 50px !important;
}

.clr-black {
  color: #575a7b;
}


.header-inner .inner{
  top: 60px !important;
}

.init_text {
  text-align: justify !important;
}

.contact-btn-blue {
  color: white;
  border-radius: 8px !important;
  background: linear-gradient(to right, rgb(75 147 255) 0%, rgb(0 86 179) 68%, rgb(0, 65, 177) 100%) !important;
}

.pink {
  color: deeppink;
}

.purple {
  color: mediumpurple;
}

.green {
  color: forestgreen;
}

.red {
  color: crimson;
}

.blue {
  color: mediumblue;
}

.brown {
  color: brown;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-30 {
  margin-top: 30px;
}

.urban-features {
  margin-left: 20px;
}

.shopping-cart {
  height: 400px;
}


/* CARD CSS */

.choose-card {
  padding: 20px;
  height: 175px;
  border-top: 5px solid #badfff;
  border-radius: 9px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.img-60 {
  height: 60px;
}

.urban-img-1 {
  height: 320px;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.urban-company-img {
  height: 490px;
  margin-top: 36px;
}

.img-40 {
  height: 40px;
}

.height-240 {
  height: 240px;
}

.height-175 {
  height: 175px;
}

.list-card-body {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.netflix-laptop {
  height: 300px;
}

.flt-right {
  float: right;
}

.netflix-screen {
  height: 330px;
}

.list {
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Nunito', sans-serif !important;
}

.list li:before {
  content: "👉";
  margin: 0 16px 0 0;
}




/*** Speech Bubble CSS Code Starts Here ***/

.speech-bubble {
  --arrow-w: 0.5em;
  --arrow-h: 1em;
  --bubble-corners: 0;
  --w: 22em;
  --border-size: 3px;
  --text-color: black;
  --bubble-color: white;
  --border-color: #a8b3f3;
}

.speech-bubble {
  text-align: center;
  font-family: cursive;
  /* font-size: 20px; */
  /* font-weight: bold; */
  color: var(--text-color);
  background: var(--bubble-color);
  padding: 1em;
  position: relative;
  border-radius: var(--bubble-corners);
  max-width: var(--w);
  box-shadow: 0 0 0 var(--border-size) var(--border-color);
}

.speech-bubble.round {
  --bubble-corners: 1em;
}

.speech-bubble.circle {
  --bubble-corners: 100%;
  padding: 2em;
}

.speech-bubble:before,
.speech-bubble:after {
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--arrow-h) * 2 + 0.5px);
  left: 50%;
  border-style: solid;
  border-width: var(--arrow-h) var(--arrow-w);
  border-color: var(--bubble-color) transparent transparent;
}

.speech-bubble:before {
  border-width: calc(var(--arrow-h) + var(--border-size)) calc(var(--arrow-w) + var(--border-size));
  border-color: var(--border-color) transparent transparent;
  bottom: calc(-1 * var(--arrow-h) * 2 - 2.5*var(--border-size));
  left: calc(50% - var(--border-size));
}

.speech-bubble.t:after {
  border-color: transparent transparent var(--bubble-color);
  bottom: auto;
  top: calc(-1 * var(--arrow-h) * 2 + 0.5px);
}

.speech-bubble.t:before {
  border-width: calc(var(--arrow-h) + var(--border-size)) calc(var(--arrow-w) + var(--border-size));
  border-color: transparent transparent var(--border-color);
  bottom: auto;
  top: calc(-1 * var(--arrow-h) * 2 - 2.5*var(--border-size));
}

.speech-bubble.l:after {
  border-color: transparent var(--bubble-color) transparent transparent;
  bottom: auto;
  border-width: var(--arrow-w) var(--arrow-h);
  top: calc(50% - var(--arrow-w));
  left: calc(-1 * var(--arrow-h) * 2 + 0.5px);
}

.speech-bubble.l:before {
  border-width: calc(var(--arrow-w) + var(--border-size)) calc(var(--arrow-h) + var(--border-size));
  border-color: transparent var(--border-color) transparent transparent;
  bottom: auto;
  top: calc(50% - var(--arrow-w) - var(--border-size));
  left: calc(-1 * var(--arrow-h) * 2 - 2.5*var(--border-size));
}

.speech-bubble.r:after {
  border-color: transparent transparent transparent var(--bubble-color);
  bottom: auto;
  left: auto;
  border-width: var(--arrow-w) var(--arrow-h);
  top: calc(50% - var(--arrow-w));
  right: calc(-1 * var(--arrow-h) * 2 + 0.5px);
}

.speech-bubble.r:before {
  border-width: calc(var(--arrow-w) + var(--border-size)) calc(var(--arrow-h) + var(--border-size));
  border-color: transparent transparent transparent var(--border-color);
  bottom: auto;
  left: auto;
  top: calc(50% - var(--arrow-w) - var(--border-size));
  right: calc(-1 * var(--arrow-h) * 2 - 2.5*var(--border-size));
}

.speech-bubble.pop {
  animation-name: pop;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
}

.speech-bubble.float {
  animation-name: float-up;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

.speech-bubble.r.float {
  animation-name: float-left;
}

.speech-bubble.l.float {
  animation-name: float-right;
}

.speech-bubble.t.float {
  animation-name: float-down;
}

@keyframes pop {
  0% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.1);
  }

  90% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float-up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(calc(-1 * var(--arrow-h)));
  }
}

@keyframes float-left {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(-1 * var(--arrow-h)));
  }
}

@keyframes float-right {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(var(--arrow-h));
  }
}

@keyframes float-down {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(var(--arrow-h));
  }
}

/* GLOW CARD */

.notification {
  isolation: isolate;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
  padding: 8px;
  border-radius: 1rem;
  overflow: hidden;
  --gradient: linear-gradient(to bottom, #fd602c, #e93e21, #7e61ff);
  --color: #32a6ff;
}

.notification:before {
  content: "";
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  inset: 0.0625rem;
  border-radius: 0.9375rem;
  background: #ffffff;
  z-index: 2;
}

.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.notification:hover:after {
  transform: translateX(0.15rem)
}

.notititle {
  color: #515151 !important;
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  margin-bottom: 0px;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notititle {
  transform: translateX(0.15rem)
}

.notibody {
  color: #99999d;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notibody {
  transform: translateX(0.25rem)
}

.notiglow,
.notiborderglow {
  position: absolute;
  width: 45rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, #b9c7fb, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.notiglow {
  z-index: 3;
}

.notiborderglow {
  z-index: 1;
}

.notification:hover .notiglow {
  opacity: 0.6
}

.notification:hover .notiborderglow {
  opacity: 0.1
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}


/* MOBILE VIEW CSS */

@media only screen and (max-width: 768px) {
  .uber-img-1 {
    height: 210px !important;
    margin-left: unset !important;
  }

  .header-inner .inner{
    top: 50px !important;
  }

  .car-img {
    height: 200px !important;
  }

  .sec-padding {
    padding: 10px !important;
  }

  .amazon-img-1 {
    height: 230px;

  }

  .netflix-laptop {
    height: 245px;
  }
  .byjus-img-1{
    height: 155px;
  }
  .urban-img-1 {
    height: 210px;
}
  .urban-company-img{

    height: 250px;
  }
}