.hero {
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.40) 100%), url('../images/snd.jpg') center/cover no-repeat, lightgray -1.778px -3.792px / 100.247% 101.699% no-repeat;;
}

.hero__container {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 150px);
}

.hero__benefits {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px 80px;
  border-radius: 5px;
  border: 1px solid var(--line, #E1EAFF);
  background: rgba(255, 255, 255, 0.90);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  margin-bottom: -65px;
  flex-wrap: wrap;
}

.hero__benefits-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero__benefits-num {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 40px;
  font-weight: 700;
}

.hero__benefits-desc {
  font-size: 16px;
  color: #0F0F0F;
  max-width: 100px;
}

.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hero__block {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: #fff;
}

.hero__title {
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.hero__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px 0 16px;
}

.hero__form {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  background: #F5F9FA;
  border-radius: 5px;
  max-width: 450px;
}

.hero__form-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin-bottom: 25px;
}

.hero__form-col span {
  font-size: 16px;
  color: #6E7494;
}

.hero__form-col input {
  color: #0F0F0F;
  border: none;
  outline: none;
  border-bottom: 1px solid #6E7494;
  font-size: 18px;
  background: transparent;
  padding: 12px 0;
}

.hero__form-col input::placeholder {
  color: #0F0F0F;
}

.hero__form-submit {
  background: linear-gradient(142deg, #0C437A 0%, #177AC8 100%);
  border: solid 1px #177AC8;
  -webkit-text-fill-color: #fff;
  cursor: pointer;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 25px;
}

.hero__form-submit::after {
  content: url('../images/arrow-main-white.svg');
  width: 10px;
  transition: .2s;
}

.hero__form-submit:hover::after {
  transform: rotate(-45deg);
}

.benefits__container {
  padding-top: 150px;
}

.title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
}

.benefits__items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 20px;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 4px 40px 0px #1A254312;
  border-radius: 5px;
  border-top: 5px solid #177AC8;
  padding: 20px 30px;
}

.benefits__item-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F5F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.serv__container {
  padding-top: 100px;
}

.serv__items {
  display: flex;
  flex-direction: column;
}

.serv__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #E1EAFF;
  transition: .2s ease-in-out;
}

.serv__item:nth-child(1) {
  border-top: 1px solid #E1EAFF;
}

.serv__item-arr {
  width: 30px;
  height: 30px;
  transition: .2s ease-in-out;
  transform: rotate(45deg);
}

.serv__item-arr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.serv__item-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 200px;
  width: 300px;
  height: 150px;
  opacity: 0;
  transition: .2s ease-in-out;
}

.serv__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.serv__item:hover {
  background: #177AC8;
  color: #fff;
}
.serv__item:hover .serv__item-img {
  opacity: 1;
}

.serv__item:hover .serv__item-arr {
  filter: invert(1);
}

.bus__container {
  padding-top: 100px;
}

.bus__items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 20px;
}

.bus__item {
  border: 1px solid rgb(225, 234, 255);
  border-radius: 5px;
  overflow: hidden;
}

.bus__item-img {
  position: relative;
}

.bus__item-img::before {
  content: '';
  display: block;
  padding-top: 45%;
}

.bus__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bus__item-block {
  display: flex;
  flex-direction: column;
  padding: 20px;
  row-gap: 15px;
}

.bus__item-name {
  font-weight: 700;
  font-size: 20px;
}

.bus__item-info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.bus__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}

.bus__item-char {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bus__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgb(225, 234, 255);
}

.bus__item-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.bus__item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #177AC8;
  font-size: 14px;
}

.cargo__container {
  padding-top: 100px;
}

.cargo__items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 50px;
}

.cargo__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: .2s ease-in-out;
}

.cargo__item:hover {
  color: #177AC8;
}

.revs__container {
  padding-top: 100px;
}

.revs__title {
  margin-bottom: 0!important;
}

.revs__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
}

.revs__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revs__arrow {
  display: flex;
  width: 40px;
  height: 40px;
}

.revs__arrow:nth-child(1) {
  transform: rotate(180deg);
}

.revs__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.revs__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgb(225, 234, 255);
}

.revs__slide-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.revs__slide-elems {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
}

.revs__slide-elem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(110, 116, 148);
  background: rgb(225, 234, 255);
  padding: 5px 10px;
  font-size: 12px;
}

.revs__slide-elem img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.revs__slide-text {
  opacity: .8;
  font-size: 14px;
  margin-bottom: 30px;
}

.revs__slide-more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  transition: .2s ease-in-out;
}

.revs__slide-more:hover {
  color: #177AC8;
}

.feed {
  background-image: linear-gradient(174deg, #0C437A 0%, #177AC8 100%);
  margin-top: 100px;
}

.feed__container {
  padding-top: 100px;
}

.feed__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.feed__left {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 400px;
  flex-shrink: 0;
}
.feed__title {
  margin-bottom: 20px!important;
}
.feed__title,
.feed__subtitle {
  color: #fff;
}

.feed__right {
  width: 100%;
}

.feed__form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 40px 20px;
  margin-bottom: 30px;
}

.feed__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.feed__form-col:nth-child(3) {
  grid-column: 2 span;
}

.feed__form-col span {
  color: #fff;
  font-size: 14px;
}

.feed__form-col input,
.feed__form-col textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding: 12px 0;
  color: #E1EAFF;
}

.feed__form-col input::placeholder,
.feed__form-col textarea::placeholder {
  color: #E1EAFF;
}

.feed__form-col textarea {
  height: 100px;
}

.feed__submit {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  padding: 12px 20px;
}

.feed__img {
  height: 500px;
  width: 100%;
  margin-bottom: -250px;
  margin-top: 50px;
}

.feed__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  margin-top: 350px;
}

.feed__text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  background: rgb(245, 249, 250);
  border-radius: 5px;
}

.feed__text p,
.feed__text ul li {
  opacity: .8;
}

.feed__text ul li {
  list-style-type: disc;
  list-style-position: inside;
}

@media (max-width: 1440px) {
  .hero__title {
    max-width: 600px;
  }
  .hero__form-title {
    font-size: 20px;
  }
  .hero__form {
    max-width: 300px;
  }
}

@media (max-width: 1248px) {
  .benefits__items {
    grid-template-columns: repeat(2,1fr);
  }
  .bus__items {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 992px) {
  .hero__container {
    height: unset;
  }
  .hero__block {
    position: static;
  }
  .hero__wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .hero__form {
    max-width: unset;
    width: 100%;
  }
  .hero__block {
    width: 100%;
  }
  .hero__title {
    max-width: unset;
    font-size: 36px;
    padding-top: 100px;
    text-align: center;
  }
  .hero__benefits {
    border-radius: 0 0 5px 5px;
    margin-bottom: 50px;
  }
  .benefits__container {
    padding-top: 80px;
  }
  .title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .serv__item-img {
    position: static;
    transform: unset;
    top: unset;
    right: unset;
    height: 80px;
    width: 200px;
    opacity: 1;
  }
  .serv__item-arr {
    display: none;
  }
  .cargo__items {
    grid-template-columns: repeat(2,1fr);
  }
  .feed__img {
    display: none;
  }
  .text {
    margin-top: 80px;
  }
  .feed__container {
    padding: 50px 0;
  }
  .feed__block {
    flex-direction: column;
  }
  .feed__left {
    width: 100%;
  }
  .feed__title {
    margin-bottom: 0!important;
  }
}

@media (max-width: 768px) {
  .benefits__items {
    grid-template-columns: 1fr;
  }
  .bus__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cargo__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .serv__item-title {
    width: 240px;
    margin-right: 10px;
  }
  .feed__form {
    grid-template-columns: 1fr;
  }
  .feed__form-col:nth-child(3) {
    grid-column: 1 span;
  }
}