.container {
  max-width: 1130px;
  margin: 0 auto;
}

.content-decoration {
  text-align: center;
}
.content-decoration h3 {
  text-align: center;
  background: #6366f1;
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
  width: 15%;
  margin: 0 auto;
}

#top-menu {
  width: 100%;
  background: #1c2b43;
  position: fixed;
  z-index: 1;
}
#top-menu .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
#top-menu .navigation .logo img {
  height: 40px;
  background-size: cover;
  opacity: 2;
  filter: contrast(2.5);
}
#top-menu .navigation .main-links {
  text-align: center;
  justify-content: center;
  align-items: center;
}
#top-menu .navigation .main-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 20px;
}
#top-menu .navigation .purchase-now {
  border: solid 2px white;
  padding: 15px 28px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0.3s;
}
#top-menu .navigation .purchase-now:hover {
  color: black;
  background: white;
}
#top-menu .navigation .purchase-now:hover .fa-solid {
  color: black;
}
#top-menu .navigation .purchase-now .fa-solid {
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease-in-out 0.3s;
}
#top-menu .navigation .mobile {
  display: none;
  border: solid 3px white;
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0.3s;
}
#top-menu .navigation .mobile:hover {
  color: black;
  background: white;
}
#top-menu .navigation .mobile:hover .fa-bars {
  color: black;
}
#top-menu .navigation .mobile .fa-bars {
  color: white;
  margin-right: 0;
  transition: all 0.3s ease-in-out 0.3s;
}

#side-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 3;
}
#side-menu .side {
  height: 100vh;
  z-index: 3;
  background: black;
  text-decoration: none;
  color: white;
  padding: 0 30px 50px 30px;
}
#side-menu .side .close-btn {
  font-size: 1.4rem;
  font-weight: 100;
  text-align: right;
  padding-top: 20px;
}
#side-menu .side ul {
  padding: 0 0 35px;
  position: relative;
}
#side-menu .side ul li {
  padding: 25px 100px 0px 0px;
}
#side-menu .side ul li a {
  text-decoration: none;
  color: white;
  padding: 25px 100px 20px 0px;
  font-weight: bold;
}
#side-menu .side .purchase-now__side {
  background: #6366f1;
  padding: 15px 50px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0.3s;
}
#side-menu .side .purchase-now__side a {
  text-decoration: none;
  color: white;
}
#side-menu .side .purchase-now__side:hover {
  color: black;
  background: white;
}
#side-menu .side .purchase-now__side:hover .fa-solid {
  color: black;
}
#side-menu .side .purchase-now__side .fa-solid {
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease-in-out 0.3s;
}

@keyframes slideUp {
  from {
    transform: translateY(30%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animateOpenLeft {
  from {
    transform: translateX(-100%);
    to {
      transform: translateX(0);
    }
  }
}
@keyframes animateCloseLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#side-menu.side-menu__active {
  z-index: 3;
  animation: animateOpenLeft 2.4s ease-in-out;
  visibility: visible;
  opacity: 1;
}

#top-header .background-img {
  background-image: url("../Pics/v.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #0a1425;
}
#top-header .background-img .section-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 200px 0;
  grid-column-gap: 20px;
}
#top-header .background-img .section-container .left-section {
  margin-top: 125px;
}
#top-header .background-img .section-container .left-section .top-slide {
  background: #122544;
  padding: 15px 0 15px 4px;
  border-radius: 50px;
  width: 62%;
  color: white;
  position: relative;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}
#top-header .background-img .section-container .left-section .top-slide span {
  background: #6366f1;
  padding: 7px 17px;
  border-radius: 20px;
  position: relative;
  margin-right: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
#top-header .background-img .section-container .left-section .header-left {
  font-size: 3.1rem;
  font-weight: 900;
  color: white;
}
#top-header .background-img .section-container .left-section .header-left__two {
  font-size: 3rem;
  font-weight: 900;
  color: #97f2ff;
  padding: 15px 0;
}
#top-header .background-img .section-container .left-section .description {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 15px 0 15px 0;
  margin-bottom: 50px;
  color: #adb5bd;
}
#top-header .background-img .section-container .left-section .request-demo__btn {
  text-decoration: none;
  color: white;
  background: #6366f1;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  margin-right: 10px;
  transition: all 0.5s ease-in-out 0.1s;
}
#top-header .background-img .section-container .left-section .request-demo__btn:hover {
  background: #7a7cf5;
}
#top-header .background-img .section-container .left-section .sign-up__btn {
  text-decoration: none;
  color: black;
  background: white;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.5s ease-in-out 0.1s;
}
#top-header .background-img .section-container .left-section .sign-up__btn:hover {
  background: #6366f1;
  color: white;
}
#top-header .background-img .section-container .left-section .logos {
  margin-top: 100px;
}
#top-header .background-img .section-container .left-section .logos .logo-header {
  color: #64728f;
  display: block;
  margin-bottom: 30px;
  font-size: 1.3rem;
}
#top-header .background-img .section-container .left-section .logos a {
  margin-right: 20px;
}
#top-header .background-img .section-container .left-section .logos a img {
  width: 20%;
}
#top-header .background-img .section-container .right-section {
  height: 100%;
  background: white;
  text-align: center;
  padding: 60px 50px 50px;
  border-radius: 20px;
}
#top-header .background-img .section-container .right-section .input-logo img {
  height: 40px;
  background-size: cover;
  opacity: 2;
  filter: contrast(2.5);
  margin-bottom: 30px;
}
#top-header .background-img .section-container .right-section .input-header {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}
#top-header .background-img .section-container .right-section .input-description {
  font-size: 17px;
  padding: 10px 0;
}
#top-header .background-img .section-container .right-section .form-submit {
  padding-top: 30px;
  display: inline-grid;
  width: 100%;
  position: relative;
}
#top-header .background-img .section-container .right-section .form-submit label {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0;
}
#top-header .background-img .section-container .right-section .form-submit input {
  width: 100%;
  padding: 16px 25px;
  font-size: 18px;
  border-radius: 6px;
  border: solid 1px lightgrey;
}
#top-header .background-img .section-container .right-section .form-submit button {
  background: #6366f1;
  color: white;
  margin: 35px 0 0;
  padding: 15px 0;
  font-size: 1.1rem;
  border-radius: 10px;
  border: solid 1px lightgrey;
  font-weight: 700;
  transition: all 0.5s ease-in-out 0.1s;
}
#top-header .background-img .section-container .right-section .form-submit button:hover {
  cursor: pointer;
  background: #7a7cf5;
}
#top-header .background-img .section-container .right-section .form-submit .form-p {
  padding: 20px 0;
}
#top-header .background-img .section-container .right-section .form-submit a {
  text-decoration: none;
  border: solid 1px #fafafa;
  border-radius: 10px;
  vertical-align: middle;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  color: black;
  font-weight: 900;
  transition: all 0.5s ease-in-out 0.1s;
}
#top-header .background-img .section-container .right-section .form-submit a:hover {
  background: #fafafa;
}
#top-header .background-img .section-container .right-section .form-submit a img {
  margin-right: 10px;
  width: 5%;
}

#features-section {
  text-align: center;
  padding: 100px 0;
}
#features-section .content-decoration {
  text-align: center;
}
#features-section .content-decoration h3 {
  text-align: center;
  background: #6366f1;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
  width: 18%;
  margin: 0 auto;
  text-transform: uppercase;
}
#features-section h2 {
  padding: 25px 0;
  font-size: 2.6rem;
  font-weight: 900;
}
#features-section .header-p {
  font-size: 1.2rem;
  color: #64728f;
  line-height: 1.5;
  padding-bottom: 60px;
}
#features-section .left-btn {
  background: #6366f1;
  border-radius: 5px;
  padding: 17px 30px;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 900;
  margin-right: 5px;
  transition: all 0.5s ease-in-out 0.1s;
}
#features-section .left-btn:hover {
  cursor: pointer;
  background: #7a7cf5;
}
#features-section .right-btn {
  background: white;
  border: solid 3px #6366f1;
  border-radius: 5px;
  padding: 14px 30px;
  text-decoration: none;
  color: #6366f1;
  font-size: 1rem;
  font-weight: 900;
  margin-left: 5px;
  transition: all 0.5s ease-in-out 0.1s;
}
#features-section .right-btn:hover {
  background: #6366f1;
  color: white;
}
#features-section .three-sections {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#features-section .three-sections .features-section__one .feature-one {
  padding: 20px 0;
}
#features-section .three-sections .features-section__one .feature-one .fa-chart-line {
  font-size: 1.7rem;
  color: #0062ff;
  background: #e0ecff;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
}
#features-section .three-sections .features-section__one .feature-one .fa-square-envelope {
  font-size: 1.7rem;
  color: #22c55e;
  background: #e4f8ec;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
}
#features-section .three-sections .features-section__one .feature-one .fa-user-group {
  font-size: 1.7rem;
  color: #fdb52a;
  background: #fff6e5;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
}
#features-section .three-sections .features-section__one .feature-one h3 {
  font-size: 1.5rem;
  font-weight: 900;
  padding: 20px 0;
}
#features-section .three-sections .features-section__one .feature-one p {
  font-size: 1rem;
  line-height: 1.3;
  color: #64728f;
}
#features-section .three-sections .features-section__one .feature-one .link {
  margin-top: 30px;
}
#features-section .three-sections .features-section__one .feature-one .link a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 900;
  transition: all 0.3s ease-in-out 0.1s;
}
#features-section .three-sections .features-section__one .feature-one .link a:hover {
  cursor: pointer;
  color: #6366f1;
}
#features-section .three-sections .features-section__two {
  position: relative;
  top: 60px;
  height: 745px;
  width: 425px;
}
#features-section .three-sections .features-section__two img {
  width: 100%;
  max-width: 82%;
}
#features-section .three-sections .features-section__three .feature-one {
  padding: 20px 0;
}
#features-section .three-sections .features-section__three .feature-one .fa-pen {
  font-size: 1.7rem;
  color: #fa5b68;
  background: #feebed;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
}
#features-section .three-sections .features-section__three .feature-one .fa-tablet-screen-button {
  font-size: 1.7rem;
  color: #6366f1;
  background: #ecedfd;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
}
#features-section .three-sections .features-section__three .feature-one .fa-gear {
  font-size: 1.7rem;
  color: #13d5ff;
  background: #e3faff;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
}
#features-section .three-sections .features-section__three .feature-one h3 {
  font-size: 1.5rem;
  font-weight: 900;
  padding: 20px 0;
}
#features-section .three-sections .features-section__three .feature-one p {
  font-size: 1rem;
  line-height: 1.3;
  color: #64728f;
}
#features-section .three-sections .features-section__three .feature-one .link {
  margin-top: 30px;
}
#features-section .three-sections .features-section__three .feature-one .link a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 900;
  transition: all 0.3s ease-in-out 0.1s;
}
#features-section .three-sections .features-section__three .feature-one .link a:hover {
  cursor: pointer;
  color: #6366f1;
}

#our-process__section {
  background: #f9faff;
  text-align: center;
  padding: 100px 0;
}
#our-process__section .content-decoration {
  text-align: center;
}
#our-process__section .content-decoration h3 {
  text-align: center;
  background: #6366f1;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
  width: 12%;
  margin: 0 auto;
}
#our-process__section h2 {
  padding: 25px 0;
  font-size: 2.6rem;
  font-weight: 900;
}
#our-process__section .header-p {
  font-size: 1.2rem;
  color: #64728f;
  line-height: 1.5;
  padding-bottom: 25px;
  margin-bottom: 54px;
}
#our-process__section .four-steps__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#our-process__section .four-steps__container .steps-section .circle {
  background: #ecedfd;
  color: #6366f1;
  padding: 13px 23px;
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: bold;
}
#our-process__section .four-steps__container .steps-section h5 {
  margin-top: 73px;
  color: #64728f;
  font-size: 0.9rem;
  font-weight: bold;
}
#our-process__section .four-steps__container .steps-section h3 {
  margin: 36px 0 28px;
  font-size: 2rem;
  font-weight: bold;
}
#our-process__section .four-steps__container .steps-section p {
  font-size: 1rem;
  color: #64728f;
  line-height: 1.4;
}

#join-our-community__section {
  padding: 100px 0;
  text-align: center;
}
#join-our-community__section .content-decoration h3 {
  text-align: center;
  background: #6366f1;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
  width: 19%;
}
#join-our-community__section h2 {
  padding: 25px 0;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.4;
}
#join-our-community__section .stat-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 0 100px;
}
#join-our-community__section .stat-container .stats-section .number {
  font-size: 3.2rem;
  font-weight: bolder;
  color: #6366f1;
  margin-bottom: 30px;
}
#join-our-community__section .stat-container .stats-section .stat-title {
  font-size: 1.2rem;
  color: #64728f;
}

#faq-section {
  background-color: #f9faff;
  padding: 100px 0;
}
#faq-section .faq-container__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#faq-section .faq-container__section .top-left .content-decoration__faq {
  width: 13%;
}
#faq-section .faq-container__section .top-left .content-decoration__faq h3 {
  text-align: center;
  background: #6366f1;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
}
#faq-section .faq-container__section .top-left h2 {
  padding: 15px 0 10px;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.4;
}
#faq-section .faq-container__section .top-left .header-p {
  font-size: 1.3rem;
  color: #64728f;
  line-height: 1.5;
  padding-bottom: 60px;
}
#faq-section .faq-container__section .top-right {
  display: flex;
  justify-content: right;
  align-items: end;
  margin-bottom: 40px;
}
#faq-section .faq-container__section .top-right .left-btn {
  background: #6366f1;
  border-radius: 5px;
  padding: 17px 30px;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 900;
  margin-right: 5px;
  transition: all 0.5s ease-in-out 0.1s;
}
#faq-section .faq-container__section .top-right .left-btn:hover {
  cursor: pointer;
  background: #7a7cf5;
}
#faq-section .faq-container__section .top-right .right-btn {
  background: white;
  border: solid 3px #6366f1;
  border-radius: 5px;
  padding: 14px 30px;
  text-decoration: none;
  color: #6366f1;
  font-size: 1rem;
  font-weight: 900;
  margin-left: 10px;
  transition: all 0.5s ease-in-out 0.1s;
}
#faq-section .faq-container__section .top-right .right-btn:hover {
  background: #6366f1;
  color: white;
}
#faq-section .card-container {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
#faq-section .card-container .card {
  border: solid 2px #e5e7eb;
  border-radius: 15px;
  padding: 40px 30px 20px;
}
#faq-section .card-container .card .fa-chart-line {
  font-size: 1.7rem;
  color: #0062ff;
  background: #e0ecff;
  border-radius: 50%;
  padding: 20px;
}
#faq-section .card-container .card .fa-square-envelope {
  font-size: 1.7rem;
  color: #22c55e;
  background: #e4f8ec;
  border-radius: 50%;
  padding: 20px;
}
#faq-section .card-container .card .fa-user-group {
  font-size: 1.7rem;
  color: #fdb52a;
  background: #fff6e5;
  border-radius: 50%;
  padding: 20px;
}
#faq-section .card-container .card .fa-pen {
  font-size: 1.7rem;
  color: #fa5b68;
  background: #feebed;
  border-radius: 50%;
  padding: 20px;
}
#faq-section .card-container .card .fa-tablet-screen-button {
  font-size: 1.7rem;
  color: #6366f1;
  background: #ecedfd;
  border-radius: 50%;
  padding: 20px;
}
#faq-section .card-container .card .fa-gear {
  font-size: 1.7rem;
  color: #13d5ff;
  background: #e3faff;
  border-radius: 50%;
  padding: 20px;
}
#faq-section .card-container .card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 35px 0 10px;
  line-height: 1.5;
}
#faq-section .card-container .card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #64728f;
}

#pricing-plan__section {
  text-align: center;
  padding: 100px 0;
}
#pricing-plan__section .content-decoration {
  text-align: center;
}
#pricing-plan__section .content-decoration h3 {
  text-align: center;
  background: #6366f1;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
  width: 13%;
}
#pricing-plan__section h2 {
  padding: 25px 0;
  font-size: 2.6rem;
  font-weight: 900;
}
#pricing-plan__section .header-p {
  font-size: 1.2rem;
  color: #64728f;
  line-height: 1.5;
  padding-bottom: 60px;
}
#pricing-plan__section .pricing-plans__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card {
  border: solid 1px #e5e7eb;
  padding: 20px 30px;
  text-align: left;
  border-radius: 5px;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 0 30px;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .price {
  color: #64728f;
  font-size: 1rem;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .price .dollar-sign {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .price .ten {
  font-size: 3.2rem;
  font-weight: bold;
  color: black;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card p {
  color: #64728f;
  font-size: 1rem;
  padding: 20px 0;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .get-started__btn {
  color: #6366f1;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #6366f1;
  border-radius: 5px;
  padding: 15px 0;
  transition: all 0.5s ease-in-out 0.1s;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .get-started__btn:hover {
  background: #6366f1;
  color: white;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .learn-more__btn {
  background: #f7f8f9;
  color: black;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border: 3px solid #f7f8f9;
  border-radius: 10px;
  padding: 15px 0;
  margin-top: 20px;
  transition: all 0.5s ease-in-out 0.1s;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card .learn-more__btn:hover {
  background: #949494;
  color: white;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card ul {
  border-top: solid 1px #f7f8f9;
  margin: 30px 0;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card ul li {
  margin-top: 30px;
  font-size: 1rem;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__card ul li .fa-circle-check {
  color: #6366f1;
  font-size: 1.1rem;
  margin-right: 2px;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle {
  border: solid 2px #6366f1;
  padding: 20px 30px;
  text-align: left;
  border-radius: 5px;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card {
  width: 100%;
  position: relative;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card h4 {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 0 30px;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card span {
  background: #97f2ff;
  position: absolute;
  top: 12px;
  right: 0;
  display: inline-block;
  width: 35%;
  padding: 5px;
  border-radius: 15px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .price {
  color: #64728f;
  font-size: 1rem;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .price .dollar-sign {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .price .ten {
  font-size: 3.2rem;
  font-weight: bold;
  color: black;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle p {
  color: #64728f;
  font-size: 1rem;
  padding: 20px 0;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .get-started__btn {
  background: #6366f1;
  color: white;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  padding: 15px 0;
  transition: all 0.5s ease-in-out 0.1s;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .get-started__btn:hover {
  cursor: pointer;
  background: #7a7cf5;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .learn-more__btn {
  background: #f7f8f9;
  color: black;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border: 3px solid #f7f8f9;
  border-radius: 5px;
  padding: 15px 0;
  margin-top: 20px;
  transition: all 0.5s ease-in-out 0.1s;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle .learn-more__btn:hover {
  background: #949494;
  color: white;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle ul {
  border-top: solid 1px #f7f8f9;
  margin: 30px 0;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle ul li {
  margin-top: 30px;
  font-size: 1rem;
}
#pricing-plan__section .pricing-plans__container .pricing-plan__middle ul li .fa-circle-check {
  color: #6366f1;
  font-size: 1.1rem;
  margin-right: 2px;
}

#newsletter-section {
  padding: 50px 0;
}
#newsletter-section .newsletter-container {
  border-bottom: solid 2px #e5e7eb;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#newsletter-section .newsletter-container .newsletter-right h3 {
  font-size: 1.6rem;
  font-weight: bold;
}
#newsletter-section .newsletter-container .newsletter-right p {
  margin-top: 15px;
  font-size: 1rem;
  color: #64728f;
  line-height: 1.5;
}
#newsletter-section .newsletter-container .email-left {
  text-align: right;
}
#newsletter-section .newsletter-container .email-left input {
  padding: 0 20px;
  height: 65px;
  width: 52%;
  border-radius: 7px;
  font-size: 1rem;
  border: solid 1px;
}
#newsletter-section .newsletter-container .email-left button {
  margin-left: 15px;
  padding: 22px 36px;
  border: none;
  border-radius: 7px;
  font-size: 1.1rem;
  background: #6366f1;
  color: white;
  transition: all 0.5s ease-in-out 0.1s;
}
#newsletter-section .newsletter-container .email-left button:hover {
  cursor: pointer;
  background: #7a7cf5;
}

#footer-section {
  padding-bottom: 20px;
}
#footer-section .footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 50px;
  border-bottom: solid 2px #e5e7eb;
}
#footer-section .footer-container .logo-side img {
  height: 40px;
  background-size: cover;
  opacity: 2;
  filter: contrast(2.5);
}
#footer-section .footer-container .logo-side p {
  padding: 20px 0 25px;
  color: #64728f;
  font-size: 1rem;
  line-height: 1.5;
}
#footer-section .footer-container .logo-side .squares {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 55%;
}
#footer-section .footer-container .logo-side .squares .square {
  background: #6366f1;
  height: 40px;
  width: 40px;
  border-radius: 8px;
}
#footer-section .footer-container .pages-sections h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 13px;
}
#footer-section .footer-container .pages-sections .pages-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 70px;
}
#footer-section .footer-container .pages-sections .pages-container a {
  text-decoration: none;
  color: #64728f;
  font-size: 1rem;
  padding: 15px 0;
  transition: all 0.3s ease-in-out 0.1s;
}
#footer-section .footer-container .pages-sections .pages-container a:nth-child(2), #footer-section .footer-container .pages-sections .pages-container a:nth-child(4), #footer-section .footer-container .pages-sections .pages-container a:nth-child(6), #footer-section .footer-container .pages-sections .pages-container a:nth-child(8) {
  padding-left: 5px;
}
#footer-section .footer-container .pages-sections .pages-container a:hover {
  cursor: pointer;
  color: #888af8;
}
#footer-section .footer-container .utility-pages__section {
  margin: 0 auto;
}
#footer-section .footer-container .utility-pages__section h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 13px;
}
#footer-section .footer-container .utility-pages__section .utility-pages-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
#footer-section .footer-container .utility-pages__section .utility-pages-container a {
  text-decoration: none;
  color: #64728f;
  font-size: 1rem;
  padding: 15px 0;
  transition: all 0.3s ease-in-out 0.1s;
}
#footer-section .footer-container .utility-pages__section .utility-pages-container a:hover {
  cursor: pointer;
  color: #888af8;
}
#footer-section .end-container {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
#footer-section .end-container .rights {
  font-size: 1rem;
}
#footer-section .end-container .terms {
  font-size: 1rem;
}
#footer-section .end-container .terms span {
  padding-right: 10px;
  margin-right: 10px;
  border-right: solid 1px black;
  transition: all 0.3s ease-in-out 0.1s;
}
#footer-section .end-container .terms span:nth-child(3) {
  border-right: none;
}
#footer-section .end-container .terms span:hover {
  cursor: pointer;
  color: #888af8;
}

@media only screen and (max-width: 1210px) {
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  #top-header .background-img .section-container .left-section .top-slide {
    width: 100%;
    max-width: 346px;
  }
  #top-header .background-img .section-container .left-section .header-left {
    font-size: 2.6rem;
  }
  #top-header .background-img .section-container .left-section .header-left__two {
    font-size: 2.4rem;
  }
  #top-header .background-img .section-container .left-section .logos a img {
    width: 19%;
  }
  #features-section .content-decoration h3 {
    font-size: 1rem;
    width: 21%;
  }
  #our-process__section .content-decoration h3 {
    font-size: 1rem;
    width: 15%;
  }
  #our-process__section .four-steps__container .steps-section p {
    font-size: 0.9rem;
  }
  #join-our-community__section .content-decoration h3 {
    font-size: 1rem;
    width: 23%;
  }
  #faq-section .faq-container__section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq {
    width: 13%;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq h3 {
    text-align: center;
    background: #6366f1;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 50px;
  }
  #faq-section .faq-container__section .top-left h2 {
    padding: 15px 0 10px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
  }
  #faq-section .faq-container__section .top-left .header-p {
    font-size: 1.1rem;
    color: #64728f;
    line-height: 1.5;
    padding-bottom: 60px;
  }
  #faq-section .card-container .card h3 {
    font-size: 1rem;
    font-weight: bold;
    padding: 25px 0 10px;
    line-height: 1.5;
  }
  #faq-section .card-container .card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64728f;
  }
  #pricing-plan__section .content-decoration h3 {
    font-size: 1rem;
    width: 15%;
  }
  #pricing-plan__section .pricing-plans__container {
    gap: 20px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card {
    padding: 20px 25px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card ul {
    border-top: solid 1px #f7f8f9;
    margin: 30px 0;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card ul li {
    margin-top: 30px;
    font-size: 1rem;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card ul li .fa-circle-check {
    color: #6366f1;
    font-size: 1.1rem;
    margin-right: 2px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle {
    padding: 20px 25px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card span {
    width: 36%;
  }
  #footer-section {
    padding-bottom: 20px;
  }
  #footer-section .footer-container .logo-side .squares .square {
    height: 35px;
    width: 35px;
  }
  #footer-section .footer-container .pages-sections h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .pages-sections .pages-container {
    grid-column-gap: 2px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 732px;
    margin: 0 auto;
  }
  #top-menu .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  #top-menu .navigation .main-links {
    display: none;
  }
  #top-menu .navigation .purchase-now {
    display: none;
  }
  #top-menu .navigation .purchase-now .fa-solid {
    display: none;
  }
  #top-menu .navigation .mobile {
    display: block;
    padding: 15px 20px;
  }
  #top-menu .navigation .mobile .fa-bars {
    display: block;
  }
  #top-header .background-img .section-container {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 0 150px;
    grid-column-gap: 20px;
  }
  #top-header .background-img .section-container .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #top-header .background-img .section-container .left-section .top-slide {
    padding: 15px 10px 15px 0;
    width: 100%;
    max-width: 47%;
  }
  #top-header .background-img .section-container .left-section .logos {
    margin-top: 80px;
  }
  #top-header .background-img .section-container .right-section {
    height: 100%;
    background: white;
    text-align: center;
    padding: 60px 50px 50px;
    border-radius: 20px;
    margin-top: 40px;
  }
  #top-header .background-img .section-container .right-section .input-logo img {
    height: 40px;
    background-size: cover;
    opacity: 2;
    filter: contrast(2.5);
    margin-bottom: 30px;
  }
  #top-header .background-img .section-container .right-section .input-header {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #top-header .background-img .section-container .right-section .input-description {
    font-size: 17px;
    padding: 10px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit {
    padding-top: 30px;
    display: inline-grid;
    width: 100%;
    position: relative;
  }
  #top-header .background-img .section-container .right-section .form-submit label {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit input {
    width: 100%;
    padding: 16px 25px;
    font-size: 18px;
    border-radius: 6px;
    border: solid 1px lightgrey;
  }
  #top-header .background-img .section-container .right-section .form-submit button {
    background: #6366f1;
    color: white;
    margin: 35px 0 0;
    padding: 15px 0;
    font-size: 1.1rem;
    border-radius: 10px;
    border: solid 1px lightgrey;
    font-weight: 700;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #top-header .background-img .section-container .right-section .form-submit button:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #top-header .background-img .section-container .right-section .form-submit .form-p {
    padding: 20px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit a {
    text-decoration: none;
    border: solid 1px #fafafa;
    border-radius: 10px;
    vertical-align: middle;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    color: black;
    font-weight: 900;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #top-header .background-img .section-container .right-section .form-submit a:hover {
    background: #fafafa;
  }
  #top-header .background-img .section-container .right-section .form-submit a img {
    margin-right: 10px;
    width: 5%;
  }
  #features-section {
    padding: 80px 0;
  }
  #features-section .content-decoration h3 {
    font-size: 1rem;
    width: 28%;
  }
  #features-section .three-sections {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr;
  }
  #features-section .three-sections .features-section__two {
    order: -1;
    justify-self: center;
    margin-bottom: 40px;
    position: relative;
    top: 60px;
    height: 745px;
    width: 425px;
  }
  #features-section .three-sections .features-section__two img {
    width: 100%;
    max-width: 82%;
  }
  #our-process__section {
    padding: 80px 0;
  }
  #our-process__section .content-decoration h3 {
    width: 19%;
  }
  #our-process__section .four-steps__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #our-process__section .four-steps__container .steps-section {
    margin-bottom: 50px;
  }
  #join-our-community__section {
    padding: 80px 0 0;
  }
  #join-our-community__section .content-decoration h3 {
    font-size: 1rem;
    width: 30%;
  }
  #join-our-community__section h2 {
    padding: 25px 0;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.4;
  }
  #join-our-community__section .stat-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 0 20px;
  }
  #join-our-community__section .stat-container .stats-section {
    margin-bottom: 50px;
  }
  #join-our-community__section .stat-container .stats-section .number {
    font-size: 3.2rem;
    font-weight: bolder;
    color: #6366f1;
    margin-bottom: 30px;
  }
  #join-our-community__section .stat-container .stats-section .stat-title {
    font-size: 1.2rem;
    color: #64728f;
  }
  #faq-section {
    background-color: #f9faff;
    padding: 50px 0;
  }
  #faq-section .faq-container__section {
    display: grid;
    grid-template-columns: 1fr;
  }
  #faq-section .faq-container__section .top-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq {
    width: 13%;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq h3 {
    text-align: center;
    background: #6366f1;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 50px;
  }
  #faq-section .faq-container__section .top-left h2 {
    text-align: center;
    padding: 15px 0 10px;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.4;
    width: 100%;
  }
  #faq-section .faq-container__section .top-left h2 br {
    display: none;
  }
  #faq-section .faq-container__section .top-left .header-p {
    text-align: center;
    font-size: 1.3rem;
    color: #64728f;
    line-height: 1.5;
    padding-bottom: 60px;
  }
  #faq-section .faq-container__section .top-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  #faq-section .faq-container__section .top-right .left-btn {
    background: #6366f1;
    border-radius: 5px;
    padding: 17px 30px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 900;
    margin-right: 5px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #faq-section .faq-container__section .top-right .left-btn:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #faq-section .faq-container__section .top-right .right-btn {
    background: white;
    border: solid 3px #6366f1;
    border-radius: 5px;
    padding: 14px 30px;
    text-decoration: none;
    color: #6366f1;
    font-size: 1rem;
    font-weight: 900;
    margin-left: 10px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #faq-section .faq-container__section .top-right .right-btn:hover {
    background: #6366f1;
    color: white;
  }
  #faq-section .card-container {
    padding: 50px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  #faq-section .card-container .card {
    border: solid 2px #e5e7eb;
    border-radius: 15px;
    padding: 40px 30px 20px;
  }
  #pricing-plan__section {
    padding: 50px 0;
  }
  #pricing-plan__section .content-decoration h3 {
    width: 20%;
  }
  #pricing-plan__section .header-p {
    font-size: 1.2rem;
    color: #64728f;
    line-height: 1.5;
    padding-bottom: 60px;
  }
  #pricing-plan__section .header-p br {
    display: none;
  }
  #pricing-plan__section .pricing-plans__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card {
    border: solid 1px #e5e7eb;
    padding: 20px 30px;
    text-align: left;
    border-radius: 5px;
  }
  #newsletter-section {
    padding: 50px 0;
  }
  #newsletter-section .newsletter-container {
    border-bottom: solid 2px #e5e7eb;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  #newsletter-section .newsletter-container .newsletter-right h3 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #newsletter-section .newsletter-container .newsletter-right p {
    margin-top: 15px;
    font-size: 1rem;
    color: #64728f;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #newsletter-section .newsletter-container .newsletter-right p br {
    display: none;
  }
  #newsletter-section .newsletter-container .email-left {
    text-align: center;
  }
  #newsletter-section .newsletter-container .email-left input {
    padding: 0 20px;
    height: 65px;
    width: 52%;
    border-radius: 7px;
    font-size: 1rem;
    border: solid 1px;
  }
  #newsletter-section .newsletter-container .email-left button {
    margin-left: 15px;
    padding: 22px 36px;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    background: #6366f1;
    color: white;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #newsletter-section .newsletter-container .email-left button:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #footer-section {
    padding-bottom: 20px;
  }
  #footer-section .footer-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    padding-bottom: 50px;
    border-bottom: solid 2px #e5e7eb;
  }
  #footer-section .footer-container .logo-side {
    grid-column: 2;
  }
  #footer-section .footer-container .logo-side img {
    height: 40px;
    background-size: cover;
    opacity: 2;
    filter: contrast(2.5);
  }
  #footer-section .footer-container .logo-side p {
    padding: 20px 0 25px;
    color: #64728f;
    font-size: 1rem;
    line-height: 1.5;
  }
  #footer-section .footer-container .logo-side .squares {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 35%;
  }
  #footer-section .footer-container .logo-side .squares .square {
    background: #6366f1;
    height: 40px;
    width: 40px;
    border-radius: 8px;
  }
  #footer-section .footer-container .pages-sections {
    grid-column: 2;
  }
  #footer-section .footer-container .pages-sections h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .pages-sections .pages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
  }
  #footer-section .footer-container .pages-sections .pages-container a {
    text-decoration: none;
    color: #64728f;
    font-size: 1rem;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .footer-container .pages-sections .pages-container a:nth-child(2), #footer-section .footer-container .pages-sections .pages-container a:nth-child(4), #footer-section .footer-container .pages-sections .pages-container a:nth-child(6), #footer-section .footer-container .pages-sections .pages-container a:nth-child(8) {
    padding-left: 5px;
  }
  #footer-section .footer-container .pages-sections .pages-container a:hover {
    cursor: pointer;
    color: #888af8;
  }
  #footer-section .footer-container .utility-pages__section {
    margin: 0 auto;
    grid-column: 3;
  }
  #footer-section .footer-container .utility-pages__section h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container a {
    text-decoration: none;
    color: #64728f;
    font-size: 1rem;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container a:hover {
    cursor: pointer;
    color: #888af8;
  }
  #footer-section .end-container {
    padding: 30px 0;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  #footer-section .end-container .rights {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer-section .end-container .terms {
    font-size: 1rem;
  }
  #footer-section .end-container .terms span {
    padding-right: 10px;
    margin-right: 10px;
    border-right: solid 1px black;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .end-container .terms span:nth-child(3) {
    border-right: none;
  }
  #footer-section .end-container .terms span:hover {
    cursor: pointer;
    color: #888af8;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    max-width: 400px;
    margin: 0 auto;
  }
  #top-menu .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  #top-menu .navigation .main-links {
    display: none;
  }
  #top-menu .navigation .purchase-now {
    display: none;
  }
  #top-menu .navigation .purchase-now .fa-solid {
    display: none;
  }
  #top-menu .navigation .mobile {
    display: block;
    padding: 15px 20px;
  }
  #top-menu .navigation .mobile .fa-bars {
    display: block;
  }
  #side-menu {
    width: 100%;
  }
  #side-menu .side .purchase-now__side {
    text-align: center;
  }
  #top-header .background-img .section-container {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 0 150px;
    grid-column-gap: 20px;
  }
  #top-header .background-img .section-container .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #top-header .background-img .section-container .left-section .header-left {
    font-size: 2.3rem;
  }
  #top-header .background-img .section-container .left-section .header-left__two {
    font-size: 2.3rem;
  }
  #top-header .background-img .section-container .left-section .description {
    font-size: 1.1rem;
  }
  #top-header .background-img .section-container .left-section .request-demo__btn {
    font-size: 16px;
  }
  #top-header .background-img .section-container .left-section .request-demo__btn:hover {
    background: #7a7cf5;
  }
  #top-header .background-img .section-container .left-section .sign-up__btn {
    font-size: 16px;
  }
  #top-header .background-img .section-container .left-section .sign-up__btn:hover {
    background: #6366f1;
    color: white;
  }
  #top-header .background-img .section-container .left-section .top-slide {
    padding: 15px 10px 15px 0;
    width: 100%;
    max-width: 85%;
  }
  #top-header .background-img .section-container .left-section .logos {
    margin-top: 80px;
  }
  #top-header .background-img .section-container .right-section {
    height: 100%;
    background: white;
    text-align: center;
    padding: 60px 50px 50px;
    border-radius: 20px;
    margin-top: 40px;
  }
  #top-header .background-img .section-container .right-section .input-logo img {
    height: 40px;
    background-size: cover;
    opacity: 2;
    filter: contrast(2.5);
    margin-bottom: 30px;
  }
  #top-header .background-img .section-container .right-section .input-header {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #top-header .background-img .section-container .right-section .input-description {
    font-size: 17px;
    padding: 10px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit {
    padding-top: 30px;
    display: inline-grid;
    width: 100%;
    position: relative;
  }
  #top-header .background-img .section-container .right-section .form-submit label {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit input {
    width: 100%;
    padding: 16px 25px;
    font-size: 18px;
    border-radius: 6px;
    border: solid 1px lightgrey;
  }
  #top-header .background-img .section-container .right-section .form-submit button {
    background: #6366f1;
    color: white;
    margin: 35px 0 0;
    padding: 15px 0;
    font-size: 1.1rem;
    border-radius: 10px;
    border: solid 1px lightgrey;
    font-weight: 700;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #top-header .background-img .section-container .right-section .form-submit button:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #top-header .background-img .section-container .right-section .form-submit .form-p {
    padding: 20px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit a {
    text-decoration: none;
    border: solid 1px #fafafa;
    border-radius: 10px;
    vertical-align: middle;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    color: black;
    font-weight: 900;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #top-header .background-img .section-container .right-section .form-submit a:hover {
    background: #fafafa;
  }
  #top-header .background-img .section-container .right-section .form-submit a img {
    margin-right: 10px;
    width: 5%;
  }
  #features-section {
    padding: 80px 0;
  }
  #features-section .content-decoration h3 {
    font-size: 1rem;
    width: 47%;
  }
  #features-section h2 {
    font-size: 1.9rem;
  }
  #features-section .header-p {
    font-size: 1rem;
  }
  #features-section .header-p br {
    display: none;
  }
  #features-section .three-sections {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr;
  }
  #features-section .three-sections .features-section__two {
    order: -1;
    justify-self: center;
    margin-bottom: 40px;
    position: relative;
    top: 60px;
    height: 745px;
    width: 412px;
  }
  #features-section .three-sections .features-section__two img {
    width: 100%;
    max-width: 82%;
  }
  #our-process__section {
    padding: 80px 0;
  }
  #our-process__section .content-decoration h3 {
    width: 32%;
  }
  #our-process__section h2 {
    font-size: 1.9rem;
  }
  #our-process__section .header-p {
    font-size: 1rem;
  }
  #our-process__section .header-p br {
    display: none;
  }
  #our-process__section .four-steps__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  #our-process__section .four-steps__container h3 {
    font-size: 1.9rem;
  }
  #our-process__section .four-steps__container p br {
    display: none;
  }
  #our-process__section .four-steps__container .steps-section {
    margin-bottom: 50px;
  }
  #join-our-community__section {
    padding: 80px 0 0;
  }
  #join-our-community__section .content-decoration h3 {
    font-size: 1rem;
    width: 51%;
  }
  #join-our-community__section h2 {
    font-size: 1.9rem;
  }
  #join-our-community__section h2 br {
    display: none;
  }
  #join-our-community__section .stat-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 0 20px;
  }
  #join-our-community__section .stat-container .stats-section {
    margin-bottom: 50px;
  }
  #join-our-community__section .stat-container .stats-section .number {
    font-size: 2.8rem;
    font-weight: bolder;
    color: #6366f1;
    margin-bottom: 30px;
  }
  #join-our-community__section .stat-container .stats-section .stat-title {
    font-size: 1.2rem;
    color: #64728f;
  }
  #faq-section {
    background-color: #f9faff;
    padding: 50px 0;
  }
  #faq-section .faq-container__section {
    display: grid;
    grid-template-columns: 1fr;
  }
  #faq-section .faq-container__section .top-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq {
    width: 15%;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq h3 {
    text-align: center;
    background: #6366f1;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 50px;
  }
  #faq-section .faq-container__section .top-left h2 {
    text-align: center;
    padding: 15px 0 10px;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.4;
    width: 100%;
  }
  #faq-section .faq-container__section .top-left h2 br {
    display: none;
  }
  #faq-section .faq-container__section .top-left .header-p {
    text-align: center;
    font-size: 1rem;
    color: #64728f;
    line-height: 1.5;
    padding-bottom: 60px;
  }
  #faq-section .faq-container__section .top-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  #faq-section .faq-container__section .top-right .left-btn {
    background: #6366f1;
    border-radius: 5px;
    padding: 17px 30px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 900;
    margin-right: 5px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #faq-section .faq-container__section .top-right .left-btn:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #faq-section .faq-container__section .top-right .right-btn {
    background: white;
    border: solid 3px #6366f1;
    border-radius: 5px;
    padding: 14px 30px;
    text-decoration: none;
    color: #6366f1;
    font-size: 1rem;
    font-weight: 900;
    margin-left: 10px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #faq-section .faq-container__section .top-right .right-btn:hover {
    background: #6366f1;
    color: white;
  }
  #faq-section .card-container {
    padding: 50px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  #faq-section .card-container .card {
    border: solid 2px #e5e7eb;
    border-radius: 15px;
    padding: 40px 30px 20px;
  }
  #pricing-plan__section {
    padding: 50px 0;
  }
  #pricing-plan__section .content-decoration h3 {
    width: 35%;
  }
  #pricing-plan__section h2 {
    font-size: 1.9rem;
  }
  #pricing-plan__section .header-p {
    font-size: 1rem;
  }
  #pricing-plan__section .header-p br {
    display: none;
  }
  #pricing-plan__section .pricing-plans__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card {
    border: solid 1px #e5e7eb;
    padding: 20px 30px;
    text-align: left;
    border-radius: 5px;
  }
  #newsletter-section {
    padding: 50px 0;
  }
  #newsletter-section .newsletter-container {
    border-bottom: solid 2px #e5e7eb;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  #newsletter-section .newsletter-container .newsletter-right h3 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #newsletter-section .newsletter-container .newsletter-right p {
    margin-top: 15px;
    font-size: 1rem;
    color: #64728f;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #newsletter-section .newsletter-container .newsletter-right p br {
    display: none;
  }
  #newsletter-section .newsletter-container .email-left {
    text-align: center;
  }
  #newsletter-section .newsletter-container .email-left input {
    padding: 0 20px;
    height: 65px;
    width: 100%;
    border-radius: 7px;
    font-size: 1rem;
    border: solid 1px;
  }
  #newsletter-section .newsletter-container .email-left button {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
    padding: 22px 36px;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    background: #6366f1;
    color: white;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #newsletter-section .newsletter-container .email-left button:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #footer-section {
    padding-bottom: 20px;
  }
  #footer-section .footer-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0;
    padding-bottom: 50px;
    border-bottom: solid 2px #e5e7eb;
  }
  #footer-section .footer-container .logo-side {
    grid-column: 2;
  }
  #footer-section .footer-container .logo-side img {
    height: 40px;
    background-size: cover;
    opacity: 2;
    filter: contrast(2.5);
  }
  #footer-section .footer-container .logo-side p {
    padding: 20px 0 25px;
    color: #64728f;
    font-size: 1rem;
    line-height: 1.5;
  }
  #footer-section .footer-container .logo-side .squares {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 60%;
  }
  #footer-section .footer-container .logo-side .squares .square {
    background: #6366f1;
    height: 40px;
    width: 40px;
    border-radius: 8px;
  }
  #footer-section .footer-container .pages-sections {
    grid-column: 2;
  }
  #footer-section .footer-container .pages-sections h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .pages-sections .pages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
  }
  #footer-section .footer-container .pages-sections .pages-container a {
    text-decoration: none;
    color: #64728f;
    font-size: 1rem;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .footer-container .pages-sections .pages-container a:nth-child(2), #footer-section .footer-container .pages-sections .pages-container a:nth-child(4), #footer-section .footer-container .pages-sections .pages-container a:nth-child(6), #footer-section .footer-container .pages-sections .pages-container a:nth-child(8) {
    padding-left: 0;
  }
  #footer-section .footer-container .pages-sections .pages-container a:hover {
    cursor: pointer;
    color: #888af8;
  }
  #footer-section .footer-container .utility-pages__section {
    margin: 0 auto;
    grid-column: 2;
    width: 100%;
    margin-top: 20px;
  }
  #footer-section .footer-container .utility-pages__section h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container a {
    text-decoration: none;
    color: #64728f;
    font-size: 1rem;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container a:hover {
    cursor: pointer;
    color: #888af8;
  }
  #footer-section .end-container {
    padding: 30px 0;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  #footer-section .end-container .rights {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer-section .end-container .terms {
    font-size: 1rem;
  }
  #footer-section .end-container .terms span {
    padding-right: 10px;
    margin-right: 10px;
    border-right: solid 1px black;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .end-container .terms span:nth-child(3) {
    border-right: none;
  }
  #footer-section .end-container .terms span:hover {
    cursor: pointer;
    color: #888af8;
  }
}
@media only screen and (max-width: 425px) {
  .container {
    max-width: 300px;
    margin: 0 auto;
  }
  #top-menu .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  #top-menu .navigation .main-links {
    display: none;
  }
  #top-menu .navigation .purchase-now {
    display: none;
  }
  #top-menu .navigation .purchase-now .fa-solid {
    display: none;
  }
  #top-menu .navigation .mobile {
    display: block;
    padding: 15px 20px;
  }
  #top-menu .navigation .mobile .fa-bars {
    display: block;
  }
  #top-header .background-img .section-container {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 0 150px;
    grid-column-gap: 20px;
  }
  #top-header .background-img .section-container .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #top-header .background-img .section-container .left-section .header-left {
    font-size: 1.8rem;
  }
  #top-header .background-img .section-container .left-section .header-left__two {
    font-size: 1.8rem;
  }
  #top-header .background-img .section-container .left-section .description {
    font-size: 0.9rem;
  }
  #top-header .background-img .section-container .left-section .request-demo__btn {
    font-size: 14px;
    padding: 13px 13px;
  }
  #top-header .background-img .section-container .left-section .request-demo__btn:hover {
    background: #7a7cf5;
  }
  #top-header .background-img .section-container .left-section .sign-up__btn {
    font-size: 14px;
    padding: 13px 13px;
  }
  #top-header .background-img .section-container .left-section .sign-up__btn:hover {
    background: #6366f1;
    color: white;
  }
  #top-header .background-img .section-container .left-section .top-slide {
    padding: 15px 10px 15px 0;
    width: 100%;
    max-width: 94%;
    font-size: 0.7rem;
  }
  #top-header .background-img .section-container .left-section .top-slide span {
    font-size: 0.7rem;
  }
  #top-header .background-img .section-container .left-section .logos {
    margin-top: 80px;
  }
  #top-header .background-img .section-container .left-section .logos .logo-header {
    color: #64728f;
    display: block;
    margin-bottom: 30px;
    font-size: 1.3rem;
  }
  #top-header .background-img .section-container .left-section .logos a {
    margin-right: 20px;
  }
  #top-header .background-img .section-container .left-section .logos a img {
    width: 31%;
    margin-bottom: 7px;
  }
  #top-header .background-img .section-container .right-section {
    height: 100%;
    background: white;
    text-align: center;
    padding: 60px 30px 50px;
    border-radius: 20px;
    margin-top: 40px;
  }
  #top-header .background-img .section-container .right-section .input-logo img {
    height: 40px;
    background-size: cover;
    opacity: 2;
    filter: contrast(2.5);
    margin-bottom: 30px;
  }
  #top-header .background-img .section-container .right-section .input-header {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #top-header .background-img .section-container .right-section .input-description {
    font-size: 14px;
    padding: 10px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit {
    padding-top: 30px;
    display: inline-grid;
    width: 100%;
    position: relative;
  }
  #top-header .background-img .section-container .right-section .form-submit label {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit input {
    width: 100%;
    padding: 16px 25px;
    font-size: 1.1rem;
    border-radius: 6px;
    border: solid 1px lightgrey;
  }
  #top-header .background-img .section-container .right-section .form-submit button {
    background: #6366f1;
    color: white;
    margin: 35px 0 0;
    padding: 15px 0;
    font-size: 1rem;
    border-radius: 10px;
    border: solid 1px lightgrey;
    font-weight: 700;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #top-header .background-img .section-container .right-section .form-submit button:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #top-header .background-img .section-container .right-section .form-submit .form-p {
    padding: 20px 0;
  }
  #top-header .background-img .section-container .right-section .form-submit a {
    text-decoration: none;
    border: solid 1px #fafafa;
    border-radius: 10px;
    vertical-align: middle;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    color: black;
    font-weight: 900;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #top-header .background-img .section-container .right-section .form-submit a:hover {
    background: #fafafa;
  }
  #top-header .background-img .section-container .right-section .form-submit a img {
    margin-right: 10px;
    width: 11%;
  }
  #features-section {
    padding: 80px 0;
  }
  #features-section .content-decoration h3 {
    font-size: 0.8rem;
    width: 56%;
  }
  #features-section h2 {
    font-size: 1.3rem;
  }
  #features-section .header-p {
    font-size: 0.8rem;
  }
  #features-section .header-p br {
    display: none;
  }
  #features-section .left-btn {
    background: #6366f1;
    border-radius: 5px;
    padding: 13px 13px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 900;
    margin-right: 5px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #features-section .left-btn:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #features-section .right-btn {
    background: white;
    border: solid 3px #6366f1;
    border-radius: 5px;
    padding: 11px 13px;
    text-decoration: none;
    color: #6366f1;
    font-size: 14px;
    font-weight: 900;
    margin-left: 5px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #features-section .right-btn:hover {
    background: #6366f1;
    color: white;
  }
  #features-section .three-sections {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
  }
  #features-section .three-sections .features-section__one .feature-one {
    padding: 20px 0;
  }
  #features-section .three-sections .features-section__one .feature-one .fa-chart-line {
    font-size: 1.5rem;
    color: #0062ff;
    background: #e0ecff;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 10px;
  }
  #features-section .three-sections .features-section__one .feature-one .fa-square-envelope {
    font-size: 1.5rem;
    color: #22c55e;
    background: #e4f8ec;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 10px;
  }
  #features-section .three-sections .features-section__one .feature-one .fa-user-group {
    font-size: 1.5rem;
    color: #fdb52a;
    background: #fff6e5;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 10px;
  }
  #features-section .three-sections .features-section__one .feature-one h3 {
    font-size: 1.3rem;
    font-weight: 900;
    padding: 20px 0;
  }
  #features-section .three-sections .features-section__one .feature-one .link {
    margin-top: 30px;
  }
  #features-section .three-sections .features-section__one .feature-one .link a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    font-weight: 900;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #features-section .three-sections .features-section__one .feature-one .link a:hover {
    cursor: pointer;
    color: #6366f1;
  }
  #features-section .three-sections .features-section__one .feature-one p {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #64728f;
  }
  #features-section .three-sections .features-section__one .feature-one p br {
    display: none;
  }
  #features-section .three-sections .features-section__two {
    order: -1;
    justify-self: center;
    margin-bottom: 40px;
    position: relative;
    top: 60px;
    height: 570px;
    width: 310px;
  }
  #features-section .three-sections .features-section__two img {
    width: 100%;
    max-width: 82%;
  }
  #features-section .three-sections .features-section__three .feature-one {
    padding: 20px 0;
  }
  #features-section .three-sections .features-section__three .feature-one .fa-pen {
    font-size: 1.5rem;
    color: #fa5b68;
    background: #feebed;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 10px;
  }
  #features-section .three-sections .features-section__three .feature-one .fa-tablet-screen-button {
    font-size: 1.5rem;
    color: #6366f1;
    background: #ecedfd;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 10px;
  }
  #features-section .three-sections .features-section__three .feature-one .fa-gear {
    font-size: 1.5rem;
    color: #13d5ff;
    background: #e3faff;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 10px;
  }
  #features-section .three-sections .features-section__three .feature-one h3 {
    font-size: 1.3rem;
    font-weight: 900;
    padding: 20px 0;
  }
  #features-section .three-sections .features-section__three .feature-one .link {
    margin-top: 30px;
  }
  #features-section .three-sections .features-section__three .feature-one .link a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    font-weight: 900;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #features-section .three-sections .features-section__three .feature-one .link a:hover {
    cursor: pointer;
    color: #6366f1;
  }
  #features-section .three-sections .features-section__three .feature-one p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #64728f;
  }
  #features-section .three-sections .features-section__three .feature-one p br {
    display: none;
  }
  #our-process__section {
    padding: 80px 0;
  }
  #our-process__section .content-decoration h3 {
    width: 42%;
    font-size: 0.8rem;
  }
  #our-process__section h2 {
    font-size: 1.3rem;
  }
  #our-process__section .header-p {
    font-size: 0.8rem;
  }
  #our-process__section .header-p br {
    display: none;
  }
  #our-process__section .four-steps__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  #our-process__section .four-steps__container h3 {
    font-size: 1.9rem;
  }
  #our-process__section .four-steps__container p br {
    display: none;
  }
  #our-process__section .four-steps__container .steps-section {
    margin-bottom: 50px;
  }
  #our-process__section .four-steps__container .steps-section .circle {
    background: #ecedfd;
    color: #6366f1;
    padding: 10px 20px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
  }
  #our-process__section .four-steps__container .steps-section h5 {
    margin-top: 50px;
  }
  #our-process__section .four-steps__container .steps-section h3 {
    font-size: 1.7rem;
    margin: 32px 0 24px;
  }
  #join-our-community__section {
    padding: 80px 0 0;
  }
  #join-our-community__section .content-decoration h3 {
    font-size: 0.8rem;
    width: 56%;
  }
  #join-our-community__section h2 {
    font-size: 1.3rem;
  }
  #join-our-community__section h2 br {
    display: none;
  }
  #join-our-community__section .stat-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 0 20px;
  }
  #join-our-community__section .stat-container .stats-section {
    margin-bottom: 50px;
  }
  #join-our-community__section .stat-container .stats-section .number {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #6366f1;
    margin-bottom: 30px;
  }
  #join-our-community__section .stat-container .stats-section .stat-title {
    font-size: 1rem;
    color: #64728f;
  }
  #faq-section {
    background-color: #f9faff;
    padding: 50px 0;
  }
  #faq-section .faq-container__section {
    display: grid;
    grid-template-columns: 1fr;
  }
  #faq-section .faq-container__section .top-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq {
    width: 17%;
  }
  #faq-section .faq-container__section .top-left .content-decoration__faq h3 {
    text-align: center;
    background: #6366f1;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 50px;
  }
  #faq-section .faq-container__section .top-left h2 {
    text-align: center;
    padding: 15px 0 10px;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.4;
    width: 100%;
  }
  #faq-section .faq-container__section .top-left h2 br {
    display: none;
  }
  #faq-section .faq-container__section .top-left .header-p {
    text-align: center;
    font-size: 0.8rem;
    color: #64728f;
    line-height: 1.5;
    padding-bottom: 60px;
  }
  #faq-section .faq-container__section .top-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  #faq-section .faq-container__section .top-right .left-btn {
    background: #6366f1;
    border-radius: 5px;
    padding: 17px 10px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 900;
    margin-right: 5px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #faq-section .faq-container__section .top-right .left-btn:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #faq-section .faq-container__section .top-right .right-btn {
    background: white;
    border: solid 3px #6366f1;
    border-radius: 5px;
    padding: 14px 10px;
    text-decoration: none;
    color: #6366f1;
    font-size: 0.8rem;
    font-weight: 900;
    margin-left: 10px;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #faq-section .faq-container__section .top-right .right-btn:hover {
    background: #6366f1;
    color: white;
  }
  #faq-section .card-container {
    padding: 50px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  #faq-section .card-container .card {
    border: solid 2px #e5e7eb;
    border-radius: 15px;
    padding: 40px 30px 20px;
  }
  #faq-section .card-container .card .fa-chart-line {
    font-size: 1.5rem;
    color: #0062ff;
    background: #e0ecff;
    border-radius: 50%;
    padding: 18px;
  }
  #faq-section .card-container .card .fa-square-envelope {
    font-size: 1.5rem;
    color: #22c55e;
    background: #e4f8ec;
    border-radius: 50%;
    padding: 18px;
  }
  #faq-section .card-container .card .fa-user-group {
    font-size: 1.5rem;
    color: #fdb52a;
    background: #fff6e5;
    border-radius: 50%;
    padding: 18px;
  }
  #faq-section .card-container .card .fa-pen {
    font-size: 1.5rem;
    color: #fa5b68;
    background: #feebed;
    border-radius: 50%;
    padding: 18px;
  }
  #faq-section .card-container .card .fa-tablet-screen-button {
    font-size: 1.5rem;
    color: #6366f1;
    background: #ecedfd;
    border-radius: 50%;
    padding: 18px;
  }
  #faq-section .card-container .card .fa-gear {
    font-size: 1.5rem;
    color: #13d5ff;
    background: #e3faff;
    border-radius: 50%;
    padding: 18px;
  }
  #pricing-plan__section {
    padding: 50px 0;
  }
  #pricing-plan__section .content-decoration h3 {
    width: 35%;
    font-size: 0.8rem;
  }
  #pricing-plan__section h2 {
    font-size: 1.3rem;
  }
  #pricing-plan__section .header-p {
    font-size: 0.8rem;
  }
  #pricing-plan__section .header-p br {
    display: none;
  }
  #pricing-plan__section .pricing-plans__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card {
    border: solid 1px #e5e7eb;
    padding: 20px 30px;
    text-align: left;
    border-radius: 5px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card h4 {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 0 30px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card .price {
    color: #64728f;
    font-size: 1rem;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card .price .dollar-sign {
    font-size: 2.3rem;
    font-weight: bold;
    color: black;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__card .price .ten {
    font-size: 2.8rem;
    font-weight: bold;
    color: black;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle {
    border: solid 2px #6366f1;
    padding: 20px 30px;
    text-align: left;
    border-radius: 5px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card {
    width: 100%;
    position: relative;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card h4 {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 0 30px;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .middle-card span {
    background: #97f2ff;
    position: absolute;
    top: 12px;
    right: 0;
    display: inline-block;
    width: 35%;
    padding: 5px;
    border-radius: 15px;
    text-align: right;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .price {
    color: #64728f;
    font-size: 1rem;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .price .dollar-sign {
    font-size: 2.3rem;
    font-weight: bold;
    color: black;
  }
  #pricing-plan__section .pricing-plans__container .pricing-plan__middle .price .ten {
    font-size: 2.8rem;
    font-weight: bold;
    color: black;
  }
  #newsletter-section {
    padding: 50px 0;
  }
  #newsletter-section .newsletter-container {
    border-bottom: solid 2px #e5e7eb;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  #newsletter-section .newsletter-container .newsletter-right h3 {
    font-size: 1.3rem;
    font-weight: bold;
  }
  #newsletter-section .newsletter-container .newsletter-right p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64728f;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #newsletter-section .newsletter-container .newsletter-right p br {
    display: none;
  }
  #newsletter-section .newsletter-container .email-left {
    text-align: center;
  }
  #newsletter-section .newsletter-container .email-left input {
    padding: 0 20px;
    height: 57px;
    width: 100%;
    border-radius: 7px;
    font-size: 1rem;
    border: solid 1px;
  }
  #newsletter-section .newsletter-container .email-left button {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
    padding: 15px 36px;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    background: #6366f1;
    color: white;
    transition: all 0.5s ease-in-out 0.1s;
  }
  #newsletter-section .newsletter-container .email-left button:hover {
    cursor: pointer;
    background: #7a7cf5;
  }
  #footer-section {
    padding-bottom: 20px;
  }
  #footer-section .footer-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0;
    padding-bottom: 50px;
    border-bottom: solid 2px #e5e7eb;
  }
  #footer-section .footer-container .logo-side {
    grid-column: 2;
  }
  #footer-section .footer-container .logo-side img {
    height: 40px;
    background-size: cover;
    opacity: 2;
    filter: contrast(2.5);
  }
  #footer-section .footer-container .logo-side p {
    padding: 20px 0 25px;
    color: #64728f;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #footer-section .footer-container .logo-side .squares {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 60%;
  }
  #footer-section .footer-container .logo-side .squares .square {
    background: #6366f1;
    height: 40px;
    width: 40px;
    border-radius: 8px;
  }
  #footer-section .footer-container .pages-sections {
    grid-column: 2;
  }
  #footer-section .footer-container .pages-sections h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .pages-sections .pages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
  }
  #footer-section .footer-container .pages-sections .pages-container a {
    text-decoration: none;
    color: #64728f;
    font-size: 0.9rem;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .footer-container .pages-sections .pages-container a:nth-child(2), #footer-section .footer-container .pages-sections .pages-container a:nth-child(4), #footer-section .footer-container .pages-sections .pages-container a:nth-child(6), #footer-section .footer-container .pages-sections .pages-container a:nth-child(8) {
    padding-left: 0;
  }
  #footer-section .footer-container .pages-sections .pages-container a:hover {
    cursor: pointer;
    color: #888af8;
  }
  #footer-section .footer-container .utility-pages__section {
    margin: 0 auto;
    grid-column: 2;
    width: 100%;
    margin-top: 20px;
  }
  #footer-section .footer-container .utility-pages__section h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 13px;
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container a {
    text-decoration: none;
    color: #64728f;
    font-size: 1rem;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .footer-container .utility-pages__section .utility-pages-container a:hover {
    cursor: pointer;
    color: #888af8;
  }
  #footer-section .end-container {
    padding: 30px 0;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  #footer-section .end-container .rights {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  #footer-section .end-container .terms {
    font-size: 0.7rem;
  }
  #footer-section .end-container .terms span {
    padding-right: 10px;
    margin-right: 10px;
    border-right: solid 1px black;
    transition: all 0.3s ease-in-out 0.1s;
  }
  #footer-section .end-container .terms span:nth-child(3) {
    border-right: none;
  }
  #footer-section .end-container .terms span:hover {
    cursor: pointer;
    color: #888af8;
  }
}/*# sourceMappingURL=style.css.map */