.hero-section {
  background-color: #f5f7f9;
  /*margin-top: 76px;*/
  margin-top: 140px;
}

.hero-title {
  font-weight: 700;
  font-size: 32px;
}

.hero-desc {
  color: #333;
  font-size: 20px;
  margin-bottom: 8px;
}

.hero-highlight {
  font-size: 16px;
  margin-bottom: 24px;
}

.text-purple {
  color: #9749f8;
  font-size: 18px;
}

.btn-start {
  background: linear-gradient(to right, #7b2ff7, #f107a3);
  color: white;
  border-radius: 32px;
  font-weight: 400;
  font-size: 16px;
}


.btn-start:hover {
  color: white;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}


@media (max-width: 576px) {
  .hero-section {
    padding-top: 30px;
  }

  .hero-title {
    font-size: 25px;
  }

  .hero-desc {
    font-size: 15px;
  }

}

/* From Uiverse.io by Wendell47 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.02s;
  font-weight: bold;
  cursor: pointer;
  color: rgb(37, 37, 37);
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
}

.button:hover {
  background: rgb(193, 228, 248);
  color: rgb(33, 0, 85);
}

.button:active {
  transform: scale(0.97);
}

.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hoverEffect div {
  background: #7b2ff7;
  background: linear-gradient(to right, #7b2ff7, #f107a3);
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 0.5;
}

.button:hover .hoverEffect div {
  width: 8rem;
  height: 8rem;
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.logo-img {
  max-width: 160px;
}

.phone-img {
  max-width: 100%;
  height: auto;
}


.audience-section {
  background-color: #fff;
}

.audience-icon img {
  background-color: #ffe5d0;
  /* padding: 8px; */
  border-radius: 50%;
}

.audience-title {
  font-size: 28px;
  color: #000;
}

.audience-heading {
  font-size: 24px;
  color: #000;
  line-height: 1.4;
}

.audience-subtext {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.audience-btn {
  background-color: #9749f8;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.audience-btn:hover {
  background-color: #9749f8;
}

.icon-circle {
  background-color: #f3edfa;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle i {
  font-size: 24px;
  color: #9749f8;
}



/* number card */

.numbercard_con {
  /* background-color: #f5f7f9; */
  background-color: #0b1742;
}

.number_card {
  padding: 20px 10px;
  background-color: transparent;
}

.number_icon {
  font-size: 50px;
  font-weight: 1000;
  color: #ffffff;
}

.number_value {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.number_label {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

.boost-title {
  color: #1d3e83;
}

.boost-desc {
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  .number_card {
    padding: 16px;
  }

  .number_value {
    font-size: 1.3rem;
  }

  .number_icon {
    font-size: 30px;
  }

  .number_label {
    font-size: 15px;
  }

  .boost-title {
    font-size: 20px;
    padding: 0 10px;
  }

  .boost-desc {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* Headings */
.section-title {
  font-size: 33px;
  font-weight: 700;
  color: #000;
}

.audience-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.audience-subtext {
  font-size: 16px;
  color: #4c515c;
  font-weight: 300;
}


.btn-know {
  background-color: #9749f8;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-know:hover {
  background-color: #d9561d;
}

/* Mobile-specific changes */
@media (min-width: 576px) and (max-width: 767px) {
  .icon-text-group {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .section-title {
    font-size: 30px;
  }

  .audience-heading {
    font-size: 18px;
  }

  .audience-subtext {
    font-size: 12px;
  }

  .btn-know {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 576px) {
  .audience-heading {
    font-size: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .audience-subtext {
    font-size: 12px !important;
  }

  .btn-know {
    width: 60%;
    font-size: 15px !important;
    padding: 15px 30px !important;
  }

  .glow-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .name {
    font-weight: 400 !important;
  }
}



.audience-heading strong {
  font-weight: 700;
}

/* Subtext */
.audience-subtext {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 600px;
}

/*  button */
.btn-know {
  background-color: #9749f8;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 40px;
  padding: 10px 30px;
  transition: background-color 0.3s ease;
}

.btn-know:hover {
  background-color: #9749f8;
  color: #fff;
}


.glow-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.line {
  height: 2px;
  width: 70px;
  background: #9749f8;
}

.line2 {
  height: 2px;
  width: 35px;
  background: #9749f8;
}

.name {
  font-size: 20px;
  white-space: nowrap;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(1.1);
    opacity: 1;
  }
}

.audience-heading {
  font-weight: 100 !important;
}


.section-innovation {
  margin: auto;
  background-image: url(https://playtimeads.com/playtimeweb/img/bg/contact-map-bg.jpg);

  /* background-image: linear-gradient(rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)), linear-gradient(to right, #7b2ff7, #f107a3); */

  background-blend-mode: lighten;
  background-size: cover;
  width: 100%;
  border-radius: 50px;
  /* border: 2px solid #9749f8 !important; */
}

.section-innovation h2 {
  font-weight: 700;
  color: #1d3e83;
  font-size: 55px;
  letter-spacing: 2px;
}

.innovation-text {
  color: #444444;
  font-size: 18px;
  font-weight: 200;
  line-height: 33px;
  max-width: 850px;
  margin: 0 auto;
}

.join-btn {
  /* background-color: #9749f8; */
  /* background: linear-gradient(to right, #7b2ff7, #f107a3); */
  background-color: #635dff;
  color: #ffffff;
  border: none;
  border-radius: 18px;
  transition: background-color 0.3s ease;
  font-size: 18px;
}

.join-btn:hover {
  background-color: #9749f8;
  color: #ffffff;
}

@media (max-width: 576px) {
  .innovation-text {
    font-size: 12px;
  }

  .join-btn {
    font-size: 12px;
  }
}

/*----------Viraj CSS----------------*/

.banner_img {
  border-radius: 2rem !important;
}


.audience-section {
  margin-top: 70px !important;
}

/*----------Viraj CSS----------------*/

/* .left{
    width: 70.8%;
    height: 48.1%;
    position: absolute;
    left: 0;
    top: 9%;
    background: url('https://www.hypertap.net/play/css/static/assets/f-section1-left.png') no-repeat;

    background-size: contain;
} */




.css-4l356w .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.css-4l356w .process_title {
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
  color: #1d3e83;
  font-size: 55px;
  letter-spacing: 2px;
}

.css-4l356w .process_title_small {
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.015em;
  text-align: center;
  color: rgb(68, 68, 68);
}

.css-4l356w .main_stap {
  margin: 53px 0px 0px 0px;
}

.css-4l356w .process_contain {
  background-color: #f9f9f9;
  /* height: 90%; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  padding: 0px 40px 0px 111px;
  margin-left: 21%;
}

.css-4l356w .process_contain2 {
  background-color: #f9f9f9;
  /* height: 90%; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  padding: 0px 40px 0px 111px;
  margin-right: 21%;
}

.css-4l356w .flipped-horizontal {
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.css-4l356w .line_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  margin-bottom: -32px;
  margin-top: -32px;
}

.css-4l356w .line_center img {
  z-index: 1;
}

.css-4l356w .stap_img img {
  position: relative;
  z-index: 9;
}

.css-4l356w .staps p {
  color: #1d3e83;
  font-size: 28px;
  font-weight: 600 !important;
  text-transform: capitalize;
}

.css-4l356w .stap_heading {
  color: #000;
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.css-4l356w .stap_pare {
  color: #8f8f8f;
  font-size: 20px;
  font-style: normal;

}

@media only screen and (max-width: 576px) {
  .css-4l356w .line_center {
    display: none;
  }

  .grid {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .css-4l356w .process_contain {
    background-color: #f9f9f9;
    /* height: 100%; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding: 20px;
    margin-left: 0%;
  }

  .css-4l356w .process_contain2 {
    background-color: #f9f9f9;
    /* height: 100%; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding: 20px;
    margin-right: 0%;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .css-4l356w .line_center img {
    z-index: -1;
  }

  .css-4l356w .process_title {
    font-size: 30px;

  }

  .css-4l356w .process_title_small {
    font-size: 21px;

  }



  .css-4l356w .staps p {
    font-size: 22px;
  }

  .css-4l356w .stap_heading {
    font-size: 18px;

  }

  .css-4l356w .stap_pare {
    font-size: 14px;
  }


  .css-4l356w .main_stap {
    margin: 40px 0px 0px 0px;
  }
}

@media only screen and (min-width: 600px) {
  .css-4l356w .process_contain {
    z-index: 9;
    /* height: 100%; */
    margin: 0% 0%;
    padding: 40px;
  }

  .css-4l356w .process_contain2 {
    z-index: 9;
    /* height: 100%; */
    margin: 0% 5%;
    padding: 40px;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .css-4l356w .stap_img img {
    width: 100%;
  }

  .css-4l356w .stap_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .css-4l356w .process_title {
    font-size: 24px;

  }

  .css-4l356w .staps p {
    font-size: 22px;
  }

  .css-4l356w .stap_heading {
    font-size: 18px;

  }

  .css-4l356w .stap_pare {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .css-4l356w .process_title {
    font-size: 36px;

  }

  .css-4l356w .staps p {
    font-size: 28px;
  }

  .css-4l356w .stap_heading {
    font-size: 30px;

  }

  .css-4l356w .stap_pare {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .css-4l356w .process_contain {
    margin: 0% 0% 0% 0%;
    padding: 30px 40px 40px 40px;
    /* height: 100%; */
  }

  .css-4l356w .process_contain2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin: 0% 0% 0% 0%;
    padding: 30px 40px 40px 40px;
    /* height: 100%; */
  }

  .css-4l356w .stap_img img {
    width: 100%;
  }

  .css-4l356w .stap_img {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .css-4l356w .process_contain {
    margin: 0% 0% 0% 0%;
    padding: 30px 40px 40px 32%;
    /* height: 100%; */
  }

  .css-4l356w .process_contain2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin: 0% 0% 0% 0%;
    padding: 30px 32% 40px 40px;
    /* height: 100%; */
  }

  .css-4l356w .stap_img img {
    width: 100%;
  }

  .css-4l356w .stap_img {
    display: block;
  }
}

@media only screen and (min-width: 1900px) {
  .css-4l356w .process_contain {
    padding: 30px 40px 40px 33%;
  }

  .css-4l356w .process_contain2 {
    padding: 30px 33% 40px 40px;
  }

  .css-4l356w .staps p {
    font-size: 38px;
  }
}

@media only screen and (min-width: 2000px) {
  .css-4l356w .process_contain {
    padding: 30px 40px 40px 30%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
  }

  .css-4l356w .process_contain2 {
    padding: 30px 30% 40px 40px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
  }

  .css-4l356w .staps p {
    font-size: 58px;
  }

  .css-4l356w .stap_heading {
    font-size: 44px;
  }

  .css-4l356w .stap_pare {
    font-size: 24px;
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr))
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr))
}

@media (max-width: 996px) {
  .max-\[996px\]\:order-1 {
    order: 1
  }

  .max-\[996px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }
}

@media (max-width: 768px) {
  .max-\[768px\]\:block {
    display: block
  }

  .max-\[768px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .max-\[768px\]\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .max-\[768px\]\:flex-wrap {
    flex-wrap: wrap
  }

  .max-\[768px\]\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }
}

@media (max-width: 600px) {
  .max-\[600px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }
}

@media (max-width: 500px) {
  .max-\[500px\]\:mt-8 {
    margin-top: 2rem
  }
}

@media (max-width: 320px) {
  .max-\[320px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }
}

@media (min-width: 320px) {
  .min-\[320px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }
}

@media (min-width: 640px) {
  .sm\:w-full {
    width: 100%
  }

  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
}

@media (min-width: 768px) {
  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }

  .md\:block {
    display: block
  }

  .md\:w-full {
    width: 100%
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .md\:gap-16 {
    gap: 4rem
  }

  .min-\[768px\]\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .min-\[768px\]\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .min-\[768px\]\:px-\[22px\] {
    padding-left: 22px;
    padding-right: 22px
  }
}

@media (min-width: 992px) {
  .min-\[992px\]\:pr-5 {
    padding-right: 1.25rem
  }
}

@media (min-width: 1024px) {
  .lg\:-mb-0 {
    margin-bottom: 0
  }

  .lg\:-mt-0 {
    margin-top: 0
  }

  .lg\:mt-10 {
    margin-top: 2.5rem
  }

  .lg\:flex {
    display: flex
  }

  .lg\:w-1\/2 {
    width: 50%
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr))
  }

  .min-\[1024px\]\:gap-6 {
    gap: 1.5rem
  }

  .min-\[1024px\]\:px-\[0px\] {
    padding-left: 0;
    padding-right: 0
  }
}

@media (min-width: 1280px) {
  .xl\:-mb-8 {
    margin-bottom: -2rem
  }

  .xl\:-mt-8 {
    margin-top: -2rem
  }

  .xl\:w-1\/3 {
    width: 33.333333%
  }
}

.grid {
  display: grid;
  margin: 20px 0;
}

.promo-section {
  min-height: 300px;
  background-color: #0b1742;
  /* background-image: url('https://playtimeads.com/Nency_Playtime/Images/Frame_6.png'); */
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 60px 0; */
  color: white;
}


.promo-title {
  font-size: 45px;
  color: #fff;
}

.promo-button {
  background-color: #9749f8 !important;
  border: none;
  padding: 14px 24px;
  font-weight: 600;
}


@media (max-width: 576px) {
  .promo-section {
    /* background-image: url('https://playtimeads.com/Nency_Playtime/Images/F6.png'); */
    background-color: #0b1742;
    background-size: center !important;
    justify-content: center;
    min-height: 180px !important;
    padding-top: 15px;
  }

  .promo-title {
    font-size: 22px !important;
  }

  .promo-button {
    padding: 12px 20px;
  }

  .btn-lg {
    font-size: 20px;
  }

}

/* @media (max-width: 767px)--------------------- */
@media (min-width: 576px) and (max-width: 767px) {

  .hero-section .glow-wrapper {
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 40px;
  }

  .hero-desc {
    font-size: 16px;
    padding: 0 10px;
  }

  .btn-start {
    font-size: 14px;
    padding: 10px 20px;
  }

  .boost-title {
    font-size: 28px;
  }

  .number_value {
    font-size: 32px;
  }

  .number_label {
    font-size: 20px;
  }

  .promo-title {
    font-size: 26px;
    text-align: center;
  }

  .promo-button {
    width: 50% !important;
    font-size: 16px;
    padding: 12px;
    margin-top: 10px;
  }

  .promo-section .col-md-4,
  .promo-section .col-md-8 {
    text-align: center;
  }



  .line,
  .line2 {
    width: 40px;
  }

  .name {
    font-size: 20px;
  }

  .numbercard_con {
    padding: 30px 10px;
  }

  .number_card {
    padding: 10px 5px;
  }

  .audience-subtext {
    font-size: 14px;
    padding: 0 10px;
  }

  .btn-know {
    font-size: 16px;
    padding: 8px 20px;
  }

  .promo-section {
    padding: 40px 15px;
  }

  .phone-img {
    max-width: 90%;
    margin: 20px auto;
  }

}

/* @media (max-width: 991px) ------------------ */
@media (min-width: 767px) and (max-width: 991px) {
  .hero-section .glow-wrapper {
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
    line-height: 52px;
    margin-top: 30px;
  }

  .hero-desc {
    font-size: 18px;
    padding: 0 15px;
  }

  .btn-start {
    font-size: 15px;
    padding: 12px 24px;
  }

  .number_value {
    font-size: 40px;
  }

  .number_label {
    font-size: 20px;
  }

  .promo-title {
    font-size: 32px;
    text-align: center;
  }

  .promo-button {
    font-size: 16px;
    padding: 12px 28px;
    margin-top: 12px;
    width: 90% !important;
  }

  .promo-section .col-md-4,
  .promo-section .col-md-8 {
    text-align: center;
  }


  .name {
    font-size: 18px;
  }

  .numbercard_con {
    padding: 40px 20px;
  }

  .number_card {
    padding: 15px 10px;
  }

  .audience-subtext {
    font-size: 14px;
    padding: 0 15px;
  }

  .btn-know {
    font-size: 17px;
    padding: 10px 25px;
  }

  .promo-section {
    padding: 60px 20px;
  }

  .phone-img {
    max-width: 95%;
    margin: 20px auto;
  }

}

/* @media (max-width: 1199px) --------------------- */

@media (min-width: 991px) and (max-width: 1199px) {
  .hero-title {
    font-size: 32px;
    line-height: 47px;
  }

  .hero-desc {
    font-size: 20px;
  }

  .btn-start {
    font-size: 16px;
    padding: 12px 28px;
  }

  .number_value {
    font-size: 44px;
  }

  .number_label {
    font-size: 20px;
  }

  .promo-title {
    font-size: 36px;
    text-align: center;
  }

  .promo-button {
    font-size: 17px;
    padding: 14px 30px;
    margin-top: 10px;
    width: 100%;
  }

  .name {
    font-size: 20px;
  }

  .numbercard_con {
    padding: 50px 30px;
  }

  .number_card {
    padding: 20px 10px;
  }

  .audience-subtext {
    font-size: 16px;
    padding: 0 20px;
  }

  .btn-know {
    font-size: 18px;
    padding: 12px 30px;
  }

  .promo-section {
    padding: 80px 30px;
  }

  .phone-img {
    max-width: 95%;
    margin: 20px auto;
  }

}