:root {
  --black: black;
}

body {
  color: var(--black);
  background-color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.wa-audio-embed-hold {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.wa-chat-embed-hold {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: block;
}

.wa-audio-embed {
  background-color: #fff;
  justify-content: center;
  margin-bottom: 0;
}

.wa-chat-embed {
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-self: center;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
}

.page-wrapper {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
}

.section {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  height: 100svh;
  padding: 60px 20px 15px;
  display: flex;
  overflow: auto;
}

.container {
  grid-row-gap: 32px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.top-icon {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.para {
  color: rgba(0, 0, 0, .83);
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
}

.para.name {
  margin-top: auto;
  font-weight: 500;
}

.btm-content {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.btm-cont-med {
  grid-column-gap: 15px;
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.btm-cont-img {
  object-fit: cover;
  border-radius: 50%;
  width: 65px;
  height: 65px;
}

.para-pos {
  font-size: 18px;
  line-height: 1.5;
}

.btm-content-btm {
  grid-column-gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  font-size: 20px;
  display: flex;
}

.footer-link {
  color: rgba(0, 0, 0, .68);
  background-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  text-decoration: none;
}

.container-inside {
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-self: center;
  display: flex;
}

.heading {
  font-weight: 600;
}

.para-con {
  font-size: 14px;
  font-weight: 300;
}

.bold-text {
  font-family: Montserrat, sans-serif;
}

.image {
  border-radius: 10px;
}

.code-embed {
  align-self: stretch;
  font-family: Montserrat, sans-serif;
}

.code-embed-2 {
  aspect-ratio: auto;
  object-fit: fill;
  align-self: center;
  margin-top: 20px;
  position: static;
  overflow: visible;
}

.body {
  text-align: center;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 26px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    grid-row-gap: 24px;
  }

  .top-icon {
    font-size: 64px;
  }

  .para.name {
    font-size: 18px;
  }

  .btm-content {
    grid-row-gap: 32px;
  }

  .para-pos {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 24px;
  }

  .section {
    padding-top: 40px;
  }

  .container {
    grid-row-gap: 20px;
  }

  .btm-content {
    grid-row-gap: 24px;
  }

  .footer-link {
    font-size: 12px;
  }

  .container-inside {
    grid-row-gap: 20px;
  }
}

@media screen and (max-width: 479px) {
  .wa-audio-embed, .wa-chat-embed {
    margin-top: 10px;
  }

  .section {
    padding-top: 30px;
  }

  .para {
    margin-top: 10px;
  }

  .para.name {
    margin-top: auto;
    font-weight: 600;
  }

  .btm-cont-med {
    margin-top: 10px;
  }

  .para-pos {
    font-size: 14px;
    line-height: 1.3;
  }

  .btm-content-btm {
    margin-top: 10px;
  }

  .footer-link {
    font-size: 11px;
  }

  .heading {
    margin-top: 10px;
    font-weight: 600;
  }

  .para-con {
    font-size: 11px;
  }
}


