.table__info ul {
 list-style: none;
}

.table__info ul li:before {
content: '✓';
color: green;
 margin-right: 10px;
}

.section__index {
  position: relative;
  height: 50vh;
  max-height: 905px;
}
.section__index .container {
  position: relative;
  height: 100%;
}

.index__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 170px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.index__title {
  max-width: 730px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: clamp(50px, 6.1vw, 90px);
  line-height: 103%;
  color: #fff;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.index__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.index__adress {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20.35px;
  line-height: normal;
  color: #fff;
  bottom: 30px;
  left: 10px;
}

.index__image {
  position: absolute;
  width: 100%;
  height: calc(100% + 144px);
  top: -144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.index__image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: rgba(9, 22, 27, 0.3882352941);
}
.index__image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 440px;
  bottom: -220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(9, 70, 162, 0.561);
  -webkit-filter: blur(205.1px);
          filter: blur(205.1px);
}
.index__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.index__arrow-bottom {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0946a2;
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 1;
  -webkit-animation: translateArrow 1.5s 0.5s infinite;
          animation: translateArrow 1.5s 0.5s infinite;
}
.index__arrow-bottom::before {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #48638b;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: scaleArrow 1s 0.3s infinite;
          animation: scaleArrow 1s 0.3s infinite;
}
.index__arrow-bottom svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@-webkit-keyframes scaleArrow {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes scaleArrow {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes translateArrow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  80% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes translateArrow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  80% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .index__inner {
    padding: 0 0 100px;
  }
  .index__arrow-bottom {
    width: 60px;
    height: 60px;
  }
  .index__arrow-bottom svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 1000px) {
  .index__adress {
    font-size: 18px;
  }
}
@media (max-width: 850px) {
  .index__inner {
    padding: 0 0 60px;
  }
  .index__title {
    font-size: clamp(26px, 5.9vw, 50px);
  }
  .index__adress {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .index__adress {
    font-size: 14px;
    bottom: 20px;
    padding-right: 65px;
  }
}
.section__sklad {
  padding: 80px 0 20px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.sklad__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sklad__links {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: #535353;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sklad__links a {
  color: #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sklad__links a:hover {
  color: #535353;
}

.sklad__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
  margin: 25px 0 50px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.sklad__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.sklad__subtitle {
  text-align: center;
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: normal;
  color: #000;
  max-width: 650px;
  margin: 0 auto;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
}

.sklad__subtitle._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.sklad__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 15px;
  margin: 40px 0 100px;
}

.sklad__tab {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  color: #0946a2;
  padding: 15px 78px 16px;
  border: 2px solid #0946a2;
  border-radius: 35px;
  background-color: #fff;
  cursor: default;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sklad__tab:hover {
  background: #0946a2;
  color: #fff;
}

.sklad__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.sklad__elem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.sklad__card {
  position: relative;
}
.sklad__card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(9, 70, 162, 0.8);
  opacity: 0;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sklad__card:hover::before {
  opacity: 1;
}
.sklad__card:hover .sklad__arrow {
  opacity: 1;
}

.sklad__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sklad__image {
  width: 100%;
  aspect-ratio: 1.19/1;
}
.sklad__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.sklad__name {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: #000;
}

@media (max-width: 1200px) {
  .section__sklad {
    padding: 60px 0 50px;
  }
  .sklad__links {
    font-size: 26px;
  }
  .sklad__title {
    margin: 20px 0 40px;
  }
  .sklad__tabs {
    margin: 30px 0 75px;
    gap: 15px 10px;
  }
  .sklad__tab {
    font-size: 26px;
    padding: 10px 55px 12px;
  }
  .sklad__elem {
    gap: 20px;
  }
  .sklad__name {
    font-size: 26px;
  }
}
@media (max-width: 1000px) {
  .sklad__tabs {
    margin: 20px 0 50px;
  }
  .sklad__links {
    font-size: 20px;
  }
  .sklad__tab {
    font-size: 20px;
    padding: 10px 35px 12px;
  }
  .sklad__name {
    font-size: 20px;
  }
  .sklad__body {
    gap: 15px;
  }
  .sklad__elem {
    gap: 15px;
  }
  .sklad__title {
    margin: 15px 0 25px;
  }
  .sklad__subtitle {
    max-width: 530px;
  }
}
@media (max-width: 850px) {
  .section__sklad {
    padding: 40px 0 30px;
  }
  .sklad__tabs {
    margin: 15px 0 35px;
  }
  .sklad__links {
    font-size: 18px;
  }
  .sklad__tab {
    font-size: 18px;
    padding: 10px 25px 12px;
  }
  .sklad__name {
    font-size: 18px;
  }
  .sklad__body {
    gap: 10px;
  }
  .sklad__title {
    margin: 15px 0 25px;
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .sklad__subtitle {
    font-size: clamp(20px, 3.9vw, 26px);
    max-width: 440px;
  }
}
@media (max-width: 650px) {
  .sklad__links {
    font-size: 16px;
  }
  .sklad__tab {
    width: 98% !important;
    font-size: 16px;
    padding: 8px 25px 10px;
  }
  .sklad__name {
    font-size: 16px;
  }
  .sklad__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 20px 1fr;
    -ms-grid-columns: 1fr 20px 1fr;
        grid-template: 1fr 1fr/1fr 1fr;
    gap: 20px;
  }
  .sklad__elem:last-child {
    -webkit-transform: translateX(calc(50% + 10px));
            transform: translateX(calc(50% + 10px));
  }
}
.section__contact {
  padding: 20px 0 10px;
}

@media (max-width: 1200px) {
  .section__contact {
    padding: 50px 0 10px;
  }
}
@media (max-width: 850px) {
  .section__contact {
    padding: 0px 0 10px;
  }
}
.contact__inner {
  background: linear-gradient(131.8deg, #0946a2 0.03%, #5a738e 82.16%);
  border-radius: 15px;
  padding: 75px 130px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46%;
          flex: 0 1 46%;
}

.contact__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(60px, 6.9vw, 114px);
  line-height: 97%;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.contact__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.contact__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin: 30px 0 60px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}
.contact__text span {
  font-weight: 600;
}

.contact__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.contact__var {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.contact__var p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 12px;
}

.contact__tab p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  font-weight: 500;
  font-size: 16.86px;
  line-height: 190%;
  padding: 20px 30px;
  border-radius: 90px;
  border: 1.69px solid #ffffff;
  cursor: default;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__tab p:hover {
  color: #0946a2;
  background: #ffffff;
}

.contact__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34%;
          flex: 0 1 34%;
}
.contact__right form {
  height: 100%;
}

.contact__role {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  height: 100%;
}

.contact__pole {
  position: relative;
font-size: 0;
}
.contact__pole:last-child {
  margin-top: auto;
  font-family: "Neuton", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #c3c3c3;
}
.contact__pole:last-child a {
  color: #c3c3c3;
  text-decoration: underline;
}

.contact__arrow {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: #d8d8d8;
  border-radius: 10px;
  cursor: pointer;
}
.contact__arrow svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact__arrow.active svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.contact__input {
  background: #ffffff;
  border: 1px solid #797979;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  color: #000000;
  padding: 27px 40px 23px 40px;
  border-radius: 36px;
  width: 100%;
}
.contact__input::-webkit-input-placeholder {
  color: #bcbcbc;
}
.contact__input::-moz-placeholder {
  color: #bcbcbc;
}
.contact__input:-ms-input-placeholder {
  color: #bcbcbc;
}
.contact__input::-ms-input-placeholder {
  color: #bcbcbc;
}
.contact__input::placeholder {
  color: #bcbcbc;
}

.contact__input._btn {
  background: linear-gradient(309.26deg, #0d2954 -47.33%, #1c5bba 81.98%);
  border: 1px solid #4570af;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  color: #ffffff;
  padding: 31px 40px 29px 40px;
  cursor: pointer;
}

.contact__sublist {
  position: absolute;
  z-index: 1;
  background: #fff;
  width: 100%;
  border: 1px solid #797979;
  border-radius: 36px;
  padding: 0px 40px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contact__sublist ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contact__sublist li {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__sublist li:hover {
  color: #bcbcbc;
}

.contact__sublist.active {
  max-height: 500px;
  overflow: visible;
  padding: 20px 40px;
  opacity: 1;
}

@media (max-width: 1650px) {
  .contact__inner {
    padding: 50px 90px;
  }
  .contact__tab p {
    padding: 15px 20px;
  }
  .contact__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
  }
  .contact__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}
@media (max-width: 1200px) {
  .contact__inner {
    padding: 40px 60px;
  }
  .contact__text {
    font-size: 20px;
    margin: 20px 0 40px;
  }
  .contact__var p {
    font-size: 20px;
  }
  .contact__tabs .contact__tab p {
    font-size: 14px;
  }
  .contact__role {
    gap: 20px;
  }
  .contact__pole:last-child {
    font-size: 16px;
  }
  .contact__input {
    font-size: 18px;
    padding: 20px 20px 16px 30px;
    border-radius: 25px;
  }
  .contact__input._btn {
    font-size: 20px;
    padding: 25px 20px 23px 20px;
  }
  .contact__arrow {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .contact__arrow svg {
    width: 15px;
    height: 9px;
  }
  .contact__sublist {
    border-radius: 25px;
    padding: 0px 20px;
    font-size: 18px;
    gap: 5px;
  }
  .contact__sublist.active {
    padding: 20px 20px;
  }
}
@media (max-width: 1000px) {
  .contact__inner {
    padding: 30px;
    gap: 30px;
  }
  .contact__text {
    font-size: 18px;
  }
  .contact__var p {
    font-size: 18px;
  }
  .contact__input {
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 16px;
  }
  .contact__input._btn {
    font-size: 18px;
    padding: 20px 20px 18px 20px;
  }
  .contact__arrow {
    -webkit-transform: translate(-20px, -50%);
            transform: translate(-20px, -50%);
  }
  .contact__sublist {
    font-size: 16px;
    border-radius: 20px;
  }
  .contact__tab p {
    border-radius: 70px;
    padding: 10px 15px;
  }
}
@media (max-width: 850px) {
  .contact__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 40px auto;
    -ms-grid-columns: 1fr 30px 1.2fr;
        grid-template: auto auto/1fr 1.2fr;
    gap: 40px 30px;
  }
  .contact__title {
    font-size: clamp(36px, 7vw, 60px);
  }
  .contact__text {
    font-size: 16px;
    margin: 15px 0 25px;
  }
  .contact__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: contents;
  }
  .contact__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .contact__info {
    width: 100%;
  }
  .contact__var {
    gap: 15px;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .contact__var p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    font-size: 16px;
  }
  .contact__role {
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .contact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .contact__role {
    gap: 15px;
  }
  .contact__text {
    margin: 15px 0 0 0;
  }
}
.section__table {
  padding: 10px 0 30px;
}
.tbody {
    border-bottom: 1px solid #f1f1f1;
}
.tbody-bor {
  border-bottom: 2px solid #fff;
}

.table__up {
  overflow: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
}

table.iksweb {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}
table.iksweb tr td {
  padding: 20px 25px;
}
table.iksweb tr:nth-child(2) td {
  text-align: center;
  white-space: nowrap;
  padding: 24px 34px;
}

.col_3 {
   text-align: center;
}
table.iksweb tr:nth-child(2) td:first-child {
  /*background: #f1f1f1;*/
}
table.iksweb tr:nth-child(2) td:nth-child(2) {
  background: #e7e7e7;
}
table.iksweb tr:nth-child(2) td:last-child {
  background: #cfcfcf;
}
table.iksweb tr:nth-child(3) .table__subtitle::before {
  display: none;
}
table.iksweb tr:nth-child(3) td {
 /* padding: 45px 40px;*/
}
table.iksweb tr:nth-child(3) td:first-child {
 /* padding: 45px 60px;*/
}

table.iksweb .table__head {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  background: #0946a2;
  padding: 24px 40px;
  border-radius: 15px 15px 0 0;
}
table.iksweb .table__col{text-align: left;}
table.iksweb .table__head:first-child {
  width: 20%;
}
table.iksweb .table__head:nth-child(2) {
  border: 3px solid #fff;
  border-bottom: none;
  width: 28%;
}
table.iksweb .table__head:last-child {
  width: 50%;
  text-align: center;
  border-bottom: 3px solid #fff;
}

table.iksweb td:nth-child(2),
table.iksweb td:nth-child(3),
table.iksweb td:nth-child(4),
table.iksweb td:nth-child(5){
text-align: center;
}

table.iksweb .table__subtitle,
table.iksweb .table__col,
table.iksweb .table__price {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #000;
}
table.iksweb .table__service {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  background: #f2f2f2;
  border-bottom: 2px solid #ffffff;
  -ms-flex-line-pack: start;
      align-content: start;
}
table.iksweb .table__input {
  border-bottom: 2px solid #ffffff;
  text-align: center;
  position: relative;
}
table.iksweb .table__input input {
  opacity: 0;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
table.iksweb .table__input label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #d2d2d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
table.iksweb .table__input label svg {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
table.iksweb .table__input label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1.5px;
  background: #000000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
table.iksweb .table__input:nth-last-child(3) {
  background: #f9f7f7;
}
table.iksweb .table__input:nth-last-child(2) {
  background: #f3f3f3;
}
table.iksweb .table__input:nth-last-child(1) {
  background: #d2cece;
}
table.iksweb .table__input:nth-last-child(1) label {
  background: #f9f7f7;
}
table.iksweb .table__input._active label {
  background: #0946a2;
}
table.iksweb .table__input._active label svg {
  -webkit-transform: scale(1);
          transform: scale(1);
}
table.iksweb .table__input._active label::before {
  width: 0;
}
table.iksweb .table__button {
  padding: 35px 8px 10px;
}
table.iksweb .table__button button {
  width: 100%;
  background: #0946a2;
  border: 2px solid #0946a2;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  border-radius: 15px;
  padding: 35px 20px;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
table.iksweb .table__button button:hover {
  color: #0946a2;
  background: transparent;
}
table.iksweb .table__button:nth-last-child(3) {
  background: #fff;
}
table.iksweb .table__button:nth-last-child(2) {
  background: #fff;
}
table.iksweb .table__button:nth-last-child(1) {
  background: #fff;
}

.table__subtitle {
  background: #f2f2f2;
  -ms-flex-line-pack: start;
      align-content: start;
  position: relative;
}
.table__subtitle::before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  background: #d9d9d9;
  height: 3px;
  width: 100vw;
  z-index: 1;
}

.table__price {
  white-space: nowrap;
  text-align: center;
}
.table__price:nth-child(2) {
  background: #f9f7f7;
}
.table__price:nth-child(3) {
  background: #f3f3f3;
}
.table__price:last-child {
  background: #d2cece;
}

.table__price._bottom {
  border-radius: 0 0 15px 15px;
}
.table__price._bottom:nth-last-child(3) {
  background: #f9f7f7;
}

.table__btn {
  background: #0946a2;
  border-radius: 15px;
  padding: 30px 50px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-top: 40px;
}

.table__form {
  display: none;
}

.table__info {
  margin-top: 60px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  color: #535353;
text-align: justify;
padding: 0 30px;
}

@media (max-width: 1650px) {
  table.iksweb .table__head {
    font-size: 22px;
    padding: 20px 25px;
  }
  table.iksweb .table__subtitle,
  table.iksweb .table__col,
  table.iksweb .table__price {
    font-size: 22px;
  }
  table.iksweb .table__service {
    font-size: 22px;
  }
  table.iksweb tr td {
    padding: 24px 30px;
  }
  table.iksweb tr:nth-child(2) td {
    padding: 20px 25px;
  }
  table.iksweb tr:nth-child(3) td {
    padding: 20px 30px;
  }
  table.iksweb tr:nth-child(3) td:first-child {
    padding: 20px 50px;
  }
  table.iksweb .table__button {
    padding: 25px 8px 10px;
  }
  table.iksweb .table__button button {
    font-size: 22px;
    padding: 25px 20px;
  }
}
@media (max-width: 1350px) {
  table.iksweb .table__head {
    font-size: 20px;
  }
  table.iksweb .table__subtitle,
  table.iksweb .table__col,
  table.iksweb .table__price {
    font-size: 20px;
  }
  table.iksweb .table__service {
    font-size: 20px;
  }
  table.iksweb tr td {
    padding: 20px;
  }
  table.iksweb tr:nth-child(2) td {
    padding: 20px;
  }
  table.iksweb tr:nth-child(3) td {
    padding: 20px 30px;
  }
  table.iksweb tr:nth-child(3) td:first-child {
    padding: 20px 50px;
  }
  table.iksweb .table__button {
    padding: 25px 8px 10px;
  }
  table.iksweb .table__button button {
    font-size: 20px;
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .section__table {
    padding: 10px 0 50px;
  }
  table.iksweb .table__head {
    font-size: 18px;
  }
  table.iksweb .table__subtitle,
  table.iksweb .table__col,
  table.iksweb .table__price {
    font-size: 18px;
  }
  table.iksweb .table__service {
    font-size: 18px;
  }
  table.iksweb tr td {
    padding: 15px;
  }
  table.iksweb tr:nth-child(2) td {
    padding: 15px;
  }
  table.iksweb tr:nth-child(3) td {
    padding: 15px 25px;
  }
  table.iksweb tr:nth-child(3) td:first-child {
    padding: 15px 30px;
  }
  table.iksweb .table__button button {
    font-size: 18px;
    padding: 15px;
    border-radius: 10px;
  }
  table.iksweb .table__input input {
    width: 30px;
    height: 30px;
  }
  table.iksweb .table__input label {
    width: 30px;
    height: 30px;
  }
  table.iksweb .table__input label::before {
    width: 15px;
  }
  table.iksweb .table__input label svg {
    width: 20px;
    height: 20px;
  }
  .table__info {
    margin-top: 40px;
    font-size: 20px;
    gap: 15px;
  }
}
@media (max-width: 1050px) {
  table.iksweb .table__head {
    font-size: 14px;
  }
  table.iksweb .table__subtitle,
  table.iksweb .table__col,
  table.iksweb .table__price {
    font-size: 14px;
  }
  table.iksweb .table__service {
    font-size: 14px;
  }
  table.iksweb tr td {
    padding: 15px 10px;
  }
  table.iksweb tr:nth-child(2) td {
    padding: 15px 10px;
  }
  table.iksweb tr:nth-child(3) td {
    padding: 15px 25px;
  }
  table.iksweb tr:nth-child(3) td:first-child {
    padding: 15px 30px;
  }
  table.iksweb .table__button button {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }
  table.iksweb .table__input input {
    width: 30px;
    height: 30px;
  }
  table.iksweb .table__input label {
    width: 30px;
    height: 30px;
  }
  table.iksweb .table__input label::before {
    width: 15px;
  }
  table.iksweb .table__input label svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 850px) {
  .section__table {
    padding: 10px 0 30px;
  }
  .table__up {
    overflow-x: scroll;
  }
  table.iksweb {
    min-width: 650px;
  }
  table.iksweb .table__head:first-child {
    width: 80%;
  }
  table.iksweb .table__head:last-child {
    width: 20%;
  }
  table.iksweb .table__head {
    padding: 15px;
  }
  table.iksweb tr td {
    padding: 15px 10px;
  }
  table.iksweb tr:nth-child(2) td {
    padding: 15px 10px;
  }
  table.iksweb tr:nth-child(3) td {
    padding: 15px 20px;
  }
  table.iksweb tr:nth-child(3) td:first-child {
    padding: 15px 20px;
  }
  table.iksweb .table__button button {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }
  table.iksweb .table__input input {
    width: 30px;
    height: 30px;
  }
  table.iksweb .table__input label {
    width: 30px;
    height: 30px;
  }
  table.iksweb .table__input label::before {
    width: 15px;
  }
  table.iksweb .table__input label svg {
    width: 20px;
    height: 20px;
  }
  .table__info {
    margin-top: 20px;
    font-size: 18px;
    gap: 10px;
    padding: 10px;
  }
}
@media (max-width: 650px) {
  table.iksweb .table__head {
    font-size: 12px;
  }
  table.iksweb .table__subtitle,
  table.iksweb .table__col,
  table.iksweb .table__price {
    font-size: 12px;
  }
  table.iksweb .table__service {
    font-size: 12px;
  }
  table.iksweb tr td {
    padding: 15px;
  }
  table.iksweb .table__button button {
    font-size: 12px;
  }
  table.iksweb .table__input input {
    width: 20px;
    height: 20px;
  }
  table.iksweb .table__input label {
    width: 20px;
    height: 20px;
  }
  table.iksweb .table__input label::before {
    width: 10px;
    height: 1px;
  }
  table.iksweb .table__input label svg {
    width: 15px;
    height: 15px;
  }
}
.section__textblock {
  padding: 70px 0 45px;
}

.textblock__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.textblock__elem {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1.02fr 100px 1fr;
      grid-template: 1fr/1.02fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}

.textblock__elem._left .textblock__info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.textblock__elem._left .textblock__text {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.textblock__elem._left .textblock__title {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.textblock__elem._left .textblock__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.textblock__elem._left .textblock__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.textblock__elem._left .textblock__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.textblock__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.textblock__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.textblock__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.textblock__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
    text-align: justify;
    text-indent: 30px;
  color: #000;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.textblock__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.textblock__image {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.textblock__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.textblock__image img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

@media (max-width: 1600px) {
  .textblock__elem {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .section__textblock {
    padding: 50px 0 35px;
  }
  .textblock__inner {
    gap: 50px;
  }
  .textblock__info {
    gap: 20px;
  }
  .textblock__text {
    font-size: 26px;
  }
}
@media (max-width: 1000px) {
  .textblock__inner {
    gap: 30px;
  }
  .textblock__text {
    font-size: 20px;
  }
  .textblock__elem {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1.1fr 30px 1fr;
        grid-template: 1fr/1.1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .section__textblock {
    padding: 30px 0;
  }
  .textblock__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .textblock__text {
    font-size: 18px;
  }
  .textblock__elem {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1.2fr 20px 1fr;
        grid-template: 1fr/1.2fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .textblock__inner {
    gap: 20px;
  }
  .textblock__elem {
    -ms-grid-rows: auto auto;
    -ms-grid-columns: 1fr;
        grid-template: auto auto/1fr;
  }
  .textblock__elem._left .textblock__info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .textblock__elem._left .textblock__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .textblock__text {
    font-size: 16px;
  }
  .textblock__info {
    gap: 15px;
  }
  .textblock__image img {
    max-height: 250px;
  }
}
.section__price {
  padding: 45px 0;
}

.price__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.price__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
    text-align: justify;
    text-indent: 30px;
}

.price__title._active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.price__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr;
      grid-template: auto/1fr 1fr;
  gap: 20px;
  width: 100%;
}

.price__elem {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  color: #535353;
  border-radius: 15px;
  background: #f3f3f3;
  padding: 50px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
    text-align: justify;
    text-indent: 30px;
}
.price__elem:hover {
  color: #fff;
  background-color: #0946a2;
}

@media (max-width: 1200px) {
  .section__price {
    padding: 30px 0;
  }
  .price__inner {
    gap: 40px;
  }
  .price__elem {
    font-size: 30px;
    padding: 40px 50px;
  }
}
@media (max-width: 1000px) {
  .price__inner {
    gap: 30px;
  }
  .price__body {
    gap: 15px;
  }
  .price__elem {
    font-size: 24px;
    padding: 30px 40px;
  }
}
@media (max-width: 850px) {
  .price__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .price__elem {
    font-size: 18px;
    padding: 20px 40px;
    border-radius: 10px;
  }
}
@media (max-width: 650px) {
  .price__inner {
    gap: 20px;
  }
  .price__body {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto/1fr;
  }
  .price__elem {
    font-size: 16px;
    padding: 20px;
  }
}
.section__steps {
  padding: 45px 0 35px;
}

.steps__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.steps__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.steps__title._active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.steps__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.steps__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  border-radius: 56px;
  border: 2px solid #0946a2;
  background-color: #fff;
  padding: 50px;
  color: #000;
  opacity: 0;
}
.steps__elem:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 38%;
          flex: 1 1 38%;
}
.steps__elem:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 56%;
          flex: 1 1 56%;
}
.steps__elem:nth-child(4) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 53%;
          flex: 1 1 53%;
}
.steps__elem:nth-child(5) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
}
.steps__elem:last-child {
  background: #0946a2;
  color: #fff;
}
.steps__elem:last-child .steps__number {
  color: #0946a2;
  background: #fff;
}

.steps__elem._active:nth-child(odd) {
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}
.steps__elem._active:nth-child(even) {
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.steps__number {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 31.98px;
  line-height: normal;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  background: #0946a2;
  border-radius: 12px;
  min-width: 53px;
  height: 53px;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
}

.steps__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.steps__subtitle {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 42.84px;
  line-height: normal;
    text-align: justify;
    text-indent: 60px;

}

.steps__subtext {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
}

.steps__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 29.09px;
  line-height: normal;
  color: #0946a2;
  border-radius: 30px;
  background: #ffffff;
  padding: 29px 50px 28px;
  max-width: 460px;
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.steps__btn:hover {
  color: #fff;
  background: #0946a2;
}

@media (max-width: 1200px) {
  .section__steps {
    padding: 30px 0;
  }
  .steps__inner {
    gap: 40px;
  }
  .steps__elem {
    padding: 25px;
    border-radius: 30px;
  }
  .steps__number {
    font-size: 26px;
    min-width: 43px;
    height: 43px;
    border-radius: 10px;
  }
  .steps__info {
    gap: 15px;
  }
  .steps__subtitle {
    font-size: 36px;
  }
  .steps__subtext {
    font-size: 26px;
  }
  .steps__btn {
    font-size: 26px;
    padding: 20px 40px 19px;
    border-radius: 20px;
  }
}
@media (max-width: 1000px) {
  .steps__inner {
    gap: 30px;
  }
  .steps__elem {
    padding: 20px;
    border-radius: 30px;
    gap: 15px;
  }
  .steps__number {
    font-size: 20px;
    min-width: 35px;
    height: 35px;
    border-radius: 8px;
  }
  .steps__subtitle {
    font-size: 30px;
  }
  .steps__subtext {
    font-size: 20px;
  }
  .steps__btn {
    font-size: 20px;
    padding: 15px 30px 14px;
    max-width: 300px;
  }
}
@media (max-width: 850px) {
  .steps__inner {
    gap: 20px;
  }
  .steps__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .steps__body {
    gap: 15px;
  }
  .steps__elem {
    border-radius: 25px;
    padding: 20px;
  }
  .steps__number {
    font-size: 18px;
    min-width: 35px;
    height: 35px;
    border-radius: 8px;
  }
  .steps__info {
    gap: 10px;
  }
  .steps__subtitle {
    font-size: 24px;
  }
  .steps__subtext {
    font-size: 18px;
  }
  .steps__btn {
    font-size: 18px;
    padding: 15px 30px 14px;
    max-width: 300px;
  }
}
@media (max-width: 650px) {
  .steps__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .steps__body .steps__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .steps__elem {
    border-radius: 25px;
    padding: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .steps__number {
    font-size: 16px;
    min-width: 25px;
    height: 25px;
    border-radius: 8px;
  }
  .steps__subtitle {
    font-size: 20px;
  }
  .steps__subtext {
    font-size: 16px;
  }
  .steps__btn {
    font-size: 16px;
    padding: 15px 30px 14px;
    border-radius: 15px;
    margin-right: auto;
  }
}
.section__object {
  padding: 35px 0 70px;
}

.object__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.object__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.object__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.object__body {
  position: relative;
}

.object-slider {
  height: 100%;
  width: 100%;
  max-width: 1900px;
  overflow: hidden;
  position: relative;
  padding: 40px 0 60px;
}

.object-slide {
  width: 100%;
}

.object__image {
  aspect-ratio: 1/0.85;
}
.object__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev--object {
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 95px;
  height: 95px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #0946a2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-button-next--object {
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 95px;
  height: 95px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #0946a2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-button-disabled {
  opacity: 0;
  -webkit-transition: all 0s;
  transition: all 0s;
}

.object__btn {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  background: #0946a2;
  border: 2px solid #0946a2;
  border-radius: 15px;
  padding: 30px 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.object__btn:hover {
  background: #fff;
  color: #0946a2;
}

@media (max-width: 1200px) {
  .section__object {
    padding: 30px 0 50px;
  }
  .swiper-button-next--object,
  .swiper-button-prev--object {
    width: 60px;
    height: 60px;
  }
  .swiper-button-next--object svg,
  .swiper-button-prev--object svg {
    width: 40px;
    height: 40px;
  }
  .object__btn {
    font-size: 20px;
    padding: 20px 60px;
  }
  .object-slider {
    padding: 30px 0 40px;
  }
}
@media (max-width: 850px) {
  .section__object {
    padding: 30px 0;
  }
  .object__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .object__btn {
    font-size: 18px;
    padding: 15px 40px;
  }
}
@media (max-width: 650px) {
  .swiper-button-next--object,
  .swiper-button-prev--object {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next--object svg,
  .swiper-button-prev--object svg {
    width: 24px;
    height: 24px;
  }
  .object-slider {
    padding: 20px 0 30px;
  }
  .object__btn {
    font-size: 16px;
  }
}
.section__client {
  padding: 35px 0;
}

.client__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.client__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
}

.client__title._active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.client__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.client__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 36px;
  background: #fcfcfc;
  padding: 10px 40px;
}
.client__elem img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 300px;
  max-height: 100px;
}

@media (max-width: 1200px) {
  .section__client {
    padding: 25px 0;
  }
  .client__inner {
    gap: 20px;
  }
  .client__elem {
    padding: 10px 20px;
  }
}
@media (max-width: 850px) {
  .section__client {
    padding: 15px 0;
  }
  .client__elem img {
    height: auto;
  }
  .client__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
}
@media (max-width: 650px) {
  .client__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .client__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .client__elem img {
    max-height: 60px;
  }
}
.section__work {
  padding: 70px 0 120px;
}

.work__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.work__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  color: #000;
}

.work__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.work__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.work__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 36px;
  line-height: 119%;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.work__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.work__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
      grid-template: 1fr/1fr 1fr 1fr;
  gap: 60px 20px;
}

.work__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.work__elem:nth-child(3n+1) {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}
.work__elem:nth-child(3n+3) {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}

.work__elem._active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.work__card {
  position: relative;
}
.work__card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(9, 70, 162, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.work__card:hover::before {
  opacity: 1;
}
.work__card:hover .work__arrow {
  opacity: 1;
}

.work__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.work__img {
  aspect-ratio: 1/0.8;
}
.work__img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__name {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: #000;
}

@media (max-width: 1200px) {
  .section__work {
    padding: 50px 0;
  }
  .work__inner {
    gap: 40px;
  }
  .work__top {
    gap: 20px;
  }
  .work__text {
    font-size: 30px;
  }
  .work__body {
    gap: 40px 20px;
  }
  .work__elem {
    gap: 20px;
  }
  .work__name {
    font-size: 26px;
  }
}
@media (max-width: 1000px) {
  .work__inner {
    gap: 20px;
  }
  .work__top {
    gap: 15px;
  }
  .work__body {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr 20px 1fr;
        grid-template: 1fr/1fr 1fr;
    gap: 20px;
  }
  .work__text {
    font-size: 24px;
  }
  .work__name {
    font-size: 20px;
  }
  .work__elem {
    gap: 15px;
  }
  .work__arrow {
    top: 20px;
    right: 20px;
  }
  .work__arrow svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 850px) {
  .section__work {
    padding: 30px 0;
  }
  .work__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .work__text {
    font-size: 20px;
  }
  .work__name {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .work__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .work__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 250px;
            flex: 1 1 250px;
  }
  .work__img img {
    border-radius: 10px;
  }
  .work__arrow {
    top: 15px;
    right: 15px;
  }
  .work__text {
    font-size: 18px;
  }
  .work__name {
    font-size: 16px;
  }
}



.table__subtitle-noBottomBorder td{
  border-bottom:none !important;
}
.table__subtitle-noBottomBorder~tr .table__subtitle::before{
  display:none;
}
.table__borderBottomRight{
  border-bottom-right-radius: 15px;
}



/*FOUNDATION BLOCKS*/

.foundation__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.foundation__elem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.foundation__elem:nth-child(3n+1) {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.foundation__elem:nth-child(3n+3) {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.foundation__elem._active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.foundation__elem-top {
  background: #0946a2;
  border-radius: 15px 15px 0 0;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-family: Montserrat;
  font-size: 32px;
  line-height: normal;
}

.foundation__elem-name {
  font-weight: 600;
  color: #fff;
}

.foundation__elem-price {
  font-weight: 400;
  color: #c3c3c3;
}

.foundation__elem-img {
  width: 100%;
}
.foundation__elem-img img {
  width: 100%;
  aspect-ratio: 1/0.6;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 15px 15px;
}
@media (max-width: 1200px) {
  .foundation__body {
    gap: 15px;
  }
}
@media (max-width: 850px) {
  .foundation__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 1fr;
        grid-template: auto/1fr 1fr;
  }
}
@media (max-width: 650px) {
  .foundation__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .foundation__elem-img img {
    max-height: 300px;
  }
}

.section__opisaniye {
  padding: 70px 0;
}

.opisaniye__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1.5fr 30px 1fr;
      grid-template: 1fr/1.5fr 1fr;
  gap: 30px;
}

.opisaniye__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
}

.opisaniye__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.opisaniye__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.opisaniye__span {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  color: #000;
  margin-top: 24px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.opisaniye__span._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.opisaniye__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 138%;
  margin: 30px 0 60px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.opisaniye__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.5s;
  transition: all 0.7s 0.5s;
}

.opisaniye__btn {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  background: #0946a2;
  border: 2px solid #0946a2;
  border-radius: 15px;
  padding: 30px 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.opisaniye__btn:hover {
  background: #fff;
  color: #0946a2;
}

.opisaniye__right {
  width: 100%;
  margin-top: 24px;
  border-radius: 15px;
  overflow: hidden;
}
.opisaniye__right img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.opisaniye__right img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

@media (max-width: 1200px) {
  .section__opisaniye {
    padding: 50px 0;
  }
  .opisaniye__span {
    font-size: 30px;
    margin-top: 20px;
  }
  .opisaniye__text {
    font-size: 26px;
    margin: 30px 0 50px;
  }
  .opisaniye__btn {
    font-size: 20px;
    padding: 20px 60px;
  }
}
@media (max-width: 1000px) {
  .opisaniye__span {
    font-size: 24px;
  }
  .opisaniye__text {
    font-size: 20px;
    margin: 20px 0 40px;
  }
}
@media (max-width: 850px) {
  .section__opisaniye {
    padding: 30px 0;
  }
  .opisaniye__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .opisaniye__span {
    font-size: 20px;
    margin-top: 15px;
  }
  .opisaniye__text {
    font-size: 18px;
    margin: 15px 0 30px;
  }
  .opisaniye__btn {
    font-size: 18px;
    padding: 15px 40px;
  }
}
@media (max-width: 650px) {
  .opisaniye__inner {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto/1fr;
    gap: 20px;
  }
  .opisaniye__span {
    font-size: 18px;
  }
  .opisaniye__text {
    font-size: 16px;
    margin: 15px 0 20px;
  }
  .opisaniye__btn {
    font-size: 16px;
  }
  .opisaniye__right {
    margin: 0;
  }
}

.section__information {
  padding: 0;
}

.information__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1.5fr 30px 1fr;
      grid-template: 1fr/1.5fr 1fr;
  gap: 30px;
}

.information__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
}

.information__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.information__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.information__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  margin: 40px 0 60px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
    text-align: justify;
    text-indent: 30px;
}

ul li {
    list-style: none;
    text-indent: 0;
}

.information__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.information__btn {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  background: #0946a2;
  border: 2px solid #0946a2;
  border-radius: 15px;
  padding: 30px 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.information__btn:hover {
  background: #fff;
  color: #0946a2;
}

.information__right {
  width: 100%;
  margin-top: 24px;
  border-radius: 15px;
  overflow: hidden;
}
.information__right img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.information__right img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

@media (max-width: 1200px) {
  .section__information {
    padding: 0px 0 0px;
  }
  .information__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .information__text {
    font-size: 26px;
    margin: 30px 0 50px;
  }
  .information__btn {
    font-size: 20px;
    padding: 20px 60px;
  }
}
@media (max-width: 1000px) {
  .information__text {
    font-size: 20px;
    margin: 20px 0 40px;
  }
}
@media (max-width: 850px) {
  .section__information {
    padding: 0px 0 0px;
  }
  .information__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .information__text {
    font-size: 18px;
    margin: 15px 0 30px;
  }
  .information__btn {
    font-size: 18px;
    padding: 15px 40px;
  }
}
@media (max-width: 650px) {
  .information__inner {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto/1fr;
    gap: 20px;
  }
  .information__text {
    font-size: 16px;
    margin: 15px 0 20px;
  }
  .information__btn {
    font-size: 16px;
  }
  .information__right {
    margin: 0;
  }
}



.section__textblock2 {
  padding: 0;
}

.textblock__inner2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 140px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.textblock__body2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 90px;
}

.textblock__left2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.textblock__right2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
}
.textblock__right2 .textblock__btn {
  margin: 0;
}

.textblock__title2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}

.textblock__title2._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.textblock__span2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  margin: 24px 0 32px;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}

.textblock__span2._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.textblock__text2 {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
    text-indent: 30px;
}

.textblock__text2._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.5s;
  transition: all 0.7s 0.5s;
}


@media (max-width: 1400px) {
  .textblock__span {
    font-size: 30px;
  }
  .textblock__text {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .section__textblock2 {
    padding: 40px 0 50px;
  }
  .textblock__inner2 {
    gap: 70px;
  }
  .textblock__body2 {
    gap: 60px;
  }
  .textblock__btn2 {
    font-size: 20px;
    padding: 20px 60px;
  }
  .textblock__span2 {
    margin: 20px 0 25px;
  }
  .textblock__text2 {
    margin-bottom: 40px;
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .textblock__body2 {
    gap: 40px;
  }
  .textblock__text2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .textblock__span2 {
    font-size: 24px;
  }
}
@media (max-width: 850px) {
  .section__textblock2 {
    padding: 30px 0;
  }
  .textblock__inner2 {
    gap: 40px;
  }
  .textblock__body2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .textblock__title2 {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .textblock__span2 {
    font-size: 20px;
    margin: 10px 0 15px;
  }
  .textblock__btn2 {
    font-size: 18px;
    padding: 15px 40px;
  }
  .textblock__text2 {
    font-size: 18px;
  }
  .textblock__text {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .textblock__inner {
    gap: 20px;
  }
  .textblock__span {
    font-size: 18px;
  }
  .textblock__text {
    line-height: 24px;
    font-size: 16px;
  }
  .textblock__image:first-child {
    margin-right: 70px;
  }
  .textblock__image:first-child img {
    min-height: 0;
  }
  .textblock__image:last-child {
    /* margin-top: -105px;
    margin-left: 100px; */
  }
  .textblock__image:last-child img {
    min-height: 0;
  }
  .textblock__btn {
    font-size: 16px;
  }
}

.section__plus {
  margin: 70px 0;
  background: #0946a2;
}

.plus__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  gap: 20px;
}

.plus__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
}

.plus__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
  color: #fff;
}

.plus__text {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  color: #d9d9d9;
  max-width: 400px;
}

.plus__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  max-width: 940px;
}

.plus__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  background: #f3f3f3;
  border-radius: 15px;
  padding: 20px 60px;
}

.plus__img img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.plus__subtext {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
}

@media (max-width: 1200px) {
  .section__plus {
    margin: 50px 0;
  }
  .plus__inner {
    padding: 70px 0;
  }
  .plus__text {
    font-size: 30px;
  }
  .plus__left {
    gap: 20px;
  }
  .plus__elem {
    padding: 15px 30px;
    gap: 30px;
  }
  .plus__img img {
    width: 70px;
    height: 70px;
  }
  .plus__subtext {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .plus__inner {
    padding: 50px 0;
  }
  .plus__text {
    font-size: 24px;
  }
  .plus__elem {
    gap: 20px;
    padding: 15px 20px;
    border-radius: 12px;
  }
  .plus__subtext {
    font-size: 24px;
  }
  .plus__img img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 850px) {
  .section__plus {
    margin: 30px 0;
  }
  .plus__title {
    font-size: clamp(24px, 4.3vw, 36px);
  }
  .plus__inner {
    padding: 40px 0;
  }
  .plus__left {
    gap: 15px;
  }
  .plus__text {
    font-size: 20px;
  }
  .plus__elem {
    gap: 15px;
  }
  .plus__subtext {
    font-size: 20px;
  }
  .plus__img img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 650px) {
  .plus__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
  .plus__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .plus__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .plus__text {
    max-width: 100%;
    font-size: 18px;
  }
  .plus__elem {
    padding: 15px;
    border-radius: 10px;
  }
  .plus__subtext {
    font-size: 18px;
  }
  .plus__img img {
    width: 40px;
    height: 40px;
  }
}


.section__pris {
  margin: 70px 0;
  background: #0946a2;
}

.pris__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #fff;
  overflow: hidden;
}

.pris__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.pris__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.pris__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: normal;
}

.pris__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 36px;
  line-height: normal;
  width: 70%;
}

.pris__elems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.pris__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.pris__elem:nth-child(2) {
  margin-top: 80px;
}
.pris__elem:last-child {
  margin-left: -60px;
  margin-top: -60px;
}

.pris__img img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pris__subtext {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
}

.pris__right img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.63;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: pris 10s 0s infinite;
          animation: pris 10s 0s infinite;
}

@-webkit-keyframes pris {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  30% {
    -webkit-transform: scale(1.05) rotate(10deg) translateY(-40px);
            transform: scale(1.05) rotate(10deg) translateY(-40px);
  }
  60% {
    -webkit-transform: scale(1.02) rotate(5deg) translateY(-20px);
            transform: scale(1.02) rotate(5deg) translateY(-20px);
  }
  100% {
    -webkit-transform: scale(0.97) rotate(-10deg) translateY(-40px);
            transform: scale(0.97) rotate(-10deg) translateY(-40px);
  }
}

@keyframes pris {
  0% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  30% {
    -webkit-transform: scale(1.05) rotate(10deg) translateY(-40px);
            transform: scale(1.05) rotate(10deg) translateY(-40px);
  }
  60% {
    -webkit-transform: scale(1.02) rotate(5deg) translateY(-20px);
            transform: scale(1.02) rotate(5deg) translateY(-20px);
  }
  100% {
    -webkit-transform: scale(0.97) rotate(-10deg) translateY(-40px);
            transform: scale(0.97) rotate(-10deg) translateY(-40px);
  }
}
@media (max-width: 1300px) {
  .pris__text {
    font-size: 30px;
    width: 80%;
  }
  .pris__elem:nth-child(2) {
    margin-top: 80px;
  }
  .pris__elem:last-child {
    margin-left: -90px;
    margin-top: -30px;
  }
  .pris__subtext {
    font-size: 26px;
  }
  .pris__img img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1200px) {
  .section__pris {
    margin: 50px 0;
  }
  .pris__left {
    gap: 30px;
    padding: 20px 0;
  }
  .pris__info {
    gap: 20px;
  }
  .pris__text {
    font-size: 28px;
    width: 100%;
  }
  .pris__elem {
    gap: 15px;
  }
  .pris__subtext {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .pris__text {
    font-size: 24px;
  }
  .pris__info {
    gap: 10px;
  }
  .pris__elems {
    gap: 15px;
  }
  .pris__elem:nth-child(2) {
    margin-top: 40px;
  }
  .pris__elem:last-child {
    margin-top: -20px;
  }
  .pris__subtext {
    font-size: 20px;
  }
  .pris__img img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 850px) {
  .section__pris {
    margin: 30px 0;
  }
  .pris__left {
    padding: 10px 0;
  }
  .pris__title {
    font-size: clamp(22px, 4.3vw, 36px);
  }
  .pris__text {
    font-size: 18px;
  }
  .pris__subtext {
    font-size: 16px;
  }
  .pris__img img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 650px) {
  .pris__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 15px 0.6fr;
        grid-template: auto/1fr 0.6fr;
    gap: 20px 15px;
    padding: 20px 0;
  }
  .pris__info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .pris__elems {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .pris__elems .pris__elem {
    margin: 0;
    gap: 10px;
  }
  .pris__text {
    font-size: 16px;
  }
  .pris__subtext {
    font-size: 14px;
  }
  .pris__left {
    display: contents;
  }
  .pris__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: -20px;
  }
  .pris__img img {
    width: 30px;
    height: 30px;
  }
}


.table__btns a {
    color: white;
}


.descr-gr{display: grid;grid-template: 1fr / 1fr 1fr 2.5fr 0.3fr;}
.descr-gr-sheb{display: grid;grid-template: 1fr / 1fr 2fr 0.1fr;gap: 50px;}
.descr-gr1{display: grid;grid-template: 1fr / 1fr 3fr;}
.descr-gr2{display: grid;grid-template: 1fr / 3fr 1fr;}
@media (max-width: 1300px) {
	.foundation__elem-top {font-size: 18px;}
}
@media (max-width: 650px) {
	.descr-gr{grid-template: 1fr / 1fr;gap: 20px;}
	.descr-gr-sheb{grid-template: 1fr / 1fr;gap: 20px;}
	.descr-gr1{grid-template: 1fr / 1fr;gap: 20px;}
	.descr-gr2{grid-template: 1fr / 1fr;gap: 20px;}
}

.strel-vlevo{display:none}
@media (max-width: 650px) {.strel-vlevo{display:block}}
