@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  box-sizing: border-box;
  /* Customize scrollbar */
}
@media (min-width: 1024px) {
  *::-webkit-scrollbar {
    width: 8px;
  }
  *::-webkit-scrollbar-track {
    background: #ffffff;
  }
  *::-webkit-scrollbar-thumb {
    background-color: #5fd8ff;
    border-radius: 4px;
  }
  *::-webkit-scrollbar-thumb:hover {
    background-color: #31ceff;
  }
  *::-webkit-scrollbar-thumb:active {
    background-color: #00baf5;
  }
}

body {
  margin: 0;
  position: relative;
}

body,
input,
textarea {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 29px;
  font-weight: 500;
  color: #273146;
}

h1,
h2,
h3,
.footer__description,
.products__cost,
.modal__cost,
.modal__price,
.button-action,
.modal__counter,
button,
h4,
p {
  margin: 0;
}

h1 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 700;
}
@media (max-width: 1439px) {
  h1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
  }
}

h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}

h3, .footer__description, .products__cost, .modal__cost, .modal__price, .button-action, .modal__counter, button {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

img {
  object-fit: contain;
}

a {
  text-decoration: none;
  color: #273146;
  transition: all 300ms ease-in;
}
a:hover {
  color: #31ceff;
}
a:active {
  color: #00baf5;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header,
section {
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  header,
  section {
    margin-bottom: 16px;
  }
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease-in;
}
button:disabled {
  cursor: default;
}
@media (max-width: 1439px) {
  button {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}

input {
  border: 1px solid #e3eaf6;
  transition: all 300ms ease-in;
}
input.just-validate-error-field {
  border-color: #e16464;
}
input:hover {
  border-color: #5fd8ff;
}
input:focus-visible {
  outline: none;
  border-color: #00baf5;
}
input::placeholder {
  color: #c9c9c9;
}
@media (max-width: 1439px) {
  input::placeholder {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}
@media (max-width: 1439px) {
  input {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}
input[type=text] {
  width: 100%;
  padding: 23px 32px;
  border-radius: 16px;
  background: #ffffff;
}
@media (max-width: 1439px) {
  input[type=text] {
    border-radius: 8px;
    padding: 15px 24px;
  }
}
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=radio] {
  opacity: 0;
  cursor: pointer;
}
input[type=radio]:checked ~ .input-radio {
  border-color: #5fd8ff;
}
input[type=radio]:checked ~ .input-radio:after {
  display: block;
}
input[type=checkbox] {
  opacity: 0;
  cursor: pointer;
}
input[type=checkbox]:checked ~ .input-checkbox {
  border-color: #5fd8ff;
}
input[type=checkbox]:checked ~ .input-checkbox:after {
  display: block;
}

.input-radio {
  position: relative;
  height: 32px;
  width: 32px;
  border: 1px solid #e3eaf6;
  background: #ffffff;
  border-radius: 50%;
  transition: all 300ms ease-in;
}
.input-radio:hover {
  border-color: #31ceff;
}
.input-radio:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5fd8ff;
}

.input-checkbox {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e3eaf6;
  transition: all 300ms ease-in;
}
.input-checkbox:hover {
  border-color: #31ceff;
}
.input-checkbox:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #5fd8ff;
}

.text-bold-18, .modal__text-bold {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}

.text-regular-18 {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.text-regular-16 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.text-regular-14, .just-validate-error-label {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.text-regular-12 {
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
}

.text-medium-16 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.text-medium-14 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.container {
  max-width: 1696px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1919px) {
  .container {
    max-width: 1408px;
  }
}
@media (max-width: 1439px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: none;
    margin: 0 16px;
    width: auto;
  }
}

.card, .footer__card, .order__card, .companies__card, .features__card, .acquisition__card, .products__card, .shipment__card {
  padding: 40px 56px 56px;
  border-radius: 24px;
  background: #f2fbff;
}
@media (max-width: 1439px) {
  .card, .footer__card, .order__card, .companies__card, .features__card, .acquisition__card, .products__card, .shipment__card {
    padding: 16px;
  }
}

.icon {
  height: 32px;
  width: 32px;
  cursor: pointer;
}
.icon path {
  stroke: #273146;
  transition: all 300ms ease-in;
}
.icon:hover path {
  stroke: #31ceff;
}
.icon:active path {
  color: #00baf5;
}

.show-more {
  position: absolute;
  top: 49px;
  right: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 300ms ease-in;
}
@media (max-width: 1439px) {
  .show-more {
    top: 17px;
    right: 16px;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .show-more {
    position: static;
    margin-bottom: 16px;
  }
}
.expanded .show-more svg {
  transform: rotate(180deg);
}
.show-more svg {
  width: 24px;
  height: 24px;
  transition: all 300ms ease-in;
}
.show-more path {
  stroke: #273146;
  transition: all 300ms ease-in;
}
.show-more:hover path {
  stroke: #31ceff;
}
.show-more:active path {
  color: #00baf5;
}
.show-more:hover {
  color: #31ceff;
}
.show-more:active {
  color: #00baf5;
}

.just-validate-error-label {
  position: absolute;
  top: calc(100% + 2px);
  left: 24px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #e16464 !important;
}
@media (max-width: 1439px) {
  .just-validate-error-label {
    font-size: 12px;
    line-height: 19px;
  }
}

.personal-data {
  color: #5fd8ff;
  cursor: pointer;
  transition: all 300ms ease-in;
  border-bottom: 0;
}
.personal-data:hover {
  color: #31ceff;
  border-bottom: 1px solid #31ceff;
}
.personal-data:active {
  color: #00baf5;
}

.button-primary {
  border-radius: 16px;
  padding: 24px 32px;
  background: #5fd8ff;
  color: #ffffff;
  border: 0;
}
@media (max-width: 1439px) {
  .button-primary {
    padding: 16px 32px;
  }
}
.button-primary:hover {
  background: #31ceff;
}
.button-primary:active {
  background: #00baf5;
}
.button-primary:disabled {
  background: #f2f5f8;
  color: #c9c9c9;
}

.button-action, .modal__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  width: 53px;
  border: 1px solid #5fd8ff;
  border-radius: 8px;
  background: transparent;
  font-weight: 400;
}
@media (max-width: 767px) {
  .button-action, .modal__counter {
    height: 40px;
    width: 40px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }
}
.button-action__icon {
  height: 24px;
  width: 24px;
}
.button-action:disabled .button-action__icon, .modal__counter:disabled .button-action__icon {
  opacity: 0.2;
}
.button-action:hover, .modal__counter:hover {
  border-color: #31ceff;
}
.button-action:active, .modal__counter:active {
  border-color: #00baf5;
}
.button-action:disabled, .modal__counter:disabled {
  border: 1px solid #f2f5f8;
  background: #f2f5f8;
}

.button-close svg {
  transition: all 300ms ease-in;
  width: 24px;
  height: 24px;
  stroke: #273146;
}
.button-close:hover svg {
  stroke: #31ceff;
}
.button-close:active svg {
  stroke: #00baf5;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  transition: background 0.3s ease-in;
}
.modal--open {
  display: block;
  z-index: 1;
  animation: changeBackgroundColor forwards 0.3s linear;
}
@keyframes changeBackgroundColor {
  100% {
    background: rgba(95, 216, 255, 0.29);
  }
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100vh - 160px);
  padding: 40px 56px 56px;
  border-radius: 24px;
  background: #ffffff;
  overflow: auto;
}
#modal-success .modal__container, #modal-error .modal__container {
  width: fit-content;
}
@media (max-width: 767px) {
  #modal-success .modal__container, #modal-error .modal__container {
    width: calc(100% - 32px);
  }
}
#modal-personal-data .modal__container {
  height: calc(100vh - 160px);
  overflow: hidden;
}
@media (max-width: 1023px) {
  #modal-personal-data .modal__container {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 1439px) {
  .modal__container {
    max-height: calc(100vh - 80px);
    padding: 24px;
  }
}
@media (max-width: 1023px) {
  .modal__container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .modal__container {
    width: calc(100% - 32px);
    padding: 16px;
  }
}
.modal__page {
  display: none;
}
.modal__page--show {
  display: block;
}
.modal__page--order-first {
  width: 1008px;
}
@media (max-width: 1439px) {
  .modal__page--order-first {
    width: 944px;
  }
}
@media (max-width: 1023px) {
  .modal__page--order-first {
    width: 672px;
  }
}
@media (max-width: 767px) {
  .modal__page--order-first {
    width: 100%;
  }
}
.modal__page--order-second {
  width: 720px;
}
@media (max-width: 1439px) {
  .modal__page--order-second {
    width: 672px;
  }
}
@media (max-width: 767px) {
  .modal__page--order-second {
    width: 100%;
  }
}
#modal-personal-data .modal__page {
  display: block;
  width: 832px;
}
@media (max-width: 1023px) {
  #modal-personal-data .modal__page {
    width: 672px;
  }
}
@media (max-width: 767px) {
  #modal-personal-data .modal__page {
    width: 100%;
  }
}
#modal-personal-data .modal__page .button-close {
  padding: 8px;
}
@media (max-width: 767px) {
  #modal-personal-data .modal__page .button-close {
    padding: 0;
  }
}
#modal-success .modal__page, #modal-error .modal__page {
  display: block;
  width: 432px;
}
@media (max-width: 1439px) {
  #modal-success .modal__page, #modal-error .modal__page {
    width: 308px;
  }
}
@media (max-width: 767px) {
  #modal-success .modal__page, #modal-error .modal__page {
    width: calc(100% - 32px);
  }
}
#modal-success .modal__page .button-close, #modal-error .modal__page .button-close {
  display: none;
}
#modal-success .modal__page .modal__header, #modal-error .modal__page .modal__header {
  margin-bottom: 16px;
}
#modal-success .modal__page .modal__title, #modal-success .modal__page p, #modal-error .modal__page .modal__title, #modal-error .modal__page p {
  text-align: center;
}
#modal-success .modal__page p, #modal-error .modal__page p {
  margin-bottom: 12px;
}
@media (max-width: 1439px) {
  #modal-success .modal__page p, #modal-error .modal__page p {
    font-size: 16px;
    line-height: 26px;
  }
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  .modal__header {
    gap: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .modal__header {
    gap: 8px;
  }
}
.modal__title-container {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .modal__title-container {
    gap: 8px;
  }
}
.modal__title {
  max-width: 522px;
  width: 100%;
}
#modal-success .modal__title, #modal-error .modal__title {
  max-width: 100%;
}
@media (max-width: 1439px) {
  .modal__title {
    max-width: 400px;
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 1023px) {
  .modal__title {
    max-width: 432px;
  }
}
@media (max-width: 767px) {
  #modal-personal-data .modal__title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}
.modal__text-total {
  color: #c9c9c9;
  font-weight: 400;
}
.modal__list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 20px;
  max-height: calc(100vh - 458px);
}
@media (max-width: 1439px) {
  .modal__list {
    max-height: calc(100vh - 278px);
  }
}
@media (max-width: 1023px) {
  .modal__list {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .modal__list {
    max-height: calc(100vh - 262px);
  }
}
.modal__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
}
@media (max-width: 1439px) {
  .modal__item {
    gap: 16px;
    padding: 16px 0;
  }
}
.modal--open .modal__item {
  animation: fadeIn 0.5s ease forwards;
}
.modal__item:not(:last-child) {
  border-bottom: 1px solid #e3eaf6;
}
.modal__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2fbff;
  border-radius: 16px;
  height: min-content;
}
.modal__image {
  height: 112px;
  width: 112px;
}
@media (max-width: 1439px) {
  .modal__image {
    height: 96px;
    width: 96px;
  }
}
@media (max-width: 767px) {
  .modal__image {
    height: 80px;
    width: 80px;
  }
}
.modal__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .modal__text {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}
.modal__description {
  display: grid;
  grid-template: "a b" "c c"/1fr 1fr;
  column-gap: 32px;
  row-gap: 16px;
}
@media (max-width: 1439px) {
  .modal__description {
    grid-template: "a a" "c b"/1fr 1fr;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .modal__description {
    align-items: center;
    height: 80px;
    row-gap: 8px;
    font-size: 14px;
    line-height: 22px;
  }
}
.modal__item-title {
  grid-area: a;
}
.modal__volume {
  grid-area: b;
}
.modal__cost {
  grid-area: c;
}
@media (max-width: 1439px) {
  .modal__cost {
    font-size: 18px;
    line-height: 21px;
  }
}
.modal__actions {
  display: flex;
  gap: 8px;
}
.modal__counter {
  text-align: center;
  padding: 0;
  border: 1px solid #e9e9e9;
}
.modal__inputs-row {
  display: grid;
  grid-template: "a b" "c c"/1fr 1fr;
  column-gap: 16px;
  row-gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .modal__inputs-row {
    grid-template: "a" "b" "c"/1fr;
  }
}
.modal__inputs-row .modal__input-container:nth-child(1) {
  grid-area: a;
}
.modal__inputs-row .modal__input-container:nth-child(2) {
  grid-area: b;
}
.modal__inputs-row .modal__input-container:nth-child(3) {
  grid-area: c;
}
.modal__input-container {
  position: relative;
}
.modal__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.modal__delivery {
  position: relative;
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}
.modal__delivery .just-validate-error-label {
  top: calc(100% - 4px);
}
@media (max-width: 767px) {
  .modal__delivery {
    flex-direction: column;
    gap: 8px;
  }
}
.modal__delivery label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.modal__checkboxes li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 16px;
}
.modal__button {
  margin-top: 12px;
  width: 100%;
}
#modal-error .modal__button {
  background-color: #ff7979;
}
#modal-error .modal__button:hover {
  background-color: #f06a6a;
}
#modal-error .modal__button:active {
  background-color: #e16464;
}
@media (max-width: 1439px) {
  .modal__button {
    margin-top: 0;
  }
}
.modal__description-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-height: calc(100vh - 364px);
  padding-right: 20px;
  overflow-y: auto;
}
@media (max-width: 1439px) {
  .modal__description-list {
    max-height: calc(100vh - 288px);
  }
}
@media (max-width: 1023px) {
  .modal__description-list {
    padding-right: 0;
    max-height: calc(100vh - 208px);
  }
}
@media (max-width: 767px) {
  .modal__description-list {
    max-height: calc(100vh - 178px);
  }
}
.modal__description-item {
  max-width: 720px;
}
@media (max-width: 767px) {
  .modal__description-item {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}
.modal__description-title {
  display: inline;
}
@media (max-width: 767px) {
  .modal__description-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}

.header {
  z-index: 1;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 1439px) {
  .header {
    margin-top: 40px;
  }
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 56px;
  background: #f2fbff;
  border-radius: 24px;
}
@media (max-width: 1439px) {
  .header__row {
    padding: 16px 24px;
  }
}
.header__nav-list {
  display: flex;
  gap: 32px;
}
@media (max-width: 1439px) {
  .header__nav-list {
    display: none;
  }
}
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__logo img {
  height: 65px;
  width: 61px;
  margin-bottom: 8px;
}
@media (max-width: 1439px) {
  .header__logo img {
    height: 40px;
    width: 36px;
    margin-bottom: 0;
  }
}
.header__logo span {
  font-size: 27px;
  font-weight: 600;
  color: #5fd8ff;
}
@media (max-width: 1439px) {
  .header__logo span {
    display: none;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 400;
}
@media (max-width: 1439px) {
  .header__right {
    gap: 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }
}
.header__right-text {
  display: block;
}
@media (max-width: 767px) {
  .header__right-text {
    display: none;
  }
}
.header__right-text--mobile {
  display: none;
}
@media (max-width: 767px) {
  .header__right-text--mobile {
    display: block;
  }
}
.header__socials {
  display: flex;
  gap: 16px;
}
.header__socials a {
  display: flex;
}

.shipment__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 32px;
}
@media (max-width: 1439px) {
  .shipment__row {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 302px;
    gap: 16px;
  }
}
.shipment__card {
  position: relative;
}
@media (max-width: 1439px) {
  .shipment__card {
    padding: 16px 24px;
  }
}
.shipment__card:nth-child(1) .shipment__title {
  margin-bottom: 16px;
}
.shipment__card:nth-child(2) .shipment__title {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .shipment__card:nth-child(2) .shipment__title {
    max-width: 148px;
  }
}
@media (max-width: 1439px) {
  .shipment__description {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .shipment__description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}
.shipment__text-free {
  color: #5fd8ff;
  text-transform: uppercase;
}
.shipment__image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 468px;
  width: 468px;
}
@media (max-width: 1919px) {
  .shipment__image {
    height: 334px;
    width: 334px;
  }
}

.products__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products__title {
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  .products__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .products__title {
    margin-bottom: 8px;
  }
}
.products__chevron {
  width: 24px;
  height: 24px;
}
.products__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  transition: all 300ms ease-in;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1919px) {
  .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1439px) {
  .products__list {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .products__list {
    gap: 4px;
  }
}
@media (max-width: 767px) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products__item {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  transition: all 300ms ease-in;
  padding: 24px;
  animation: fadeIn 0.5s ease forwards;
}
@media (max-width: 1439px) {
  .products__item {
    padding: 8px 8px 24px;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .products__item {
    padding: 8px 8px 16px;
  }
}
.products__item--show {
  display: flex;
}
.products__image {
  width: 100%;
  height: 100%;
  max-height: 356px;
}
@media (max-width: 1439px) {
  .products__image {
    max-height: 162px;
  }
}
@media (max-width: 1439px) {
  .products__description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}
.products__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1439px) {
  .products__price {
    justify-content: flex-start;
    gap: 24px;
  }
}
@media (max-width: 1439px) {
  .products__cost {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}
@media (max-width: 1439px) {
  .products__volume {
    order: 1;
  }
}
.products__button {
  margin: 32px auto 0;
  width: 544px;
}
@media (max-width: 1439px) {
  .products__button {
    margin: 16px auto 0;
    width: 234px;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}

.acquisition__title {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  .acquisition__title {
    margin-bottom: 16px;
  }
}
.acquisition__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1919px) {
  .acquisition__list {
    gap: 16px;
  }
}
@media (max-width: 1439px) {
  .acquisition__list {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .acquisition__list {
    grid-template-columns: 1fr;
  }
}
.acquisition__item {
  text-align: center;
  border-radius: 16px;
  background: #ffffff;
}
.acquisition__rectangle {
  position: relative;
  height: 200px;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background: #e1f4ff;
}
@media (max-width: 1439px) {
  .acquisition__rectangle {
    padding: 8px;
    height: 92px;
  }
}
@media (max-width: 767px) {
  .acquisition__rectangle {
    height: 76px;
  }
}
.acquisition__image {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 192px;
  max-width: 324px;
}
@media (max-width: 1439px) {
  .acquisition__image {
    max-height: 100px;
    max-width: 136px;
  }
}
@media (max-width: 767px) {
  .acquisition__image {
    max-width: calc(100% - 16px);
    max-height: 84px;
  }
}
.acquisition__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 48px 24px 40px;
}
@media (max-width: 1439px) {
  .acquisition__text {
    padding: 24px 8px 16px;
  }
}
@media (max-width: 1439px) {
  .acquisition__item-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}
@media (max-width: 1439px) {
  .acquisition__description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}

.features__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.features__title {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  .features__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .features__title {
    margin-bottom: 8px;
  }
}
.features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1439px) {
  .features__list {
    gap: 16px;
    grid-template-columns: 1fr;
  }
}
.features__item {
  display: none;
  gap: 16px;
  animation: fadeIn 0.5s ease forwards;
}
@media (max-width: 767px) {
  .features__item {
    gap: 8px;
  }
}
.features__item--show {
  display: flex;
}
@media (max-width: 767px) {
  .features__item--show {
    flex-direction: column;
  }
}
.features__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 72px 0;
  background: #ffffff;
  border-radius: 16px;
  height: min-content;
}
@media (max-width: 1439px) {
  .features__image-container {
    padding: 32px 0;
  }
}
.features__image {
  height: 256px;
  width: 256px;
}
@media (max-width: 1439px) {
  .features__image {
    height: 189px;
    width: 174px;
  }
}
.features__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background: #ffffff;
  height: fit-content;
  border-radius: 16px;
}
@media (max-width: 1439px) {
  .features__text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }
}
.features__prop-list {
  display: flex;
  flex-direction: column;
}
.features__prop-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.features__prop-item:not(:last-child) {
  border-bottom: 1px solid #e3eaf6;
}

.companies__title {
  text-align: center;
  margin-bottom: 32px;
}
.companies__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1439px) {
  .companies__list {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .companies__list {
    grid-template-columns: 1fr;
  }
}
.companies__item {
  position: relative;
  text-align: center;
  border-radius: 16px;
  background: #ffffff;
}
.companies__rectangle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 264px;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background: #e1f4ff;
}
@media (max-width: 1439px) {
  .companies__rectangle {
    height: 112px;
    padding: 8px;
  }
}
.companies__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
@media (max-width: 1439px) {
  .companies__text {
    padding: 8px 0 16px;
  }
}
@media (max-width: 767px) {
  .companies__text {
    padding: 8px 16px 16px;
  }
}
@media (max-width: 1439px) {
  .companies__item-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}
@media (max-width: 1439px) {
  .companies__description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}
.companies__image {
  max-width: 324px;
  max-height: 216px;
}
@media (max-width: 1439px) {
  .companies__image {
    max-width: 280px;
    max-height: 96px;
  }
}

.order__card {
  display: grid;
  grid-template-columns: 544px 1fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1439px) {
  .order__card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .order__card {
    gap: 16px;
  }
}
.order__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1439px) {
  .order__text {
    max-width: 470px;
    gap: 8px;
  }
}
@media (max-width: 1439px) {
  .order__description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}
.order__form {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1439px) {
  .order__form {
    gap: 8px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .order__form {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
}
.order__input-group {
  position: relative;
  width: 100%;
}
.order__button {
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  .order__button {
    width: 100%;
  }
}

.footer {
  margin-bottom: 80px;
}
@media (max-width: 1439px) {
  .footer {
    margin-bottom: 40px;
  }
}
.footer__card {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1439px) {
  .footer__card {
    padding-bottom: 16px;
  }
}
.footer__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .footer__text {
    width: 50%;
  }
  .footer__text:nth-child(2n) {
    align-items: flex-end;
  }
  .footer__text:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .footer__text {
    width: 100%;
  }
  .footer__text:not(:first-child), .footer__text:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 24px;
  }
  .footer__text:nth-child(2n) {
    align-items: flex-start;
  }
}
.footer__list-title {
  margin-bottom: 8px;
}
@media (max-width: 1439px) {
  .footer__list-title {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  .footer__list-title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
}
@media (max-width: 1439px) {
  .footer__description {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}
.footer__text-grey {
  color: #c9c9c9;
}
.footer__socials {
  display: flex;
  gap: 16px;
  height: 32px;
}

.not-found {
  position: relative;
  height: 100vh;
  background: #e1f4ff;
}
.not-found__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not-found__image-container {
  display: flex;
  justify-content: center;
  height: 400px;
  width: 1106px;
  margin-bottom: 72px;
}
@media (max-width: 1439px) {
  .not-found__image-container {
    height: 256px;
    width: 711px;
  }
}
@media (max-width: 767px) {
  .not-found__image-container {
    height: 117px;
    width: 324px;
  }
}
.not-found__image {
  width: 100%;
  height: 100%;
}
.not-found__text {
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  .not-found__text {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .not-found__text {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
  }
}
.not-found__button {
  width: 256px;
}
@media (max-width: 1439px) {
  .not-found__button {
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */
