/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Font import */
@font-face {
  font-family: "All Round Gothic";
  src: url('/fonts/AllRoundGothic-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "All Round Gothic";
  src: url('/fonts/AllRoundGothic-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "All Round Gothic";
  src: url('/fonts/AllRoundGothic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --lightgreen: #6BB896;
  --green: #224237;
  --black: #000000;
  --white: #ffffff;
  --lightgrey: #F0F1FC;
  --grey: #CFD0DB;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

/* navbar */
.nav {
  padding: 50px 0;
}

.nav-logo {
  text-align: left;
}

.nav-logo img {
  height: 70px;
}

.menu ul {
  text-align: right;
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 0;
  margin: 0;
}

.menu ul li {
  color: var(--black);
  text-transform: uppercase;
  font-size: 18px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: all 0.5s ease;
}

.menu ul li:hover {
  color: var(--lightgreen);
  border-bottom: 4px solid var(--lightgreen);
}

/* header */
.header-content {
  background: var(--lightgrey);
  border-radius: 60px;
  padding: 0 15px;
}

.selo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.selo img:nth-child(1) {
  height: 25px;
}

.selo img:nth-child(2) {
  height: 20px;
  margin: 0 8px;
}

#selo-p {
  margin: 0;
  font-size: 16px;
  color: var(--lightgreen);
}

.header-txt h1 {
  font-family: "All Round Gothic", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.header-txt h1 span {
  color: var(--lightgreen);
  font-weight: 700;
}

.header-txt p {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  max-width: 75%;
  margin: 20px 0;
}

.header-txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-txt ul li {
  background: url(/img/bullet.svg) no-repeat left top;
  background-size: 20px;
  height: 30px;
  padding-left: 30px;
  margin: 8px 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  max-width: 80%;
  line-height: 1.1;
}

.form-box {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.form-img {
  position: absolute;
  z-index: 1;
  width: 430px;
  left: -115px;
  bottom: 0;
}

/* form */
#contactform {
  position: relative;
  z-index: 99;
  right: 0;
  width: 420px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 12px 6px 0px rgba(59, 67, 147, 0.15);
  padding: 30px;
  text-align: center;
  margin: 30px 0 30px auto;
}

#contactform h3 {
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  max-width: 85%;
  margin: 0 auto;
}

#contactform h6 {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  margin: 12px auto;
  text-wrap: balance
}

#contactform hr {
  width: 100%;
  opacity: 1;
  background: var(--lightgreen);
  height: 2px;
  border: none;
  border-radius: 10px;
}

.extra-question {
  display: none;
}

.inputs1 {
  margin-bottom: 20px;
}

.input-title {
  margin-bottom: 10px;
}

.input-title h5 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.input-title p {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0 0;
}

.radio-buton input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-buton label {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--grey);
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  margin: 8px 0 0 0;
}

.radio-buton label:hover,
.radio-buton input[type="radio"]:checked+label {
  background: var(--lightgreen);
  color: var(--white);
  border: 1px solid var(--lightgreen);
}

.form-button {
  width: 255px;
  height: 45px;
  background: var(--green);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0 auto;
}

.form-button img {
  width: 7px;
  height: 12px;
  margin-left: 10px;
}

.form-button:hover {
  background: var(--lightgreen);
  color: var(--white);
}

.error {
  font-size: 12px;
  color: red;
  width: 100%;
  margin: 8px 0 0 0;
}

/* section 1 */
.section1 {
  padding: 70px 0 80px 0;
  text-align: center;
}

.sec1-txt {
  margin-bottom: 40px;
}

.sec1-txt h3 {
  color: var(--lightgreen);
  font-family: "All Round Gothic";
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.partner-container {
  padding: 0;
}

.part-img img {
  width: 80%;
  margin: 0 auto;
}

.sec1-cta {
  margin-top: 60px;
}

.sec1-cta button,
.reviews-cta {
  width: 345px;
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.reviews-cta {
  margin: 0;
  background: var(--lightgreen);
}

.sec1-cta button img {
  width: 7px;
  margin-left: 10px;
}

.sec1-cta button:hover {
  background: var(--lightgreen);
}

/* section2 */
.section2 {
  text-align: center;
}

.sec2-outer {
  background: var(--lightgrey);
  border-radius: 60px;
  padding: 60px 30px 70px 30px;
}

.vant-box {
  background: var(--white);
  border-radius: 25px;
  padding: 40px 30px;
  width: 90%;
  height: 210px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.vant-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.vant-box img {
  height: 60px;
  margin-bottom: 20px;
}

.vant-box p {
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  max-width: 92%;
  line-height: 1.1;
  margin: 0 auto;
}

/* section 3 */
.section3 {
  padding-bottom: 60px;
}

.sec3-txt h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.sec3-txt h3 span {
  color: var(--yellow);
}

.social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  margin: 40px 0 50px 0;
}

.social img {
  height: 70px;
}

.review-slider-box {
  position: relative;
  overflow: hidden;
}

.review-slider::before,
.review-slider::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  right: 0;
  left: 0;
  z-index: 4;
}

.review-slider::before {
  top: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 100%);
}

.review-slider::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 100%);
  ;
}

.review-slider .slick-track {
  padding: 30px 0;
}

.review-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}

.testimonial-box {
  background: var(--white);
  border: 2px solid #CFD0DB;
  width: 44%;
  margin: 0 auto;
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.small-testimonial {
  height: 175px;
}

.large-testimonial {
  height: 210px;
}

.testimonial-box p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto;
}

.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0 0 0;
}

.persona img {
  width: 30px;
  border-radius: 50px;
}

.persona h6 {
  margin: 0 0 0 10px;
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
}

.persona h6 span {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
}

/* footer */
.footer {
  padding: 60px 0 0 0;
}

.footer-outer {
  background: var(--green);
  border-radius: 60px;
  position: relative;
  padding: 65px 20px;
  margin-bottom: 40px;
}

.footer-txt {
  color: var(--white);
}

.footer-txt p {
  color: var(--white);
  font-family: "All Round Gothic";
  font-size: 35px;
  font-weight: 350;
  margin: 0;
  line-height: 1;
}

.footer-txt h3 {
  color: var(--white);
  font-family: "All Round Gothic";
  font-size: 35px;
  font-weight: 700;
}

.footer-txt button {
  background: var(--lightgreen);
  padding: 15px;
  height: 45px;
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 0;
}

.footer-txt button img {
  width: 7px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}

.footer-txt button:hover {
  background: var(--white);
  color: var(--green);
}

.footer-txt button:hover img {
  filter: none;
}

.footer-img img {
  position: absolute;
  bottom: 0;
  right: 30px;
}

/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}


/* Reviews */
.review-slider-box {
  position: relative;
  overflow: hidden;
}

.review-slider::before,
.review-slider::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  right: 0;
  left: 0;
  z-index: 4;
}

.review-slider::before {
  top: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 100%);
}

.review-slider::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 100%);
  ;
}

.review-slider .slick-track {
  padding: 30px 0;
}

.review-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}

.testimonial-box {
  background: var(--white);
  border: 2px solid #CFD0DB;
  width: 44%;
  margin: 0 auto;
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.small-testimonial {
  height: 175px;
}

.large-testimonial {
  height: 210px;
}

.testimonial-box p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto;
}

.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0 0 0;
}

.persona img {
  width: 30px;
  border-radius: 50px;
}

.persona h6 {
  margin: 0 0 0 10px;
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
}

.persona h6 span {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
}

/* section4 - no waste time */
.no-waste-time {
  margin-block: 100px;
}

.no-waste-time--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.no-waste-time--wrapper .content {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.no-waste-time--wrapper h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 40px;
}

.people-waiting {
  max-height: 300px;
}

.no-waste-time--wrapper .cta {
  width: 345px;
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Media Queries */
@media only screen and (max-width: 1400px) {
  .menu ul li {
    font-size: 16px;
  }

  .header-txt h1 {
    font-size: 30px;
  }

  .header-txt p {
    font-size: 16px;
    max-width: 75%;
  }

  .header-txt ul li {
    font-size: 17px;
    max-width: 90%;
  }

  .form-img {
    width: 400px;
  }

  .vant-box {
    padding: 35px 20px;
  }

  .vant-box p {
    max-width: 100%;
  }

  .article-box {
    max-width: 95%;
  }

  .article-txt p {
    font-size: 16px;
  }

  .footer-txt p {
    font-size: 30px;
  }

  .social img {
    height: 55px;
  }
}

@media only screen and (max-width: 1200px) {
  .nav-logo img {
    height: 60px;
  }

  .menu ul li {
    font-size: 13px;
  }

  .header-txt h1 {
    font-size: 26px;
  }

  .header-txt p {
    font-size: 14px;
    max-width: 80%;
  }

  .header-txt ul li {
    font-size: 14px;
    max-width: 75%;
  }

  #contactform {
    width: 350px;
    padding: 30px 20px;
  }

  #contactform h6 {
    font-size: 13px;
  }

  .vant-box {
    height: 200px;
  }

  .footer-txt p {
    font-size: 26px;
  }

  .footer-txt h3 {
    font-size: 30px;
  }

  .footer-img img {
    height: 300px;
    right: 0;
  }

  .vant-box p {
    font-size: 15px;
  }

  .footer {
    padding: 30px 0 0 0;
  }

  .social {
    gap: 0 10px;
  }

  .social img {
    height: 50px;
  }
}

@media only screen and (max-width: 1080px) {
  .article-txt p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 991px) {
  .menu ul li {
    font-size: 11px;
  }

  .header-content {
    padding: 0 30px;
  }

  .header-txt h1 {
    font-size: 24px;
  }

  .header-txt p {
    max-width: 90%;
  }

  .header-txt ul li {
    font-size: 14px;
    max-width: 95%;
  }

  .form-img {
    display: none;
  }

  #contactform h6 {
    font-size: 12px;
  }

  .sec1-txt h3 {
    font-size: 24px;
  }

  .sec2-outer {
    padding: 60px 20px 50px 20px;
  }

  .vant-box {
    margin-bottom: 20px;
  }

  .footer-img img {
    height: 250px;
  }

  .testimonial-box {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
  }

  .review-outer {
    margin: 0 auto;
    flex-direction: column;
  }

  .large-testimonial,
  .small-testimonial {
    height: auto;
  }

  .persona-box img {
    height: 270px;
    left: unset;
    right: unset;
  }

  .social {
    justify-content: space-between;
  }

  .social img {
    height: auto;
    width: 31%;
  }

  .people-waiting {
    max-height: 220px;
  }
}

@media only screen and (max-width: 768px) {
  .nav {
    padding: 30px;
  }

  .nav-logo {
    text-align: center;
  }

  .nav-logo img {
    height: 50px;
  }

  .header {
    text-align: center;
  }

  .header-content {
    padding: 40px;
  }

  .selo {
    justify-content: center;
  }

  .header-txt h1 {
    margin-top: 40px;
    font-size: 35px;
  }

  .header-txt p {
    font-size: 18px;
    margin: 20px auto 10px auto;
    max-width: 100%;
  }

  .header-txt ul {
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
  }

  .header-txt ul li {
    max-width: 100%;
    font-size: 15px;
  }

  .form-box {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    margin: 20px auto 0 auto;
  }

  #contactform {
    margin: 0 auto;
    width: 100%;
    padding: 30px;
  }

  #contactform h3 {
    max-width: 75%;
  }

  #contactform h6 {
    font-size: 15px;
  }

  .sec1-txt h3 {
    font-size: 26px;
    max-width: 68%;
    margin: 0 auto;
  }

  .vant-box {
    margin: 10px auto;
    height: auto;
    padding: 30px;
  }

  .vant-box p {
    font-size: 18px;
    max-width: 70%;
  }

  .article-txt p {
    font-size: 18px;
  }

  .footer {
    padding: 0;
    text-align: center;
  }

  .footer-outer {
    padding: 50px 30px 0 30px;
  }

  .footer-txt button {
    margin: 30px auto;
  }

  .footer-img img {
    position: relative;
  }

  .testimonial-box {
    width: 400px;
  }

  .section3 .reviews-cta {
    margin: 0 auto;
  }

  .no-waste-time--wrapper {
    flex-direction: column-reverse;
    gap: 50px;
    text-align: center;
  }

  .no-waste-time--wrapper h2 {
    line-height: 30px;
    text-wrap: balance;
  }

  .no-waste-time--wrapper .cta {
    width: 285px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {

  .header,
  .section2,
  .footer {
    padding: 0 15px;
  }

  .footer-txt p {
    font-size: 24px;
  }

  .header-txt h1 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 550px) {
  .header-txt p {
    font-size: 16px;
  }

  .sec1-txt h3 {
    max-width: 78%;
  }

  .sec3-txt h3 {
    font-size: 26px;
  }

  .footer-txt p {
    font-size: 21px;
  }

  .footer-img img {
    height: auto;
    width: 100%;
  }

  .testimonial-box {
    width: 90%;
  }
}

@media only screen and (max-width: 500px) {
  .header-txt ul {
    max-width: 90%;
  }

  .footer-txt p {
    font-size: 18px;
  }

  .header-txt h1 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 475px) {
  .header-txt h1 {
    font-size: 24px;
  }

  .header-txt p {
    max-width: 90%;
  }

  #contactform h6 {
    max-width: 85%;
  }

  #contactform h3 {
    max-width: 95%;
  }

  .sec1-txt h3 {
    max-width: 88%;
  }

  .footer-txt h3 {
    font-size: 28px;
  }

  .people-waiting {
    max-height: 190px;
  }

  .no-waste-time--wrapper h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 414px) {
  .form-img {
    width: 100%;
  }

  #contactform {
    padding: 25px;
  }

  .header-content {
    padding: 35px 30px;
  }

  .sec1-txt h3 {
    max-width: 96%;
  }

  .header-txt h1 {
    font-size: 22px;
  }

  .footer-txt p {
    font-size: 22px;
    max-width: 80%;
    margin: 0 auto;
  }

  .sec1-cta button {
    width: 100%;
    font-size: 18px;
  }

  .article-txt p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 390px) {
  .header-txt h1 {
    font-size: 22px;
  }

  .footer-txt h3 {
    font-size: 28px;
  }

  .header-txt p {
    max-width: 95%;
  }

  .header-content {
    padding: 30px 25px;
  }

  .sec1-txt h3 {
    max-width: 100%;
  }

  .footer-outer {
    padding: 40px 25px 0 25px;
  }

  .input-title h5 {
    font-size: 16px;
  }

  .social {
    gap: 0 10px;
    margin: 20px auto 30px auto;
  }

  .social img {
    width: 32%;
  }
}

@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 20px;
  }

  .footer-txt h3 {
    font-size: 24px;
  }

  #contactform h6 {
    max-width: 80%;
  }

  .sec1-cta button {
    font-size: 16px;
  }

  .sec1-cta button img {
    display: none;
  }

  .header-txt p {
    max-width: 95%;
    font-size: 13px;
  }

  #contactform h3 {
    max-width: 100%;
    font-size: 22px;
  }

  .form-button {
    width: 100%;
  }

  .vant-box p {
    max-width: 100%;
    font-size: 16px;
  }

  .form-button img,
  .footer-txt button img {
    display: none;
  }

  .footer-txt p {
    max-width: 90%;
  }

  .sec1-txt h3,
  .sec3-txt h3 {
    font-size: 24px;
  }

  .header,
  .section2,
  .footer {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 345px) {
  .header-content {
    padding: 25px 15px;
  }

  .header-txt h1 {
    font-size: 20px;
  }

  .header-txt p {
    max-width: 100%;
    font-size: 12px;
  }

  #contactform h3 {
    font-size: 20px;
  }

  #contactform h6 {
    max-width: 100%;
    font-size: 14px;
  }

  .inputs1 .col-6,
  .extra-question .col-6 {
    padding: 0 5px;
  }

  .form-button {
    font-size: 16px;
  }

  .sec1-cta button {
    font-size: 14px;
  }

  .sec1-txt h3,
  .sec3-txt h3 {
    font-size: 20px;
  }

  .vant-box {
    padding: 20px;
  }

  .vant-box p {
    font-size: 14px;
  }

  .footer-txt p {
    font-size: 18px;
    max-width: 80%;
  }

  .footer-txt h3 {
    font-size: 22px;
  }

  .footer-txt button {
    width: 100%;
  }
}

@media only screen and (max-width: 320px) {
  .footer-txt h3 {
    font-size: 21px;
  }
}