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

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

.category__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;
}
.category__links a {
  color: #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category__links a:hover {
  color: #535353;
}

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

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

.category__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  flex-wrap:wrap;
}

.category__elem {
  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%;
  background: #0946a2;
  border-radius: 15px;
  overflow: hidden;
  max-width:calc(33.333% - 20px);
    justify-content: space-between;
}

.category__top {
  position: relative;
}
.category__top::before {
  position: absolute;
  content: "";
  width: 200%;
  height: 240px;
  top: -100px;
  left: -100px;
  background: #0946a2;
  -webkit-filter: blur(70px);
          filter: blur(70px);
  pointer-events: none;
}

.category__name {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 28.88px;
  line-height: normal;
  color: #fff;
  position: absolute;
  top: 32px;
  left: 25px;
}

.category__img img {
  border-radius: 15px 15px 70px 70px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 40px 50px 50px 50px;
}

.category__char {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 30.8px;
  line-height: normal;
}
.category__char p:first-child {
  color: #ffffff;
}
.category__char p:last-child {
  color: #c5c5c5;
}

.category__bottom {
  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 20px 20px 20px;
  gap: 30px;
}

.category__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 22.67px;
  line-height: normal;
  text-align: center;
}
.category__price p {
  padding: 10px 30px;
  border-radius: 50px;
  width: 100%;
  white-space: nowrap;
}
.category__price p:first-child {
  color: #0946a2;
  background: #ffffff;
}
.category__price p:last-child {
  color: #ffffff;
  background: #afafaf;
}

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

.category__btn {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 31.77px;
  line-height: normal;
  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: 2.89px solid #ffffff;
  border-radius: 15px;
  padding: 38px 40px 36px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

._white {
  color: #0946a2;
  background-color: #fff;
}
._white:hover {
  background-color: transparent;
  color: #fff;
}

._blue {
  color: #fff;
  background-color: transparent;
}
._blue:hover {
  color: #0946a2;
  background-color: #fff;
}

.category__info {
  margin-top: 110px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  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: 30px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
text-align: justify;
text-indent: 30px;
line-height: 1.5;
}

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

@media (max-width: 1650px) {
  .category__body {
    gap: 20px;
  }
  .category__elem{
    max-width:calc(33.333% - 15px);
  }
  .category__bottom {
    padding: 0 15px 15px 15px;
  }
  .category__center {
    gap: 30px;
    padding: 30px 40px 40px 40px;
  }
  .category__price {
    font-size: 18px;
  }
  .category__price p {
    padding: 10px 20px;
  }
  .category__btn {
    padding: 30px 30px 28px;
  }
  .category__char {
    font-size: 26px;
  }
}
@media (max-width: 1250px) {
  .section__category {
    padding: 40px 0;
  }
  .category__links {
    font-size: 26px;
  }
  .category__title {
    margin: 45px 0;
  }
  .category__body {
    gap: 15px;
  }
  .category__elem{
    max-width:calc(33.333% - 10px);
  }
  .category__name {
    font-size: 24px;
    top: 20px;
    left: 20px;
  }
  .category__center {
    gap: 20px;
    padding: 20px;
  }
  .category__btn {
    font-size: 26px;
    padding: 25px 20px 23px;
  }
  .category__info {
    margin-top: 80px;
    font-size: 26px;
    gap: 20px;
  }
  .category__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .category__bottom {
    gap: 20px;
  }
  .category__char {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .category__links {
    font-size: 20px;
  }
  .category__title {
    margin: 30px 0;
  }
  .category__name {
    font-size: 20px;
  }
  .category__center {
    gap: 15px;
  }
  .category__char {
    font-size: 20px;
  }
  .category__price {
    font-size: 16px;
  }
  .category__btns {
    gap: 15px;
  }
  .category__btn {
    font-size: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .category__img img {
    border-radius: 15px 15px 50px 50px;
  }
  .category__info {
    margin-top: 50px;
    font-size: 20px;
    gap: 15px;
  }
}
@media (max-width: 850px) {
  .section__category {
    padding: 30px 0;
  }
  .category__title {
    font-size: clamp(24px, 4.3vw, 36px);
    margin: 15px 0 20px;
  }
  .category__links {
    font-size: 18px;
  }
  .category__name {
    font-size: 18px;
  }
  .category__top::before {
    top: -150px;
  }
  .category__char {
    font-size: 16px;
  }
  .category__center {
    padding: 15px;
  }
  .category__btn {
    font-size: 18px;
    padding: 15px 20px;
  }
  .category__info {
    margin-top: 30px;
    font-size: 18px;
    gap: 10px;
  }
  .category__body {
    gap: 10px;
  }
}
@media (max-width: 650px) {
  .category__body {
    display: -ms-grid;
    display: grid;
    grid-template: 1fr/repeat(auto-fill, minmax(220px, 1fr));
  }
  .category__btn {
    font-size: 16px;
  }
  .category__name {
    font-size: 16px;
    left: 15px;
    top: 15px;
  }
  .category__elem {
    border-radius: 10px;
    max-width:initial;
  }
  .category__center {
    padding: 15px 10px;
  }
  .category__bottom {
    padding: 0 10px 15px;
  }
  .category__price {
    font-size: 14px;
  }
  .category__img img {
    border-radius: 10px 10px 30px 30px;
  }
  .category__links {
    font-size: 16px;
    gap: 8px;
    white-space: nowrap;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .category__info {
    margin-top: 20px;
    font-size: 16px;
  }
}
.section__akin {
  padding: 60px 0 45px;
}

.akin__body {
  position: relative;
}

.akin-slider {
  height: 100%;
  width: 100%;
  max-width: 1900px;
  overflow: hidden;
  position: relative;
}

.akin-slide {
  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;
  width: 100%;
}

.akin-slider__slide {
  width: 100%;
}

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

.akin__arrow {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.akin__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.85;
  min-height: 450px;
}
.akin__image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.swiper-button-prev--akin {
  position: absolute;
  top: 25%;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  background: #0946a2;
  border-radius: 50%;
  z-index: 2;
  left: -10px;
  width: 95px;
  height: 95px;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.swiper-button-next--akin {
  position: absolute;
  top: 25%;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  background: #0946a2;
  border-radius: 50%;
  z-index: 2;
  right: -10px;
  width: 95px;
  height: 95px;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

@media (max-width: 1300px) {
  .akin-slide {
    gap: 20px;
  }
  .akin__arrow {
    top: 20px;
    right: 20px;
  }
  .akin__text {
    font-size: 26px;
  }
  .swiper-button-next--akin,
  .swiper-button-prev--akin {
    width: 60px;
    height: 60px;
    top: 29%;
  }
  .swiper-button-next--akin svg,
  .swiper-button-prev--akin svg {
    width: 40px;
    height: 40px;
  }
  .akin__image {
    min-height: 350px;
  }
}
@media (max-width: 1200px) {
  .section__akin {
    padding: 50px 0 40px;
  }
  .akin__image {
    min-height: 300px;
  }
  .swiper-button-next--akin,
  .swiper-button-prev--akin {
    top: 23%;
  }
}
@media (max-width: 1000px) {
  .akin__text {
    font-size: 20px;
  }
  .akin__date {
    font-size: 20px;
  }
  .akin__image {
    min-height: 280px;
  }
  .swiper-button-next--akin,
  .swiper-button-prev--akin {
    top: 20%;
  }
}
@media (max-width: 850px) {
  .section__akin {
    padding: 30px 0;
  }
  .akin__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .swiper-button-next--akin,
  .swiper-button-prev--akin {
    top: 100px;
  }
  .akin__arrow svg {
    width: 34px;
    height: 34px;
  }
  .akin__image {
    aspect-ratio: auto;
    min-height: 0;
  }
  .akin__image img {
    height: 300px;
  }
}
@media (max-width: 650px) {
  .swiper-button-next--akin,
  .swiper-button-prev--akin {
    top: 70px;
    width: 40px;
    height: 40px;
  }
  .swiper-button-next--akin svg,
  .swiper-button-prev--akin svg {
    width: 24px;
    height: 24px;
  }
  .akin__arrow {
    top: 10px;
    right: 10px;
  }
  .akin__image img {
    height: 220px;
  }
  .akin__text {
    font-size: 16px;
  }
  .akin-slide {
    gap: 15px;
  }
}
.section__contact {
  padding: 45px 0 60px;
}

@media (max-width: 1200px) {
  .section__contact {
    padding: 30px 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;
  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__pole label {
    font-size: 28px;
    margin-top: 10px;
    color: #fff;
}

.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;
  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 #000;
    padding: 10px;
    border-radius: 5px;
}
.marka_{
	font-size: 18px;
}

.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__pole label {
    font-size: 22px;
  }
  .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;
  }
}
