html {
  scroll-behavior: smooth;
}

body {
  font-family: "museo-sans", sans-serif;
  color: #1D1D1B;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

main {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h1 {
  font-size: clamp(30px, 4vw, 48px);
  text-align: center;
}

h2 {
  font-size: clamp(28px, 6vw, 34px);
  color: #FC5555;
  font-weight: 700;
}

h3 {
  font-size: clamp(16px, 3vw, 22px);
  color: #FC5555;
}

h4 {
  font-size: clamp(17px, 3vw, 22px);
  color: #FC5555;
}

p, li {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  line-height: 130%;
}

section {
  padding: 0;
}

.contentWidth {
  max-width: 1430px;
  margin: auto;
  padding: 100px 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 70px;
  max-width: 1430px;
  margin: auto;
}

.menuContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-auto-flow: 40px;
}

.logo {
  z-index: 10;
}
.logo img {
  display: block;
  width: clamp(85px, 20vw, 126px);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 5px;
  z-index: 10;
}
.burger span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
  background-color: #1D1D1B;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #1D1D1B;
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}
.burger.is-active span:nth-child(3) {
  transform: translate(3px, 3.5px) rotate(-40deg);
  background-color: #1D1D1B;
}

.menu {
  display: flex;
  gap: clamp(15px, 4vw, 50px);
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
}
.menu li.hasChildren {
  position: relative;
}
.menu li a {
  color: #1D1D1B;
  text-decoration: none;
  font-size: clamp(16px, 4vw, 18px);
  transition: color 0.25s;
  display: block;
  padding: 5px 10px;
  font-weight: 500;
  line-height: 100%;
}
.menu li a:hover {
  color: #FC5555;
}

.submenu {
  padding: 10px;
  margin: 0;
  position: absolute;
  top: 130%;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #FD9C9C;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.submenu li {
  transition: opacity 0.25s;
}
.submenu.visible {
  display: flex;
  animation: showSubmenu 0.25s;
}
.submenu a {
  color: #1D1D1B !important;
  background-color: #FFF;
  transition: background-color 0.25s !important;
  border-radius: 5px;
}
.submenu a:hover {
  background-color: #FD9C9C;
}
.submenu::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 1px solid #FD9C9C;
  border-left: 1px solid #FD9C9C;
  top: -6px;
  left: 20px;
  background-color: #FFF;
  transform: rotate(46deg);
}

@keyframes showSubmenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menuContact {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
.menuContact li {
  list-style: none;
}
.menuContact a {
  color: #1D1D1B;
  background-color: #FFF;
  transition: color 0.25s;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-content: center;
  gap: 10px;
}
.menuContact a img {
  transition: transform 0.25s;
}
.menuContact a:hover {
  color: #FC5555;
}
.menuContact a:hover img {
  transform: scale(1.15);
}

.menu.active {
  z-index: 9;
  position: absolute;
  display: flex;
  gap: clamp(30px, 4vw, 50px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #FDF7F0;
  background-image: url(../images/main/cenda_menu.svg);
  background-position: 95% 90%;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  padding: 150px 0;
  animation-name: animaceMenuA;
  animation-duration: 0.5s;
}
@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu.active a {
  font-size: 25px;
}

.formWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 570px;
  margin: auto;
}

form {
  font-weight: 400;
}
form label {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
form input[type=number]::-webkit-outer-spin-button,
form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form input[type=number] {
  -moz-appearance: textfield;
}
form input:not([type=checkbox], [type=radio], [type=submit]), form textarea, form select {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  border-radius: 10px;
  outline: none;
  border: 1px solid #FFF;
  font-size: clamp(16px, 6vw, 18px);
}
form input:not([type=checkbox], [type=radio], [type=submit]):focus, form textarea:focus, form select:focus {
  border-color: #FC5555;
}
form textarea {
  height: 110px;
}
form input[type=submit] {
  width: inherit;
  background: transparent;
  border: none;
  margin: auto;
  display: table;
}
form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FFF;
  border: 1px solid trasnsparent;
  font-family: inherit;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0;
  padding: 0;
}
form input[type=checkbox]:checked {
  border: 1px solid #FD9C9C;
  position: relative;
}
form input[type=checkbox]:checked::before {
  content: url(../images/main/checkedCross.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
form select {
  cursor: pointer;
}
form select:after {
  content: url(../images/main/beneArrowL.svg);
}
form a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #1D1D1B;
}
form a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.custom-select-container {
  position: relative;
  width: 100%;
}

#multiSelect {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  z-index: 10;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: -moz-max-content;
  width: max-content;
  padding: 5px;
  font-size: 16px;
  border-radius: 10px;
  background-color: white;
  border-radius: 10px;
  cursor: pointer;
}

.selectedItems {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  background: white;
  min-height: 40px;
}

.selectedItems span {
  color: #757575;
}

.selectedItems .item {
  background: #FD9C9C;
  color: #1D1D1B;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.selectedItems .item span {
  color: #1D1D1B;
}

.selectedItems .item .remove {
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  padding: 0 5px;
  color: #1D1D1B;
}

.separatingLine {
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background-color: #EBD4BA;
}

.error input {
  background-color: #fdc9c6;
  opacity: 0.5;
}
.error p {
  color: #FC5555;
  text-align: center;
  font-size: 15px;
  margin-top: -10px;
}

.formInfo {
  font-size: 14px;
  text-align: center;
  line-height: 130%;
}
.formInfo a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #1D1D1B;
}
.formInfo a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #FFF;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 4px;
  background-image: url("../images/main/selectArrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
  cursor: pointer;
}

option {
  background-color: #FFF !important;
  color: #1D1D1B;
  padding: 10px;
}
option:hover {
  background-color: #FD9C9C !important;
  cursor: pointer;
}

.drop-down {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

.drop-down .selectHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #FFF;
  border-radius: 10px;
  cursor: pointer;
  padding: 20px;
}
.drop-down .selectHeader svg {
  right: 20px;
  transition: transform 0.25s;
}
.drop-down .selectHeader svg.opened {
  transform: rotate(180deg);
}

.drop-down .selectHeader .filter_selected {
  font-size: clamp(16px, 6vw, 18px);
  color: #1D1D1B;
}

.drop-down .filters {
  position: absolute;
  top: 65px;
  flex-direction: column;
  background-color: #FFF;
  justify-content: center;
  border-radius: 10px;
  width: 100%;
  color: #1D1D1B;
  z-index: 20;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
  display: none;
}

.drop-down .filters .filter {
  padding: 5px 20px;
  margin-top: 10px;
  transition: color 0.25s;
  font-size: 18px;
}
.drop-down .filters .filter:last-child {
  margin-bottom: 15px;
}

.drop-down .filters .filter:hover {
  color: #FD9C9C;
  cursor: pointer;
}

.drop-down .filters .filter.selected {
  color: #FC5555;
}

form .spz {
  max-width: 570px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  height: 62px;
}
form .spz input[type=text] {
  border-radius: 0;
  height: 62px;
}
form .spz .button {
  border-radius: 0;
  height: 62px;
  border-radius: 0 10px 10px 0;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1D1D1B;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.inputContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.inputContainer .smallNumberSpinner {
  gap: 5px;
}
.inputContainer .smallNumberSpinner input {
  text-align: center;
}

.inputWrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.inputWrapper p {
  font-size: 16px;
  font-weight: 700;
}

.zipWrapper.active input {
  border-radius: 10px 10px 0 0;
}
.zipWrapper.active select {
  border-radius: 0 0 10px 10px;
}

.inputWtext {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inputWtext p {
  display: flex;
  justify-content: flex-end;
  width: 30px;
}

.checkboxWrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.calendarWrapper {
  position: relative;
}
.calendarWrapper input {
  cursor: pointer;
}
.calendarWrapper img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

.numberContainer {
  display: flex;
  align-items: center;
  gap: 30px;
}
.numberContainer button {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 10px;
  color: #FD9C9C;
  font-size: 25px;
  transition: border-color 0.25s;
}
.numberContainer button:hover {
  border-color: #FD9C9C;
}
.numberContainer input {
  flex: 1;
}

.formMenu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.formMenu.grtp-2 {
  grid-template-columns: repeat(2, 1fr);
}
.formMenu.smaller .box {
  height: auto;
}
.formMenu.smaller label {
  padding: 20px;
}
.formMenu .box {
  height: 180px;
  position: relative;
}
.formMenu label {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #FFF;
  color: #1D1D1B;
  background-color: #FFF;
  text-align: center;
  padding: 10px;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}
.formMenu label svg {
  width: 100%;
  max-width: 60px;
}
.formMenu input:checked + label {
  border-color: #FC5555;
  color: #FC5555;
}
.formMenu input, .formMenu input[type=checkbox] {
  position: absolute !important;
  opacity: 0;
  top: 10px;
  left: 10px;
}

footer {
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.05);
}
footer .contentWidth {
  padding-bottom: 20px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .copy {
  text-align: center;
  margin-top: 50px;
  font-size: clamp(14px, 3vw, 16px);
}
footer p {
  font-weight: 300;
  font-size: clamp(14px, 3vw, 16px);
}

.footerMenu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footerMenu li {
  list-style: none;
  font-size: clamp(14px, 3vw, 16px);
}
.footerMenu a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #1D1D1B;
}
.footerMenu a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.buttonWrapper {
  display: flex;
  justify-content: space-between !important;
  flex-wrap: wrap;
  gap: 20px;
}
.buttonWrapper .button {
  margin: 0;
}
.buttonWrapper .button.small {
  padding: 10px 15px;
}
.buttonWrapper.start {
  justify-content: flex-start !important;
}

.textImg .img {
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.textImg .img img {
  max-width: 100%;
  display: block;
}
.textImg .text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.textImg .text p {
  font-weight: 300;
}
.textImg .content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.textImg .content.box {
  margin-bottom: 100px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 50px 20px;
}

.figure {
  position: relative;
}
.figure .hpHend {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20px, 160px);
}

.hpCover .container {
  display: flex;
  justify-content: space-between;
  gap: 200px;
  justify-content: center;
}
.hpCover .boxes {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.hpCover .box {
  padding: 40px;
  border-radius: 20px;
  background-color: #FFF;
  cursor: pointer;
  justify-content: space-between;
  border: 1px solid #FFF;
  transition: color 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #1D1D1B;
}
.hpCover .box h3 {
  color: #1D1D1B;
  transition: color 0.25s;
}
.hpCover .box path {
  transition: fill 0.25s;
}
.hpCover .box:hover {
  border-color: #FC5555;
  color: #FC5555;
}
.hpCover .box:hover path {
  fill: #FC5555;
}
.hpCover .box:hover h3 {
  color: #FC5555;
}
.hpCover .box:nth-child(2) {
  position: relative;
  left: -100px;
}

.character {
  position: relative;
}

.hand {
  position: absolute;
  border-radius: 50px;
  width: 180px;
  height: 6px;
  background-color: #1D1D1B;
  top: 222px;
  left: 123px;
  transform-origin: left center;
  transition: transform 0.5s;
  transform: rotate(116deg);
}

.benefits {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
.benefits .wrapper {
  display: grid;
  align-items: center;
  gap: 10px 20px;
  max-width: 400px;
}
.benefits .wrapper .element:first-child {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
.benefits .wrapper .element:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.benefits .wrapper .element:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
.benefits h3 {
  font-size: clamp(24px, 3vw, 28px);
}
.benefits .arrow {
  display: flex;
}
.benefits .arrow img {
  margin-bottom: -50px;
}
.benefits .arrowL {
  justify-content: flex-end;
  align-items: flex-end;
}
.benefits .arrowR {
  align-items: center;
  justify-content: flex-start;
}

.reviewSlider {
  max-width: 1200px;
  margin: auto;
}
.reviewSlider .sliderWrapper {
  background-color: #FFF;
  border: 2px solid #FFF;
  padding: 40px 50px;
  border-radius: 20px;
  margin: 0 25px;
}
.reviewSlider .satars {
  background-color: #EBD4BA;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
}
.reviewSlider .satars img {
  display: block;
  position: relative;
  z-index: 1;
}
.reviewSlider .satars .background {
  background-color: #FFD43B;
  display: block;
  height: 100%;
  position: absolute;
}

.partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.partners h2 {
  width: -moz-max-content !important;
  width: max-content !important;
}
.partners .sliderWrapper img {
  margin: auto;
}

.sliderContainer {
  max-width: 1000px;
  width: 100%;
  position: relative;
}
.sliderContainer::before {
  content: url(../images/main/parnersShadowL.png);
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;
  height: 100%;
}
.sliderContainer::after {
  content: url(../images/main/parnersShadowR.png);
  top: 0;
  right: 0;
  z-index: 2;
  position: absolute;
  height: 100%;
}

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

.comparing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comparing .wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px;
}
.comparing .line {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 175px;
  align-items: center;
}
.comparing .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comparing .container img.company {
  max-width: 100px;
  width: 100%;
}
.comparing .container .grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(5, 1fr) 175px;
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 35px 10px;
  background-color: #FFF;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
}
.comparing .container .grid .button {
  padding: 15px 30px;
  max-width: 200px;
  width: 100%;
  -moz-text-align-last: center;
       text-align-last: center;
  min-width: -moz-max-content;
  min-width: max-content;
  transition: background-color 0.25s, border-color 0.25s;
  color: #1D1D1B;
  background-color: #FD9C9C;
  border: 1px solid #FD9C9C;
}
.comparing .container .grid .button:hover {
  background-color: #FC5555;
  border-color: #FC5555;
}
.comparing .iconContainer {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.comparing .iconContainer .icon {
  width: 27px;
  height: 27px;
  border: none;
  border-radius: 0;
}
.comparing .iconContainer .icon.rounded {
  border: 1px solid #FC5555;
  border-radius: 50px;
}
.comparing .iconContainer .icon.square {
  color: #1D1D1B;
  border-radius: 5px;
  background-color: #FFD43B;
}

.buttonComparing {
  grid-row-start: 1;
  grid-row-end: 5;
  height: 100%;
}
.buttonComparing .iconContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

.icoComparing {
  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 2;
  grid-row-end: 3;
  padding-top: 25px !important;
}
.icoComparing .tooltip .tooltiptext {
  right: auto;
  left: -10px;
}
.icoComparing .tooltip .tooltiptext::before {
  right: inherit;
  left: 13px;
}

.sumaryContainer {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
}

.summaryInfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px 30px;
}

.contactContainer {
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  line-height: 1.5;
}
.contactContainer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #1D1D1B;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 4vw, 20px);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 500;
}
.contactContainer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.contactContainer p {
  font-size: clamp(18px, 4vw, 24px);
}
.contactContainer .wrapper {
  display: flex;
  justify-content: center;
  gap: 10px 40px;
  flex-wrap: wrap;
}

.errorImg {
  position: fixed;
  left: calc(50% + 600px);
  bottom: 100px;
  transform: translate(-50%, 0);
}
.errorImg .errorText {
  min-height: 95px;
  height: 100%;
  width: 255px;
  margin-bottom: -60px;
  margin: 0 0 -70px auto;
  text-align: center;
  padding: 35px 15px 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: #FDF7F0;
  border: 5px solid #1D1D1B;
  border-radius: 32% 68% 53% 47%/44% 52% 48% 56%;
  position: relative;
}
.errorImg .errorText img {
  position: absolute;
  bottom: -15px;
  left: 80px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip .icon {
  color: #FC5555;
  border: 1px solid #FC5555;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 350px;
  background-color: #FC5555;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 125%;
  right: -10px;
  transition: opacity 0.3s;
  font-size: 14px;
  display: none;
}
.tooltip .tooltiptext::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  top: -5px;
  right: 13px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FC5555;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  display: block;
}

/* Animation */
.typewriter {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  width: 190px;
  overflow: hidden;
  margin: auto;
}

.hidden-text {
  display: none;
}

/* -- Stepped Progress Bar -- */
ul.SteppedProgress {
  counter-reset: step;
  display: flex;
  justify-content: center;
  margin: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 40px;
  max-width: 800px;
}

.SteppedProgress li {
  list-style-type: none;
  color: #FD9C9C;
  line-height: normal;
  flex: 1;
  position: relative;
  padding: 0 2%;
  max-width: 250px;
}

.SteppedProgress li.complete, .SteppedProgress li.current {
  color: #1D1D1B;
}

/* - Styling for the putting the step title in a box with an arrow - */
.SteppedProgress li:before {
  content: counter(step);
  counter-increment: step;
  width: 34px;
  height: 34px;
  line-height: 34px;
  display: block;
  font-size: 16px;
  color: #FFF;
  background: transparent;
  border: 1px solid #FD9C9C;
  color: #FD9C9C;
  border-radius: 50px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}

.SteppedProgress li.current:before {
  background: #FC5555;
  border: 1px solid #FC5555;
  color: #FFF;
}

/*progressbar connectors*/
.SteppedProgress li:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13' fill='none'%3E%3Cpath d='M1 1L6.5 6.5L1 12' stroke='%23DFC9B1' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: -1;
}

.SteppedProgress li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}

/*marking complete/completed steps green*/
/*The number of the step and the connector before it = green*/
.SteppedProgress li.complete::before {
  background-color: #FC5555;
  border-color: #FC5555;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2001_1456)'%3E%3Cpath d='M15.6282 2.61482C15.1332 2.11912 14.3293 2.11943 13.8336 2.61482L5.75659 10.6922L2.1667 7.1023C1.671 6.6066 0.867479 6.6066 0.371777 7.1023C-0.123926 7.598 -0.123926 8.40152 0.371777 8.89723L4.85894 13.3844C5.10663 13.6321 5.43143 13.7562 5.75625 13.7562C6.08107 13.7562 6.40617 13.6324 6.65387 13.3844L15.6282 4.40972C16.1239 3.91436 16.1239 3.11049 15.6282 2.61482Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2001_1456'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
}

/* -- Vertical Styling -- */
ul.SteppedProgress.Vertical {
  display: block;
}

.SteppedProgress.Vertical li {
  flex: none;
  clear: both;
  text-align: left;
  padding: 0;
  margin-left: 0;
  min-height: 2.2em;
}

.SteppedProgress.Vertical li span {
  white-space: nowrap;
}

ul.SteppedProgress.Vertical li:before {
  float: none;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  margin-left: 0;
}

.SteppedProgress.Vertical li:after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  left: 12px;
  top: -50%;
  z-index: -1; /*put it behind the numbers*/
}

/* - Styling for the putting the step title in a box with an arrow - */
ul.SteppedProgress.Vertical li.boxed,
ul.SteppedProgress.Vertical li.current {
  min-width: 90%;
}

ul.SteppedProgress.Vertical li.boxed span,
ul.SteppedProgress.Vertical li.current span {
  display: inline;
  margin-left: 0;
}

ul.SteppedProgress.Vertical li.boxed span:after,
ul.SteppedProgress.Vertical li.current span:after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 7px;
  border-color: rgba(255, 255, 255, 0); /* Just needs to be some transparent color */
  border-right-color: rgb(191.75, 191.75, 191.75);
  margin: 0;
}

ul.SteppedProgress.Vertical li.current span:after {
  border-right-color: rgb(253, 156, 156); /* $Color-FV-Bright-Blue */
}

ul.SteppedProgress.Vertical li.complete.boxed span:after {
  border-color: rgba(255, 255, 255, 0); /* Just needs to be some transparent color */
  border-right-color: rgb(253, 156, 156);
}

/* - Styling for the putting the step title in a box with an arrow - */
/* -- End: Vertical Styling -- */
/* -- Style the Progress Steps for narrow/vertical displays -- */
@media (max-width: 800px) {
  ul.SteppedProgress {
    flex-direction: column;
    gap: 20px;
  }
  .SteppedProgress li {
    flex: none;
    clear: both;
    text-align: left;
    padding: 0;
    margin-left: 0;
    min-height: 2.2em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .SteppedProgress li span {
    white-space: nowrap;
  }
  ul.SteppedProgress li:before {
    float: none;
    display: inline-block;
    margin: 0;
    text-align: center;
  }
  .SteppedProgress li:after {
    content: "";
    width: 7px;
    height: 12px;
    position: absolute;
    transform: rotate(90deg);
    left: 14px;
    top: -16px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* - Styling for the putting the step title in a box with an arrow - */
  ul.SteppedProgress li.boxed,
  ul.SteppedProgress li.current {
    min-width: 90%;
  }
  ul.SteppedProgress li.boxed span,
  ul.SteppedProgress li.current span {
    display: inline;
    margin-left: 0;
  }
  ul.SteppedProgress li.boxed span:after,
  ul.SteppedProgress li.current span:after {
    bottom: auto;
    left: auto;
    right: 100%;
    top: 7px;
    border-color: rgba(255, 255, 255, 0); /* Just needs to be some transparent color */
    border-right-color: rgb(191.75, 191.75, 191.75);
    margin: 0;
  }
  ul.SteppedProgress li.current span:after {
    border-right-color: rgb(253, 156, 156); /* $Color-FV-Bright-Blue */
  }
  ul.SteppedProgress li.complete.boxed span:after {
    border-color: rgba(255, 255, 255, 0); /* Just needs to be some transparent color */
    border-right-color: rgb(253, 156, 156);
  }
  /* - Styling for the putting the step title in a box with an arrow - */
}
/* -- Stepped Progress Bar -- */
.recapitulation {
  background-color: #FEFEFE;
  padding: 50px clamp(20px, 5vw, 150px);
  border-radius: 20px;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.recapitulation h3, .recapitulation h4 {
  color: #1D1D1B;
}

.recapitulation .recapLogo {
  width: 150px;
  height: 70px;
  padding: 20px;
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recapitulation .recapLogo img {
  width: 100%;
  display: block;
}

.recapContainer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.recapContainer .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}
.recapContainer .wrapper h4, .recapContainer .wrapper .recapLogo {
  margin-bottom: 20px;
}
.recapContainer .wrapper h4 {
  font-size: 18px;
}
.recapContainer .wrapper p {
  border-radius: 6px;
  padding: 10px 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  font-weight: 300;
}
.recapContainer .wrapper p span {
  font-weight: 600;
}
.recapContainer .wrapper p:nth-of-type(odd) {
  background: #FAFAF9;
}

.contractPage {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.contractPage p {
  max-width: 800px;
}

.textPage {
  max-width: 1100px;
  margin: auto;
}
.textPage a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #1D1D1B;
}
.textPage a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.textPage h1, .textPage h2, .textPage h3, .textPage h4, .textPage h5, .textPage h6 {
  color: #1D1D1B;
}
.textPage h2 {
  margin: 0 0 20px;
}
.textPage ul {
  margin: 0;
  padding-left: 20px;
}
.textPage p, .textPage li {
  padding: 10px 0;
  font-weight: 300;
  line-height: 160%;
}

.none {
  display: none;
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #FFD43B;
}
.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.button {
  display: table;
  padding: clamp(5px, 6vw, 20px) clamp(20px, 6vw, 40px);
  font-weight: 700;
  font-size: clamp(16px, 6vw, 18px);
  text-decoration: none !important;
  border-radius: 10px;
  cursor: pointer;
}
.button.primary {
  color: #1D1D1B;
  background-color: #FD9C9C;
  transition: background-color 0.25s, color 0.25s;
  border: 1px solid #FD9C9C;
}
.button.primary:hover {
  background-color: #FFF;
}
.button.transparent {
  color: #1D1D1B;
  background-color: transparent;
  transition: background-color 0.25s, border-color 0.25s;
  border-color: #FD9C9C;
}
.button.transparent:hover {
  background-color: #FD9C9C;
}
.button.border {
  color: #1D1D1B;
  background-color: #FFF;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
  border: 1px solid #1D1D1B;
}
.button.border:hover {
  background-color: #FD9C9C;
  border-color: #FD9C9C;
  color: #FFF;
}

.font-p {
  font-family: "museo-sans", sans-serif !important;
}

.font-s {
  font-family: "museo-sans", sans-serif !important;
}

.f-22 {
  font-size: clamp(20px, 4vw, 24px);
}

.f-14 {
  font-size: 14px;
}

.f-12 {
  font-size: 12px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100%;
}

.w-max {
  width: -moz-max-content !important;
  width: max-content !important;
  max-width: inherit;
}

.mw-750 {
  max-width: 750px;
}

.mw-600 {
  max-width: 600px;
}

.mw-510 {
  max-width: 510px;
}
.mw-510 p {
  text-shadow: 1px 1px 2px #FFF;
}

.h-100 {
  height: 100%;
}

.ch-100 {
  height: 100%;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

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

.j-start {
  justify-content: flex-start;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around;
}

.j-center {
  justify-content: center !important;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.flex-1 {
  flex: 1;
}

.gap-50 {
  gap: 50px;
}

.gap-40 {
  gap: 40px;
}

.gap-30 {
  gap: 30px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-grid {
  display: grid;
}

.gtp-1 {
  grid-template-columns: 1fr;
}

.gtp-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gtp-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gtp-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gtp-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #FC5555 !important;
}

.c-secondary {
  color: #FDF7F0 !important;
}

.c-ternary {
  color: #FFD43B !important;
}

.c-light {
  color: #FFF !important;
}

.c-dark {
  color: #1D1D1B !important;
}

.positive {
  color: #00C7A2 !important;
}

.negative {
  color: #FC5555 !important;
}

.bg-primary {
  background: #FC5555 !important;
}

.bg-secondary {
  background: #FDF7F0 !important;
}

.bg-ternary {
  background: #FFD43B !important;
}

.bg-light {
  background: #FFF !important;
}

.bg-dark {
  background: #1D1D1B !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-arrow.slick-prev {
  z-index: 1;
  left: -100px;
}
.slick-arrow.slick-next {
  right: -100px;
}

.slick-dots {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}
.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 15px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FC5555;
}

.slick-dots li button:before {
  color: #FD9C9C;
  opacity: 1;
}

.slick-arrow.slick-prev:before {
  content: url(../images/main/slickArrowL.svg);
}
.slick-arrow.slick-next:before {
  content: url(../images/main/slickArrowR.svg);
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
  padding: 0 50px;
}

/* MEDIA */
@media (max-width: 1650px) {
  .errorImg {
    left: calc(50% + 550px);
    bottom: 30px;
  }
}
@media (max-width: 1450px) {
  .slick-arrow.slick-prev {
    left: 10px;
  }
  .slick-arrow.slick-next {
    right: 10px;
  }
  .slick-dotted.slick-slider {
    padding: 0 70px;
  }
  .reviewSlider .sliderWrapper {
    margin: 0 10px;
  }
  .errorImg {
    left: calc(50% + 500px);
  }
}
@media (max-width: 1350px) {
  .sliderContainer {
    max-width: 750px;
  }
  .errorImg {
    display: none;
  }
}
@media (max-width: 1200px) {
  .hpCover .boxes {
    gap: 30px;
  }
  .menuContainer {
    justify-content: flex-end;
  }
  header .menuContact {
    display: none;
  }
  .hpCover .box {
    padding: 30px;
    gap: 15px;
  }
  .hpCover .box:nth-child(2) {
    left: 0;
  }
  .hpCover .container {
    gap: 100px;
  }
  .partners {
    flex-direction: column;
  }
  .comparing .iconContainer {
    max-width: 200px;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  footer .container {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 500px;
    margin: auto;
  }
  footer .container .wrapper {
    max-width: 220px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  footer .container .footerLogo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .textImg .text {
    max-width: 500px;
  }
  .comparing .container .grid, .comparing .line {
    grid-template-columns: 1fr !important;
    box-shadow: none;
    width: 250px;
  }
  .tooltip .tooltiptext {
    right: auto;
    left: -20px;
    max-width: 200px;
  }
  .tooltip .tooltiptext::before {
    right: auto;
    left: 25px;
  }
  .sumaryContainer {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
  }
  .comparing .container {
    flex-direction: row;
    padding: 0 0 20px;
    width: -moz-max-content;
    width: max-content;
  }
  .comparing .container .grid {
    border-color: #FFF;
    padding: 10px 10px 20px;
  }
  .comparing .container .wrapper {
    padding: 10px 0;
    text-align: center;
    min-height: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .comparing .container .wrapper p:first-child {
    font-size: 15px;
    font-weight: 600;
    display: block;
  }
  .comparing .container .wrapper img.company {
    height: 60px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .comparing .line {
    display: none;
  }
  .comparing {
    overflow-x: auto;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .icoComparing {
    grid-column-start: inherit;
    grid-column-end: inherit;
    grid-row-start: inherit;
    grid-row-end: inherit;
    padding-top: 10px !important;
    gap: 20px;
  }
  .wrapper.buttonComparing {
    grid-row-start: inherit;
    grid-row-end: inherit;
    height: auto;
    gap: 20px !important;
  }
  .wrapper.buttonComparing .iconContainer {
    height: auto;
    width: 100%;
    align-items: flex-start !important;
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .block-900 {
    display: block;
  }
  .none-900 {
    display: none;
  }
  .hpCover .container {
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }
  .contentWidth {
    padding: 50px 20px;
  }
  .hpCover .boxes {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .characterAfter {
    margin: -110px 0 -50px auto;
    display: block;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .benefits .wrapper {
    align-items: end;
    gap: 20px;
    max-width: 300px;
  }
  .benefits .arrowL {
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .benefits .arrowL img {
    transform: rotate(310deg);
  }
  .benefits .arrowR img {
    transform: rotate(55deg);
  }
  .sumaryContainer {
    grid-template-columns: 1fr;
  }
  .benefits .arrow img {
    margin: 0 auto;
  }
  .reviewSlider .sliderWrapper {
    padding: 30px;
  }
  .slick-dotted.slick-slider {
    padding: 0;
  }
  .benefits .wrapper .element:first-child {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    height: 80px;
  }
  .benefits .wrapper .element:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .benefits .wrapper .element:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-column-end: 2;
  }
  .textImg .content {
    flex-direction: column;
  }
  .textImg .content.box {
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }
  .textImg .text {
    max-width: 600px;
  }
  .textImg .img {
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
  }
  .textImg .img img {
    margin: 0 0 -50px;
    max-height: 200px;
  }
  .hasChildren {
    text-align: center;
  }
  .hasChildren > a {
    display: none !important;
  }
  .submenu {
    position: relative;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    text-align: center;
    border: none;
    border-radius: 0;
    display: flex;
    gap: clamp(30px, 4vw, 50px);
  }
  .submenu li a {
    background-color: transparent;
    padding: 0;
  }
  .submenu::before {
    display: none;
  }
  .recapContainer .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  select {
    -webkit-appearance: menulist-button;
    -moz-appearance: menulist-button;
         appearance: menulist-button;
  }
  .hpCover .boxes svg {
    max-height: 30px;
    max-width: 50px;
  }
  .hpCover .boxes .box {
    padding: 20px 12px;
    border-radius: 10px;
  }
  .hpCover .boxes {
    gap: 15px;
  }
  .hpCover .boxes h3 {
    font-size: 14px;
    text-align: center;
  }
  .formMenu .box {
    height: 100px;
  }
  .inputContainer {
    grid-template-columns: repeat(1, 1fr);
  }
  .formMenu .box {
    height: auto;
    min-height: 50px;
  }
  .formMenu, .formMenu.grtp-2 {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
  form .buttonWrapper {
    flex-direction: column;
  }
  form .buttonWrapper .button {
    padding: 15px 20px;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */