@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  
  /*
  --main-bg-color: #757095;
  --main-bg-color-light: #f5f5ff;
  --main-bg-color-dark: #59547b;
  --main-bg-color-darker: #3e3c4e;
  --main-dark-color: #151820;
  --main-accent-color: #ff3782;
  --main-green-color: #12b76f;
  --main-gray-color: #8593a3;
  --whatsapp-green-color: #25d366;
  */
  
  --main-bg-color: #405D9D;
  --main-bg-color-light: #D7E1F2;
  --main-bg-color-dark: #2C3E7D;
  --main-bg-color-darker: #151820;
  --main-dark-color: #151820;
  --main-accent-color: #587BB7;
  --main-green-color: #6D7D9D;
  --main-gray-color: #8593a3;
  --whatsapp-green-color: #25d366;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  background-color: #fbfcff;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

li {
  list-style: none;
}

.debug-helper {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
  font-size: 0.6rem;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.swiper-button-disabled {
  opacity: 0 !important;
}

.carousel {
  padding: 0rem;
  position: relative;
  
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel .swiper-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  padding: 5px;
  background-color: #fff;
  color: var(--main-accent-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.carousel .swiper-button-prev {
  transform: translateX(-0.5rem) translateY(-1.5rem);
}

.carousel .swiper-button-next {
  transform: translateX(0.5rem) translateY(-1.5rem);
}

.swiper {
  padding-bottom: 3rem !important;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-accent-color) !important;
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  overflow-x: hidden;
}

/* HEADER */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem;
  transition-duration: 300ms;
  z-index: 99;
  
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  min-width: 10%;
  padding-top: 0.5rem;
}

.header .logo a img {
  width: 100%;
  object-fit: contain;
}

.header .menu {
  display: none;
}

.header .sidebar-open {
  transform: translateY(-0.5rem);
}

.header .sidebar-close {
  transform: translateY(0.5rem);
}

.header .sidebar-open,
.header .sidebar-close {
  display: block;
  background-color: transparent;
}

.header .sidebar-open span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #000;
  margin: 5px 0;
  border-radius: 50px;
}

.header .sidebar-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.header .sidebar-close svg {
  font-size: 3rem;
}

.header .sidebar {
  padding-top: 3rem;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.1);
  transition-duration: 300ms;
}

.header .sidebar ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header .sidebar ul li {
  margin: 1.2rem 0;
}

.header .sidebar > ul > li {
  position: relative;
}

.header .sidebar > ul > li .active {
  font-weight: 600;
}

.header .sidebar > ul > li .active::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 2.5px;
  background: var(--main-accent-color);
  margin-right: 1rem;
}

.header .sidebar ul li a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--main-dark-color);
}

.header .sidebar.active {
  right: 0;
}

.header .sidebar ul {
  display: flex;
  flex-direction: column;
}

#nav-demo {
  margin-right: 0;
  background-color: var(--main-bg-color);
  border-radius: 5px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  transition-duration: 300ms;
}

#nav-demo:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
}

/* WHATSAPP */
.whatsapp-fab {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  aspect-ratio: 1;
  background-color: var(--whatsapp-green-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-content: center;
  padding-top: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  transform: scale(0.8);
  transition: all 0.3s ease-in-out;
}

/* HERO */
.hero {
  background-image: url("int/hero-bg.png");
  background-position: center;
  background-size: cover;
  margin-top: -10rem;
  padding: 10rem 0;
}

.hero .wrapper {
  display: flex;
  flex-direction: column;
}

.hero .hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--main-dark-color);
  padding-top: 5rem;
  margin-right: 2rem;
}

.hero .hero__content .hero__title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}

.hero .hero__content .hero__title .hero__title_rec {
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hero .hero__content .hero__title .hero__title_rec svg {
  border-radius: 50%;
  color: red;
  font-size: 1.5rem;
  position: relative;
  top: -0.1rem;
}

.hero .hero__content .hero__description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--main-bg-color);
}

.hero .hero__content .hero__cta_text {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.hero .hero__content .hero__cta_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 0;
  margin: 1rem 0;
  gap: 0.5rem;
}

/* .hero .hero__content .hero__cta_form input {
  font-size: 1rem;
  width: 100%;
  padding: 0.7rem;
  border-radius: 5px 5px 0px 0px;
  border: none;
  outline: none;
  font-weight: 300;
  color: var(--main-dark-color);
} */

/* .hero .hero__content .hero__cta_form input::placeholder {
  color: var(--main-bg-color);
  opacity: 0.4;
} */

.hero .hero__content .hero__cta_form a {
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  border: none;
  outline: none;
  /* width: 100%; */
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  background-color: var(--main-bg-color);
}

.hero .hero__content .hero__cta_form span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--main-bg-color);
}

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

.hero .hero__image > img {
  width: 120%;
  max-height: 500px;
  z-index: 0;
  object-fit: contain;
}

/* ADVANTAGES */
.advantages {
  padding-bottom: 3rem;
}
.advantages .wrapper {
  flex-direction: column;
}

.advantages .advantages__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

.advantages .advantages__intro h2,
.features .features__intro h2,
.testimonials .testimonials__intro h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 16px;
  border-radius: 10px;
  background-color: var(--main-bg-color);
  margin-bottom: 1rem;
}

.advantages .advantages__intro h3,
.features .features__intro h3,
.testimonials .testimonials__intro h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--main-dark-color);
}

.advantages .advantages__intro p,
.features .features__intro p,
.tools .tools__intro p,
.testimonials .testimonials__intro p,
.plans .plans__intro p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--main-bg-color);
}

.advantages .advantage__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
}

.advantages .advantage__card img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.advantages .advantage__card h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--main-dark-color);
  margin-bottom: 0.5rem;
}

.advantages .advantage__card .advantage__card_description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--main-bg-color);
  overflow-y: hidden;
  transition-duration: 300ms;
  margin-bottom: 1rem;
}

.advantages .advantage__card button,
.tools .tool__card button {
  padding: 0.4rem 1.8rem;
  font-size: 1rem;
  border: 1px solid var(--main-accent-color);
  color: var(--main-accent-color);
  border-radius: 5px;
  background-color: #fff;
}

/* FEATURES */
.features {
  background-color: #fff;
  padding-top: 3rem;
}
.features .wrapper {
  display: flex;
  flex-direction: column;
}
.features .features__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}
.features .features__intro h3 > b {
  color: var(--main-bg-color);
}

.features .features__intro .features__list {
  margin-top: 1rem;
}

.features .features__intro .features__list ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}

.features .features__intro .features__list ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  padding: 1rem;
  border-radius: 5px;
  text-align: start;
  background-color: var(--main-bg-color-light);
  position: relative;
}
.features .features__intro .features__list ul > li .check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: var(--main-green-color);
  color: #fff;
  display: grid;
  font-size: 0.7rem;
  place-items: center;
  margin-left: 0.5rem;
}

.features .features__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features .features__image img {
  width: 100%;
  max-height: 500px;
  z-index: 0;
  object-fit: contain;
}

/* CUSTOMIZABLE */
.customizable {
  background-color: #fbfcff;
  padding: 3rem 0rem;
}
.customizable .wrapper {
  display: flex;
  flex-direction: column;
}
.customizable .customizable__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}
.customizable .customizable__intro h2 {
  font-weight: normal;
  font-size: 2rem;
}

.customizable .customizable__intro h2 > br {
  display: none;
}

.customizable .customizable__intro p {
  margin-top: 1rem;
  color: var(--main-bg-color);
  font-weight: 300;
}

.customizable .customizable__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customizable .customizable__image img {
  width: 100%;
  max-height: 500px;
  z-index: 0;
  object-fit: contain;
  transform: translateX(-1rem);
}

/* TOOLS */
.tools {
  background-color: var(--main-bg-color-light);
  padding: 3rem 0;
}
.tools .wrapper {
  flex-direction: column;
}

.tools .tools__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

.tools .tools__intro h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tools .tools__intro h2 > b {
  color: var(--main-accent-color);
}

.tools .tools__intro p {
  font-size: 1rem;
  font-weight: 300;
}

.tools .tool__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  
  flex-basis: calc(100% - 1em);
  
  
}

/* add margin bottom to every children of .tools .tool_card */
.tools .tool__card > * + *,
.tools .tool__card > img {
  margin-bottom: 1rem;
}

.tools .tool__card img {
  width: 80px;
  height: 80px;
}

.tools .tool__card > :last-child {
  margin-bottom: 0rem;
}

.tools .tool__card h4 {
  font-size: 1.2rem;
  font-weight: 300;
}

.tools .tool__card .tool__card_description {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--main-bg-color);
  overflow-y: hidden;
}

/* TESTIMONIALS */
.testimonials {
  width: 100%;
  background-color: #fff;
  padding: 3rem 0;
}

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

.testimonials .testimonials__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}
.testimonials .testimonials__intro h3 > b {
  color: var(--main-bg-color);
}

.testimonials .testimonial__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 1rem;
  flex: 1 1 calc(100% - 1em);
}

.testimonials .testimonial__card > :last-child {
  margin-bottom: 0rem;
}

.testimonials .testimonial__card .client {
  display: flex;
  align-items: center;
}

.testimonials .testimonial__card .client .client__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-items: center;
  margin-left: 0.5rem;
  line-height: 1.5;
}

.testimonials .testimonial__card .client .client__info h4 {
  font-size: 0.875rem;
  font-weight: 700;
}
.testimonials .testimonial__card .client .client__info span {
  font-size: 0.75rem;
  font-weight: 300;
  color: #797979;
}

.testimonials .testimonial__card img {
  width: 43px;
  height: 43px;
}

.testimonials .testimonial__card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--main-bg-color);
}

/* PLANS */
.plans {
  width: 100%;
  background-color: #fbfcff;
  padding: 3rem 0;
}

.plans .wrapper {
  flex-direction: column;
  gap: 2rem;
}

.plans .plans__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}
.plans .plans__intro h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.plans .plan_item {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--main-bg-color-light);
}

.plans .plan_item .plan_item_grid {
  display: grid;
  grid-template-columns: 1fr;
}

.plans .plan_item .plan_item_description {
  padding: 1rem;
}

.plans .plan_item .plan_item_description h3 {
  font-size: 1.2rem;
}

.plans .plan_item_1 .plan_item_description h3 {
  color: var(--main-accent-color);
}

.plans .plan_item_2 .plan_item_description h3 {
  color: var(--main-green-color);
}

.plans .plan_item .plan_item_description p {
  color: var(--main-gray-color);
  font-size: 0.9rem;
  font-weight: 300;
}

.plans .plan_item .plan_item_pricing {
  background-color: var(--main-accent-color);
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
}

.plans .plan_item_1 .plan_item_pricing {
  background-color: var(--main-accent-color);
}

.plans .plan_item_2 .plan_item_pricing {
  background-color: var(--main-green-color);
}

.plans .plan_item .plan_item_pricing h4 {
  font-size: 1.2rem;
}

.plans .plan_item .plan_item_pricing span {
  font-size: 3rem;
  font-weight: 700;
}

.plans .plan_item .plan_item_pricing span i {
  font-size: 1rem;
  font-weight: 300;
}

.plans .plan_item .plan_item_list {
  background-color: #fff;
}

.plans .plan_item .plan_item_list .plan_item_list_item:nth-child(2n) {
  background-color: var(--main-bg-color-light);
}

.plans .plan_item .plan_item_list .plan_item_list_item {
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0.5rem 0.8rem;
}

.plans .plan_item .plan_item_ready_to_start {
  background-color: var(--main-bg-color);
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.plans .plan_item .plan_item_ready_to_start .cta_text {
  flex-grow: 1;
}

.plans .plan_item .plan_item_ready_to_start .cta_text span {
  font-size: 1.3rem;
  font-weight: 700;
}

.plans .plan_item .plan_item_ready_to_start .cta_text p {
  font-weight: 300;
}

.plans .plan_item .plan_item_ready_to_start .cta_action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plans .plan_item .plan_item_ready_to_start .cta_action a {
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  border: 0.5px solid #fff;
}

.plans .plan_item_1 .plan_item_ready_to_start .cta_action a {
  background-color: var(--main-accent-color);
}

.plans .plan_item_2 .plan_item_ready_to_start .cta_action a {
  background-color: var(--main-green-color);
}

/* FOOTER */
.footer {
  width: 100%;
  background-color: var(--main-bg-color);
  padding: 3rem 0 0 0;
}

.footer .footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4em;
  padding-bottom: 2rem;
}

.footer .footer__content .footer__contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.footer .footer__content .footer__contact > * + * {
  margin-top: 1rem;
}

.footer .footer__content .footer__contact h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--main-bg-color);
  padding: 4px 16px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 1rem;
}

.footer .footer__content .footer__contact p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  width: 83%;
}

.footer .footer__content .footer__contact span {
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  width: 70%;
}

.footer .footer__content .footer__contact .footer__social_media,
.footer .footer__copy_info .footer__social_media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.footer .footer__content .footer__contact .footer__social_media > * + *,
.footer .footer__copy_info .footer__social_media > * + * {
  margin-left: 1rem;
}

.footer .footer__content .footer__contact .footer__social_media a,
.footer .footer__copy_info .footer__social_media a {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  color: #fff;
}

.footer .footer__content .footer__contact .footer__social_media a img,
.footer .footer__copy_info .footer__social_media a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer .footer__content .footer__demo .footer__demo_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--main-bg-color-dark);
  border-radius: 15px;
  padding: 2rem;
}

.footer .footer__content .footer__demo .footer__demo_container h5 {
  font-size: 1.875rem;
  color: #fff;
  font-weight: 600;
}

.footer .footer__content .footer__demo .footer__demo_container p {
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
}

.footer
  .footer__content
  .footer__demo
  .footer__demo_container
  .footer__cta_form
  a {
  width: 100%;
  display: block;
  padding: 0.7rem;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  background-color: var(--main-accent-color);
  margin: 1rem 0;
}

.footer .footer__content .footer__demo .footer__demo_container span {
  font-size: 0.875rem;
  color: var(--main-bg-color-light);
  font-weight: 300;
}

.footer .footer__copy_info {
  padding: 2rem 0 0 0;
  background-color: var(--main-bg-color-darker);
}

.footer .footer__copy_info .wrapper {
  flex-direction: column;
  align-items: center;
  justify-items: self-start;
}

.footer .footer__copy_info .wrapper > a {
  display: flex;
  justify-content: center;
}

.footer .footer__copy_info .wrapper > a img {
  width: 100%;
  object-fit: contain;
}

.footer .footer__copy_info .footer__social_media {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .footer__copy_info .footer__copyright {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0;
  color: var(--main-bg-color-light);
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.5;
}

.footer .footer__copy_info .footer__copyright .footer__legal_links {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
}

.footer .footer__copy_info .footer__copyright .footer__legal_links a:hover {
  text-decoration: underline;
}

/* sm */
@media (min-width: 640px) {
  
  
  
  .carousel {
    padding: 0 2.5rem;
    position: relative;
  }

  .header .sidebar {
    width: 50%;
  }

  .hero .hero__content .hero__cta_form > fieldset {
    flex-direction: row;
  }

  .hero .hero__content .hero__cta_form input {
    width: 65%;
    border-radius: 5px 0px 0px 5px;
  }

  .hero .hero__content .hero__cta_form button {
    width: auto;
    border-radius: 0px 5px 5px 0px;
  }

  /* FEATURES */
  .features .features__intro .features__list ul {
    grid-template-columns: 1fr 1fr;
  }

  /* PLANS */
  .plans .plan_item .plan_item_grid {
    grid-template-columns: 1fr 1fr;
  }

  .plans .plan_item .plan_item_description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .plans .plan_item .plan_item_description h3 {
    font-size: 1.5rem;
  }

  .plans .plan_item .plan_item_ready_to_start {
    flex-direction: row;
    text-align: start;
  }

  /* FOOTER */
  .footer
    .footer__content
    .footer__demo
    .footer__demo_container
    .footer__cta_form
    > fieldset {
    flex-direction: row;
  }

  .footer
    .footer__content
    .footer__demo
    .footer__demo_container
    .footer__cta_form
    input {
    width: 65%;
    border-radius: 5px 0px 0px 5px;
  }

  .footer
    .footer__content
    .footer__demo
    .footer__demo_container
    .footer__cta_form
    button {
    width: auto;
    border-radius: 0px 5px 5px 0px;
  }

  .footer .footer__copy_info .footer__copyright .footer__legal_links {
    grid-template-columns: 1fr 1fr;
  }
}

/* md */
@media (min-width: 768px) {
  .tools .tool__card { flex-basis: calc(50% - 1em); }
  .testimonials .testimonial__card { flex: 1 1 calc(50% - 1em);  }
  
  .hero .hero__content .hero__title {
    display: inline-block;
  }

  .hero .hero__content .hero__title .hero__title_rec {
    display: inline-flex;
  }
  /* WHATSAPP */
  .whatsapp-fab {
    transform: scale(1);
  }
  /* ADVANTAGES */
  .advantages .advantages__intro {
    align-items: flex-start;
    text-align: start;
  }

  /* FEATURES */
  .features .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .features .features__intro {
    align-items: flex-start;
    text-align: start;
  }

  .features .features__intro .features__list ul {
    grid-template-columns: 1fr;
  }

  .features .features__image {
    align-items: flex-end;
  }

  /* CUSTOMIZABLE */
  .customizable .wrapper {
    display: flex;
    flex-direction: row;
  }

  .customizable .customizable__intro {
    align-items: flex-start;
    text-align: start;
  }

  .customizable .customizable__intro h2 > br {
    display: block;
  }

  .customizable .customizable__image {
    align-items: flex-end;
  }
  .customizable .customizable__image img {
    transform: translateX(0rem);
  }

  /* TOOLS */
  .tools .tools__intro p {
    max-width: 50%;
  }

  /* TESTIMONIALS */
  .testimonials .testimonials__intro {
    align-items: flex-start;
    text-align: start;
  }

  /* FOOTER */
  .footer .footer__copy_info .footer__copyright {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer .footer__copy_info .footer__copyright .footer__legal_links {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
  }

  .footer .footer__copy_info .footer__copyright .footer__legal_links > * + * {
    margin-left: 1rem;
  }
}

/* lg */
@media (min-width: 1024px) {
  
  .tools .tool__card { flex-basis: calc(50% - 1em); }
  .testimonials .testimonial__card { flex: 1 1 calc(50% - 1em);  }
  
  
  .wrapper {
    padding: 0 2rem;
  }


  /* HEADER */
  .header .sidebar,
  .header .sidebar-close,
  .header .sidebar-open {
    display: none;
  }

  .header .menu {
    width: 100%;
    display: block;
    padding: 10px 0px;
    margin-left: 2rem;
  }
  .header .menu > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header .menu > ul > li {
    position: relative;
    margin-left: 1rem;
  }

  .header .menu > ul > :first-child {
    margin-right: 0;
  }

  .header .menu > ul > li .active {
    font-weight: 600;
  }
  .header .menu > ul > li .active::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 2.5px;
    background: var(--main-accent-color);
    margin-right: 1rem;
  }

  /* HERO */
  .hero .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero .hero__content {
    align-items: flex-start;
    text-align: start;
  }

  .hero .hero__content .hero__cta_form {
    align-items: flex-start;
  }

  /* ADVANTAGES */
  .advantages {
    padding-top: 2rem;
  }

  /* FEATURES */
  .features .features__intro .features__list ul {
    grid-template-columns: 1fr 1fr;
  }

  /* FOOTER */
  .footer .footer__content {
    grid-template-columns: 1fr 1fr;
  }

  .footer .footer__content .footer__contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    text-align: start;
    justify-content: center;
  }

  .footer .footer__content .footer__contact .footer__social_media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
  }
}

/* xl */
@media (min-width: 1280px) {
  .tools .tool__card { flex-basis: calc(33% - 1em); }
  .testimonials .testimonial__card { flex: 1 1 calc(33% - 1em);  }
}

/* xxl */
@media (min-width: 1536px) {
}
