* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* background-color: #ece5dd; */
/* #075E54 */
img {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  font-size: 1rem;
}

.btn {
  background-color: rgb(3, 207, 101);
  color: white;
  padding: 10px 20px;
  padding: 15px 30px !important;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.562);
}

.btnn {
  padding: 10px 20px !important;
}

.btn:hover {
  background-color: #075e54;
  transition: 0.3s ease-in-out;
}

h1 {
  font-size: 3.5rem;
  color: #075e54;
}

h2{
  font-size: 2.3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

section {
  padding: 5rem 3rem;
}

@keyframes slowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.whatapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  z-index: 100;
  display: inline-block;
  animation: slowBounce 3s ease-in-out infinite;
}

.nav {
  width: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  position: fixed;
  background-color: #ffffff;
  border-bottom: 1px solid grey;
  box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.562);
}

.nav-item {
  margin-right: 5rem;

  a {
    color: black !important;
    margin-left: 4rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

header {
  display: none;
}

.navbar {
  width: 96% !important;
  display: block;
  margin: auto;
  background-color: white;
}

.navbar-list li {
  margin-top: 4rem;
}

.nav-close-btn {
  width: 30px;
  height: 30px;
}

.dark {
  background-color: black !important;
}

.navbar {
  background-color: white;
  position: fixed;
  bottom: 100%;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  height: 100%;
}

.navbar.active {
  transform: translateY(100%);
  visibility: visible;
}

.navbar .btn-primary {
  display: none;
}

.navbar-link {
  width: 85% !important;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: var(--fw500);
  padding: 10px 20px;
  border-radius: 8px;
}

.navbar-link:hover {
  background: var(--new-purple);
}

.nav-open-btn,
.nav-close-btn {
  background: white;
  color: var(--black);
  font-size: 30px;
  padding: 3px;
  border-radius: 8px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.nav-close-btn {
  position: absolute;
  top: 20px;
  right: 15px;
}

.navbar-list {
  width: 95%;
}

.bt-primary {
  margin-left: 1rem;
}

.logo {
  margin-left: 5rem;
}

.logo img {
  width: 130px;
  height: 100%;
  left: 0;
}

.banner {
  padding-top: 10rem;
  text-align: center;

  p {
    margin-bottom: 2rem;
  }
}

.green {
  color: rgb(3, 207, 101);
}

.banner-btn {
  background-color: rgb(3, 207, 101);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}

.dashboard {
  width: 80%;
  display: block;
  margin: auto;
  border-radius: 70px;
}

.client {
  /* background-color: #FDECFF; */
  margin-top: 5rem;
  padding-bottom: 0 !important;

  h2 {
    text-align: center;
  }
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  margin-top: 2rem;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: "";
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 30s slides infinite linear;
  align-items: center;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 220px !important;
  width: 220px !important;
  object-fit: contain;
  margin: 1rem 3rem;
}

.result {
  text-align: center;
}

.dashboard {
  display: block;
}

.dashboard-mobo {
  display: none;
}

/* broadcast  */

.broadcast {

  h2,
  .para {
    text-align: center;
  }
}

.broad{
  margin-top: -5rem;
}

.broad-cont {
  width: 90%;
  margin: auto;
}

.broad h4,
.broad p {
  width: 100%;
}

.broad-item {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  margin-top: 5rem;

  h4 {
    font-size: 2.5rem;
  }

  img {
    width: 700px;
    height: 500px;
    border-radius: 30px;
    object-fit: contain;
    border: 3px solid #075e54;
    box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.562);
  }

  a {
    position: absolute;
    font-size: 1rem;
    margin-top: 2rem;
    cursor: pointer;
  }
}

.chat-bot {
  background-color: #075e54;
  border-radius: 30px;
}

.chat-bot img {
  object-fit: cover;
  width: 95%;
  border: none;
  overflow: hidden;
  margin: auto;
  padding: 3rem 0;
  box-shadow: none;
}

.broad-rev {
  flex-direction: row-reverse;
}

.broad {
  padding-left: 3rem;
}

.broad-img {
  width: 60% !important;
  /* background-color: #075e54; */


  img {
    width: 100% !important;
    height: 300px;
    object-fit: contain;
  }
}


/*   why whatsapp */

.whatapp-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 3rem;
}

.why-whatsapp {
  text-align: center;
  background-color: #075e54;
  color: white;

  p {
    font-weight: 500;
  }
}

.why-whatsapp h4 {
  font-size: 3rem;
}


.whatapp-item {
  padding: 3rem;
  width: 15%;
  border-radius: 20px;
  border: 1px solid rgba(128, 128, 128, 0.205);
  box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.562);
  background-color: white;
  color: black;
}

/*  aixbot */

.whatapp-api {
  padding: 4rem;
  padding-bottom: 2rem;
  border-radius: 50px;
  width: 80%;
  margin: 3rem auto;
  background-color: #ece5dd;

  h2 {
    font-size: 2.5rem;
  }

  .para {
    width: 60%;
  }
}

.whatappapi-cont img {
  width: 50px;
  object-fit: contain;
}

.whatappapi-cont {
  width: 50%;
}

.api-img {
  width: 50%;
}

.what-item {
  display: flex;
  margin-top: 2rem;
  align-items: center;

  img {
    width: 30px;
    height: 30px;
  }
}

.whatapp-detail {
  margin-left: 1.5rem;

  h5 {
    font-size: 1rem;
  }
}

table {
  width: 95%;
  margin: auto;
  border-radius: 20px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
}

th {
  background-color: #075e54;
  color: white;
  font-size: 1.5rem;
  text-align: left;
}

td {
  background-color: #ece5dd;
}

th,
td {
  padding: 2rem;
  font-size: 1rem;
  /* border: none; */
  border: 0.5px solid #00000015;
}

.yes img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
  margin-bottom: -5px;
}


.no img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  margin-right: 10px;
  margin-bottom: -1px;
}


.feat img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: -0.5rem;
  margin-right: 20px;
}

.cent{
  text-align: center;
}

.plan {

  h3,
  p {
    text-align: center;
  }
}

.plan-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btns {
  background-color: #075e54;
}

.plan-item {
  margin-top: 10rem !important;
  width: 25%;
  background-color: #ece5dd;
  border: 1px solid rgba(128, 128, 128, 0.205);
  box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.562);
  padding: 2rem;
  border-radius: 30px;
  height: 100%;

  h4 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    font-weight: 500;
  }

  h3{
    text-align: left;
    font-weight: 700;
  }
}

.plan-item h6 {
  text-decoration: line-through;
  font-size: 1rem;
}

.plan-main {
  width: 30%;
  margin-top: 4rem !important;
}

.plan-main span {
  padding: 5px;
  border: 2px solid #075e54;
  border-radius: 10px;
  color: #075e54;
  font-weight: 500;
  width: 140px;
  display: block;
  margin-left: auto;
  text-align: center;
}

.plan-img {
  margin-right: 1rem;
}

.plan-img img {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.plan-cont {
  width: 100%;
  display: flex;
  justify-content: space-between;

  p {
    text-align: left !important;
  }
}

.plan-flex {
  width: 100%;
  display: flex;
  margin-top: 1rem;
}

.get-started {
  background-image: url(./img/whatbg.png);
  background-size: cover;
  background-position: center;
}

footer {
  background-color: black;
  color: white;
  padding: 5rem;
  align-items: baseline !important;
}

.foot-item img {
  width: 150px;
  height: 100%;
  object-fit: contain;
}

.foot-item {
  h4 {
    font-size: 1.5rem;
  }
}

.foot-links {
  display: flex;
  flex-direction: column;

  p {
    color: grey;
    margin-top: 0.5rem;
  }

  a {
    margin-top: 1rem;
    margin-left: 0.1rem;
    color: grey;
    font-weight: 500;
  }
}

li {
  list-style: none !important;
}

.info {
  width: 30%;
}

.copy {
  width: 100% !important;
  text-align: center;
  background-color: black;
  padding: 1rem 0;
}

.copyright {
  color: grey;

}

@media only screen and (max-width: 700px) {
  .btn {
    padding: 15px 25px !important;
    font-size: 1.1rem !important;
  }

  h1 {
    font-size: 2.5rem;
    color: #075e54;
    margin-top: 5rem;
  }

  h3 {
    font-size: 2rem !important;
    width: 100%;
    text-align: center;
    margin: auto;
  }

  h2 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.5rem !important;
    font-weight: 500;
  }

  .logo a {
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav {
    padding: 1rem;
    margin: 0;
    padding: 0;
  }

  section {
    padding: 3rem 1rem;
  }

  .banner {
    margin-top: -10rem;
  }

  .link {
    display: none;
  }

  .logo {
    margin: 0;
    padding: 1rem;
  }

  .logo img {
    width: 130px;
    height: 100%;
    object-fit: contain;
  }

  .dashboard {
    width: 100%;
    border-radius: 30px;
  }

  .logo_items img {
    height: 150px !important;
    width: 150px !important;
    object-fit: contain;
    margin: 0rem 1rem;
  }

  .broad-cont {
    padding: 0;
    width: 100%;
  }

  .broad-item {
    flex-direction: column-reverse;
    margin-top: 5rem;
    padding: 0 !important;
    width: 100%;
  }

  .broad-img {
    height: 100% !important;
    width: 100% !important;
    margin-top: 3rem;
  }

  .broad-img img {
    width: 90% !important;
    height: 100% !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    border-radius: 30px !important;
  }

  .broad h4,
  .broad p {
    width: 100%;
  }

  .broad a {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .broad {
    margin-left: 0rem;
    padding: 0;
  }

  .broad {
    margin-top: 3rem;
  }

  /* .b-img {
    margin-top: 5rem !important;
    height: 100%;
    margin: 0;
    padding: 15px !important;
    background-color: #075e54;
    display: block;
    justify-content: center;
    img {
      width: 90%;
      height: 90%;
      border-radius: 30px;
      margin-top: 0rem;
      display: block;
      margin-left: -2px !important;
      margin-right: auto !important;
    }
  }

  .b-img2 {
    padding: 0;

    img {
      padding: 1rem;
      width: 90%;
      height: 90%;
      margin: auto;
      margin-top: 5rem;
    }
  } */

  .cont-api {
    flex-direction: column;
  }

  .api-img img {
    width: 100%;
    height: 400px;
    object-fit: contain;
  }

  .whatapp-item,
  .para,
  .api-img {
    width: 100% !important;
  }

  .whatapp-api {
    padding: 2rem;
    padding-bottom: 0;
    margin-top: 5rem;
  }

  .whatappapi-cont {
    width: 100%;
  }

  .whatapp-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .plan-cont {
    flex-direction: column;
  }

  .plan-cont p {
    font-weight: 500;
    font-size: 1.2rem;
  }

  .plan-item {
    width: 80%;
    margin: auto;
    margin-top: 5rem !important;
  }

  table {
    width: 100%;
  }

  th,
  td {
    padding: 1rem;
    line-height: 2rem;
  }

  .whatapp-cont {
    flex-direction: column;
  }

  .whatapp-item {
    padding: 0 !important;
    width: 70% !important;
    margin-bottom: 1rem !important;
    display: block;
    margin: auto;
    height: 150px;
    align-items: center;
    align-content: center;

    h4 {
      font-size: 3rem !important;
    }
  }

  .get-started {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 180px;
  }

  footer {
    padding: 1rem;
    flex-direction: column !important;

    .foot-item {
      margin-top: 3rem;
    }
  }

  .dashboard {
    display: none;
  }

  .dashboard-mobo {
    display: block;
    border-radius: 30px 30px 0 0;
    padding: 0;
    width: 100%;
    box-shadow: 0px 5px 10px rgba(128, 128, 128, 0.562);
  }

  .table-cont {
    padding: 3rem 5px !important;
    display: block;
    margin: auto;
  }

  .nav {
    display: none;
  }

  header {
    display: block !important;
    background-color: black;
  }

  td {
    font-size: 12px;
  }

  .whatapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    z-index: 100;
    display: inline-block;
    animation: slowBounce 3s ease-in-out infinite;
  }

  table {
    width: 90%;
    margin: auto;
  }

  .yes,
  .no {
    text-align: center;
  }

  .get-started div {
    padding: 0 !important;
    margin: 0 !important;
  }

  .get-started h1 {
    margin-top: 0rem;
  }

  .info {
    width: 90%;
  }

  .copy {
    padding-top: 3rem;
  }

}

@media only screen and (max-width: 350px) {
  h1 {
    font-size: 2rem;
    color: #075e54;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1rem;
    font-weight: 500;
  }

  p {
    font-size: .9rem;
  }

  th {
    font-size: .8rem;
  }

  td {
    font-size: 14px;
  }

  tr,
  td {
    padding: 10px 2px;
  }

  .whatapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    z-index: 100;
    display: inline-block;
    animation: slowBounce 3s ease-in-out infinite;
  }


  .whatapp-api {
    padding: 2rem;
    padding-bottom: 0;
    margin-top: 5rem;
  }

  .whatapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    z-index: 100;
    display: inline-block;
    animation: slowBounce 3s ease-in-out infinite;
  }

  table {
    width: 90%;
    margin: auto;
  }

  .yes,
  .no {
    text-align: center;
  }

  .get-started div {
    padding: 0 !important;
    margin: 0 !important;
  }

  .get-started h1 {
    margin-top: 0rem;
  }

}

@media only screen and (max-width: 1000px) and (min-width: 701px) {

  .nav {
    display: none;
  }

  header {
    display: block !important;
    background-color: black;
  }

  h1 {
    font-size: 2.5rem;
    color: #075e54;
  }

  h3 {
    font-size: 2rem !important;
    width: 100%;
    text-align: center;
    margin: auto;
  }

  h4 {
    font-size: 1.3rem !important;
    font-weight: 500;
  }

  .logo a {
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav {
    padding: 1rem;
    margin: 0;
    padding: 0;
  }

  section {
    padding: 3rem 1rem;
  }

  .broad-item {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .broad-img {
    margin-top: 10rem;
  }

  .broad {
    text-align: center;
    width: 100%;
    margin: auto;

    h4,
    p {
      width: 100%;
      text-align: center;
    }
  }
}

.plan-cont p:hover {
  font-weight: 600;
  transition: .3 ease-in-out;
}

@media only screen and (min-width: 1800px) {
  .broad-img img {
    height: 500px !important;
    width: 500px !important;
    object-fit: contain;
  }

  .broad-img {
    display: flex;
    justify-content: center;
  }

  .chat-bot {
    background-color: white !important
  }

  .chat-bot img{
    height: 700px !important;
    width: 700px !important;
    border-radius: 30px;
  }

  .broad-item {
    justify-content: space-between !important;
  }
}