* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Karla", serif;
  color: #333;
}

#header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#header .left {
  width: 7%;
}
#header .left a img {
  width: 100%;
}
#header .mid {
  width: 59%;
}
#header .mid ul {
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#header .mid ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .mid ul li a {
  display: flex;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 2px solid #eaebec;
  padding-bottom: 10px;
}
#header .right {
  width: 22%;
}
.common_button {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 24px;
  min-width: 100px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 19px;
  letter-spacing: 1px;
  font-weight: 800;
}

.button_black {
  background-color: #170a07;
  color: white;
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none !important;
}
.button_black::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fc618c;
  border-radius: 50%;
  transition: all 0.4s;
  transform: scale(0);
  z-index: -1;
}
.button_black:hover {
  color: #fff;
}
.button_black:hover::after {
  transform: scale(40);
}

#hero_section {
  width: 90%;
  margin: 1rem auto;
  min-height: 600px;
  position: relative;
  z-index: 1;
  background: rgba(50, 192, 222, 0.2588235294);
  padding: 2rem;
  border-radius: 20px;
}
#hero_section .hero_content {
  width: 60%;
  padding-top: 0rem;
  position: relative;
  z-index: 1;
}
#hero_section .hero_content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 3.4rem;
  width: 80%;
}
#hero_section .hero_content p {
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 34px;
}
#hero_section .hero_content a {
  width: 250px;
  height: 55px;
  text-decoration: none;
}
#hero_section::after {
  content: "";
  background: url("https://prettyprogress.app/images/hero-img.webp");
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 0 157px;
  background-repeat: no-repeat;
}

.inner_wrapper {
  margin: 1rem auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
.inner_wrapper h2 {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.inner_wrapper p {
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #58514f;
}

.grid_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 1rem auto;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.grid_section .left {
  width: 48%;
}
.grid_section .left h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.grid_section .left p {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  line-height: 32px;
  color: #58514f;
}
.grid_section .left ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.grid_section .left ul li {
  width: 48%;
  font-size: 15px;
  display: flex;
  margin: 8px 0;
  letter-spacing: 1px;
}
.grid_section .right {
  width: 48%;
}
.grid_section .right img {
  width: 100%;
}

.width_300 {
  width: 400px !important;
  height: 60px;
}

.tag {
  background-color: #fb6982;
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.common_heading {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 0;
  width: 100%;
}
.common_heading h4 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.to-gray-50 {
  background: rgba(250, 250, 252, 0.7);
  padding: 3rem;
  margin: 1rem auto;
  border-radius: 10px;
  border: 1px dashed rgba(251, 105, 130, 0.4196078431);
}

.enterprise_option {
  background: #1c1c1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
  width: 90%;
  margin: 1rem auto;
}
.enterprise_option .left {
  width: 55%;
}
.enterprise_option .left h4 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.enterprise_option .left p {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  line-height: 32px;
}
.enterprise_option .left ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.enterprise_option .left ul li {
  width: 48%;
  font-size: 15px;
  display: flex;
  margin: 8px 0;
  letter-spacing: 1px;
}
.enterprise_option .right {
  width: 40%;
}
.enterprise_option .right .white_wrapper {
  background: #fff;
  color: #000;
  width: 100%;
  display: flex;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}
.enterprise_option .right .white_wrapper h4 {
  font-size: 1.7rem;
  letter-spacing: 1px;
  line-height: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.faq-accordion {
  width: 90%;
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
}
.faq-accordion .faq-item {
  width: 47%;
  border: 1px solid #ccc;
  padding: 20px;
  background: #f8f8f8;
  margin: 1rem;
  border-radius: 9px;
  transition: all 0.4s;
}
.faq-accordion .faq-item:hover {
  background-color: #e7e7e7;
}
.faq-accordion .faq-item .faq-question {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  margin: 0;
  font-size: 16px;
  letter-spacing: 1px;
}
.faq-accordion .faq-item .faq-question i {
  margin-right: 6px;
  transition: transform 0.3s ease;
  position: relative;
  top: 6px;
}
.faq-accordion .faq-item .faq-question.active i {
  transform: rotate(180deg);
}
.faq-accordion .faq-item .faq-answer {
  display: none;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 10px;
  letter-spacing: 1px;
  font-size: 15px;
}
.faq-accordion .faq-item .faq-answer p {
  margin: 0;
}

#download {
  width: 88%;
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem;
  background: #d0eff7;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#download h5 {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
}
#download p {
  letter-spacing: 1px;
  font-weight: 800;
  width: 90%;
  margin: auto;
  text-align: center;
  margin-bottom: 16px;
  font-size: 45px;
  line-height: 59px;
}
#download ul {
  display: flex;
  margin: 1rem 0;
  justify-content: center;
  align-items: center;
}
#download ul li {
  display: flex;
  width: 30%;
  overflow: hidden;
  margin: 0 10px;
}
#download ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#download ul li a img {
  width: 100%;
}

.fotter {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #eee;
}
.fotter p {
  margin: 10px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.web_hidden {
  display: none;
}

@media only screen and (max-width: 768px) {
  #header {
    justify-content: space-between;
  }
  #header .left {
    width: 25%;
  }
  #header .right {
    width: 55%;
  }
  #header .mid {
    display: none !important;
  }
  .button_black {
    font-size: 13px;
  }
  #hero_section {
    width: 100%;
  }
  #hero_section .web_hidden {
    display: block !important;
    width: 100%;
    margin-top: 2rem;
  }
  #hero_section::after {
    display: none;
  }
  #hero_section .hero_content {
    width: 100%;
  }
  #hero_section .hero_content h1 {
    width: 100%;
    text-align: center;
    font-size: 25px;
    line-height: 35px;
  }
  #hero_section .hero_content p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 32px;
    text-align: center;
  }
  #yt_video {
    width: 100%;
    margin: auto;
    padding: 1rem 0;
  }
  #yt_video h2 {
    width: 100%;
    text-align: center;
    font-size: 25px;
    line-height: 35px;
    font-weight: 800;
  }
  #yt_video p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 32px;
    text-align: center;
  }
  #yt_video iframe {
    height: auto !important;
  }
  .grid_section {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
  }
  .grid_section .left, .grid_section .right, .grid_section .common_heading {
    width: 100%;
    margin: 10px 0;
  }
  .grid_section .left h3, .grid_section .left h4, .grid_section .right h3, .grid_section .right h4, .grid_section .common_heading h3, .grid_section .common_heading h4 {
    width: 100%;
    text-align: left;
    font-size: 25px;
    line-height: 35px;
    font-weight: 800;
  }
  .grid_section .left h4, .grid_section .right h4, .grid_section .common_heading h4 {
    margin: 0;
    padding: 0;
  }
  .grid_section .left p, .grid_section .right p, .grid_section .common_heading p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 32px;
    text-align: left;
  }
  .grid_section .left img, .grid_section .right img, .grid_section .common_heading img {
    width: 100%;
  }
  .grid_section .left ul li, .grid_section .right ul li, .grid_section .common_heading ul li {
    width: 100%;
  }
  .grid_section .left .button_black, .grid_section .right .button_black, .grid_section .common_heading .button_black {
    width: 100% !important;
    text-align: center;
    font-size: 11px;
  }
  .grid_section .common_heading {
    margin: 0 !important;
  }
  .faq-accordion {
    width: 100%;
  }
  .faq-accordion .faq-item {
    margin: 10px 0;
    width: 100%;
    padding: 0;
  }
  .faq-accordion .faq-item .faq-question {
    font-size: 14px;
  }
  .common_heading {
    width: 100%;
    margin: 10px 0;
  }
  .common_heading h3, .common_heading h4 {
    width: 100%;
    text-align: left;
    font-size: 25px;
    line-height: 35px;
    font-weight: 800;
  }
  .common_heading h4 {
    margin: 0;
    padding: 0;
  }
  .common_heading p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 32px;
    text-align: left;
  }
  .common_heading img {
    width: 100%;
  }
  .common_heading ul li {
    width: 100%;
  }
  .common_heading .button_black {
    width: 100% !important;
    text-align: center;
    font-size: 11px;
  }
  .common_heading {
    margin: 0 !important;
  }
  #download {
    width: 90%;
    border-radius: 10px;
    padding: 20px;
  }
  #download p {
    color: #300041;
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 38px;
    width: 100%;
    letter-spacing: 0;
  }
  #download h2 {
    margin: 0;
    font-size: 14px;
  }
  #download ul {
    flex-direction: column;
  }
  #download ul li {
    width: 60%;
    margin: 10px 0;
  }
  #download .fotter p {
    text-align: center;
  }
  .enterprise_option {
    width: 100%;
    margin: 0;
    flex-direction: column;
    padding: 1rem;
  }
  .enterprise_option .left, .enterprise_option .right {
    width: 100%;
  }
  .enterprise_option .left p, .enterprise_option .right p {
    font-size: 16px;
  }
  .enterprise_option .left h4, .enterprise_option .right h4 {
    font-size: 25px;
  }
  .enterprise_option .left ul li, .enterprise_option .right ul li {
    width: 100%;
  }
  .enterprise_option .left .white_wrapper, .enterprise_option .right .white_wrapper {
    margin: 10px 0;
  }
  .enterprise_option .left .white_wrapper h4, .enterprise_option .right .white_wrapper h4 {
    font-size: 23px;
    line-height: 37px;
  }
  .enterprise_option .width_300 {
    width: 100% !important;
  }
}/*# sourceMappingURL=index.css.map */