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);
}

.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);
}

.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;
}

.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: center;
  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 .box {
  height: 180px;
  position: relative;
}
.formMenu label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #DFC9B1;
  color: #DFC9B1;
  text-align: center;
  padding: 10px;
  transition: border-color 0.25s, color 0.25s;
}
.formMenu input:checked + label {
  border-color: #FD9C9C;
  color: #FD9C9C;
}
.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);
}

.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 p:first-child {
  display: none;
}
.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: 10px;
}
.comparing .container .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 175px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
}
.comparing .container .grid .button {
  padding: 20px 25px;
  min-width: -moz-max-content;
  min-width: max-content;
  color: #1D1D1B;
  background-color: transparent;
  transition: background-color 0.25s, border-color 0.25s;
  border: 1px solid #FD9C9C;
}
.comparing .container .grid .button:hover {
  background-color: #FC5555;
  border-color: #FC5555;
}
.comparing .container .grid:first-child {
  background-color: #FFF;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
}
.comparing .container .grid:first-child .button {
  color: #1D1D1B;
  background-color: #FD9C9C;
  border: 1px solid #FD9C9C;
}
.comparing .container .grid:first-child .button:hover {
  background-color: #FC5555;
  border-color: #FC5555;
}

.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;
}

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

.hidden-text {
  display: none;
}

.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;
}

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

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

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

.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%;
}

.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);
}

.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;
  }
  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;
  }
  .comparing .container {
    flex-direction: row;
    gap: 20px;
    padding: 0 0 20px;
  }
  .comparing .container .grid {
    border-color: #FFF;
  }
  .comparing .container .wrapper {
    padding: 10px 0;
    text-align: center;
    height: 100px;
    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 {
    height: 60px;
  }
  .comparing .line {
    display: none;
  }
  .comparing {
    overflow-x: auto;
  }
}
@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);
  }
  .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;
  }
}
@media (max-width: 600px) {
  .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 {
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */