@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Exo:200,300,regular,500,600,700,800&display=swap);
:root {
  --primary: #F5F5F5;
  --secondary: #7C00FE;
  --accent: #7C00FE;
  --inverse: #ffff3f;
  --bg-primary: #FDFDFDFF;
  --bg-accent: #F5F7F8;
  --text-primary: #0b0f19;
  --text-secondary: #565973;
  --text-accent: #7C00FE;
  --text-inverse: #F5F7F8;
}
.table.grid-bg * {
  padding: 0;
  margin: 0;
  border: 0;
}
.table.grid-bg *, .table.grid-bg :after, .table.grid-bg :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.table.grid-bg body, .table.grid-bg html {
  height: 100%;
  min-width: 320px;
}
.table.grid-bg body {
  color: var(--text-primary);
  line-height: 1;
  font-family: Exo;
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.table.grid-bg button, .table.grid-bg input, .table.grid-bg textarea {
  font-family: Exo;
  font-size: inherit;
  line-height: inherit;
}
.table.grid-bg button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}
.table.grid-bg a {
  color: inherit;
  text-decoration: none;
}
.table.grid-bg ul li {
  list-style: none;
}
.table.grid-bg img {
  vertical-align: top;
}
.table.grid-bg h1, .table.grid-bg h2, .table.grid-bg h3, .table.grid-bg h4, .table.grid-bg h5, .table.grid-bg h6 {
  font-weight: inherit;
  font-size: inherit;
}
.table.grid-bg body {
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}
.table.grid-bg .lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.table.grid-bg .loaded body {
  opacity: 1;
}
.table.grid-bg .wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
@supports (overflow:clip) {
  .table.grid-bg .wrapper {
    overflow: clip;
  }
}
.table.grid-bg .wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.table.grid-bg .wrapper > * {
  min-width: 0;
}
.table.grid-bg [class*=__container] {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.table.grid-bg .spollers {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
.table.grid-bg .spollers__item {
  font-size: 1.25rem;
}
.table.grid-bg .spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  border-bottom: 3px dashed rgba(59, 130, 246, 1);
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
  position: relative;
  list-style: none;
}
.table.grid-bg ._spoller-init .spollers__title {
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: left;
}
.table.grid-bg ._spoller-init .spollers__title::after, .table.grid-bg ._spoller-init .spollers__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.75rem;
  height: 0.0625rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 0.625rem;
  background-color: #000;
}
.table.grid-bg ._spoller-init .spollers__title::before {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  right: 0.4375rem;
}
.table.grid-bg ._spoller-init .spollers__title::after {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}
.table.grid-bg .spollers__title._spoller-active::before {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}
.table.grid-bg .spollers__title._spoller-active::after {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.table.grid-bg .spollers__body {
  padding: 1.25rem;
  border-radius: 0.3125rem;
  border-bottom: 3px dashed rgba(59, 130, 246, 1);
}
.table.grid-bg [data-ripple] {
  position: relative;
  overflow: hidden;
}
.table.grid-bg .ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-animation: button-circle 1.5s ease forwards;
  animation: button-circle 1.5s ease forwards;
}
@-webkit-keyframes button-circle {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(10);
    transform: scale(10);
    opacity: 0;
  }
}
@keyframes button-circle {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(10);
    transform: scale(10);
    opacity: 0;
  }
}
.table.grid-bg [class*=-ibg] {
  position: relative;
}
.table.grid-bg [class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.table.grid-bg [class*=-ibg--contain] img {
  -o-object-fit: contain;
  object-fit: contain;
  /*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/
}
.table.grid-bg .irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}
.table.grid-bg .irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: 0 !important;
}
.table.grid-bg .irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}
.table.grid-bg .irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.table.grid-bg .irs-handle {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}
.table.grid-bg .irs-handle.type_last {
  z-index: 2;
}
.table.grid-bg .irs-max, .table.grid-bg .irs-min {
  position: absolute;
  display: block;
  cursor: default;
}
.table.grid-bg .irs-min {
  left: 0;
}
.table.grid-bg .irs-max {
  right: 0;
}
.table.grid-bg .irs-from, .table.grid-bg .irs-single, .table.grid-bg .irs-to {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.table.grid-bg .irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.table.grid-bg .irs-with-grid .irs-grid {
  display: block;
}
.table.grid-bg .irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.table.grid-bg .irs-grid-pol.small {
  height: 4px;
}
.table.grid-bg .irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.table.grid-bg .irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.table.grid-bg .lt-ie9 .irs-disable-mask {
  background: #000;
  cursor: not-allowed;
}
.table.grid-bg .irs-disabled {
  opacity: 0.4;
}
.table.grid-bg .irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: 0 !important;
  z-index: -9999 !important;
  background: 0 0 !important;
  border-style: solid !important;
  border-color: transparent !important;
}
.table.grid-bg .irs--flat {
  height: 40px;
}
.table.grid-bg .irs--flat.irs-with-grid {
  height: 60px;
}
.table.grid-bg .irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.table.grid-bg .irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565;
}
.table.grid-bg .irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.table.grid-bg .irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}
.table.grid-bg .irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}
.table.grid-bg .irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453;
}
.table.grid-bg .irs--flat .irs-handle.state_hover > i:first-child, .table.grid-bg .irs--flat .irs-handle:hover > i:first-child {
  background-color: #a43540;
}
.table.grid-bg .irs--flat .irs-max, .table.grid-bg .irs--flat .irs-min {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.table.grid-bg .irs--flat .irs-from, .table.grid-bg .irs--flat .irs-single, .table.grid-bg .irs--flat .irs-to {
  color: #fff;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  border-radius: 4px;
}
.table.grid-bg .irs--flat .irs-from:before, .table.grid-bg .irs--flat .irs-single:before, .table.grid-bg .irs--flat .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}
.table.grid-bg .irs--flat .irs-grid-pol {
  background-color: #e1e4e9;
}
.table.grid-bg .irs--flat .irs-grid-text {
  color: #999;
}
.table.grid-bg .irs--big {
  height: 55px;
}
.table.grid-bg .irs--big.irs-with-grid {
  height: 70px;
}
.table.grid-bg .irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ddd), color-stop(150%, #fff));
  background: linear-gradient(to bottom, #ddd -50%, #fff 150%);
  border: 1px solid #ccc;
  border-radius: 12px;
}
.table.grid-bg .irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #428bca), to(#b9d4ec));
  background: linear-gradient(to bottom, #fff 0, #428bca 30%, #b9d4ec 100%);
  -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}
.table.grid-bg .irs--big .irs-bar--single {
  border-radius: 12px 0 0 12px;
}
.table.grid-bg .irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, 0.5);
}
.table.grid-bg .irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #cbcfd5;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #b4b9be), to(white));
  background: linear-gradient(to bottom, #fff 0, #b4b9be 30%, #fff 100%);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px #fff;
  border-radius: 30px;
}
.table.grid-bg .irs--big .irs-handle.state_hover, .table.grid-bg .irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background-color: #939ba7;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #919ba5), to(white));
  background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
}
.table.grid-bg .irs--big .irs-max, .table.grid-bg .irs--big .irs-min {
  top: 0;
  padding: 1px 5px;
  color: #fff;
  text-shadow: none;
  background-color: #9f9f9f;
  border-radius: 3px;
}
.table.grid-bg .irs--big .irs-from, .table.grid-bg .irs--big .irs-single, .table.grid-bg .irs--big .irs-to {
  color: #fff;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
  background: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
  border-radius: 3px;
}
.table.grid-bg .irs--big .irs-grid-pol {
  background-color: #428bca;
}
.table.grid-bg .irs--big .irs-grid-text {
  color: #428bca;
}
.table.grid-bg .irs--modern {
  height: 55px;
}
.table.grid-bg .irs--modern.irs-with-grid {
  height: 55px;
}
.table.grid-bg .irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0e4ea), to(#d1d6e0));
  background: linear-gradient(to bottom, #e0e4ea 0, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  border-radius: 5px;
}
.table.grid-bg .irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: -webkit-gradient(linear, left top, left bottom, from(#20b426), to(#18891d));
  background: linear-gradient(to bottom, #20b426 0, #18891d 100%);
}
.table.grid-bg .irs--modern .irs-bar--single {
  border-radius: 5px 0 0 5px;
}
.table.grid-bg .irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, 0.5);
}
.table.grid-bg .irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.table.grid-bg .irs--modern .irs-handle > i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.table.grid-bg .irs--modern .irs-handle > i:nth-child(2) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e9e6e6));
  background: linear-gradient(to bottom, #fff 0, #e9e6e6 100%);
  border-radius: 0 0 3px 3px;
}
.table.grid-bg .irs--modern .irs-handle > i:nth-child(3) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1;
}
.table.grid-bg .irs--modern .irs-handle.state_hover, .table.grid-bg .irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #919ba5), to(#fff));
  background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
}
.table.grid-bg .irs--modern .irs-handle.state_hover > i:nth-child(1), .table.grid-bg .irs--modern .irs-handle:hover > i:nth-child(1) {
  border-color: #7685a2;
}
.table.grid-bg .irs--modern .irs-handle.state_hover > i:nth-child(3), .table.grid-bg .irs--modern .irs-handle:hover > i:nth-child(3) {
  border-color: #48536a;
}
.table.grid-bg .irs--modern .irs-max, .table.grid-bg .irs--modern .irs-min {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: #fff;
  background-color: #d1d6e0;
  border-radius: 5px;
}
.table.grid-bg .irs--modern .irs-from, .table.grid-bg .irs--modern .irs-single, .table.grid-bg .irs--modern .irs-to {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: #fff;
  border-radius: 5px;
}
.table.grid-bg .irs--modern .irs-from:before, .table.grid-bg .irs--modern .irs-single:before, .table.grid-bg .irs--modern .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426;
}
.table.grid-bg .irs--modern .irs-grid {
  height: 25px;
}
.table.grid-bg .irs--modern .irs-grid-pol {
  background-color: #dedede;
}
.table.grid-bg .irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.table.grid-bg .irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1;
}
.table.grid-bg .irs--sharp.irs-with-grid {
  height: 57px;
}
.table.grid-bg .irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}
.table.grid-bg .irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa;
}
.table.grid-bg .irs--sharp .irs-bar--single {
  border-radius: 2px 0 0 2px;
}
.table.grid-bg .irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, 0.5);
}
.table.grid-bg .irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2;
}
.table.grid-bg .irs--sharp .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2;
}
.table.grid-bg .irs--sharp .irs-handle.state_hover, .table.grid-bg .irs--sharp .irs-handle:hover {
  background-color: #000;
}
.table.grid-bg .irs--sharp .irs-handle.state_hover > i:first-child, .table.grid-bg .irs--sharp .irs-handle:hover > i:first-child {
  border-top-color: #000;
}
.table.grid-bg .irs--sharp .irs-max, .table.grid-bg .irs--sharp .irs-min {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: 0.4;
  background-color: #a804b2;
  border-radius: 2px;
}
.table.grid-bg .irs--sharp .irs-from, .table.grid-bg .irs--sharp .irs-single, .table.grid-bg .irs--sharp .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: #fff;
  border-radius: 2px;
}
.table.grid-bg .irs--sharp .irs-from:before, .table.grid-bg .irs--sharp .irs-single:before, .table.grid-bg .irs--sharp .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2;
}
.table.grid-bg .irs--sharp .irs-grid {
  height: 25px;
}
.table.grid-bg .irs--sharp .irs-grid-pol {
  background-color: #dedede;
}
.table.grid-bg .irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.table.grid-bg .irs--round {
  height: 50px;
}
.table.grid-bg .irs--round.irs-with-grid {
  height: 65px;
}
.table.grid-bg .irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #dee4ec;
  border-radius: 4px;
}
.table.grid-bg .irs--round .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #006cfa;
}
.table.grid-bg .irs--round .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.table.grid-bg .irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, 0.5);
}
.table.grid-bg .irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #006cfa;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}
.table.grid-bg .irs--round .irs-handle.state_hover, .table.grid-bg .irs--round .irs-handle:hover {
  background-color: #f0f6ff;
}
.table.grid-bg .irs--round .irs-max, .table.grid-bg .irs--round .irs-min {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.table.grid-bg .irs--round .irs-from, .table.grid-bg .irs--round .irs-single, .table.grid-bg .irs--round .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #006cfa;
  color: #fff;
  border-radius: 4px;
}
.table.grid-bg .irs--round .irs-from:before, .table.grid-bg .irs--round .irs-single:before, .table.grid-bg .irs--round .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #006cfa;
}
.table.grid-bg .irs--round .irs-grid {
  height: 25px;
}
.table.grid-bg .irs--round .irs-grid-pol {
  background-color: #dedede;
}
.table.grid-bg .irs--round .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.table.grid-bg .irs--square {
  height: 50px;
}
.table.grid-bg .irs--square.irs-with-grid {
  height: 60px;
}
.table.grid-bg .irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede;
}
.table.grid-bg .irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: #000;
}
.table.grid-bg .irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede;
}
.table.grid-bg .irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid #000;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.table.grid-bg .irs--square .irs-handle.state_hover, .table.grid-bg .irs--square .irs-handle:hover {
  background-color: #f0f6ff;
}
.table.grid-bg .irs--square .irs-max, .table.grid-bg .irs--square .irs-min {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
}
.table.grid-bg .irs--square .irs-from, .table.grid-bg .irs--square .irs-single, .table.grid-bg .irs--square .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #000;
  color: #fff;
}
.table.grid-bg .irs--square .irs-grid {
  height: 25px;
}
.table.grid-bg .irs--square .irs-grid-pol {
  background-color: #dedede;
}
.table.grid-bg .irs--square .irs-grid-text {
  color: silver;
  font-size: 11px;
}
.table.grid-bg html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.table.grid-bg .grid-bg {
  background-image: url(../img/grid.svg);
  --tw-bg-opacity: 1;
  z-index: -1;
}
.table.grid-bg h1 {
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.table.grid-bg h2 {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.table.grid-bg h3 {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.2;
}
.table.grid-bg h5 {
  color: var(--text-primary);
  line-height: 1.2;
}
.table.grid-bg p {
  line-height: 1.2;
  color: var(--text-secondary);
}
.table.grid-bg .dark-bg {
  background-color: #151822;
}
.table.grid-bg .dark-bg h1, .table.grid-bg .dark-bg h2, .table.grid-bg .dark-bg h3, .table.grid-bg .dark-bg h4, .table.grid-bg .dark-bg h5 {
  color: #fff;
}
.table.grid-bg .dark-bg i, .table.grid-bg .dark-bg p, .table.grid-bg .dark-bg span {
  color: rgba(255, 255, 255, 0.7);
}
.table.grid-bg .btn {
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  background-color: rgba(59, 130, 246, 1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 0 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--text-inverse);
}
.table.grid-bg .btn:hover {
  letter-spacing: 3px;
  background-color: #151822;
  -webkit-box-shadow: #151822 0 7px 29px 0;
  box-shadow: #151822 0 7px 29px 0;
}
.table.grid-bg .btn:active {
  letter-spacing: 3px;
  color: #fff;
  -webkit-box-shadow: #151822 0 0 0 0;
  box-shadow: #151822 0 0 0 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.table.grid-bg .border-btn {
  border: 1px solid transparent;
}
.table.grid-bg .border-btn:hover {
  border: 1px solid #fff;
}
.table.grid-bg .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.table.grid-bg .header {
  padding: 10px 0;
  position: absolute;
  width: 100%;
  z-index: 100;
}
.table.grid-bg .header._header-scroll {
  position: fixed;
  top: -100%;
}
.table.grid-bg .header._header-show {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: 0;
  visibility: visible !important;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: none;
  animation-name: none;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px -1px, rgba(0, 0, 0, 0.06) 0 2px 4px -1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px -1px, rgba(0, 0, 0, 0.06) 0 2px 4px -1px;
}
.table.grid-bg .header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.table.grid-bg .header__container {
  margin: auto;
}
.table.grid-bg .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.table.grid-bg .menu__logo {
  width: 150px;
  z-index: 10;
}
.table.grid-bg .menu__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
.table.grid-bg .header__btn {
  z-index: 10;
  font-weight: 800;
}
.table.grid-bg .header__btn:hover {
  letter-spacing: 1.5px;
}
.table.grid-bg .header__btn i {
  font-size: 20px;
}
.table.grid-bg .icon-menu {
  display: none;
}
.table.grid-bg .footer {
  border-top: 1px solid #e2e5f1;
}
.table.grid-bg .footer__wrapper {
  text-align: center;
  padding: 1.25rem 0;
  gap: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.table.grid-bg .footer__logo {
  width: 120px;
}
.table.grid-bg .footer__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .hero {
  position: relative;
  z-index: 1;
}
.table.grid-bg .hero__container {
  position: relative;
  height: 100%;
  width: 100%;
}
.table.grid-bg .hero__bg {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.table.grid-bg .hero__bg img {
  width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.table.grid-bg .hero__content {
  gap: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 0 10px;
}
.table.grid-bg .hero__label {
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
}
.table.grid-bg .hero__inner {
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  border-radius: 10px;
  padding: 1.25rem;
}
.table.grid-bg .hero__img {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
}
.table.grid-bg .hero__img h3 {
  font-weight: 600;
  text-align: center;
}
.table.grid-bg .hero__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .hero__video {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
}
.table.grid-bg .hero__video video {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  border-radius: 10px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .form {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}
.table.grid-bg .form__body {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
}
.table.grid-bg .form__title {
  text-align: center;
  margin-bottom: 2.75rem;
  font-weight: 600;
}
.table.grid-bg .form__input {
  margin-bottom: 0.625rem;
}
.table.grid-bg .form__input input {
  width: 100%;
  padding: 0.5rem;
  outline: 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  background: #f1f0fc;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid transparent;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
}
.table.grid-bg .form__input input:focus {
  border-color: var(--secondary);
}
.table.grid-bg .form__btn {
  width: 100%;
}
.table.grid-bg .form__additionally {
  text-align: left;
}
.table.grid-bg .form__additionally p {
  display: inline;
}
.table.grid-bg .cards__label {
  text-align: center;
}
.table.grid-bg .cards__wrapper {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
.table.grid-bg .card {
  position: relative;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  width: 100%;
}
.table.grid-bg .card__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.625rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
}
.table.grid-bg .card__icon {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--secondary);
  border-radius: 10px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.table.grid-bg .card__icon i {
  color: #fff;
}
.table.grid-bg .card__title {
  font-weight: 600;
}
.table.grid-bg .card__descr {
  margin: auto 0;
}
.table.grid-bg .phone-slider {
  position: relative;
}
.table.grid-bg .phone-slider__title {
  text-align: center;
  margin-bottom: 3.125rem;
}
.table.grid-bg .phone-slider__container {
  position: relative;
}
.table.grid-bg .phone-frame {
  position: absolute;
  width: 33.3%;
  height: 100%;
  top: 107px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-left: 5px;
}
.table.grid-bg .phone-frame img {
  pointer-events: none;
  max-width: 328px;
  height: 100%;
}
.table.grid-bg .no-webp .phone-img {
  background-image: url(../img/phone-slider/phone.png);
}
.table.grid-bg .phone-img {
  z-index: 5;
  max-width: 390px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.table.grid-bg .no-webp .phone-bg {
  background-image: url(../img/phone-slider/phone-bg.png);
}
.table.grid-bg .phone-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-51%);
  -ms-transform: translate(-51%);
  transform: translate(-51%);
  z-index: 5;
  max-width: 390px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.table.grid-bg .swiper-screens-image {
  width: 390px;
}
.table.grid-bg .swiper-screens-image img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .swiper-steps {
  width: 100%;
  max-width: 400px;
}
.table.grid-bg .step {
  text-align: center;
  width: 100%;
}
.table.grid-bg .step h4 {
  margin-bottom: 0.625rem;
}
.table.grid-bg .swiper-steps-wrapper {
  margin-top: 3.75rem;
}
.table.grid-bg .swiper-steps {
  margin: 0 auto;
}
.table.grid-bg .swiper-pagination {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.table.grid-bg .swiper-pagination-progressbar {
  background-color: #e2e5f1;
  height: 5px;
  width: 100%;
}
.table.grid-bg .swiper-pagination-progressbar-fill {
  background-color: rgba(59, 130, 246, 1);
  height: 5px;
  display: block;
}
.table.grid-bg .swiper-buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.table.grid-bg .swiper-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.table.grid-bg .swiper-btn i {
  color: rgba(59, 130, 246, 1);
}
.table.grid-bg .swiper-btn:hover {
  background-color: rgba(59, 130, 246, 1);
}
.table.grid-bg .swiper-btn:hover i {
  color: #fff;
}
.table.grid-bg .swiper-btn:active {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.table.grid-bg .swiper-button-prev.swiper-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50px;
}
.table.grid-bg .swiper-button-next.swiper-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 50px;
}
.table.grid-bg .calculator__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
}
.table.grid-bg .calculator__counts {
  margin-top: 1.25rem;
}
.table.grid-bg .calculator__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px dashed rgba(227, 209, 209, 0.47);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}
.table.grid-bg .calculator__invest {
  font-weight: 600;
  letter-spacing: 1px;
  background-color: rgb(5 150 105 / 1);
  color: #fff !important;
  padding: 0 10px;
  line-height: 1.4;
  border-radius: 10px;
}
.table.grid-bg .slider-calculator {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
}
.table.grid-bg .slider-calculator__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
}
.table.grid-bg .slider-calculator__gif {
  height: 150px;
  width: 150px;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .arrow-icon {
  margin: 0 auto;
}
.table.grid-bg .table__label {
  margin-bottom: 2.5rem;
  text-align: center;
}
.table.grid-bg .table__wrapper {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  overflow: hidden;
  /* max-height: 287px; */
}
.table.grid-bg .table__inner {
  padding: 0.3125rem;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
}
.table.grid-bg .table__inner th {
  background-color: rgba(59, 130, 246, 1);
  text-align: left;
  color: #fff;
}
.table.grid-bg .table__inner tr {
  background-color: #f5f7f8;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.table.grid-bg .table__inner td {
  margin: 0.3125rem;
}
.table.grid-bg .table__inner td:last-child {
  background-color: rgb(5 150 105 / 1);
  color: #fff;
  font-weight: 800;
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}
.table.grid-bg .new-row {
  -webkit-animation: slideDown 0.5s forwards;
  animation: slideDown 0.5s forwards;
}
.table.grid-bg .remove-row {
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}
.table.grid-bg .testimonials {
  position: relative;
}
.table.grid-bg .testimonials__bg {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.table.grid-bg .testimonials__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.table.grid-bg .testimonials__label {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  margin: 1.25rem;
  width: 100%;
}
.table.grid-bg .testimonials__text {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  height: 100%;
}
.table.grid-bg .testimonials__title {
  line-height: 1;
  margin: 0;
  text-align: center;
}
.table.grid-bg .testimonials__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  width: 100%;
}
.table.grid-bg .testimonials__body {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
}
.table.grid-bg .testimonials__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 3px dashed rgba(227, 209, 209, 0.47);
}
.table.grid-bg .testimonials__icon {
  background-color: var(--secondary);
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  padding: 1.25rem;
  border-radius: 10px;
}
.table.grid-bg .testimonials__icon i {
  color: #fff;
}
.table.grid-bg .testimonials__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
.table.grid-bg .testimonials__btn {
  width: 50px;
  height: 50px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.table.grid-bg .testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
}
.table.grid-bg .testimonial__review {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.table.grid-bg .testimonial__footer {
  padding-top: 1.25rem;
  border-top: 3px dashed rgba(227, 209, 209, 0.47);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: 0.3125rem;
  -moz-column-gap: 0.3125rem;
  column-gap: 0.3125rem;
  margin-top: auto;
}
.table.grid-bg .testimonial__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
.table.grid-bg .testimonial__photo {
  width: 50px;
  height: auto;
}
.table.grid-bg .testimonial__img {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.table.grid-bg .testimonial__bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.5rem;
}
.table.grid-bg .testimonial__name {
  font-size: 1.125rem;
}
.table.grid-bg .testimonial__profit {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}
.table.grid-bg .testimonial__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table.grid-bg .testimonial__rate i {
  color: rgba(59, 130, 246, 1);
}
.table.grid-bg .questions__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
}
.table.grid-bg .questions__decor {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.table.grid-bg .questions__content {
  margin-top: 2.5rem;
  position: relative;
}
.table.grid-bg .questions__img {
  width: 70%;
  height: 540px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  border-radius: 10px;
}
.table.grid-bg .questions__img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.table.grid-bg .questions__spollers {
  margin-top: 6.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.table.grid-bg .block-questions {
  position: absolute;
  bottom: -80px;
  left: 20%;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, 0.3) -65.62%, rgba(255, 255, 255, 0.1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 1.5rem -0.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
}
.table.grid-bg .block-questions__body {
  padding: 1.25rem;
  background-color: #151822;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px 0, rgba(0, 0, 0, 0.1) 0 0 1px 0;
}
.table.grid-bg .block-questions__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0.625rem;
}
.table.grid-bg .block-questions__icon img {
  width: 100%;
  height: auto;
}
.table.grid-bg .block-questions__icon i {
  color: rgba(59, 130, 246, 1);
  font-size: 42px;
}
.table.grid-bg .block-questions__text {
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
  color: #ddd;
}
.table.grid-bg .spollers__title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.table.grid-bg .spollers__item > summary {
  list-style: none;
}
.table.grid-bg .spollers__item > summary::-webkit-details-marker {
  display: none;
}
.table.grid-bg .steps__container {
  position: relative;
  z-index: 1;
}
.table.grid-bg .steps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 2.5rem;
}
.table.grid-bg .step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
}
.table.grid-bg .step::after {
  position: absolute;
  left: 60px;
  top: 70%;
  width: 1px;
  height: 70%;
  content: "";
  background-color: #e2e5f1;
}
.table.grid-bg .step::before {
  position: absolute;
  left: 60px;
  top: 0;
  width: 1px;
  height: 70%;
  content: "";
  background-color: #e2e5f1;
}
.table.grid-bg .step:first-child::before {
  display: none;
}
.table.grid-bg .step:last-child::after {
  display: none;
}
.table.grid-bg .step__number {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f3f6ff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.table.grid-bg .step__number span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 800;
  -webkit-box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11, 15, 25, 0.06), 0 0.125rem 0.4rem -0.0625rem rgba(11, 15, 25, 0.03);
  box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11, 15, 25, 0.06), 0 0.125rem 0.4rem -0.0625rem rgba(11, 15, 25, 0.03);
}
.table.grid-bg .step__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.table.grid-bg .step__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.table.grid-bg .step__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.table.grid-bg .step__text h5 {
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.625rem;
}
.table.grid-bg .step__text p {
  text-align: left;
  line-height: 1.4;
}
.table.grid-bg .swiper {
  overflow: hidden;
}
.table.grid-bg .swiper-initialized {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.table.grid-bg .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.table.grid-bg .swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.table.grid-bg .swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.table.grid-bg .swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.table.grid-bg .swiper-android .swiper-slide, .table.grid-bg .swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.table.grid-bg .swiper-button-lock {
  display: none !important;
}
.table.grid-bg [data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.table.grid-bg .simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
.table.grid-bg .simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.table.grid-bg .simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.table.grid-bg .simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.table.grid-bg .simplebar-content-wrapper::-webkit-scrollbar, .table.grid-bg .simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.table.grid-bg .simplebar-content:after, .table.grid-bg .simplebar-content:before {
  content: " ";
  display: table;
}
.table.grid-bg .simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.table.grid-bg .simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}
.table.grid-bg .simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.table.grid-bg .simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.table.grid-bg [data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.table.grid-bg [data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.table.grid-bg [data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.table.grid-bg .simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
.table.grid-bg .simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}
.table.grid-bg .simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.table.grid-bg .simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.table.grid-bg .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}
.table.grid-bg .simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.table.grid-bg .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
.table.grid-bg [data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.table.grid-bg .simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}
.table.grid-bg .simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}
.table.grid-bg .simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 47.99875em) {
  .table.grid-bg .calculator__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .table.grid-bg .slider-calculator {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .table.grid-bg .table__wrapper {
    max-height: 550px;
  }
  .table.grid-bg .testimonials__label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
  .table.grid-bg .testimonial {
    border-right: 3px dashed rgba(227, 209, 209, 0.47);
    padding-right: 1.25rem;
  }
}
@media (min-width: 61.99875em) {
  .table.grid-bg .hero__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .table.grid-bg .hero__video {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .table.grid-bg .hero__action {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (min-width: 75em) {
  .table.grid-bg section {
    padding-top: 6.25rem;
  }
  .table.grid-bg section {
    padding-bottom: 6.25rem;
  }
  .table.grid-bg h1 {
    font-size: 3.5rem;
  }
  .table.grid-bg h2 {
    font-size: 2.625rem;
  }
  .table.grid-bg h3 {
    font-size: 1.75rem;
  }
  .table.grid-bg p {
    font-size: 1rem;
  }
  .table.grid-bg .hero__content {
    margin-top: 3.125rem;
  }
  .table.grid-bg .hero__label {
    margin-top: 3rem;
  }
  .table.grid-bg .hero__label h1 {
    font-size: 4.375rem;
  }
  .table.grid-bg .hero__label h3 {
    font-size: 2.625rem;
  }
  .table.grid-bg .card__icon i {
    font-size: 1.5rem;
  }
  .table.grid-bg .card__title {
    font-size: 1.25rem;
  }
  .table.grid-bg .step h4 {
    font-size: 2.5rem;
  }
  .table.grid-bg .step p {
    font-size: 1.25rem;
  }
  .table.grid-bg .calculator__count span {
    font-size: 1.5rem;
  }
  .table.grid-bg .calculator__count i {
    font-size: 1.5rem;
  }
  .table.grid-bg .calculator__invest {
    font-size: 1.5rem;
  }
  .table.grid-bg .slider-calculator__inner {
    padding: 1.875rem;
  }
  .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
    padding: 0.5rem;
  }
  .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
    font-size: 1.25rem;
  }
  .table.grid-bg .testimonial__profit {
    font-size: 1rem;
  }
  .table.grid-bg .steps__wrapper {
    row-gap: 3.75rem;
  }
  .table.grid-bg .step {
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
  }
  .table.grid-bg .step__img {
    margin-left: 2.5rem;
  }
  .table.grid-bg .step__img {
    margin-right: 2.5rem;
  }
  .table.grid-bg .step__text h5 {
    font-size: 1.625rem;
  }
}
@media (max-width: 1200px) {
  .table.grid-bg .swiper-screens .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .table.grid-bg .phone-frame {
    width: 320px;
    margin-left: 1.9px;
    top: 105px;
  }
  .table.grid-bg .phone-img {
    width: 320px;
    height: 640px;
  }
  .table.grid-bg .phone-bg {
    width: 320px;
    height: 640px;
  }
  .table.grid-bg .swiper-screens-image {
    width: 320px;
  }
}
@media (max-width: 20em) {
  .table.grid-bg section {
    padding-top: 2.5rem;
  }
  .table.grid-bg section {
    padding-bottom: 2.5rem;
  }
  .table.grid-bg h1 {
    font-size: 1.5rem;
  }
  .table.grid-bg h2 {
    font-size: 1.375rem;
  }
  .table.grid-bg h3 {
    font-size: 1.125rem;
  }
  .table.grid-bg p {
    font-size: 0.875rem;
  }
  .table.grid-bg .hero__content {
    margin-top: 1.25rem;
  }
  .table.grid-bg .hero__label {
    margin-top: 3rem;
  }
  .table.grid-bg .hero__label h1 {
    font-size: 2rem;
  }
  .table.grid-bg .hero__label h3 {
    font-size: 2rem;
  }
  .table.grid-bg .card__icon i {
    font-size: 1.25rem;
  }
  .table.grid-bg .card__title {
    font-size: 1.125rem;
  }
  .table.grid-bg .step h4 {
    font-size: 1.5rem;
  }
  .table.grid-bg .step p {
    font-size: 0.875rem;
  }
  .table.grid-bg .calculator__count span {
    font-size: 1rem;
  }
  .table.grid-bg .calculator__count i {
    font-size: 1.125rem;
  }
  .table.grid-bg .calculator__invest {
    font-size: 1.25rem;
  }
  .table.grid-bg .slider-calculator__inner {
    padding: 1.375rem;
  }
  .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
    padding: 0.25rem;
  }
  .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
    font-size: 0.625rem;
  }
  .table.grid-bg .testimonial__profit {
    font-size: 0.8125rem;
  }
  .table.grid-bg .steps__wrapper {
    row-gap: 1.25rem;
  }
  .table.grid-bg .step {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
  .table.grid-bg .step__img {
    margin-left: 1.25rem;
  }
  .table.grid-bg .step__img {
    margin-right: 1.25rem;
  }
  .table.grid-bg .step__text h5 {
    font-size: 1.25rem;
  }
}
@media (max-width: 61.99875em) {
  .table.grid-bg .hero__content {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .table.grid-bg .hero__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .table.grid-bg .questions__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table.grid-bg .questions__decor {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .table.grid-bg .questions__img {
    width: 100%;
  }
  .table.grid-bg .questions__spollers {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .table.grid-bg .step__img {
    display: none;
  }
}
@media (max-width: 47.99875em) {
  .table.grid-bg .header__btn {
    padding: 12px;
    border-radius: 8px;
  }
  .table.grid-bg .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .table.grid-bg .menu__item {
    width: 100%;
    font-size: 36px;
  }
  .table.grid-bg .menu__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .table.grid-bg .menu__link {
    display: inline-block;
    width: 100%;
  }
  .table.grid-bg .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: -100%;
    background-color: #a59dab;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    padding: 4.375rem 0.3125rem 1.875rem 0.3125rem;
    z-index: 1;
  }
  .table.grid-bg .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 56px;
    top: 0;
    left: -100%;
    background-color: #fdfdfd;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    z-index: 1;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
  }
  .table.grid-bg .menu-open .menu__body {
    left: 0;
  }
  .table.grid-bg .menu-open .menu__body::before {
    left: 0;
  }
  .table.grid-bg .icon-menu {
    display: block;
    position: relative;
    width: 2.1875rem;
    height: 1.5625rem;
    z-index: 5;
  }
  .table.grid-bg .icon-menu span, .table.grid-bg .icon-menu::after, .table.grid-bg .icon-menu::before {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.1875rem;
    background-color: #000;
  }
  .table.grid-bg .icon-menu::before {
    top: 0;
  }
  .table.grid-bg .icon-menu::after {
    bottom: 0;
  }
  .table.grid-bg .icon-menu span {
    top: calc(50% - .0625rem);
  }
  .table.grid-bg .menu-open .icon-menu span {
    width: 0;
  }
  .table.grid-bg .menu-open .icon-menu::before {
    top: calc(50% - .0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .table.grid-bg .menu-open .icon-menu::after {
    bottom: calc(50% - .0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .table.grid-bg .cards__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .table.grid-bg .phone-frame {
    top: 86px;
  }
  .table.grid-bg .swiper-button-prev.swiper-btn {
    left: 10px;
  }
  .table.grid-bg .swiper-button-next.swiper-btn {
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .table.grid-bg .calculator__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table.grid-bg .testimonial__photo {
    width: 70px;
  }
}
@media (max-width: 47.99875em) and (any-hover: none) {
  .table.grid-bg .icon-menu {
    cursor: default;
  }
}
@media (max-width: 29.99875em) {
  .table.grid-bg .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table.grid-bg .card__icon {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -45px;
    left: 10px;
  }
  .table.grid-bg .phone-frame {
    width: 280px;
    top: 80px;
    margin-left: 0;
  }
  .table.grid-bg .phone-img {
    width: 280px;
  }
  .table.grid-bg .phone-bg {
    width: 280px;
  }
  .table.grid-bg .swiper-screens-image {
    width: 280px;
  }
  .table.grid-bg .swiper-button-prev.swiper-btn {
    left: 5px;
    width: 40px;
    height: 40px;
  }
  .table.grid-bg .swiper-button-next.swiper-btn {
    right: 5px;
    width: 40px;
    height: 40px;
  }
  .table.grid-bg .testimonials__title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .table.grid-bg .testimonials__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem;
  }
  .table.grid-bg .testimonials__icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -60px;
    left: -10px;
  }
  .table.grid-bg .testimonials__btn {
    background-color: rgba(59, 130, 246, 1);
  }
  .table.grid-bg .testimonials__btn i {
    color: #fff;
  }
  .table.grid-bg .step::after {
    left: 30px;
  }
  .table.grid-bg .step::before {
    left: 30px;
  }
  .table.grid-bg .step__number {
    width: 60px;
    height: 60px;
  }
  .table.grid-bg .step__number span {
    width: 40px;
    height: 40px;
    font-size: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-top:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    .table.grid-bg section {
      padding-top: clamp(2.5rem, 7.9545454546rem, 6.25rem);
    }
  }
  @supports not (padding-top:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    .table.grid-bg section {
      padding-top: calc(2.5rem + 3.75 * (100vw - 20rem)/ 55);
    }
  }
  @supports (padding-bottom:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    .table.grid-bg section {
      padding-bottom: clamp(2.5rem, 7.9545454546rem, 6.25rem);
    }
  }
  @supports not (padding-bottom:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    .table.grid-bg section {
      padding-bottom: calc(2.5rem + 3.75 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.5rem, 0.7727272727rem + 3.6363636364vw, 3.5rem)) {
    .table.grid-bg h1 {
      font-size: clamp(1.5rem, 4.4090909091rem, 3.5rem);
    }
  }
  @supports not (font-size:clamp(1.5rem, 0.7727272727rem + 3.6363636364vw, 3.5rem)) {
    .table.grid-bg h1 {
      font-size: calc(1.5rem + 2 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.375rem, 0.9204545455rem + 2.2727272727vw, 2.625rem)) {
    .table.grid-bg h2 {
      font-size: clamp(1.375rem, 3.1931818182rem, 2.625rem);
    }
  }
  @supports not (font-size:clamp(1.375rem, 0.9204545455rem + 2.2727272727vw, 2.625rem)) {
    .table.grid-bg h2 {
      font-size: calc(1.375rem + 1.25 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.125rem, 0.8977272727rem + 1.1363636364vw, 1.75rem)) {
    .table.grid-bg h3 {
      font-size: clamp(1.125rem, 2.0340909091rem, 1.75rem);
    }
  }
  @supports not (font-size:clamp(1.125rem, 0.8977272727rem + 1.1363636364vw, 1.75rem)) {
    .table.grid-bg h3 {
      font-size: calc(1.125rem + .625 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(0.875rem, 0.8295454545rem + 0.2272727273vw, 1rem)) {
    .table.grid-bg p {
      font-size: clamp(0.875rem, 1.0568181818rem, 1rem);
    }
  }
  @supports not (font-size:clamp(0.875rem, 0.8295454545rem + 0.2272727273vw, 1rem)) {
    .table.grid-bg p {
      font-size: calc(.875rem + .125 * (100vw - 20rem)/ 55);
    }
  }
  @supports (margin-top:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) {
    .table.grid-bg .hero__content {
      margin-top: clamp(1.25rem, 3.9772727273rem, 3.125rem);
    }
  }
  @supports not (margin-top:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) {
    .table.grid-bg .hero__content {
      margin-top: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55);
    }
  }
  @supports (margin-top:clamp(1.25rem, 2.1022727273rem + -1.1363636364vw, 1.875rem)) {
    .table.grid-bg .hero__label {
      margin-top: clamp(3rem, 0.9659090909rem, 1.875rem);
    }
  }
  @supports not (margin-top:clamp(1.25rem, 2.1022727273rem + -1.1363636364vw, 1.875rem)) {
    .table.grid-bg .hero__label {
      margin-top: calc(3rem + -.625 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(2rem, 1.1363636364rem + 4.3181818182vw, 4.375rem)) {
    .table.grid-bg .hero__label h1 {
      font-size: clamp(2rem, 5.4545454546rem, 4.375rem);
    }
  }
  @supports not (font-size:clamp(2rem, 1.1363636364rem + 4.3181818182vw, 4.375rem)) {
    .table.grid-bg .hero__label h1 {
      font-size: calc(2rem + 2.375 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(2rem, 1.7727272727rem + 1.1363636364vw, 2.625rem)) {
    .table.grid-bg .hero__label h3 {
      font-size: clamp(2rem, 2.9090909091rem, 2.625rem);
    }
  }
  @supports not (font-size:clamp(2rem, 1.7727272727rem + 1.1363636364vw, 2.625rem)) {
    .table.grid-bg .hero__label h3 {
      font-size: calc(2rem + .625 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .table.grid-bg .card__icon i {
      font-size: clamp(1.25rem, 1.6136363636rem, 1.5rem);
    }
  }
  @supports not (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .table.grid-bg .card__icon i {
      font-size: calc(1.25rem + .25 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.125rem, 1.0795454545rem + 0.2272727273vw, 1.25rem)) {
    .table.grid-bg .card__title {
      font-size: clamp(1.125rem, 1.3068181818rem, 1.25rem);
    }
  }
  @supports not (font-size:clamp(1.125rem, 1.0795454545rem + 0.2272727273vw, 1.25rem)) {
    .table.grid-bg .card__title {
      font-size: calc(1.125rem + .125 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.5rem, 1.1363636364rem + 1.8181818182vw, 2.5rem)) {
    .table.grid-bg .step h4 {
      font-size: clamp(1.5rem, 2.9545454546rem, 2.5rem);
    }
  }
  @supports not (font-size:clamp(1.5rem, 1.1363636364rem + 1.8181818182vw, 2.5rem)) {
    .table.grid-bg .step h4 {
      font-size: calc(1.5rem + 1 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(0.875rem, 0.7386363636rem + 0.6818181818vw, 1.25rem)) {
    .table.grid-bg .step p {
      font-size: clamp(0.875rem, 1.4204545454rem, 1.25rem);
    }
  }
  @supports not (font-size:clamp(0.875rem, 0.7386363636rem + 0.6818181818vw, 1.25rem)) {
    .table.grid-bg .step p {
      font-size: calc(.875rem + .375 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem)) {
    .table.grid-bg .calculator__count span {
      font-size: clamp(1rem, 1.7272727273rem, 1.5rem);
    }
  }
  @supports not (font-size:clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem)) {
    .table.grid-bg .calculator__count span {
      font-size: calc(1rem + .5 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.125rem, 0.9886363636rem + 0.6818181818vw, 1.5rem)) {
    .table.grid-bg .calculator__count i {
      font-size: clamp(1.125rem, 1.6704545454rem, 1.5rem);
    }
  }
  @supports not (font-size:clamp(1.125rem, 0.9886363636rem + 0.6818181818vw, 1.5rem)) {
    .table.grid-bg .calculator__count i {
      font-size: calc(1.125rem + .375 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .table.grid-bg .calculator__invest {
      font-size: clamp(1.25rem, 1.6136363636rem, 1.5rem);
    }
  }
  @supports not (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .table.grid-bg .calculator__invest {
      font-size: calc(1.25rem + .25 * (100vw - 20rem)/ 55);
    }
  }
  @supports (padding:clamp(1.375rem, 1.1931818182rem + 0.9090909091vw, 1.875rem)) {
    .table.grid-bg .slider-calculator__inner {
      padding: clamp(1.375rem, 2.1022727273rem, 1.875rem);
    }
  }
  @supports not (padding:clamp(1.375rem, 1.1931818182rem + 0.9090909091vw, 1.875rem)) {
    .table.grid-bg .slider-calculator__inner {
      padding: calc(1.375rem + .5 * (100vw - 20rem)/ 55);
    }
  }
  @supports (padding:clamp(0.25rem, 0.1590909091rem + 0.4545454545vw, 0.5rem)) {
    .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
        padding: clamp(.25rem, .1590909091rem + .4545454545vw, .5rem);
    }
  }
  @supports not (padding:clamp(0.25rem, 0.1590909091rem + 0.4545454545vw, 0.5rem)) {
    .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
      padding: calc(.25rem + .25 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(0.625rem, 0.3977272727rem + 1.1363636364vw, 1.25rem)) {
    .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
      font-size: clamp(.625rem, .3977272727rem + 1.1363636364vw, 1.25rem);
    }
  }
  @supports not (font-size:clamp(0.625rem, 0.3977272727rem + 1.1363636364vw, 1.25rem)) {
    .table.grid-bg .table__inner td, .table.grid-bg .table__inner th {
      font-size: calc(.625rem + .625 * (100vw - 20rem)/ 55);
    }
  }
  @media (min-width: 20em) and (max-width: 75em) {
    @supports (font-size:clamp(0.625rem, 0.3977272727rem + 1.1363636364vw, 1.25rem)) {
        .table__inner td, .table__inner th {
            font-size: clamp(.625rem, .3977272727rem + 1.1363636364vw, 1.25rem);
        }
    }
}
  @supports (font-size:clamp(0.8125rem, 0.7443181818rem + 0.3409090909vw, 1rem)) {
    .table.grid-bg .testimonial__profit {
      font-size: clamp(0.8125rem, 1.0852272727rem, 1rem);
    }
  }
  @supports not (font-size:clamp(0.8125rem, 0.7443181818rem + 0.3409090909vw, 1rem)) {
    .table.grid-bg .testimonial__profit {
      font-size: calc(.8125rem + .1875 * (100vw - 20rem)/ 55);
    }
  }
  @supports (row-gap:clamp(1.25rem, 0.3409090909rem + 4.5454545455vw, 3.75rem)) {
    .table.grid-bg .steps__wrapper {
      row-gap: clamp(1.25rem, 4.8863636364rem, 3.75rem);
    }
  }
  @supports not (row-gap:clamp(1.25rem, 0.3409090909rem + 4.5454545455vw, 3.75rem)) {
    .table.grid-bg .steps__wrapper {
      row-gap: calc(1.25rem + 2.5 * (100vw - 20rem)/ 55);
    }
  }
  @supports ((-moz-column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) or (column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem))) {
    .table.grid-bg .step {
      -webkit-column-gap: clamp(1.25rem, 3.9772727273rem, 3.125rem);
      -moz-column-gap: clamp(1.25rem, 3.9772727273rem, 3.125rem);
      column-gap: clamp(1.25rem, 3.9772727273rem, 3.125rem);
    }
  }
  @supports not ((-moz-column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) or (column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem))) {
    .table.grid-bg .step {
      -webkit-column-gap: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55);
      -moz-column-gap: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55);
      column-gap: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55);
    }
  }
  @supports (margin-left:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .table.grid-bg .step__img {
      margin-left: clamp(1.25rem, 3.0681818182rem, 2.5rem);
    }
  }
  @supports not (margin-left:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .table.grid-bg .step__img {
      margin-left: calc(1.25rem + 1.25 * (100vw - 20rem)/ 55);
    }
  }
  @supports (margin-right:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .table.grid-bg .step__img {
      margin-right: clamp(1.25rem, 3.0681818182rem, 2.5rem);
    }
  }
  @supports not (margin-right:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .table.grid-bg .step__img {
      margin-right: calc(1.25rem + 1.25 * (100vw - 20rem)/ 55);
    }
  }
  @supports (font-size:clamp(1.25rem, 1.1136363636rem + 0.6818181818vw, 1.625rem)) {
    .table.grid-bg .step__text h5 {
      font-size: clamp(1.25rem, 1.7954545454rem, 1.625rem);
    }
  }
  @supports not (font-size:clamp(1.25rem, 1.1136363636rem + 0.6818181818vw, 1.625rem)) {
    .table.grid-bg .step__text h5 {
      font-size: calc(1.25rem + .375 * (100vw - 20rem)/ 55);
    }
  }
}
.table.grid-bg .webp .phone-img {
  background-image: url(../img/phone-slider/phone.webp);
}
.table.grid-bg .webp .phone-bg {
  background-image: url(../img/phone-slider/phone-bg.webp);
}
@media (max-width: 767.98px) {
  .table.grid-bg .menu__logo {
    width: 130px;
  }
}
