@import url("reset.css");

.section-main {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  background: white;
  flex-direction: column;
}
.section-main .container {
  margin: 0 auto;
  box-sizing: border-box;
  position: fixed;
  display: flex;
  width: 100%;
  max-width: 1253px;
  padding-top: 3px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
}
.section-main .header-container {
  margin: 0 auto;
  box-sizing: border-box;
  position: fixed;
  display: flex;
  width: 100%;
  z-index: 20;
  padding-top: 3px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-height: 108px;
  height: 100%;
  background: white;
  border-bottom: 1px solid #f5f6f6;
  left: 50%;
  transform: translateX(-50%);
}
.section-main .header-container .header-logo .image-container {
  height: 100%;
  padding-top: 7px;
  margin: 0 115px 0 0;
  object-fit: contain;
}

.section-main .header-container .header-menu {
  width: 100%;
  height: 100%;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-end;
}
.section-main .header-container .header-menu_contacts {
  flex-grow: 0;
  margin-right: 280px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 32px;
  padding: 0;
}

.section-main .header-container .header-menu_contacts .menu_items {
  flex-grow: 0;
  font-family: "Inter";
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: #021a2c;
}

.row {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}
.section-main .header-container .header-menu__list-item {
  width: 625px;
  height: 19px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  padding: 0;

  li {
    flex-grow: 0;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #021a2c;
  }
}

.hamburger {
  display: none;
}
.menu-cont {
  display: none;
}

.section-main .header-container .header-menu__button {
  flex-grow: 0;
  margin-top: -35px;
  border-radius: 4px;
  font-family: "Inter";
  font-size: 17px;
  font-weight: 500;
  display: flex;
  gap: 4px;
  padding: 13px;
  background-color: #021a2c;
  justify-content: flex-start;
  align-items: center;
  width: 205px;
  height: 56px;
  color: white;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 30;
}
.modal .modal-content {
  width: 500px;
  height: 385px;
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  border-radius: 32px;
}
.modal .modal-content .form {
  display: flex;
  max-width: 419px;
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
}
.modal .modal-content .form h5 {
  font-family: "Barlow";
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 24px;
}
.modal .modal-content .form .form__field {
  margin-bottom: 16px;
}
.modal .modal-content .form .form__error {
  color: red;
  text-align: left;
  font-size: 12px;
  margin-top: 3px;
  display: none;
}
.modal .modal-content .form input {
  display: block;
  background-color: #f5f6f6;
  border-radius: 4px;
  outline: 1px solid rgb(54, 53, 53);
  padding: 15px;
  width: 419px;
  height: 56px;
  cursor: pointer;
}
.modal .modal-content .form input:focus {
  background-color: white;
  outline: 1px solid rgb(110, 109, 109);
}
.modal .modal-content .form input:hover {
  background-color: white;
}
.modal .modal-content .form input:valid:not(:-moz-placeholder-shown) {
  border-color: green;
}
.modal .modal-content .form input:valid:not(:placeholder-shown) {
  border-color: green;
}
.modal .modal-content .form input:invalid:not(:-moz-placeholder-shown) {
  border-color: red;
}
.modal .modal-content .form input:invalid:not(:placeholder-shown) {
  border-color: red;
}
.modal
  .modal-content
  .form
  input:invalid:not(:-moz-placeholder-shown)
  + .form__error {
  display: block;
}
.modal
  .modal-content
  .form
  input:invalid:not(:placeholder-shown)
  + .form__error {
  display: block;
}
.modal .modal-content .form button {
  margin-top: 20px;
  border-radius: 4px;
  font-family: "Inter";
  font-size: 17px;
  font-weight: 500;
  background: #9aa3ab;
  box-sizing: border-box;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  align-self: end;
  justify-content: center;
  width: 245px;
  height: 60px;
  color: white;
  cursor: pointer;
}
.modal .modal-content .form button .image {
  width: 30px;
  height: 30px;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.solutions {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.solutions .solutions-container {
  width: 1440px;
  margin: 0 auto;
  gap: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background: white;
  border-bottom: 1px solid #f5f6f6;
}
.solutions .solutions-container__info {
  max-width: 528px;
  height: 339px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
  margin: 0 17px 0 180px;
}
.solutions .solutions-container__info .solutions-heading {
  align-self: stretch;
  flex-grow: 0;
  font-family: "Barlow";
  font-size: 60px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 64px;
  letter-spacing: normal;
  text-align: left;
  color: #021a2c;
}
.solutions .solutions-container__info .solutions-description {
  align-self: stretch;
  flex-grow: 0;
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #5e616c;
}
.solutions .solutions-container__images {
  position: relative;
  top: 30px;
  margin-top: 120px;
  overflow: hidden;
}

.solutions .solutions-container__images .imgs {
  position: relative;
  width: 100%;
  height: 100%;
  left: 3px;
  z-index: 0;
}
.solutions .solutions-container__images .vec {
  position: absolute;
  width: 100%;
  top: -3px;
  z-index: 1;
  overflow: hidden;
}
.solutions .solutions-container__button {
  width: 205px;
  height: 56px;
  flex-grow: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 4px;
  background-color: #021a2c;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-750px);
  }
}

.partners {
  width: 100%;
  height: 140px;
  margin: 0 auto;
  background-color: #021a2c;
}
.slider {
  background: #021a2c;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 140px;
  align-items: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 20s linear infinite;
  display: flex;
  height: 140px;
  width: 4800px;
}
.slider .slide {
  margin-top: 25px;
  height: 100px;
  width: 250px;
}

.about {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: white;
}

.container-about {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1080px;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 80px;
  border-radius: 32px;
  margin: 0 auto;
  background-color: #f5f6f6;
  justify-content: center;
  background: #f5f6f6;
  margin-top: 80px;
}

.solutions-container__button {
  width: 205px;
  height: 56px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 4px;
  font-family: "Inter";
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  background-color: #021a2c;
  cursor: pointer;
}

.about-description {
  width: 539px;
  height: 456px;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  margin: 84px 25px 83px 0;
  padding: 0;
}
.about-description__button {
  border: none;
  margin-top: 48px;
  border-radius: 4px;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  background: #021a2c;
  box-sizing: border-box;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 245px;
  min-width: 206px;
  height: 60px;
  color: white;
  cursor: pointer;
}

.about-heading {
  font-family: "Barlow";
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: #021a2c;
}

.about-desc {
  font-family: "Inter";
  font-size: 16px;
  line-height: 24px;
  color: #5e616c;
}
.about-desc span {
  display: block;
  margin-bottom: 10px;
}

.about-img {
  display: block;
  border-radius: 32px;
  width: 436px;
  height: 622px;
  overflow: hidden;
  margin: 0 0 0 25px;
}

img {
  max-width: 100%;
  height: 100%;
}

.about-card {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.card-container {
  padding-top: 32px;
  display: inline-block;
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  background: white;
  gap: 24px;
  margin: 0 auto;
  display: flex;
}

.retail-card {
  width: 344px;
  align-self: stretch;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 32px 40px;
  border-radius: 32px;
  background-color: #f5f6f6;
}

.retail-heading {
  font-family: "Barlow";
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color: #021a2c;
}

.retail-desc {
  margin-top: 24px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #5e616c;
}

.organization-card {
  width: 344px;
  align-self: stretch;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 32px 40px;
  border-radius: 32px;
  background-color: #f5f6f6;
}

.organization-heading {
  font-family: "Barlow";
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color: #021a2c;
}

.organization-desc {
  margin-top: 24px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #5e616c;
}

.trade-card {
  width: 344px;
  align-self: stretch;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 32px 40px;
  border-radius: 32px;
  background-color: #f5f6f6;
}

.trade-heading {
  font-family: "Barlow";
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color: #021a2c;
}

.trade-desc {
  margin-top: 24px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #5e616c;
}

.works {
  padding-top: 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.works-container {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  margin: 0 auto;
}
.works-header {
  width: 1080px;
  height: 56px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.works-header .works-heading {
  font-family: "Barlow";
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: #021a2c;
}

.works-consultation {
  margin-top: 80px;
  max-width: 1080px;
  max-height: 399px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 116px;
}

.works .section-card-container {
  max-width: 528px;
  max-height: 399px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  padding: 0;
}
.works .section-card-container .section-card {
  max-width: 436px;
  max-height: 393px;
  flex-grow: 0;
  object-fit: contain;
  border-radius: 32px;
}

.works .section-card-container .card-item1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.works .section-card-container .card-item1__heading {
  font-family: "Barlow";
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color: #021a2c;
}
.works .section-card-container .card-item1__desc {
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #5e616c;
}
.works .section-card-container .card-icon1 {
  margin-top: 5px;
  flex: 0 0 auto;
  margin-right: 20px;
}

.numbers {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}

.numbers-container {
  max-width: 712px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.numbers-header {
  font-family: "Barlow";
  width: 540px;
  margin: 0 auto;
  font-size: 45px;
  font-weight: bold;
  line-height: 60px;
  color: #021a2c;
  margin-bottom: 80px;
}

.numbers-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}

.numbers-card {
  height: 151px;
  max-width: 340px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  border-radius: 32px;
  background-color: #f5f6f6;
}

.numbers-head {
  font-family: "Barlow";
  font-size: 50px;
  font-weight: bold;
  line-height: 64px;
  color: #021a2c;
}

.numbers-desc {
  font-family: "Inter";
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  color: #5e616c;
}

.customers {
  margin: 80px auto 0;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
}

.customers-container {
  padding-top: 100px;
  display: flex;
  width: 1085px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  background: #ccebf9;
  border-radius: 32px 32px 0 0;
}

.customers-head {
  max-width: 528px;
  flex-grow: 0;
  margin: 0 auto;
  font-family: "Barlow";
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: #021a2c;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-750px);
  }
}
.customers-slide1 {
  padding-top: 50px;
  background: #ccebf9;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  overflow: hidden;
  width: 1085px;
  position: relative;
  height: 280px;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.customers-slide1::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.customers-slide1::before {
  left: 0;
  top: 0;
}
.customers-slide1 .customers-track {
  animation: scroll 20s linear infinite;
  display: flex;
  width: 2938px;
}
.customers-slide1 .sliders {
  width: 172px;
  height: 172px;
  display: flex;
  margin-right: 32px;
}

@keyframes scroll2 {
  0% {
    transform: translateX(-750px);
  }
  100% {
    transform: translateX(0);
  }
}
.customers-slide2 {
  background: #ccebf9;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  margin: 0;
  overflow: hidden;
  width: 1085px;
  position: relative;
  height: 200px;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.customers-slide2::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.customers-slide2::before {
  left: 0;
  top: 0;
}
.customers-slide2 .customers-track {
  animation: scroll2 20s linear infinite;
  display: flex;
  width: 2938px;
}
.customers-slide2 .sliders {
  width: 344px;
  height: 157px;
  margin-right: 24px;
  display: flex;
}

.gradient-container {
  display: flex;
  width: 1085px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 113px;
  padding-bottom: 80px;
  margin-top: -140px;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(204, 235, 249, 0) 0%,
    rgb(204, 235, 249) 39.06%
  );
  border-radius: 32px;
  margin-bottom: 128px;
}

.gradient-button {
  width: 205px;
  height: 56px;
  flex-grow: 0;
  display: flex;
  font-family: "Inter";
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 4px;
  background-color: #021a2c;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
}

.reviews {
  max-width: 1440px;
  background: #021a2c;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
}

.controls {
  display: none;
}

.rew-client {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Barlow";
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-left: 180px;
}

.reviews-carousel {
  position: relative;
  max-width: 1260px;
  margin-left: 180px;
  
}

.reviews-carousel-wrapper {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  width: fit-content;
}

.reviews-card {
  width: 800px;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  border-radius: 32px;
  background-color: #354856;
  margin-top: 32px;
}

.reviews-descmore {
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #dbdbdb;
}

.reviews-name {
  margin-top: 32px;
  font-family: "Barlow";
  font-size: 16px;
  font-weight: 700;
  color: #dbdbdb;
}

.retail-company {
  margin-top: 24px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  color: #dbdbdb;
}

.reviews-controls {
  display: block;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
  left: 80%;
  display: flex;
  gap: 0.5rem;
}

.reviews-controls button {
  padding-top: 7px;
  width: 44px;
  height: 44px;
  background-color: #354856;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.left {
  width: 30px;
  height: 30px;
  transform: rotate(180deg);
}

.right {
  width: 30px;
  height: 30px;
}

.reviews-controls button:hover {
  background-color: #0056b3;
}

.prev-button {
  left: 0;
}

.next-button {
  right: 0;
}

.questions {
  width: 1440px;
  margin: 0 auto;
  flex-direction: column;
  padding-top: 80px;
}

.advanced-questions {
  box-sizing: border-box;
  position: relative;
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  flex-grow: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
}

.questions-head {
  width: 528px;
  flex-grow: 0;
  font-family: "Barlow";
  font-size: 57px;
  font-weight: bold;
  line-height: 56px;
  color: #021a2c;
}

.questions-list {
  box-sizing: border-box;
  display: flex;
  height: auto;
  flex-direction: column;
  align-items: stretch;
  width: 528px;
}

button.accordion {
  position: relative;
  cursor: pointer;
  padding-bottom: 16px;
  border-top: 1px solid #868383;
  text-align: left;
  outline: none;
  padding-top: 16px;
  font-size: 35px;
  transition: 0.4s;
  display: flex;
  color: #021a2c;
  justify-content: space-between;
  align-items: center;
}

button.accordion:after {
  content: "+";
  color: white;
  float: right;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 30px;
  font-weight: 400;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #021a2c;
  border: 1px solid #021a2c;
}

button.accordion.active:after {
  content: "−";
}

.questions-parg {
  max-width: 398px;
  font-family: "Barlow";
  font-size: 16px;
  font-weight: 700;
  color: black;
}

.description {
  max-width: 398px;
  font-family: "Inter";
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #5e616c;
  padding-bottom: 16px;
}

div.panel {
  padding: 0 5px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.more-questions {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.any-questions {
  box-sizing: border-box;
  display: flex;
  width: 1080px;
  height: 500px;
  justify-content: center;
  margin: 0 auto;
  background: #ccebf9;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.any-questions .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.quest {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 30px;
  max-width: 528px;
}

.title {
  margin-top: 33px;
  max-width: 487px;
  font-family: "Barlow";
  line-height: 56px;
  font-size: 45px;
  font-weight: 700;
  color: black;
}

.any-description {
  font-family: "Inter";
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #5e616c;
  margin-top: 32px;
  padding-bottom: 64px;
}

.any-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gradient-button2 {
  width: 273px;
  height: 56px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  font-family: "Inter";
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 4px;
  border: solid 2px #021a2c;
  cursor: pointer;
  font-family: "Inter";
  font-size: 17px;
  font-weight: 500;
  font-stretch: normal;
  color: #021a2c;
}

.map-section {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.map-container {
  position: relative;
}

#map {
  width: 100%;
  max-height: 343px;
  overflow: hidden;
}
.footer {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  padding: 32px 0 32px 0;
  flex-direction: column;
  background: #021a2c;
  justify-content: center;
  align-items: center;
}

.footer-container {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative; /* Added to create a positioning context for the statement */
}

.contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px; /* Added gap to evenly space items */
  margin-bottom: 30px;
}

.logo-footer {
  margin-right: 24px; /* Adjust margin to match gap */
}

.logo-footer img {
  width: 170px;
  height: 32px;
}

.tel, .adres, .email, .work {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tel p, .adres p, .email p, .work p {
  color: white;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tel a, .adres a, .email a, .work a {
  margin-top: 10px;
  color: white;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
}

.statement {
  color: #9aa3ab;
  text-align: center;
  width: 100%;
  position: absolute; /* Added for absolute positioning */
  bottom: 10px; /* Positioned 10px from the bottom of the footer */
}


@media (max-width: 1920px) {
  .section-main {
    max-width: 1920px;
  }
  .section-main .header-container {
    width: 100%;
  }
  .partners {
    max-width: 1920px;
  }
  .solutions .solutions-container__images {
    width: 100%;
  }
  .slider {
    max-width: 1920px;
  }
  .reviews {
    max-width: 1920px;
  }
  .solutions {
    height: 100%;
  }

  .solutions .solutions-container__images .imgs {
    display: none;
  }
  .reviews-carousel {
    max-width: 1920px;
  }
  .reviews-controls {
    left: 80%;
  }
  .map-section {
    max-width: 1920px;
  }
  .footer {
    max-width: 1920px;
  }
}

@media (max-width: 1200px) {
  .section-main {
    width: 100%;
  }
  .section-main .container {
    max-width: 970px;
  }
  .section-main .header-container {
    width: 100%;
  }
  .section-main .header-container .header-menu_contacts .menu_items {
    font-size: 14px;
  }
  .section-main .header-container .header-menu__list-item {
    gap: 17px;
    max-width: 570px;
  }
  .row {
    gap: 25px;
  }

  .solutions .solutions-container__images .imgs {
    display: block;
  }
  .solutions {
    width: 100%;
  }
  .solutions-container {
    max-width: 991px;
    height: 562px;
  }
  .solutions .solutions-container__info {
    margin: 0 17px 0 30px;
  }
  .solutions .solutions-container__images {
    position: relative;
    margin-top: 122px;
  }
  .solutions .solutions-container__info .solutions-heading {
    font-size: 57px;
  }

  .partners {
    width: 100%;
  }

  .container-about {
    max-width: 100%;
    padding: 30px 30px 30px 30px;
  }
  .about {
    padding: 30px;
  }
  .about-description {
    width: 100%;
    margin: 25px 25px 83px 0;
    font-size: 14px;
  }

  .card-container {
    width: 100%;
    padding: 30px;
  }
  .retail-card {
    padding: 20px 20px 32px;
    max-height: 350px;
  }
  .retail-heading {
    font-size: 23px;
  }
  .retail-desc {
    font-size: 15px;
    line-height: 25px;
  }
  .organization-card {
    padding: 20px 20px 32px;
    max-height: 350px;
  }
  .organization-heading {
    font-size: 23px;
  }
  .organization-desc {
    font-size: 15px;
    line-height: 25px;
  }
  .trade-card {
    padding: 20px 20px 32px;
    max-height: 350px;
  }
  .trade-heading {
    font-size: 23px;
  }
  .trade-desc {
    font-size: 15px;
    line-height: 25px;
  }

  .works-container {
    width: 100%;
  }
  .works .works-container .works-consultation .works-button {
    display: none;
  }
  .works-header {
    width: 100%;
  }
  .works .section-card-container {
    max-width: 100%;
  }
  .works-consultation {
    margin-top: 70px;
  }
  .works .section-card-container .card-item1__heading {
    font-size: 22px;
  }
  .works .section-card-container .card-item1__desc {
    font-size: 14px;
    line-height: 21px;
  }

  .customers-container {
    max-width: 940px;
  }
  .customers-head {
    font-size: 36px;
  }
  .customers-slide1 {
    max-width: 940px;
  }
  .customers-slide2 {
    max-width: 940px;
  }
  .gradient-container {
    max-width: 940px;
  }

  .rew-client {
    font-size: 40px;
    margin-left: 50px;
  }
  .reviews-carousel {
    margin-left: 50px;
  }
  .reviews-card {
    padding: 22px;
    gap: 22px;
  }
  .reviews-descmore {
    font-size: 17px;
    line-height: 26px;
  }
  .reviews-name {
    margin-top: 25px;
  }
  .questions {
    max-width: 991px;
  }
  .advanced-questions {
    width: 100%;
  }
  .questions-head {
    font-size: 45px;
    max-width: 100%;
  }
  .questions-parg {
    font-size: 16px;
  }
  .description {
    font-size: 15px;
  }

  .more-questions {
    max-width: 940px;
  }
  .any-questions {
    max-width: 940px;
  }
  .title {
    line-height: 50px;
  }

  .logo-footer {
    padding-inline-end: 200px;
  }
  .tel {
    width: 168px;
  }
  .adres {
    width: 236px;
  }
  .email {
    width: 352px;
  }
}

@media (max-width: 767px) {
  .section-main {
    width: 100%;
    height: 100%;
  }
  .section-main .container {
    width: 100%;
    z-index: 10;
    justify-content: space-between;
    padding: 0 15px;
    position: fixed;
  }
  .section-main .header-container {
    width: 100%;
    z-index: 10;
    justify-content: space-between;
    padding: 0 15px;
    position: fixed;
  }
  .section-main .header-container .header-logo .image-container {
    width: 135px;
    height: 100%;
    padding-top: 0;
    margin: 0 0 0 0;
  }

  .solutions .solutions-container__images .imgs {
    display: block;
  }
  .section-main .header-container a.header-logo {
    z-index: 10;
  }

  .section-main .hamburger {
    display: block;
    z-index: 4;
    transform: translateY(-50%);
    max-width: 50px;
    width: 100%;
    height: 12px;
  }
  .section-main .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000000;
    margin-bottom: 13px;
    transition: 0.5s all;
  }
  .section-main .hamburger_active span {
    margin-bottom: -2px;
  }

  .section-main .hamburger_active span:nth-child(1) {
    transform: translateY(3px) rotate(-45deg);
  }
  .section-main .hamburger_active span:nth-child(2) {
    display: none;
  }
  .section-main .hamburger_active span:nth-child(3) {
    transform: translateY(3px) rotate(45deg);
  }
  .section-main .header-menu {
    position: fixed;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    top: 0;
    z-index: 3;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 20px 15px;
    background-color: #fff;
    transition: 0.6s all;
  }
  .section-main .header-menu_active {
    left: 0;
  }

  .section-main .header-menu .row {
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    padding: 24px 16px;
  }
  .section-main .header-container .menu-cont {
    display: block;
    width: 100%;
    text-align: center;
    order: 2;
    padding: 0 20px 20px 20px;
  }

  .section-main .header-container .menu-cont a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    background-color: #f4f4f4;
    font-size: 25px;
    padding: 10px;
  }
  .section-main .header-container .header-menu_contacts {
    display: none;
  }
  .section-main .header-container .header-menu .header-menu__button {
    margin: 0 auto;
    order: 3;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-radius: 9px;
    height: 150px;
  }
  img.image {
    width: 50px;
    height: 50px;
  }
  .section-main .header-container .header-menu__list-item {
    gap: 32px;
    background-color: #fff;
    width: 100%;
    padding: 148px 18px 0;
    height: 100%;
    order: 1;
    flex-direction: column;
    li {
      line-height: 30px;
      font-size: 30px;
    }
  }
  .modal .modal-content {
    margin: 50% auto;
    max-width: 400px;
    width: 100%;
    height: 335px;
    border-radius: 15px;
    padding: 15px;
  }
  .modal .modal-content .form {
    margin-left: 16px;
  }
  .modal .modal-content .form .form__field {
    margin-bottom: 16px;
    margin-left: 14px;
    width: 313px;
  }
  .modal .modal-content .form input {
    max-width: 310px;
    width: 100%;
    height: 56px;
  }
  .modal .modal-content .form h5 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .modal .modal-content .form button {
    max-width: 315px;
    width: 100%;
    height: 56px;
    margin-top: 10px;
  }

  .solutions {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .solutions .solutions-container {
    width: 100%;
    margin-top: 150px;
    display: block;
  }
  .solutions .solutions-container__info {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 80px;
    height: 285px;
    gap: 25px;
  }
  .solutions .solutions-container__button {
    font-size: 15px;
  }
  img.image {
    width: 35px;
    height: 35px;
  }
  .solutions .solutions-container__images {
    margin-top: 40px;
    width: 100%;
  }
  .solutions .solutions-container__info .solutions-heading {
    font-size: 46px;
    line-height: 45px;
  }

  .reviews-card {
    width: 520px;
    gap: 22px;
  }

  .container-about {
    max-width: 100%;
    height: 100%;
    margin: 0 auto 0;
    padding: 10px 10px 10px 10px;
  }
  .about .container-about .about-img {
    display: none;
  }
  .about-description {
    height: 100%;
    gap: 32px;
    padding: 5px;
    margin: 0;
  }
  .about-heading {
    font-size: 28px;
    line-height: 36px;
  }
  .solutions-container__button {
    flex-grow: 0;
    border-radius: 7px;
    font-family: "Inter";
    font-size: 18px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    padding: 13px;
    background-color: #021a2c;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    color: white;
    cursor: pointer;
  }

  .about-card {
    width: 100%;
    margin: 0 auto;
  }
  .about {
    margin-top: 80px;
    padding: 10px;
  }
  .about-card .card-container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 10px;
    flex-direction: column;
  }
  .about-card .card-container .retail-card {
    width: 100%;
    gap: 0;
    max-height: 500px;
    padding: 24px 16px;
  }
  .about-card .card-container .retail-card .retail {
    width: 80px;
  }
  .about-card .card-container .retail-card .retail-heading {
    padding-top: 0;
    font-size: 28px;
  }
  .about-card .card-container .retail-card .retail-desc {
    margin-top: 15px;
    font-size: 19px;
    line-height: 25px;
    height: 100%;
    margin-bottom: 30px;
  }
  .about-card .card-container .organization-card {
    width: 100%;
    gap: 0;
    padding: 24px 16px;
  }
  .about-card .card-container .organization-card .organization {
    width: 80px;
  }
  .about-card .card-container .organization-card .organization-heading {
    padding-top: 0;
    font-size: 28px;
  }
  .about-card .card-container .organization-card .organization-desc {
    margin-top: 15px;
    font-size: 19px;
    line-height: 25px;
    height: 100%;
    margin-bottom: 30px;
  }
  .about-card .card-container .trade-card {
    width: 100%;
    padding: 0;
    padding: 24px 16px;
  }
  .about-card .card-container .trade-card .trade {
    width: 80px;
  }
  .about-card .card-container .trade-card .trade-heading {
    padding-top: 0;
    font-size: 28px;
  }
  .about-card .card-container .trade-card .trade-desc {
    margin-top: 15px;
    font-size: 19px;
    line-height: 25px;
    height: 100%;
    margin-bottom: 30px;
  }

  .works {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
  }
  .works-header {
    width: 100%;
  }
  .works-header__button {
    display: none;
  }
  .works-consultation .section-card {
    display: none;
  }
  .works-consultation {
    margin-top: 34px;
  }
  .works .works-container .works-consultation .works-button {
    flex-grow: 0;
    border-radius: 7px;
    font-family: "Inter";
    font-size: 18px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    padding: 13px;
    background-color: #021a2c;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    color: white;
    cursor: pointer;
  }

  .numbers {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
  }
  .numbers .numbers-container {
    display: flex;
    flex-direction: column;
  }
  .numbers .numbers-container .numbers-header {
    width: 100%;
    padding-top: 80px;
    font-size: 41px;
    margin-bottom: 40px;
  }
  .numbers .numbers-container .numbers-body {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  .numbers-card {
    max-width: 100%;
    gap: 24px;
  }
  .numbers .numbers-container .numbers-body .numbers-card {
    width: 100%;
    height: 100%;
    padding: 50px 30px;
    justify-content: center;
    align-items: flex-start;
  }
  .numbers .numbers-container .numbers-body .numbers-card .numbers-head {
    font-size: 70px;
  }
  .numbers .numbers-container .numbers-body .numbers-card .numbers-desc {
    margin-top: 0;
    font-size: 20px;
  }

  .customers {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    width: 100%;
    padding-top: 80px;
  }
  .customers .customers-container {
    width: 100%;
    padding-top: 45px;
    margin-bottom: 130px;
    z-index: 1;
  }
  .customers .customers-container .customers-head {
    font-size: 45px;
    max-width: 400px;
    margin-bottom: 32px;
  }
  .customers .customers-slide1 {
    display: none;
  }
  .customers .customers-slide2 {
    display: none;
  }
  .customers .gradient-container {
    width: 100%;
    padding: 90px 15px 15px 15px;
    background: #ccebf9;
    z-index: 0;
  }
  .customers .gradient-button {
    width: 100%;
    font-size: 18px;
    height: 56px;
    font-family: "Inter";
    justify-content: center;
    align-items: center;
  }

  .rew-client {
    font-size: 38px;
  }
  .customers .gradient-button .image {
    width: 40px;
    height: 40px;
  }

  .reviews {
    padding: 20px 0 20px 20px;
    width: 100%;
    margin: 0 auto;
    height: 640px;
    padding-bottom: 30px;
  }
  .controls {
    display: block;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
    margin-top: 70px;
    left: 47%;
    display: flex;
    gap: 0.5rem;
  }

  .reviews-controls {
    display: none;
  }

  .controls button {
    padding-top: 7px;
    width: 150px;
    height: 55px;
    background-color: #354856;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .reviews .rew-client {
    font-size: 30px;
    width: 100%;
    max-width: 100%;
    margin-top: 35px;
    margin-left: 30px;
  }
  .reviews-carousel{
    overflow: hidden;
  }
  .reviews .reviews-carousel {
    max-width: 100%;
    height: 550px;
    padding-top: 0;
    margin-left: 0;
  }

  .questions {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
  }
  .quest {
    padding: 20px;
    margin: 0;
  }
  .questions .advanced-questions {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .questions .advanced-questions .questions-head {
    font-size: 55px;
    width: 100%;
  }
  .questions .advanced-questions .questions-list {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .questions .advanced-questions .questions-parg {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .questions .advanced-questions button.accordion {
    font-size: 16px;
    width: 100%;
    gap: 10px;
    display: flex;
    padding: 10px 10px 10px 0;
    justify-content: space-between;
  }
  .questions .advanced-questions button.accordion:after {
    width: 30px;
    height: 30px;
    font-size: 23px;
    font-weight: 400;
  }
  .questions .advanced-questions .questions-parg {
    padding: 0 45px 0 0;
  }

  .questions .description {
    max-width: 100%;
    line-height: 25px;
    font-size: 19px;
  }
  .more-questions {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    max-height: 500px;
  }
  .more-questions .any-questions {
    width: 100%;
  }
  .more-questions .any-questions .bg-image {
    display: none;
  }
  .more-questions .title {
    margin-top: 0;
    font-size: 50px;
    line-height: 47px;
  }
  .more-questions .any-description {
    line-height: 25px;
    width: 100%;
    font-size: 17px;
    padding-bottom: 20px;
  }
  .more-questions .any-button {
    display: flex;
    flex-direction: column;
  }
  .more-questions .any-button .gradient-button {
    font-size: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
  }
  .more-questions .any-button .gradient-button2 {
    margin-top: 20px;
    height: 80px;
    font-size: 25px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer {
    padding: 20px;
    width: 100%;
    height: 600px;
    margin: 0 auto;
  }
  .footer .footer-container {
    width: 100%;
  }
  .footer .footer-container .contacts {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .logo-footer img {
    width: 220px;
}

  .footer .footer-container .contacts .logo-footer {
    margin-top: 32px;
    padding-inline-end: 0px;
  }
  .footer .footer-container .contacts .contacts-adres {
    margin-top: 30px;
  }
  .footer .footer-container .contacts .email {
    max-width: 250px;
    width: 100%;
  }
  .footer .footer-container .contacts .email p {
    font-size: 17px;
  }
  .footer .footer-container .contacts .email a {
    font-size: 18px;
  }
  .footer .footer-container .contacts .tel {
    max-width: 250px;
    width: 100%;
  }
  .footer .footer-container .contacts .tel p {
    font-size: 17px;
  }
  .footer .footer-container .contacts .tel a {
    font-size: 17px;
  }
  .footer .footer-container .contacts .work {
    max-width: 250px;
    width: 100%;
  }
  .footer .footer-container .contacts .work p {
    font-size: 17px;
  }
  .footer .footer-container .contacts .work a {
    font-size: 17px;
  }
  .footer .footer-container .contacts .adres {
    max-width: 250px;
    width: 100%;
  }
  .footer .footer-container .contacts .adres p {
    font-size: 17px;
  }
  .footer .footer-container .contacts .adres a {
    font-size: 17px;
    line-height: 30px;
  }
  .footer .footer-container .statement {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-main .header-container {
    justify-content: space-between;
  }
  .section-main .header-container .header-logo .image-container {
    margin: 0 130px 0 0;
  }
  .section-main .header-container .header-menu__list-item li {
    line-height: 32px;
    font-size: 16px;
  }
  .section-main .header-container .header-menu__list-item {
    padding: 130px 18px 0;
  }
  .section-main .header-container .menu-cont a {
    font-size: 16px;
  }
  .section-main .header-container .header-menu .header-menu__button {
    font-size: 18px;
    border-radius: 4px;
    height: 56px;
  }

  .solutions .solutions-container__images .imgs {
    display: block;
  }
  img.image {
    width: 30px;
    height: 30px;
  }
  .solutions .solutions-container__info .solutions-heading {
    font-size: 36px;
    line-height: 40px;
  }

  .solutions .solutions-container__info .solutions-description {
    font-size: 16px;
    line-height: 24px;
  }
  .solutions .solutions-container__button {
    display: flex;
    width: 100%;
    height: 56px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
  }
  img.image {
    width: 25px;
    height: 25px;
  }
  .solutions .solutions-container__images {
    margin-top: 30px;
  }
  .container-about {
    max-width: 320px;
    align-items: flex-start;
  }
  .about {
    height: 700px;
  }
  .about-description {
    max-width: 390px;
    gap: 20px;
    padding: 5px;
  }
  .solutions-container__button {
    height: 56px;
    font-size: 18px;
  }
  .container-about {
    max-width: 100%;
  }
  .about {
    height: 100%;
    padding: 10px;
  }
  .about-card .card-container .retail-card .retail-heading {
    font-size: 20px;
  }
  .about-card .card-container .retail-card .retail-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .about-card .card-container .organization-card .organization-heading {
    font-size: 20px;
  }
  .about-card .card-container .organization-card .organization-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .about-card .card-container .trade-card .trade-heading {
    font-size: 20px;
  }
  .about-card .card-container .trade-card .trade-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .works {
    height: 850px;
  }
  .works-header {
    max-width: 300px;
  }
  .works-header .works-heading {
    font-size: 32px;
  }
  .works-consultation {
    margin-top: 15px;
  }
  .works .section-card-container {
    max-width: 320px;
  }
  .works .section-card-container .card-item1__heading {
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 10px;
  }
  .works .section-card-container .card-icon1 {
    margin-right: 10px;
  }
  .works .section-card-container .card-item1 {
    flex-direction: column;
  }
  .works .section-card-container .card-item1__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .numbers .numbers-container .numbers-header {
    font-size: 23px;
    line-height: 30px;
  }
  .numbers .numbers-container .numbers-body .numbers-card .numbers-head {
    font-size: 56px;
    line-height: 64px;
  }
  .numbers .numbers-container .numbers-body .numbers-card .numbers-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .numbers .numbers-container .numbers-body .numbers-card {
    padding: 20px 15px;
  }

  .customers .customers-container .customers-head {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .customers .gradient-button {
    width: 100%;
    height: 56px;
    font-size: 17px;
  }
  .customers .gradient-button .image {
    width: 23px;
    height: 23px;
  }
  .customers .gradient-container {
    padding-bottom: 35px;
  }
  .customers .customers-container {
    padding-top: 20px;
    margin-bottom: 108px;
  }

  .reviews .rew-client {
    font-size: 22px;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .reviews-card {
    width: 350px;
    gap: 22px;
  }
  .questions .advanced-questions .questions-head {
    font-size: 32px;
    width: 100%;
    line-height: 36px;
  }
  .questions .advanced-questions .questions-list {
    margin-top: 10px;
  }
  .questions .advanced-questions .questions-parg {
    font-size: 16px;
    line-height: 24px;
    margin-top: 7px;
    margin-bottom: 7px;
  }
  .questions .description {
    line-height: 24px;
    font-size: 14px;
  }

  .more-questions .title {
    font-size: 32px;
    line-height: 36px;
  }
  .any-questions {
    width: 100%;
    max-height: 400px;
  }
  .more-questions .any-description {
    line-height: 21px;
    font-size: 13px;
  }
  .more-questions .any-button .gradient-button {
    font-size: 18px;
    height: 56px;
  }
  .more-questions .any-button .gradient-button2 {
    font-size: 14px;
    height: 56px;
  }
  img.image {
    width: 15px;
    height: 15px;
  }
  img.imageV {
    width: 23px;
    height: 23px;
  }
}
