* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bricolage Grotesque", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
}

header {
  width: 100%;
  height: 100px;
  padding: 1rem 0;
  border-bottom: 1px dotted #ededed;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-4 {
  gap: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: center;
}

.logo-image {
  width: 100%;
  max-width: 77px;
  max-height: 77px;
  border-radius: 100%;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.nav-links-center {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 50px;
  cursor: pointer;
  padding: 14px 45px;
  color: white;
  border: none;
  outline: none;
}

.btn-small {
  font-size: 17px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 50px;
  cursor: pointer;
  padding: 8px 20px;
  color: white;
  border: none;
  outline: none;
}

.btn-gray {
  background-color: #28292b;
}

.btn-orange {
  background-color: #ff7802;
}

.btn-white {
  border: 1px solid #28292b;
  background-color: white;
  color: #28292b;
}

.btn-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #28292b;
  font-size: 20px;
}

a:hover {
  color: #ff7802;
  transition: 0.5s;
}

.logo-header {
  font-weight: 600;
  color: #0d1517;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger .line {
  width: 100%;
  height: 4px;
  background-color: #0d1517;
  border-radius: 5px;
}

.wrapper {
  margin: 0 auto;
}

.main-content {
  display: flex;
  flex-direction: row;
  padding: 78px 0;
  align-items: center;
  justify-content: center;
}

.container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.header-content {
  font-size: 50px;
  color: #0d1517;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  line-height: 67.5px;
  max-width: 940px;
  text-align: center;
  margin-bottom: 0.2rem;
}

.text-content {
  color: #4b4b4b;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  text-align: center;
  max-width: 730px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.features-slider {
  background-color: #eee6db;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 60px;
  margin: 1rem 0;
  /* transform: rotate(-3.28deg); */
}

.slider-track {
  display: flex;
  width: fit-content;
  animation: scroll 40s linear infinite;
}

.slide {
  padding: 0 40px;
  font-size: 18px;
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 2rem;
  font-weight: 500;
  color: #28292b;
}

.feature-image {
  width: 100%;
  height: 100%;
  max-width: 40px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.counter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5rem;
  padding: 4rem 0;
}

.border-counter {
  border: 1px solid #e7e7e7;
  padding: 0 3rem;
  border-width: 0 0 0 2px;
}

.faq-border-top {
  border: 1px solid #e7e7e7;
}

.counter-text {
  color: #0d1517;
  font-size: 45px;
  font-weight: 600;
}

.counter-subtext {
  color: #0d1517;
  font-size: 18px;
  font-weight: 400;
}

.btn-close {
  display: none;
}

.services-card {
  width: 100%;
  border-radius: 33px;
  padding: 3rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-card ul {
  padding-left: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  /* margin: 0 auto; */
  padding: 13px;
}

li span {
  position: relative;
  left: -5px;
}

.header-services {
  font-size: 30px;
  color: #0d1517;
  font-family: "Lato", sans-serif;
  font-weight: 550;
  line-height: 20px;
  text-align: center;
}

.text-services {
  color: #28292b;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  text-align: left;
  list-style: disc;
  min-width: 200px;
  line-height: 1.6;
}

li::marker {
  color: #ff7802;
  font-size: 25px;
}

.mt-2 {
  margin-top: 0.5rem;
}

.card-content-first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  background: #f9f9f9;
  max-width: 666px;
}

.how-to-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.how-to-flex-icon {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}

.how-to-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  background-color: #f9f9f9;
  border-radius: 20px;
  max-width: 410px;
  padding: 32px;
  min-width: 410px;
  min-height: 195px;
}

.link-href {
  font-size: 18px;
  text-decoration: underline;
  cursor: pointer;
  color: #ff6c00;
}

.subheader-gray {
  color: #4b4b4b;
  font-size: 16px;
}

.how-to-header {
  color: #0d1517;
  font-size: 27px;
  font-family: "Lato", sans-serif;
}

.how-to-text {
  color: #4b4b4b;
  font-size: 18px;
  width: 100%;
}

.price-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  border-radius: 20px;
  max-width: 400px;
  border: 2px solid #ff6c00;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  min-height: 1061px;
}

.price-header {
  color: #000;
  font-size: 32px;
  font-family: "Lato", sans-serif;
}

.annually-price-header {
  color: #ff6c00;
  font-size: 22px;
  font-family: "Lato", sans-serif;
  margin-bottom: -1rem;
}

.discount-rate {
  color: #0038ff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.border-top-price {
  border-top: 1px solid #eaeaea;
}

.price-text {
  color: #000;
}

.price-check-text {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.bullet-price-text {
  font-size: 18px;
}

.bullet-price-text-nonchecked {
  color: #aeaeae;
  font-size: 18px;
  text-decoration: line-through;
}

.price-card .icon-open {
  display: none;
}

.price-card.price-open .icon-closed {
  display: none;
}

.price-card.price-open .icon-open {
  display: inline;
}

.hidden {
  visibility: hidden;
}
.faq-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
}

.faq-flex-container-custom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 1rem;
  padding: 40px 1rem;
}

.faq-text-container {
  max-width: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-text-container-custom {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-content-faq {
  margin-bottom: 2rem;
  font-size: 18px;
}

.header-content-faq {
  font-size: 50px;
  font-family: "Bricolage Grotesque", Sans-serif;
}

.faq_7 .responsive-cell-block {
  min-height: 75px;
}

.faq_7 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.faq_7 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.faq_7 .faq-head-bg {
  background-color: #03a9f4;
  color: white;
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 80px;
  padding-left: 60px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: auto;
}

.faq_7 .text-blk.faq-heading1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 900;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .text-blk.faq-subheading {
  font-size: 18px;
  line-height: 26px;
}

.faq_7 .faq {
  display: block;
  flex-direction: column;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dcd2c454;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
}

.faq_7 .faq-question-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .faq-question-container:hover {
  cursor: pointer;
}

.faq_7 .text-blk.faq-questions {
  color: #1f2124;
  font-weight: 600;
  font-size: 20px;
}

.faq_7 .text-blk.faq-answer {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .text-blk.faq-subheading {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 590px;
  font-size: 18px;
}

.faq_7 .answer-box {
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: max-height;
}

.faq_7 .faq.active .openimg {
  transform: rotate(180deg);
}

.faq_7 .openimg {
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  transition-delay: 0s;
  transition-property: transform;
}

.faq_7 .faq.active .answer-box {
  max-height: 550px;
}

.faq_7 .faq-head-content {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 450px;
}

.faq_7 .container-block {
  max-width: 500px;
}

.faq_7 .container-block-custom {
  max-width: 1440px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 500px;
  max-width: 1440px;
  border-radius: 50px;
  margin: 1rem;
  background-color: rgb(13, 21, 23);
}

.header-cta {
  color: white;
  font-size: 50px;
}

.orange-color {
  color: #ff6c00;
  margin-bottom: -1rem;
}

.text-contact-cta {
  color: white;
  font-size: 18px;
}

.footer {
  background-color: #eee6db;
  color: #000;
  padding: 3rem 0;
  border-radius: 24px;
  text-align: center;
  position: relative;
}

.footer-header {
  font-size: 20px;
  font-family: "Bricolage Grotesque", Sans-serif;
  color: #000;
  margin-bottom: 0.3rem;
}

.footer-container {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  width: 100%;
}

.btn-contact {
  margin-top: 2rem;
}

.footer-desktop {
  display: flex;
}

.w-full {
  width: 100%;
}

.footer-mobile-flex {
  display: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  padding-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  transition: color 0.3s;
}

.logo-image-footer {
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  border-radius: 100%;
  position: relative;
  bottom: 1rem;
}

.footer-links a:hover {
  color: #ff7802;
}

.footer-copy {
  font-size: 16.5px;
  color: #000;
  margin-top: 20px;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .faq_7 .text-blk.faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq_7 .text-blk.faq-heading1 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .faq_7 .faq-head-content {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 500px;
    text-align: center;
  }

  .faq_7 .faq-head-bg {
    padding-top: 50px;
    padding-right: 60px;
    padding-bottom: 30px;
    padding-left: 60px;
  }

  .faq_7 .text-blk.faq-questions {
    font-size: 18px;
    text-align: left;
  }

  .faq_7 .text-blk.faq-answer {
    font-size: 16px;
    text-align: left;
    font-weight: 500;
  }

  .faq_7 .text-blk.faq-subheading {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-5.faq-head-bg {
    padding-top: 80px;
    padding-right: 30px;
    padding-bottom: 80px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-5.faq-head-bg {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }

  .faq_7 .text-blk.faq-answer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
    font-size: 16px;
  }

  .faq_7 .text-blk.faq-questions {
    font-size: 18px;
  }

  .faq_7 .text-blk.faq-heading1 {
    font-size: 26px;
  }

  .faq_7 .text-blk.faq-subheading {
    font-size: 17px;
    line-height: 24px;
  }
}

@media (max-width: 1000px) {
  .nav-links-center {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }

  .btn-contact {
    margin-top: 1rem;
  }

  .counter-container {
    gap: 0.5rem;
    padding: 3rem 0;
  }

  .footer-desktop {
    display: none;
  }

  .header-content-faq {
    font-size: 24px;
  }

  .footer-mobile-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .how-to-flex-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .how-to-container {
    gap: 0;
  }

  .how-to-cards {
    min-width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .hamburger {
    display: flex;
    margin-right: 1rem;
  }

  .nav-links-center {
    display: none;
  }

  .text-content-faq {
    margin-bottom: 1rem;
  }

  .none-mobile {
    display: none;
  }

  .open {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 1rem;
    width: 100%;
    background: white;
    height: 100%;
    z-index: 999;
    margin: 0;
    gap: 1.8rem;
  }

  .btn-close {
    display: block;
    position: absolute;
    top: 0;
    top: 1rem;
    right: 1rem;
  }

  nav a {
    font-size: 25px;
  }

  .logo {
    padding: 0 1rem;
  }

  nav {
    justify-content: space-between;
  }

  .main-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 40px 1rem;
  }

  .container-content {
    align-items: center;
    text-align: center;
  }

  .header-content {
    font-size: 28px;
    line-height: 40px;
  }

  .header-cta {
    font-size: 28px;
  }

  .text-content {
    max-width: 80%;
  }

  .btn {
    max-height: 55px;
  }

  .btn-menu {
    display: none;
  }

  .counter-container {
    flex-wrap: wrap;
  }

  .border-counter {
    padding: 0 1rem;
  }

  .services-card {
    padding: 0;
  }

  .bullet-price-text {
    text-align: left;
  }

  .price-card {
    min-height: auto;
    gap: 0.2rem;
    padding: 6px;
    max-height: 68px;
    overflow: hidden;
  }

  .price-open {
    max-height: 100%;
    overflow: auto;
    padding: 15px;
  }

  .annually-price-header {
    margin-bottom: 0;
  }

  .price-header {
    font-size: 23px;
  }
}

@media (max-width: 800px) {
  .services-card ul {
    padding-left: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 13px;
  }
}

@media (max-width: 800px) {
  .services-card ul {
    padding-left: 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    padding: 5px;
  }

  .header-services {
    text-align: left;
    font-size: 24px;
    line-height: 40px;
  }
}

@media (max-width: 390px) {
  .header-content {
    font-size: 24px;
  }

  .counter-container {
    gap: 0.5rem;
    padding: 2rem 0;
  }

  .header-services {
    text-align: left;
    font-size: 24px;
    line-height: 25px;
  }

  .how-to-header {
    text-align: left;
  }

  .price-card {
    min-height: auto;
    gap: 0.2rem;
    padding: 3px;
    max-height: 59px;
    overflow: hidden;
  }

  .main-content {
    padding: 30px 1rem;
  }

  .price-header {
    font-size: 20px;
  }
}
