.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: 1330px;
  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__blog {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 60px 0 0;
}

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

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

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

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

.table__info {
    margin-top: 60px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    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;
}


.blog__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: #535353;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 30px;
  margin-top: 30px;
}

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

@media (max-width: 1200px) {
  .section__blog {
    padding: 40px 0 30px;
  }
  .blog__links {
    font-size: 26px;
  }
  .blog__title {
    max-width: 820px;
    margin: 40px 0 20px;
  }
  .blog__text {
    font-size: 26px;
	
  }
}
@media (max-width: 1000px) {
  .blog__links {
    font-size: 20px;
  }
  .blog__title {
    margin: 30px 0 15px;
    max-width: 690px;
  }
  .blog__text {
    font-size: 20px;
	align-items: center;
	flex-direction: column;
  }
}
@media (max-width: 850px) {
  .section__blog {
    padding: 30px 0 0;
  }
  .blog__links {
    font-size: 18px;
  }
  .blog__title {
    font-size: clamp(24px, 4.3vw, 36px);
    max-width: 560px;
  }
  .blog__text {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .blog__links {
    font-size: 16px;
  }
  .blog__title {
    max-width: 430px;
    margin: 20px 0 15px;
  }
  .blog__text {
    font-size: 16px;
  }
}
.section__textblock {
  padding: 45px 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

.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: 30px;
  color: #000;
}

.textblock__top {
  position: relative;
  padding: 80px 0;
  /* height: 1215px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
.textblock__top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #d9d9d9;
  z-index: -1;
}

.textblock__elem {
  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: 1 1 40%;
          flex: 1 1 40%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.textblock__elem:first-child {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  gap: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.textblock__elem:first-child .textblock__text {
  max-width: 900px;
}

.textblock__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  max-width: 860px;
}

.textblock__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  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;
}
.textblock__text+.textblock__subtitle{
  margin-top: 20px;
}

.textblock__subtitle {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  margin-bottom: 24px;
}

.textblock__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.textblock__left {
  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: 1 1 43%;
          flex: 1 1 43%;
}

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

.textblock__tabs {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.textblock__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26%;
          flex: 0 1 26%;
}
.textblock__tab p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  color: #0946a2;
  border: 2px solid #0946a2;
  border-radius: 100px;
  background-color: #fff;
  padding: 16px 40px;
  text-align: center;
  white-space: nowrap;
}
.textblock__tab span {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  line-height: 102%;
  text-align: center;
}

.textblock__right {
  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: 1 1 47%;
          flex: 1 1 47%;
  position: relative;
  padding: 60px 140px;
}
.textblock__right 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: 36px;
}
.textblock__right::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 50vw;
  background: #d9d9d9;
  z-index: -1;
}

@media (max-width: 1450px) {
  .textblock__top {
    padding: 40px 0;
    gap: 40px;
    /* height: 1000px; */
  }
  .textblock__elem:first-child {
    gap: 30px;
  }
  .textblock__elem:first-child .textblock__text {
    max-width: 900px;
  }
  .textblock__text {
    font-size: 26px;
  }
  .textblock__bottom {
    gap: 80px;
  }
  .textblock__info p {
    font-size: 26px;
  }
  .textblock__tabs {
    margin: 20px 0;
  }
  .textblock__tab p {
    font-size: 22px;
    padding: 15px 25px;
  }
  .textblock__right {
    padding: 40px 80px;
  }
}
@media (max-width: 1200px) {
  .section__textblock {
    padding: 30px 0;
  }
  .textblock__elem:first-child {
    gap: 20px;
  }
  .textblock__subtitle {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .textblock__right {
    padding: 30px 40px;
  }
  .textblock__right ul {
    gap: 25px;
  }
  .textblock__tab {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
  }
  .textblock__tab p {
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 80px;
  }
  .textblock__tab span {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .textblock__top {
    padding: 30px 0;
    gap: 30px;
    /* height: 700px; */
  }
  .textblock__subtitle {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .textblock__text {
    font-size: 20px;
    gap: 15px;
  }
  .textblock__bottom {
    gap: 40px;
  }
  .textblock__info p {
    font-size: 20px;
  }
  .textblock__tabs {
    margin: 15px 0;
  }
  .textblock__tab p {
    font-size: 16px;
  }
  .textblock__tab span {
    font-size: 14px;
  }
  .textblock__right {
    padding: 20px 30px;
  }
  .textblock__right ul {
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .textblock__top {
    /* height: 500px; */
  }
  .textblock__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .textblock__text {
    font-size: 18px;
    gap: 10px;
  }
  .textblock__subtitle {
    font-size: 20px;
  }
  .textblock__info p {
    font-size: 18px;
  }
  .textblock__tabs {
    gap: 10px;
  }
  .textblock__tab p {
    font-size: 16px;
  }
  .textblock__tab span {
    font-size: 12px;
  }
  .textblock__bottom {
    gap: 20px;
  }
  .textblock__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .textblock__right ul {
    gap: 15px;
  }
  .textblock__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
@media (max-width: 650px) {
  .textblock__inner {
    gap: 20px;
  }
  .textblock__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    gap: 20px;
    padding: 20px 0;
  }
  .textblock__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .textblock__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .textblock__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 20px 0;
  }
  .textblock__right ul {
    gap: 10px;
  }
  .textblock__right::before {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .textblock__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .textblock__elem:first-child {
    gap: 15px;
  }
  .textblock__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .textblock__text {
    font-size: 16px;
  }
  .textblock__info p {
    font-size: 16px;
  }
  .textblock__info p {
    font-size: 14px;
  }
  .textblock__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .textblock__tab {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 200px;
            flex: 0 1 200px;
  }
}
.section__information {
  margin: 45px 0;
  background: #d9d9d9;
  padding: 80px 0;
}

.information__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: 30px;
  color: #000;
  height: 1215px;
}

.information__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  max-width: 900px;
}

.information__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 130px;
  height: 100%;
}
.information__body h3 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  margin-bottom: 24px;
}
.information__body p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  margin-bottom: 20px;
}
.information__body p:last-child {
  margin-bottom: 0;
}
.information__body 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: 40px;
}
.information__body ul li {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  padding-left: 30px;
  position: relative;
}
.information__body ul li svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51%;
          flex: 0 1 51%;
}

.information__right {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

@media (max-width: 1300px) {
  .information__inner {
    height: 1000px;
  }
  .information__body h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .information__body p {
    font-size: 26px;
  }
  .information__body ul {
    gap: 20px;
  }
  .information__body ul li {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .section__information {
    margin: 30px 0;
    padding: 60px 0;
  }
  .information__inner {
    gap: 20px;
  }
  .information__body {
    gap: 70px;
  }
  .information__title {
    max-width: 700px;
  }
}
@media (max-width: 1000px) {
  .information__inner {
    height: 700px;
  }
  .information__body h3 {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .information__body p {
    font-size: 20px;
  }
  .information__body ul {
    gap: 15px;
  }
  .information__body ul li {
    font-size: 20px;
  }
  .information__title {
    max-width: 590px;
  }
}
@media (max-width: 850px) {
  .section__information {
    padding: 30px 0;
  }
  .information__inner {
    gap: 15px;
  }
  .information__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .information__body {
    gap: 40px;
  }
  .information__body h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .information__body p {
    font-size: 18px;
  }
  .information__body ul {
    gap: 10px;
    margin-left: 20px;
  }
  .information__body ul li {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .information__inner {
    height: 100%;
  }
  .information__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .information__body h3 {
    font-size: 18px;
  }
  .information__body p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .information__body ul li {
    font-size: 16px;
  }
  .information__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
  .information__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
}
.section__opisaniye {
  padding: 35px 0 60px;
}

.opisaniye__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.opisaniye__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51%;
          flex: 0 1 51%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  color: #000;
}

.opisaniye__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  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__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  -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.3s;
  transition: all 0.7s 0.3s;
}

.opisaniye__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}
.opisaniye__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .section__opisaniye {
    padding: 30px 0 40px;
  }
  .opisaniye__left {
    gap: 20px;
  }
  .opisaniye__title {
    font-size: 30px;
  }
  .opisaniye__text {
    font-size: 26px;
  }
}
@media (max-width: 1000px) {
  .opisaniye__inner {
    gap: 20px;
  }
  .opisaniye__left {
    gap: 15px;
  }
  .opisaniye__title {
    font-size: 24px;
  }
  .opisaniye__text {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .section__opisaniye {
    padding: 30px 0;
  }
  .opisaniye__left {
    gap: 10px;
  }
  .opisaniye__title {
    font-size: 22px;
  }
  .opisaniye__text {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .opisaniye__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .opisaniye__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .opisaniye__title {
    width: 90%;
    font-size: 20px;
  }
  .opisaniye__text {
    font-size: 16px;
  }
  .opisaniye__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .opisaniye__right img {
    max-height: 250px;
    border-radius: 10px;
  }
}
.section__contact {
  padding: 60px 0;
}

@media (max-width: 1200px) {
  .section__contact {
    padding: 40px 0;
  }
}
@media (max-width: 850px) {
  .section__contact {
    padding: 0px 0 40px;
  }
}
.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;
}
.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;
background: linear-gradient(309.26deg, #0d2954 -47.33%, #1c5bba 81.98%);
    border: 1px solid #4570af;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    padding: 21px 30px 19px 30px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 10px;
    display: block;
}

.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;
  }
  .table__info{
	font-size: 18px;
	padding: 0 10px;
  }
}