@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
html {
  font-size: 62.5%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", "sans-serif";
}

.header {
  padding: 8px 24px;
  margin: 0 auto;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav nav {
  display: none;
}
.header__nav--hamburger {
  width: 32px;
  height: 32px;
}
.header__drawer {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 62vw;
  height: 100vh;
  z-index: 100;
  transform: translateX(62vw);
}
.header__drawer--close {
  display: flex;
  justify-content: flex-end;
  padding: 36px 24px;
}
.header__drawer--close img {
  width: 32px;
  height: 32px;
}
.header__drawer nav {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.header__drawer nav a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
.header__drawer nav a:visited {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
.header__drawer--visible {
  background-color: white;
  display: block;
  position: absolute;
  box-shadow: -8px 4px 24px 0px rgba(66, 68, 90, 0.21);
  transform: translateX(0);
  z-index: 10;
}

@media (min-width: 768px) {
  .header__nav--logo {
    padding: 15px;
    transform: scale(1.5);
  }
  .header__nav nav {
    display: flex;
  }
  .header__nav nav a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding-right: clamp(2rem, 5vw, 7rem);
  }
  .header__nav nav a:visited {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
  }
  .header__nav--hamburger {
    display: none;
  }
}
.hero {
  padding: 8px 2%;
  margin: 3vh auto 0 auto;
}
.hero__text {
  text-align: center;
}
.hero__text h1 {
  font-weight: 100;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  color: #2c3e50;
}
.hero__text p {
  margin: 1.6rem auto 0 auto;
  width: 100%;
  max-width: 600px;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: #2c3e50;
}
.hero__text button {
  margin-top: 2.4rem;
  width: 80%;
  max-width: 240px;
  padding: 1.6rem 0;
  border-radius: 50px;
  outline: none;
  background-color: #251e4e;
  border: 0;
  color: white;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hero__text {
    text-align: left;
  }
  .hero__text p {
    margin: 1.6rem 0 0 0;
  }
}
@media (min-width: 1440px) {
  .hero__image {
    width: 50%;
    max-width: 1024px;
  }
  .hero__text {
    font-size: clamp(2.4rem, 6vw, 6.4rem);
  }
}
@media (min-width: 1920px) {
  .hero__text h1 {
    font-size: clamp(2.4rem, 6vw, 7.2rem);
  }
  .hero__text p {
    font-size: clamp(1.6rem, 5vw, 3.6rem);
    max-width: 750px;
  }
}
.text_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 15%;
  text-align: center;
  margin-top: 5%;
}
.text_container__text h1 {
  font-weight: 100;
  font-size: clamp(2.4rem, 6vw, 6.4rem);
  color: #2c3e50;
}

.benefits {
  padding: 8px 5%;
  margin: 7vh auto 0 auto;
}
.benefits__text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5%;
}
.benefits__text h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 1.4rem;
}
.benefits__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 20px;
}
.benefits__group__benefit {
  max-width: 90%;
  margin-bottom: 10%;
  text-align: center;
}
.benefits__group__benefit h4,
.benefits__group__benefit h5 {
  text-align: center;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  padding: 0 4%;
}
.benefits__group__benefit h5 {
  font-weight: normal;
  margin-top: 1.2rem;
  line-height: 15px;
}

@media (max-width: 768px) {
  .benefits__group {
    display: block;
  }
  .benefits__group__benefit {
    max-width: 100%;
    margin-bottom: 10%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .benefits__group__benefit h4,
  .benefits__group__benefit h5 {
    text-align: center;
  }
  .benefits__group__benefit h5 {
    font-weight: normal;
  }
  .benefits__text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
  }
  .benefits__text h3 {
    color: #2c3e50;
  }
}
@media (min-width: 768px) {
  .benefits__group a {
    width: 30%;
  }
  .benefits__group__benefit h4 {
    margin-top: 1.2rem;
  }
}
.advice {
  background-color: #676283;
  color: white;
  padding-bottom: 2%;
  padding-top: 5%;
}
.advice h1 {
  font-size: clamp(2.4rem, 6vw, 6.4rem);
  text-align: center;
  font-weight: normal;
  margin-bottom: 2%;
}
.advice h3 {
  font-weight: bold;
  font-size: clamp(1.4rem, 1vw, 2.2rem);
  text-align: center;
  margin-bottom: 1%;
  margin-top: 2.4rem;
}
.advice h5 {
  padding: 0 5%;
  margin-bottom: 2%;
  margin-top: 1.6rem;
  font-size: clamp(1.4rem, 1vw, 2.2rem);
  text-align: center;
  font-weight: normal;
}
.advice__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 5% 5%;
}
.advice__buttons a {
  width: 80%;
}
.advice__buttons button {
  width: 100%;
  max-width: 240px;
  padding: 1.6rem 0;
  border-radius: 50px;
  outline: none;
  background-color: #251e4e;
  border: 0;
  color: white;
  font-weight: normal;
  font-size: clamp(1.8rem, 1vw, 1rem);
  margin: 2.4rem 3% 0 3%;
}

@media (min-width: 768px) {
  .advice {
    background-color: #676283;
    color: white;
  }
  .advice h1 {
    text-align: center;
    font-weight: normal;
    margin-bottom: 2%;
  }
  .advice h3 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1%;
  }
  .advice h5 {
    padding: 0 25%;
    margin-bottom: 2%;
    text-align: center;
    font-weight: normal;
  }
  .advice__buttons {
    display: block;
    align-items: center;
    text-align: center;
    padding: 0 20%;
  }
  .advice__buttons button {
    width: 100%;
    max-width: 240px;
    border-radius: 50px;
    outline: none;
    background-color: #251e4e;
    border: 0;
    color: white;
    font-weight: normal;
    font-size: clamp(1.8rem, 1vw, 1rem);
    padding: 2% 2%;
    margin: 2% 3%;
  }
}
.text_paragraph {
  position: relative;
  padding-top: 3%;
  padding-right: 10%;
  padding-bottom: 10%;
  padding-left: 10%;
  text-align: start;
}
.text_paragraph h3 {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
.text_paragraph .centering {
  text-align: center !important;
}
.text_paragraph .downloadPDF {
  cursor: pointer;
  margin: 3% 0;
  text-align: center;
}
.text_paragraph p {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
.text_paragraph button {
  width: 80%;
  max-width: 240px;
  padding: 1.6rem 0;
  border-radius: 50px;
  outline: none;
  background-color: #251e4e;
  border: 0;
  color: white;
  font-weight: normal;
  font-size: clamp(1.8rem, 1vw, 1rem);
  margin: 2.4rem 3% 0 3%;
}

.centering {
  text-align: center !important;
}

@media (min-width: 768px) {
  .text-paragraph {
    padding: 3% 20%;
  }
  .text-paragraph button {
    width: 100%;
    max-width: 240px;
    border-radius: 50px;
    outline: none;
    background-color: #251e4e;
    border: 0;
    color: white;
    font-weight: normal;
    font-size: clamp(1.8rem, 1vw, 1rem);
    padding: 2% 2%;
    margin: 2% 3%;
  }
}
.steps {
  background-color: #676283;
  color: white;
  padding: 10% 10%;
}
.steps h3 {
  font-weight: bold;
  font-size: clamp(1.6rem, 3vw, 3.6rem);
  text-align: center;
}
.steps h4 {
  font-size: clamp(1.6rem, 1vw, 1.6rem);
}
.steps h5 {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  margin-top: 1rem;
  font-weight: 400;
}
.steps__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-top: 2.5rem;
}
.steps__container .arrow {
  width: 30%;
  max-width: 30px;
}
.steps__container__step {
  padding: 0 0;
}

@media (max-width: 768px) {
  .steps {
    background-color: #676283;
    color: white;
  }
  .steps h3 {
    font-weight: bold;
    text-align: center;
    margin-top: 1%;
  }
  .steps__container {
    display: block;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  .steps__container .arrow {
    width: 30%;
    max-width: 30px;
    transform: rotate(90deg);
  }
  .steps__container__step {
    padding: 0 5%;
    margin: 10% 0;
  }
}
@media (min-width: 768px) {
  .steps {
    padding: 5% 5%;
  }
  .steps__container {
    margin-top: 5rem;
  }
  .steps__container__step {
    margin-right: 5%;
    margin-left: 5%;
  }
}
.opinions {
  background-color: #251e4e;
  color: white;
  text-align: center;
  align-items: center;
  padding: 5% 30%;
  position: relative;
}
.opinions h3 {
  font-weight: bold;
  font-size: clamp(1.5rem, 3vw, 3.6rem);
  text-align: center;
  padding-bottom: 1%;
}
.opinions__container {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 1.2rem;
}
.opinions__container div {
  margin: 0 10%;
}
.opinions__container h4 {
  font-size: clamp(1.2rem, 3vw, 2.4rem);
}
.opinions__container h5 {
  font-weight: normal;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  padding: 0 5%;
}
.opinions__container .star {
  width: 20%;
  max-width: 20px;
  padding-bottom: 2%;
}
.opinions__container .arrow {
  width: 30%;
  max-width: 25px;
}
.opinions__container .reverse {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .opinions {
    background-color: #251e4e;
    color: white;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 10% 6%;
  }
  .opinions h3 {
    font-weight: bold;
    font-size: clamp(1.5rem, 1vw, 1rem);
    text-align: center;
    padding-bottom: 3%;
  }
  .opinions__container {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .opinions__container h5 {
    font-weight: normal;
    padding: 0 20%;
  }
  .opinions__container .star {
    width: 20%;
    max-width: 20px;
  }
  .opinions__container .reverse {
    transform: rotate(180deg);
  }
}
footer {
  background-color: #110829;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  padding: 5% 5%;
}
footer .info {
  text-align: start;
}
footer .info h4 {
  font-weight: bold;
  margin-bottom: 10%;
}
footer .info p {
  font-weight: normal;
  font-size: clamp(1.2rem, 0.5vw, 1.6rem);
  margin-top: 2px;
  color: white;
}
footer p {
  font-weight: normal;
  font-size: clamp(1.2rem, 0.5vw, 1.6rem);
  color: white;
}
footer .cookies {
  max-width: 35%;
  text-align: start;
}
footer .footer_container {
  display: flex;
  text-align: center;
  align-items: center;
}
footer .footer_container img {
  margin-right: 4%;
}

@media (max-width: 768px) {
  footer {
    background-color: #110829;
    color: white;
    display: block;
    align-items: center;
    text-align: center;
  }
  footer .world {
    display: none;
  }
  footer .info {
    margin-top: 4%;
    text-align: start;
    margin-bottom: 8%;
    padding-left: 30%;
  }
  footer .info h4 {
    font-weight: bold;
    margin-bottom: 4%;
  }
  footer .info p {
    margin-top: 0.5rem;
    font-weight: normal;
    font-size: clamp(1.2rem, 0.5vw, 1.6rem);
    color: white;
  }
  footer p {
    font-weight: normal;
    font-size: clamp(1.2rem, 0.5vw, 1.6rem);
    color: white;
  }
  footer .cookies {
    max-width: 100%;
    text-align: center;
  }
  footer .footer_container {
    display: flex;
    align-items: center;
    justify-content: start;
  }
  footer .footer_container img {
    margin-right: 2%;
  }
}
@media (min-width: 768px) {
  footer img {
    width: 15%;
    max-width: 240px;
  }
}
.contact_container {
  display: flex;
  justify-content: flex-start;
  text-align: start;
  align-items: center;
  margin: 4% 0;
}
.contact_container p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.contact_container .contact_icon {
  width: 100%;
  max-width: 20px;
  margin-right: 3%;
}

.splide {
  padding: 20px 0;
}
.splide__slide {
  width: auto !important;
}
.splide__slide img {
  display: block;
  height: 300px;
  width: auto;
  transition: transform 400ms;
  transform: scale(0.98);
  transform-origin: center center;
}
.splide__slide .is-active img {
  transform: scale(1);
}

.container {
  position: relative;
  margin: 0 auto;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.circle-background {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 75vw;
  max-width: 1280px;
}

.white_underscore {
  width: 20%;
  margin-left: 40%;
  height: 10px;
  border-top: 1px solid white;
}

.black_underscore {
  width: 40%;
  margin-left: 30%;
  margin-top: 3%;
  height: 10px;
  border-bottom: 1px solid black;
}

.business-advices-bubble {
  opacity: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  position: absolute;
  top: -5vw;
  left: 12.5vw;
  width: 15vw;
  height: 15vw;
  max-width: 200px;
  max-height: 200px;
  background-color: #aeb8e8;
  z-index: -1;
  border-radius: 50%;
}
.business-advices-bubble h1 {
  color: white;
  font-weight: bold;
  font-size: clamp(6rem, 6vw, 8rem);
}

#fullpage {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  cursor: "zoom-out";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: rgb(228, 228, 228);
}

@media (min-width: 768px) {
  .circle-background {
    display: block;
  }
  .business-advices-bubble {
    opacity: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    position: absolute;
    top: -5vw;
    left: 12.5vw;
    width: 15vw;
    height: 15vw;
    max-width: 200px;
    max-height: 200px;
    background-color: #aeb8e8;
    z-index: -1;
    border-radius: 50%;
  }
  .business-advices-bubble h1 {
    color: white;
    font-weight: bold;
    font-size: clamp(9.6rem, 10vw, 12.8rem);
  }
}
@media (min-width: 1280px) {
  .circle-background {
    width: 60vw;
    max-width: 1280px;
  }
}