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

.catalog__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: 50px;
}

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

.catalog__body {
  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;
  /*max-width: 1540px;*/
  margin: 0 auto;
}

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

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

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

.catalog__elem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 40px 25px 40px 50px;
  opacity: 0;
}
.catalog__elem:nth-child(odd) {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.catalog__elem:nth-child(even) {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.catalog__elem::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  top: 0;
  left: 0;
  background: rgba(9, 70, 162, 0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog__elem:nth-child(4n+1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 48%;
          flex: 1 1 48%;
}
.catalog__elem:nth-child(4n) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 48%;
          flex: 1 1 48%;
}
.catalog__elem:nth-child(4n+2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 38%;
          flex: 1 1 38%;
}
.catalog__elem:nth-child(4n+3) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 38%;
          flex: 1 1 38%;
}
.catalog__elem:hover::before {
  opacity: 1;
}
.catalog__elem:hover .catalog__arrow {
  opacity: 1;
}

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

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

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

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

.catalog__subtitle {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 31.39px;
  line-height: normal;
  color: #000;
}

.catalog__price {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 17.44px;
  line-height: 182%;
  color: #535353;
  margin-top: 30px;
  padding: 5px 15px;
  background: #ffffff;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.catalog__right {
  aspect-ratio: 1/0.73;
}
.catalog__right img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 35px;
}

.catalog__subtext {
  margin-top: 10px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20.93px;
  line-height: normal;
  color: #000;
}

@media (max-width: 1400px) {
  .catalog__elem {
    padding: 30px 20px 30px 30px;
  }
  .catalog__subtitle {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .section__plus {
    padding: 50px 0 30px;
  }
  .catalog__inner {
    gap: 30px;
  }
  .catalog__links {
    font-size: 26px;
  }
  .catalog__body {
    gap: 20px;
  }
  .catalog__elem {
    padding: 20px;
  }
  .catalog__subtitle {
    font-size: 20px;
  }
  .catalog__right img {
    width: 180px;
    height: auto;
    border-radius: 25px;
  }
  .catalog__arrow {
    top: 20px;
    right: 20px;
  }
  .catalog__price {
    margin-top: 20px;
  }
  .catalog__subtext {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .catalog__links {
    font-size: 20px;
  }
  .catalog__elems {
    gap: 15px;
  }
  .catalog__elem {
    padding: 15px;
  }
  .catalog__right img {
    border-radius: 15px;
    width: 140px;
  }
  .catalog__arrow {
    top: 20px;
    right: 20px;
  }
  .catalog__arrow svg {
    width: 40px;
    height: 40px;
  }
  .catalog__price {
    font-size: 14px;
    padding: 5px 10px;
  }
  .catalog__subtitle {
    font-size: 18px;
  }
  .catalog__subtext {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .section__catalog {
    padding: 30px 0;
  }
  .catalog__links {
    font-size: 18px;
  }
  .catalog__inner {
    gap: 20px;
  }
  .catalog__body {
    gap: 15px;
  }
  .catalog__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .catalog__card {
    gap: 15px;
  }
  .catalog__arrow {
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 750px) {
  .catalog__body {
    margin: 0;
  }
  .catalog__elems {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }
  .catalog__elems .catalog__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .catalog__right img {
    width: 100px;
  }
}
.section__contact {
  padding: 35px 0 60px;
}

@media (max-width: 1200px) {
  .section__contact {
    padding: 30px 0 40px;
  }
}
@media (max-width: 850px) {
  .section__contact {
    padding: 30px 0;
  }
}
.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;
  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__chekbox {
  margin-top: 5px;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.contact__chekbox+label {
  display: inline-flex;
  user-select: none;
flex-wrap: wrap;
}

.contact__chekbox+label::before {
  content: '';
  display: inline-block;
  width: 1.3em;
  min-width: 1.3em;
  height: 1.3em;
  border: 2px solid #000;
  border-radius: 0em;
  margin-right: 0.5em;
  position: relative;
}

.contact__chekbox:checked+label::after {
    content: "✔️️️";
    position: absolute;
    margin: 0.20em 0;
}


.contact__pole label{
  font-size: 26px;
  margin-top: 10px;
  color: #000;
}
.labelvp {
	font-size: 28px;
	margin-bottom:10px;
	color: #000;
}

.divvp {
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 5px;
}
.marka_{
	font-size: 24px;
}

.arenda_spoler {
    padding: 5px 15px;
    font-size: 28px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 5px;
    margin: 0 20px;
    cursor: pointer;
    color: #fff;
}

.hide__pole{
   display:none;
}



.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__select, .contact__input {
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 16px;
  }
  
  .contact__pole label {
    font-size: 22px;
    display: flex;
    flex-wrap: nowrap;
  }

  .marka_ {
    font-size: 20px;
  }
  
  .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__services {
  padding: 60px 0 70px;
}

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

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

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

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

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

@media (max-width: 1200px) {
  .section__services {
    padding: 50px 0;
  }
  .services__inner {
    gap: 40px;
  }
  .services__elem {
    font-size: 30px;
    padding: 20px 40px;
  }
}
@media (max-width: 1000px) {
  .services__inner {
    gap: 30px;
  }
  .services__elem {
    font-size: 24px;
    padding: 20px 30px;
  }
}
@media (max-width: 850px) {
  .section__services {
    padding: 30px 0;
  }
  .services__inner {
    gap: 15px;
  }
  .services__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .services__body {
    gap: 15px;
  }
  .services__elem {
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
  }
}
@media (max-width: 650px) {
  .services__body {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr;
        grid-template: 1fr/1fr;
    gap: 10px;
  }
  .services__elem {
    font-size: 16px;
  }
}
.section__plus {
  padding: 50px 0;
}

.plus__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: 110px;
}

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

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

.plus__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px 130px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.plus__elem {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  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: 10px;
}
.plus__elem:nth-last-child(2) {
  margin-left: auto;
}
.plus__elem:nth-last-child(1) {
  margin-right: auto;
}

.plus__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.plus__text {
  text-align: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 138%;
  text-align: center;
  color: #535353;
}

@media (max-width: 1200px) {
  .section__plus {
    padding: 40px 0;
  }
  .plus__inner {
    gap: 80px;
  }
  .plus__body {
    gap: 40px 80px;
  }
  .plus__text {
    font-size: 26px;
  }
  .plus__img img {
    max-width: 80px;
  }
}
@media (max-width: 1000px) {
  .plus__inner {
    gap: 50px;
  }
  .plus__text {
    font-size: 20px;
  }
  .plus__img img {
    max-width: 60px;
  }
  .plus__body {
    gap: 30px 60px;
  }
}
@media (max-width: 850px) {
  .section__plus {
    padding: 30px 0;
  }
  .plus__inner {
    gap: 30px;
  }
  .plus__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .plus__text {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .plus__inner {
    gap: 20px;
  }
  .plus__body {
    gap: 30px;
  }
  .plus__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .plus__elem:nth-last-child(2) {
    margin: 0;
  }
  .plus__elem:nth-last-child(1) {
    margin: 0 auto;
  }
  .plus__text {
    font-size: 16px;
  }
  .plus__img img {
    max-width: 50px;
  }
}
.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;
  }
}

.card__text picture {
text-indent: 0;
}