* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: unset;
  outline: none;
}

img {
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

input:focus,
textarea:focus {
  outline: 0;
}

.dark-wrapper {
  background: #08090A;
}

.container {
  max-width: 1380px;
  padding: 0 15px;
  margin: 0 auto;
}

.how-title3 {
  max-width: 340px !important;
}

.products-btn {
  cursor: pointer;
}

.how-btn {
  cursor: pointer;
}

.digital-btn {
  cursor: pointer;
}

.section {
  padding: 70px 0;
}

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

.section-title {
  font-size: 48px;
  line-height: normal;
  letter-spacing: -1px;
  font-weight: 500;
  text-align: center;
}

.title-dark {
  color: #B7B7B7;
}
.title-dark span {
  color: #222F30;
}

.title-white {
  color: #FFFFFF;
}

.main-label {
  padding: 10px 24px;
  border-radius: 100px;
  width: fit-content;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 20px;
}

.green-label {
  color: rgba(78, 164, 77, 0.7411764706);
  background: rgba(78, 164, 77, 0.1019607843);
}

.white-label {
  color: white;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
}

.main-button {
  display: block;
  width: fit-content;
  padding: 12px 26px;
  border-radius: 100px;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s ease;
  line-height: normal;
}

.green-button {
  color: white;
  background: #3F9E01;
}
.green-button:hover {
  transition: 0.3s ease;
  background: #71b671;
}
.green-button:active {
  transition: 0.3s ease;
  background: #448743;
}

.dark-button {
  color: white;
  background: #222F30;
}
.dark-button:hover {
  transition: 0.3s ease;
  background: #434e4f;
}
.dark-button:active {
  transition: 0.3s ease;
  background: #000000;
}

.disabled-btn {
  color: #fff;
  background: #C6C6C6;
}
.disabled-btn:hover {
  transition: 0.3s ease;
  background: #B7B7B7;
}
.disabled-btn:active {
  transition: 0.3s ease;
  background: #AFAFAF;
}

.white-button {
  color: #222F30;
  background: white;
}
.white-button:hover {
  transition: 0.3s ease;
  background: #dceddb;
}
.white-button:active {
  transition: 0.3s ease;
  background: #c5c5c5;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 1990;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  will-change: transform;
  overflow: hidden;
  border-radius: 0;
}

.logo-text path,
.logo-leafs path {
  opacity: 0;
  transform-origin: center;
}

.is-loading {
  overflow: hidden;
  height: 100vh;
  padding-right: var(--scrollbar-width, 0px);
}

.header {
  position: fixed;
  top: 18px;
  width: 100%;
  z-index: 999;
  max-width: 1210px;
  margin: 0 auto;
  right: 0;
  left: 0;
}
.header .container .header-wrapper {
  background: #F3F9EF;
  border-radius: 60px;
  padding: 18px 18px 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 101;
  position: relative;
}
.header .container .header-wrapper .logo {
  width: 105px;
  display: flex;
  position: relative;
}
.header .container .header-wrapper .logo .logo-image-dark {
  fill: #222F30;
}
.header .container .header-wrapper .logo .logo-image-white {
  fill: #fff;
}
.header .container .header-wrapper .nav .desktop-nav {
  display: flex;
  gap: 24px;
}
.header .container .header-wrapper .nav .desktop-nav li:hover a {
  color: #222F30;
  transition: 0.2s;
}
.header .container .header-wrapper .nav .desktop-nav li a {
  color: rgba(34, 47, 48, 0.4509803922);
  transition: 0.2s;
}
.header .container .header-wrapper .nav .desktop-nav .active a {
  color: #222F30;
}
.header .container .header-wrapper .nav .desktop-nav-white li a {
  color: rgba(255, 255, 255, 0.45);
}
.header .container .header-wrapper .nav .desktop-nav-white .active a {
  color: #FFFFFF;
}
.header .container .header-wrapper .lang-wrapper {
  display: flex;
  gap: 16px;
}
.header .container .header-wrapper .lang-wrapper a {
  color: rgba(34, 47, 48, 0.4509803922);
  font-weight: 500;
}
.header .container .header-wrapper .lang-wrapper .lang-active {
  color: #222F30;
  text-decoration: underline;
}
.header .container .header-wrapper .lang-wrapper-white a {
  color: rgba(255, 255, 255, 0.45);
}
.header .container .header-wrapper .lang-wrapper-white .lang-active {
  color: #FFFFFF;
}
.header .container .header-wrapper .burger {
  display: none;
}
.header .container .mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px;
  background: #F8FCF7;
  position: fixed;
  width: 100%;
  max-width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.header .container .mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 96%;
  margin: 0 auto;
}
.header .container .mobile-menu .mobile-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.header .container .mobile-menu .mobile-nav li a {
  font-size: 24px;
  color: rgba(34, 47, 48, 0.4509803922);
  padding: 10px;
  display: block;
}
.header .container .mobile-menu .mobile-nav .active a {
  color: #222F30;
}
.header .container .mobile-menu .lang-wrapper-mobile {
  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  left: 20px;
}
.header .container .mobile-menu .lang-wrapper-mobile a {
  color: rgba(34, 47, 48, 0.4509803922);
  font-weight: 500;
}
.header .container .mobile-menu .lang-wrapper-mobile .lang-active {
  color: #222F30;
  text-decoration: underline;
}

body.menu-open .header .container .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

.intro {
  position: relative;
  padding: 110px 0 30px;
  background: url(../images/intro-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 40px 40px;
  min-height: 750px;
}
.intro .container .intro-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro .container .intro-wrapper .intro-content {
  max-width: 740px;
}
.intro .container .intro-wrapper .intro-content .intro-title {
  font-size: 54px;
  color: #222F30;
  line-height: normal;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 17px;
}
.intro .container .intro-wrapper .intro-content .intro-title span {
  color: #3F9E01;
}
.intro .container .intro-wrapper .intro-content .intro-text {
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 15px;
  max-width: 590px;
}
.intro .container .intro-wrapper .intro-content .buttons-wraper {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.intro .container .intro-wrapper .intro-image {
  max-width: 595px;
}

.problem {
  padding-top: 100px;
}
.problem .container .problem-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.problem .container .problem-wrapper .problem-content {
  max-width: 570px;
  flex-shrink: 0;
}
.problem .container .problem-wrapper .problem-content .section-title {
  margin-bottom: 24px;
}
.problem .container .problem-wrapper .problem-content .inline-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
}
.problem .container .problem-wrapper .problem-content .inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.problem .container .problem-wrapper .problem-content .inline-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #F78823;
  border-radius: 50%;
  flex-shrink: 0;
}
.problem .container .problem-wrapper .problem-content .problem-title {
  text-align: center;
  color: #222F30;
  font-size: 32px;
  line-height: normal;
  margin-top: 48px;
  margin-bottom: 20px;
}
.problem .container .problem-wrapper .problem-content .problem-text {
  color: #B7B7B7;
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  line-height: normal;
}
.problem .container .problem-wrapper .problem-image {
  max-width: 670px;
}
.problem .container .problem-wrapper .problem-image img {
  border-radius: 40px;
}

.solution {
  width: 97%;
  margin: 0 auto;
}
.solution .container {
  padding-top: 290px;
  background: url(../images/solution-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}
.solution .container .section-title {
  margin-bottom: 40px;
}
.solution .container .solution-list {
  margin-bottom: 40px;
}
.solution .container .solution-list .solution-item {
  background: rgba(255, 255, 255, 0.2196078431);
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
  border-radius: 30px;
  padding: 30px 30px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  min-height: 300px;
}
.solution .container .solution-list .solution-item .solution-item-title {
  text-align: center;
  color: white;
  font-size: 32px;
  line-height: normal;
  margin-bottom: 20px;
}
.solution .container .solution-list .solution-item .solution-item-dot-text {
  display: flex;
  gap: 4px;
  color: #DDEDDD;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
}
.solution .container .solution-list .solution-item .solution-item-dot-text .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  margin-top: 3px;
  flex-shrink: 0;
}
.solution .container .solution-list .solution-item .solution-item-dot-text-top {
  text-align: center;
  justify-content: center;
}
.solution .container .solution-list .solution-item .solution-item-wrap {
  display: flex;
  justify-content: center;
  gap: 65px;
}
.solution .container .solution-list .solution-item .solution-item-wrap .solution-item-dot-text {
  max-width: 283px;
}
.solution .container .solution-list .solution-item .solution-item-wrap .solution-item1-desktop-img {
  width: 245px;
}
.solution .container .solution-list .solution-item .solution-item1-mobile-img {
  display: none;
}
.solution .container .solution-list .solution-inner {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.solution .container .solution-list .solution-inner .solution-item .solution-item-text {
  color: #DDEDDD;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 15px;
}
.solution .container .solution-list .solution-inner .solution-item .solution-item2-desktop-img {
  width: 152px;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}
.solution .container .solution-list .solution-inner .solution-item .solution-item-wrap {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.solution .container .solution-list .solution-inner .solution-item .solution-item-wrap .solution-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution .container .solution-list .solution-inner .solution-item .solution-item-wrap .solution-empty-box {
  width: 135px;
  height: 50px;
}
.solution .container .solution-list .solution-inner .solution-item .solution-item3-mobile-img {
  width: 230px;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}
.solution .container .solution-bottom-text {
  color: #DDEDDD;
  text-align: center;
  line-height: normal;
  font-weight: 500;
  font-size: 16px;
}

.how .container .section-title {
  margin-bottom: 40px;
}
.how .container .how-swiper {
  position: relative;
}
.how .container .how-swiper .how-list {
  margin-bottom: 60px;
}
.how .container .how-swiper .how-list .how-item {
  border-radius: 40px;
  background: #F8FCF7;
  min-height: 386px;
  padding: 30px 10px;
  position: relative;
  overflow: hidden;
}
.how .container .how-swiper .how-list .how-item .how-num {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #DDEDDD;
  color: #4EA44D;
  text-align: center;
  width: fit-content;
  margin: 0 auto 12px;
  font-size: 14px;
}
.how .container .how-swiper .how-list .how-item .how-title {
  color: #222F30;
  text-align: center;
  max-width: 245px;
  margin: 0 auto;
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
}
.how .container .how-swiper .how-list .how-item img {
  position: absolute;
}
.how .container .how-swiper .how-list .how-item1 img {
  width: 190px;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.how .container .how-swiper .how-list .how-item2 img {
  width: 230px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.how .container .how-swiper .how-list .how-item3 img {
  width: 430px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.how .container .how-swiper .how-list .how-item4 img {
  width: 365px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.how .container .how-swiper .how-list .how-item5 img {
  width: 345px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.how .container .how-swiper .how-list .how-item-uk {
  padding: 30px 7px;
}
.how .container .how-swiper .how-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(78, 164, 77, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}
.how .container .how-swiper .how-btn svg {
  stroke: #222F30;
}
.how .container .how-swiper .how-btn:hover {
  transition: 0.3s;
  background: #4EA44D;
}
.how .container .how-swiper .how-btn:hover svg {
  stroke: white;
}
.how .container .how-swiper .how-btn-next {
  right: 0;
}
.how .container .how-swiper .how-btn-prev {
  left: 0;
}
.how .container .how-swiper .how-pagination {
  position: static;
  max-width: 235px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(177, 183, 195, 0.2);
  overflow: hidden;
}
.how .container .how-swiper .how-pagination .swiper-pagination-progressbar-fill {
  border-radius: 20px;
  background: #4EA44D;
}

.protocol .container .protocol-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.protocol .container .protocol-wrapper .protocol-content {
  max-width: 570px;
  flex-shrink: 0;
}
.protocol .container .protocol-wrapper .protocol-content .section-title {
  margin-bottom: 40px;
}
.protocol .container .protocol-wrapper .protocol-content .protocol-text {
  color: #B7B7B7;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 24px;
}
.protocol .container .protocol-wrapper .protocol-content .protocol-text-mobile {
  display: none;
}
.protocol .container .protocol-wrapper .protocol-content .main-button {
  display: block;
  margin: 40px auto 0;
}
.protocol .container .protocol-wrapper .protocol-image {
  max-width: 670px;
  border-radius: 40px;
}
.protocol .container .protocol-wrapper .protocol-image img {
  border-radius: inherit;
}

.digital .container .section-title {
  margin-bottom: 18px;
}
.digital .container .digital-subtitle {
  color: #B7B7B7;
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: normal;
}
.digital .container .digital-swiper {
  position: relative;
}
.digital .container .digital-swiper .digital-list {
  margin-bottom: 40px;
}
.digital .container .digital-swiper .digital-list .digital-item {
  display: flex;
  gap: 24px;
}
.digital .container .digital-swiper .digital-list .digital-item .digital-subitem {
  border-radius: 40px;
  background: #F8FCF7;
  min-height: 386px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 23px;
  width: 100%;
}
.digital .container .digital-swiper .digital-list .digital-item .digital-subitem .digital-content-wrap h3 {
  font-size: 24px;
  color: #222F30;
  line-height: normal;
  margin-bottom: 16px;
  font-weight: 500;
}
.digital .container .digital-swiper .digital-list .digital-item .digital-subitem .digital-content-wrap p {
  color: #B7B7B7;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.digital .container .digital-swiper .digital-list .digital-item .digital-subitem img {
  max-width: 335px;
  height: 335px;
  object-fit: cover;
  position: relative;
  bottom: -45px;
}
.digital .container .digital-swiper .digital-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(78, 164, 77, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  top: 40%;
  z-index: 3;
  transform: translateY(-50%);
}
.digital .container .digital-swiper .digital-btn svg {
  stroke: #222F30;
}
.digital .container .digital-swiper .digital-btn:hover {
  transition: 0.3s;
  background: #4EA44D;
}
.digital .container .digital-swiper .digital-btn:hover svg {
  stroke: white;
}
.digital .container .digital-swiper .digital-btn-next {
  right: 0;
}
.digital .container .digital-swiper .digital-btn-prev {
  left: 0;
}
.digital .container .digital-swiper .digital-pagination {
  position: static;
  max-width: 235px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(177, 183, 195, 0.2);
  overflow: hidden;
}
.digital .container .digital-swiper .digital-pagination .swiper-pagination-progressbar-fill {
  border-radius: 20px;
  background: #4EA44D;
}

.trust {
  padding-bottom: 100px;
  padding-top: 70px;
}
.trust .container .trust-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.trust .container .trust-wrapper .trust-image {
  max-width: 670px;
}
.trust .container .trust-wrapper .trust-image img {
  border-radius: 40px;
}
.trust .container .trust-wrapper .trust-content {
  max-width: 585px;
  width: 100%;
  flex-shrink: 0;
}
.trust .container .trust-wrapper .trust-content .section-title {
  margin-bottom: 24px;
}
.trust .container .trust-wrapper .trust-content .trust-text {
  color: #B7B7B7;
  text-align: center;
  font-size: 16px;
  line-height: normal;
}
.trust .container .trust-wrapper .trust-content .trust-text-magrin {
  margin-bottom: 16px;
}
.trust .container .trust-wrapper .trust-content .trust-list {
  max-width: 360px;
  margin: 40px auto 24px;
}
.trust .container .trust-wrapper .trust-content .trust-list .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
}
.trust .container .trust-wrapper .trust-content .trust-list .trust-item:not(:last-child) {
  margin-bottom: 16px;
}
.trust .container .trust-wrapper .trust-content .trust-list .trust-item .trust-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 164, 77, 0.1019607843);
}
.trust .container .trust-wrapper .trust-content .trust-list .trust-item .trust-circle img {
  width: 16px;
  height: 16px;
}

.for-whom {
  background: url(../images/girl-bg1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0px;
  border-radius: 40px;
  min-height: 940px;
}
.for-whom .container {
  min-height: 940px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.for-whom .container .for-whom-wrapper {
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
  background: rgba(255, 255, 255, 0.2196078431);
  padding: 40px 30px;
  border-radius: 30px;
}
.for-whom .container .for-whom-wrapper .section-title {
  margin-bottom: 40px;
}
.for-whom .container .for-whom-wrapper .for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 48px;
}
.for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col .for-whom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col .for-whom-item img {
  width: 32px;
  display: block;
}
.for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col .for-whom-item p {
  text-align: center;
  color: white;
  font-size: 24px;
  line-height: normal;
}

.products {
  padding-top: 100px;
}
.products .container .products-wrapper {
  background: url(../images/green-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 20px;
  border-radius: 40px;
}
.products .container .products-wrapper .section-title {
  color: white;
  margin-bottom: 16px;
}
.products .container .products-wrapper .products-text {
  color: #DDEDDD;
  text-align: center;
  font-size: 16px;
  line-height: normal;
}
.products .container .products-wrapper .product-inner {
  margin: 36px auto 16px;
  max-width: 410px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.2196078431);
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
  border-radius: 30px;
}
.products .container .products-wrapper .product-inner .product-title {
  font-size: 24px;
  color: white;
  text-align: center;
  line-height: normal;
  font-weight: 500;
}
.products .container .products-wrapper .product-inner .product-image {
  max-width: 273px;
  margin: 0 auto;
  display: block;
}
.products .container .products-wrapper .white-button {
  margin: 16px auto 0;
}

.vision .container .vision-wrapper {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.vision .container .vision-wrapper .vision-content {
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
}
.vision .container .vision-wrapper .vision-content .section-title {
  margin-bottom: 24px;
}
.vision .container .vision-wrapper .vision-content .vision-text {
  color: #B7B7B7;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  max-width: 470px;
  margin: 0 auto;
}
.vision .container .vision-wrapper .vision-content .vision-title {
  text-align: center;
  color: #222F30;
  font-size: 32px;
  line-height: normal;
  margin-top: 24px;
  margin-bottom: 20px;
}
.vision .container .vision-wrapper .vision-content .vision-list {
  max-width: 450px;
  margin: 0px auto 40px;
  padding: 0 10px;
}
.vision .container .vision-wrapper .vision-content .vision-list .vision-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
}
.vision .container .vision-wrapper .vision-content .vision-list .vision-item:not(:last-child) {
  margin-bottom: 16px;
}
.vision .container .vision-wrapper .vision-content .vision-list .vision-item .vision-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 164, 77, 0.1019607843);
}
.vision .container .vision-wrapper .vision-content .vision-list .vision-item .vision-circle img {
  width: 16px;
  height: 16px;
}
.vision .container .vision-wrapper .vision-image {
  max-width: 670px;
}
.vision .container .vision-wrapper .vision-image img {
  border-radius: 40px;
}

.sponsors .container .sponsors-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.sponsors .container .sponsors-wrapper img {
  max-height: 60px;
  width: auto;
}

.footer {
  padding: 115px 0 40px;
  position: relative;
  overflow: hidden;
  background: url(../images/footer-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .footer-decor {
  position: absolute;
  width: 100%;
  height: 65px;
  background: white;
  border-radius: 0 0 40px 40px;
  top: -3px;
}
.footer .footer-slogan {
  z-index: 3;
  position: absolute;
}
.footer .container {
  position: relative;
  z-index: 4;
}
.footer .container .footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 300px;
}
.footer .container .footer-wrapper .footer-logo {
  display: block;
}
.footer .container .footer-wrapper .footer-logo svg {
  width: 100%;
  width: 223px;
  height: 53px;
}
.footer .container .footer-wrapper .footer-content .footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer .container .footer-wrapper .footer-content .footer-nav li a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.2s;
}
.footer .container .footer-wrapper .footer-content .footer-nav li:hover a {
  color: white;
  transition: 0.2s;
}
.footer .container .footer-wrapper .footer-content .footer-nav .active a {
  color: white;
}
.footer .container .footer-wrapper .footer-contact .footer-contact-wrap .footer-contact-item {
  margin-bottom: 30px;
}
.footer .container .footer-wrapper .footer-contact .footer-contact-wrap .footer-contact-item .footer-contact-label {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.footer .container .footer-wrapper .footer-contact .footer-contact-wrap .footer-contact-item a {
  color: white;
}
.footer .container .footer-wrapper .footer-contact .footer-lang {
  display: flex;
  gap: 16px;
}
.footer .container .footer-wrapper .footer-contact .footer-lang a {
  color: rgba(255, 255, 255, 0.6);
}
.footer .container .footer-wrapper .footer-contact .footer-lang .lang-active {
  color: white;
  text-decoration: underline;
}
.footer .container .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer .container .footer-bottom .footer-bottom-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .container .footer-bottom .footer-bottom-wrap span {
  color: #fff;
  font-size: 16px;
  line-height: normal;
  display: block;
}
.footer .container .footer-bottom .footer-bottom-wrap img {
  width: 6px;
}
.footer .container .footer-bottom .footer-bottom-wrap a {
  color: #fff;
  font-size: 16px;
  line-height: normal;
  display: block;
}
.footer .container .footer-bottom .back-to-top {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: unset;
}
.footer .container .footer-bottom .back-to-top span {
  color: white;
  font-size: 16px;
  line-height: normal;
}
.footer .container .footer-bottom .back-to-top svg {
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 1500px) {
  .footer .footer-slogan {
    bottom: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .protocol .container .protocol-wrapper {
    gap: 32px;
    flex-direction: column;
  }
  .protocol .container .protocol-wrapper .protocol-content {
    max-width: 600px;
  }
  .protocol .container .protocol-wrapper .protocol-content .section-title {
    margin-bottom: 16px;
  }
  .protocol .container .protocol-wrapper .protocol-content .protocol-text {
    display: none;
  }
  .protocol .container .protocol-wrapper .protocol-content .protocol-text-mobile {
    display: block;
    color: #B7B7B7;
    text-align: center;
    font-size: 16px;
    line-height: normal;
  }
  .protocol .container .protocol-wrapper .protocol-content .main-button {
    display: none;
  }
  .protocol .container .protocol-wrapper .protocol-image {
    max-width: 670px;
    border-radius: 24px;
  }
  .digital .container .digital-swiper .digital-list .digital-item .digital-subitem img {
    max-width: 285px;
    height: 285px;
    bottom: -90px;
  }
  .trust {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .trust .container .trust-wrapper {
    gap: 32px;
    flex-direction: column-reverse;
  }
  .trust .container .trust-wrapper .trust-content .section-title {
    margin-bottom: 16px;
  }
  .trust .container .trust-wrapper .trust-content .trust-text-magrin {
    margin-bottom: 12px;
  }
  .trust .container .trust-wrapper .trust-content .trust-list {
    margin: 24px auto 24px;
    padding: 0 20px;
  }
  .trust .container .trust-wrapper .trust-content .trust-list .trust-item:not(:last-child) {
    margin-bottom: 12px;
  }
  .vision .container .vision-wrapper {
    flex-direction: column;
  }
  .vision .container .vision-wrapper .vision-content .section-title {
    margin-bottom: 16px;
  }
  .vision .container .vision-wrapper .vision-content .vision-text {
    color: #B7B7B7;
    text-align: center;
    font-size: 16px;
    line-height: normal;
    max-width: 470px;
    margin: 0 auto;
  }
  .vision .container .vision-wrapper .vision-content .vision-title {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .vision .container .vision-wrapper .vision-content .vision-list {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 992px) {
  .header .container .header-wrapper {
    padding: 18px 30px;
  }
  .header .container .header-wrapper .logo {
    width: 87px;
  }
  .header .container .header-wrapper .nav {
    display: none;
  }
  .header .container .header-wrapper .lang-wrapper {
    display: none;
  }
  .header .container .header-wrapper .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.5s;
  }
  .header .container .header-wrapper .burger .burger-list {
    width: 20px;
    height: 20px;
    position: relative;
    transition: 0.5s;
    z-index: 4;
  }
  .header .container .header-wrapper .burger .burger-list .burger-item {
    display: block;
    position: absolute;
    height: 1.25px;
    width: 100%;
    background: #222F30;
    opacity: 1;
    left: 0;
    transition: 0.25s;
  }
  .header .container .header-wrapper .burger .burger-list .burger-item:nth-of-type(1) {
    top: 2px;
  }
  .header .container .header-wrapper .burger .burger-list .burger-item:nth-of-type(2) {
    top: 9px;
  }
  .header .container .header-wrapper .burger .burger-list .burger-item:nth-of-type(3) {
    top: 9px;
  }
  .header .container .header-wrapper .burger .burger-list .burger-item:nth-of-type(4) {
    top: 16px;
  }
  .header .container .header-wrapper .burger-white .burger-list .burger-item {
    background: white;
  }
  .header .container .header-wrapper .burger.is-active .burger-list .burger-item {
    background: #222F30;
  }
  .header .container .header-wrapper .burger.is-active .burger-list .burger-item:nth-of-type(1) {
    top: 16px;
    width: 0%;
    left: 50%;
  }
  .header .container .header-wrapper .burger.is-active .burger-list .burger-item:nth-of-type(2) {
    top: 9px;
    transform: rotate(45deg);
  }
  .header .container .header-wrapper .burger.is-active .burger-list .burger-item:nth-of-type(3) {
    top: 9px;
    transform: rotate(-45deg);
  }
  .header .container .header-wrapper .burger.is-active .burger-list .burger-item:nth-of-type(4) {
    top: 16px;
    width: 0%;
    left: 50%;
  }
  .intro {
    min-height: unset;
  }
  .intro .container .intro-wrapper .intro-content .intro-title {
    font-size: 42px;
  }
  .intro .container .intro-wrapper .intro-image {
    max-width: 440px;
  }
  .problem .container .problem-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .problem .container .problem-wrapper .problem-content .section-title {
    margin-bottom: 24px;
  }
  .problem .container .problem-wrapper .problem-content .inline-list {
    gap: 12px;
  }
  .problem .container .problem-wrapper .problem-content .inline-list li {
    gap: 4px;
  }
  .problem .container .problem-wrapper .problem-content .inline-list li::before {
    width: 6px;
    height: 6px;
  }
  .problem .container .problem-wrapper .problem-content .problem-title {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .problem .container .problem-wrapper .problem-content .problem-text {
    margin-top: 32px;
  }
  .solution .container {
    padding-top: 290px;
    background: url(../images/solution-bg-mob.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .solution .container .section-title {
    margin-bottom: 20px;
  }
  .solution .container .solution-list {
    margin-bottom: 20px;
  }
  .solution .container .solution-list .solution-item {
    padding: 30px;
    padding: 15px 15px 0;
    min-height: 310px;
  }
  .solution .container .solution-list .solution-item .solution-item-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .solution .container .solution-list .solution-item .solution-item-dot-text {
    font-size: 14px;
  }
  .solution .container .solution-list .solution-item .solution-item-dot-text .dot {
    width: 6px;
    height: 6px;
  }
  .solution .container .solution-list .solution-item .solution-item-dot-text-top {
    text-align: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  .solution .container .solution-list .solution-item .solution-item-wrap {
    display: flex;
    justify-content: center;
    gap: 14px;
  }
  .solution .container .solution-list .solution-item .solution-item-wrap .solution-item-dot-text {
    max-width: 283px;
  }
  .solution .container .solution-list .solution-item .solution-item-wrap .solution-item1-desktop-img {
    display: none;
  }
  .solution .container .solution-list .solution-item .solution-item1-mobile-img {
    display: block;
    width: 245px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
  .solution .container .solution-list .solution-inner {
    flex-direction: column;
  }
  .solution .container .solution-list .solution-inner .solution-item .solution-item-text {
    font-size: 14px;
  }
  .solution .container .solution-list .solution-inner .solution-item .solution-item2-desktop-img {
    width: 182px;
    bottom: -10px;
  }
  .solution .container .solution-list .solution-inner .solution-item .solution-item-wrap {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }
  .solution .container .solution-list .solution-inner .solution-item .solution-item-wrap .solution-col {
    gap: 14px;
  }
  .solution .container .solution-list .solution-inner .solution-item .solution-item-wrap .solution-empty-box {
    display: none;
  }
  .solution .container .solution-list .solution-inner .solution-item .solution-item3-mobile-img {
    width: 230px;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
  }
  .digital .container .digital-swiper .digital-list .digital-item .digital-subitem {
    gap: 0px;
  }
  .digital .container .digital-swiper .digital-list .digital-item .digital-subitem img {
    max-width: 235px;
    height: 235px;
    bottom: -140px;
  }
  .for-whom {
    background-position: center;
    padding: 16px 0px;
    min-height: 870px;
  }
  .for-whom .container {
    min-height: 870px;
  }
  .for-whom .container .for-whom-wrapper {
    padding: 20px;
    border-radius: 35px;
  }
  .for-whom .container .for-whom-wrapper .section-title {
    margin-bottom: 30px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col .for-whom-item {
    gap: 12px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col .for-whom-item p {
    font-size: 20px;
  }
  .sponsors {
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  .digital .container .section-title {
    margin-bottom: 16px;
  }
  .digital .container .digital-subtitle {
    margin-bottom: 32px;
  }
  .digital .container .digital-swiper .digital-list {
    margin-bottom: 32px;
  }
  .digital .container .digital-swiper .digital-list .digital-item {
    flex-direction: column;
    gap: 20px;
  }
  .digital .container .digital-swiper .digital-list .digital-item .digital-subitem {
    border-radius: 40px;
    min-height: 288px;
    gap: 20px;
    flex-direction: column;
    position: relative;
  }
  .digital .container .digital-swiper .digital-list .digital-item .digital-subitem .digital-content-wrap h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .digital .container .digital-swiper .digital-list .digital-item .digital-subitem img {
    position: absolute;
    max-width: 227px;
    height: 190px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .digital .container .digital-swiper .digital-btn {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 32px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .main-label {
    padding: 8px 16px;
    font-size: 14px;
    margin: 0 auto 16px;
  }
  .intro {
    padding: 110px 0 10px;
    background: url(../images/intro-bg.webp);
    background-repeat: no-repeat;
    background-position: 80% center;
    background-size: cover;
    background-color: #F8FCF7;
    background-blend-mode: multiply;
    border-radius: 0 0 40px 40px;
    min-height: 790px;
    overflow: hidden;
  }
  .intro .container .intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .intro .container .intro-wrapper .intro-content {
    max-width: 540px;
    text-align: center;
  }
  .intro .container .intro-wrapper .intro-content .intro-title {
    font-size: 36px;
  }
  .intro .container .intro-wrapper .intro-content .buttons-wraper {
    gap: 12px;
    justify-content: center;
    flex-direction: column;
    max-width: 360px;
    margin: 30px auto 0;
  }
  .intro .container .intro-wrapper .intro-content .buttons-wraper .main-button {
    width: 100%;
  }
  .intro .container .intro-wrapper .intro-image {
    max-width: unset;
    position: absolute;
    bottom: 0px;
    width: 320px;
  }
  .problem {
    padding-top: 64px;
  }
  .products {
    padding-top: 64px;
  }
  .products .container .products-wrapper .product-inner {
    margin: 20px auto;
    max-width: 340px;
    padding: 20px;
    border-radius: 35px;
  }
  .products .container .products-wrapper .product-inner .product-image {
    max-width: 213px;
  }
  .footer {
    padding: 100px 0 20px;
    background-position: left;
  }
  .footer .footer-decor {
    height: 37px;
  }
  .footer .container .footer-wrapper {
    margin-bottom: 81px;
    flex-direction: column;
  }
  .footer .container .footer-wrapper .footer-logo svg {
    width: 113px;
    height: 27px;
  }
  .footer .container .footer-wrapper .footer-content .footer-nav {
    gap: 20px;
  }
  .footer .container .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .how .container .section-title {
    margin-bottom: 32px;
  }
  .how .container .how-swiper .how-list {
    margin-bottom: 32px;
  }
  .how .container .how-swiper .how-list .how-item {
    border-radius: 26px;
    min-height: 285px;
    padding: 16px 10px;
  }
  .how .container .how-swiper .how-list .how-item .how-num {
    padding: 6px 16px;
  }
  .how .container .how-swiper .how-list .how-item .how-title {
    font-size: 20px;
  }
  .how .container .how-swiper .how-list .how-item img {
    position: absolute;
  }
  .how .container .how-swiper .how-list .how-item1 img {
    width: 125px;
    bottom: 0;
  }
  .how .container .how-swiper .how-list .how-item2 img {
    width: 155px;
  }
  .how .container .how-swiper .how-list .how-item3 img {
    width: 290px;
  }
  .how .container .how-swiper .how-list .how-item4 img {
    width: 240px;
  }
  .how .container .how-swiper .how-list .how-item5 img {
    width: 200px;
  }
  .how .container .how-swiper .how-list .how-item-uk .how-title {
    font-size: 17px;
  }
  .how .container .how-swiper .how-btn {
    display: none;
  }
  .how .container .how-swiper .how-pagination {
    max-width: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .intro .container .intro-wrapper .intro-image {
    bottom: 0px;
    width: 295px;
  }
  .solution {
    width: 92%;
  }
  .solution .container {
    padding-top: 350px;
    background: url(../images/solution-bg-mob1.webp);
    background-position: center -40px;
    background-repeat: no-repeat;
    background-size: 445px;
  }
  .solution .container .solution-list .solution-item {
    min-height: 365px;
  }
  .solution .container .solution-list .solution-item .solution-item1-mobile-img {
    width: 230px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col {
    flex-direction: row;
    gap: 30px;
  }
  .for-whom .container .for-whom-wrapper .for-whom-grid .for-whom-col .for-whom-item {
    width: 50%;
    min-height: 150px;
  }
}
@media only screen and (max-width: 450px) {
  .solution .container {
    background-size: 420px;
  }
}
@media only screen and (max-width: 430px) {
  .solution .container {
    background-size: 400px;
  }
}
@media only screen and (max-width: 410px) {
  .solution .container {
    background-size: 380px;
  }
}
@media only screen and (max-width: 370px) {
  .intro .container .intro-wrapper .intro-content .intro-title {
    font-size: 32px;
  }
  .intro .container .intro-wrapper .intro-image {
    bottom: 0px;
    width: 295px;
  }
}
.hero {
  background: url(../images/hero-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 750px;
  overflow: hidden;
  padding-top: 110px;
  border-radius: 0 0 40px 40px;
}
.hero .container .section-title {
  margin-bottom: 24px;
  color: white;
  font-size: 48px;
  letter-spacing: 1px;
}
.hero .container .hero-text-wrap {
  max-width: 410px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero .container .hero-text-wrap .hero-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  text-align: center;
}
.hero .container .hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.hero .container .hero-wrapper .hero-content {
  background: rgba(255, 255, 255, 0.2196078431);
  padding: 24px;
  border-radius: 30px;
  max-width: 380px;
  width: 100%;
}
.hero .container .hero-wrapper .hero-content .inline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: normal;
}
.hero .container .hero-wrapper .hero-content .inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .container .hero-wrapper .hero-content .inline-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero .container .hero-wrapper .hero-content .hero-content-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: normal;
  margin-top: 24px;
}
.hero .container .hero-wrapper .hero-content1 {
  margin-top: -135px;
}
.hero .container .hero-wrapper .hero-content2 {
  margin-top: 75px;
}
.hero .container .hero-wrapper .hero-image {
  position: relative;
  width: 300px;
  height: 350px;
  flex-shrink: 0;
}
.hero .container .hero-wrapper .hero-image img {
  position: absolute;
  width: 550px;
  bottom: -55px;
  object-fit: cover;
  left: -50%;
}

.why {
  padding-top: 100px;
  padding-bottom: 70px;
}
.why .container .section-title {
  margin-bottom: 40px;
}
.why .container .why-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.why .container .why-wrapper .why-item {
  min-height: 710px;
  border-radius: 40px;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why .container .why-wrapper .why-item .why-content {
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
  background: rgba(255, 255, 255, 0.2196078431);
  padding: 40px;
  border-radius: 40px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.why .container .why-wrapper .why-item .why-content .why-item-title {
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: normal;
}
.why .container .why-wrapper .why-item .why-content .why-inner .inline-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7490196078);
  font-size: 16px;
  line-height: normal;
  margin-bottom: 40px;
}
.why .container .why-wrapper .why-item .why-content .why-inner .inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why .container .why-wrapper .why-item .why-content .why-inner .inline-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.why .container .why-wrapper .why-item .why-content .why-inner .why-text {
  color: rgba(255, 255, 255, 0.7490196078);
  font-size: 16px;
  line-height: normal;
  text-align: center;
}
.why .container .why-wrapper .why-item1 {
  background: url(../images/why1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.why .container .why-wrapper .why-item2 {
  background: url(../images/why2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.why .container .buttons-wraper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}

.formula1 .container .formula1-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.formula1 .container .formula1-wrapper .formula1-image {
  max-width: 670px;
}
.formula1 .container .formula1-wrapper .formula1-image img {
  border-radius: 40px;
}
.formula1 .container .formula1-wrapper .formula1-content {
  max-width: 570px;
  flex-shrink: 0;
}
.formula1 .container .formula1-wrapper .formula1-content .section-title {
  margin-bottom: 24px;
}
.formula1 .container .formula1-wrapper .formula1-content .formula1-title {
  text-align: center;
  color: #222F30;
  font-size: 32px;
  line-height: normal;
  margin-bottom: 20px;
}
.formula1 .container .formula1-wrapper .formula1-content .inline-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
}
.formula1 .container .formula1-wrapper .formula1-content .inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.formula1 .container .formula1-wrapper .formula1-content .inline-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #F78823;
  border-radius: 50%;
  flex-shrink: 0;
}
.formula1 .container .formula1-wrapper .formula1-content .formula1-text {
  color: #B7B7B7;
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  line-height: normal;
}

.diet .container {
  padding: 43px 20px 85px;
  border-radius: 40px;
  background: url(../images/diet-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.diet .container .section-title {
  margin-bottom: 93px;
}
.diet .container .diet-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.diet .container .diet-wrapper .diet-content {
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
  background: rgba(255, 255, 255, 0.2196078431);
  padding: 24px;
  border-radius: 30px;
  max-width: 375px;
}
.diet .container .diet-wrapper .diet-content .diet-title {
  font-size: 32px;
  line-height: normal;
  margin-bottom: 24px;
  color: white;
}
.diet .container .diet-wrapper .diet-content .inline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  line-height: normal;
  margin-bottom: 24px;
}
.diet .container .diet-wrapper .diet-content .inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.diet .container .diet-wrapper .diet-content .inline-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.diet .container .diet-wrapper .diet-content p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  line-height: normal;
}
.diet .container .diet-wrapper img {
  max-width: 305px;
}

.formula2 .container .formula2-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.formula2 .container .formula2-wrapper .formula2-content {
  max-width: 530px;
  flex-shrink: 0;
}
.formula2 .container .formula2-wrapper .formula2-content .section-title {
  margin-bottom: 40px;
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-title {
  text-align: center;
  color: #222F30;
  font-size: 32px;
  line-height: normal;
  margin-bottom: 24px;
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-list {
  margin-bottom: 40px;
  display: flex;
  gap: 45px;
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-list .formula2-col .formula2-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-list .formula2-col .formula2-item:not(:last-child) {
  margin-bottom: 16px;
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-list .formula2-col .formula2-item .formula2-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 164, 77, 0.1019607843);
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-list .formula2-col .formula2-item .formula2-circle img {
  width: 16px;
  height: 16px;
}
.formula2 .container .formula2-wrapper .formula2-content .formula2-text {
  color: #B7B7B7;
  text-align: center;
  font-size: 16px;
  line-height: normal;
}
.formula2 .container .formula2-wrapper .formula2-image {
  max-width: 670px;
}
.formula2 .container .formula2-wrapper .formula2-image img {
  border-radius: 40px;
}

.formula3 .container .formula3-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
.formula3 .container .formula3-wrapper .formula3-image {
  max-width: 670px;
}
.formula3 .container .formula3-wrapper .formula3-content {
  max-width: 570px;
  flex-shrink: 0;
}
.formula3 .container .formula3-wrapper .formula3-content .section-title {
  margin-bottom: 40px;
}
.formula3 .container .formula3-wrapper .formula3-content .inline-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
}
.formula3 .container .formula3-wrapper .formula3-content .inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.formula3 .container .formula3-wrapper .formula3-content .inline-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #F78823;
  border-radius: 50%;
  flex-shrink: 0;
}

.protocol1 .container .section-title {
  margin-bottom: 20px;
}
.protocol1 .container .protocol1-subtitle {
  font-size: 16px;
  color: #B7B7B7;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
.protocol1 .container .protocol1-list-desktop {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner {
  display: flex;
  gap: 24px;
  width: 100%;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item {
  border-radius: 40px;
  background: #F8FCF7;
  min-height: 290px;
  padding: 30px 30px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item .protocol1-title {
  color: #222F30;
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item img {
  position: absolute;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item .protocol1-image1 {
  width: 360px;
  right: 0;
  bottom: -6px;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item .protocol1-image2 {
  width: 360px;
  right: 0;
  bottom: -15px;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item .protocol1-image3 {
  width: 225px;
  right: 0;
  bottom: -25px;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item .protocol1-image4 {
  width: 285px;
  right: 0;
  bottom: -25px;
}
.protocol1 .container .protocol1-list-desktop .protocol1-inner .protocol1-item .protocol1-image5 {
  width: 285px;
  right: 0;
  bottom: -25px;
}
.protocol1 .container .protocol1-text-desktop {
  font-size: 16px;
  color: #B7B7B7;
  line-height: normal;
  text-align: center;
}
.protocol1 .container .protocol1-list-mobile {
  display: none;
}

@media only screen and (max-width: 1100px) {
  .formula1 .container .formula1-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .formula1 .container .formula1-wrapper .formula1-content .section-title {
    margin-bottom: 24px;
  }
  .formula1 .container .formula1-wrapper .formula1-content .formula1-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .formula1 .container .formula1-wrapper .formula1-content .inline-list {
    gap: 12px;
  }
  .formula1 .container .formula1-wrapper .formula1-content .inline-list li {
    gap: 4px;
  }
  .formula1 .container .formula1-wrapper .formula1-content .inline-list li::before {
    width: 6px;
    height: 6px;
  }
  .formula1 .container .formula1-wrapper .formula1-content .formula1-text {
    margin-top: 24px;
  }
  .formula2 .container .formula2-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .formula2 .container .formula2-wrapper .formula2-content .section-title {
    margin-bottom: 24px;
  }
  .formula2 .container .formula2-wrapper .formula2-content .formula2-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .formula2 .container .formula2-wrapper .formula2-content .formula2-list {
    max-width: 240px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .formula2 .container .formula2-wrapper .formula2-content .formula2-list .formula2-col .formula2-item:not(:last-child) {
    margin-bottom: 12px;
  }
  .formula3 .container .formula3-wrapper {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .formula3 .container .formula3-wrapper .formula3-content .section-title {
    margin-bottom: 24px;
  }
  .formula3 .container .formula3-wrapper .formula3-content .inline-list {
    gap: 12px;
  }
  .formula3 .container .formula3-wrapper .formula3-content .inline-list li {
    gap: 4px;
  }
  .formula3 .container .formula3-wrapper .formula3-content .inline-list li::before {
    width: 6px;
    height: 6px;
  }
}
@media only screen and (max-width: 1050px) {
  .protocol1 .container .section-title {
    margin-bottom: 16px;
  }
  .protocol1 .container .protocol1-subtitle {
    margin-bottom: 32px;
  }
  .protocol1 .container .protocol1-list-desktop {
    display: none;
  }
  .protocol1 .container .protocol1-text-desktop {
    display: none;
  }
  .protocol1 .container .protocol1-list-mobile {
    display: block;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list {
    margin-bottom: 32px;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item {
    border-radius: 40px;
    background: #F8FCF7;
    min-height: 290px;
    font-weight: 500;
    padding: 20px 20px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item .protocol1-title {
    color: #222F30;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item img {
    position: absolute;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item .protocol1-image1 {
    width: 290px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item .protocol1-image2 {
    width: 290px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item .protocol1-image3 {
    width: 250px;
    bottom: -16px;
    right: -2px;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item .protocol1-image4 {
    width: 290px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-list .protocol1-item .protocol1-image5 {
    width: 290px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-text-mobile {
    font-size: 16px;
    color: #B7B7B7;
    line-height: normal;
    text-align: center;
    margin-bottom: 32px;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-pagination {
    position: static;
    max-width: 235px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(177, 183, 195, 0.2);
    overflow: hidden;
  }
  .protocol1 .container .protocol1-list-mobile .protocol1-swiper .protocol1-pagination .swiper-pagination-progressbar-fill {
    border-radius: 20px;
    background: #4EA44D;
  }
}
@media only screen and (max-width: 992px) {
  .hero {
    min-height: 685px;
  }
  .hero .container .hero-wrapper {
    gap: 12px;
  }
  .hero .container .hero-wrapper .hero-image {
    position: relative;
    width: 240px;
    height: 350px;
    flex-shrink: 0;
  }
  .hero .container .hero-wrapper .hero-image img {
    position: absolute;
    width: 455px;
    bottom: -45px;
    object-fit: cover;
    left: -60%;
  }
  .why {
    padding-top: 64px;
    padding-bottom: 48px;
  }
  .why .container .section-title {
    margin-bottom: 24px;
  }
  .why .container .why-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .diet .container {
    padding: 16px;
  }
  .diet .container .section-title {
    margin-bottom: 24px;
  }
  .diet .container .diet-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .diet .container .diet-wrapper .diet-content {
    padding: 16px;
    border-radius: 24px;
    max-width: 375px;
  }
  .diet .container .diet-wrapper .diet-content .diet-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .diet .container .diet-wrapper .diet-content .inline-list {
    gap: 12px;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .diet .container .diet-wrapper .diet-content .inline-list li {
    gap: 4px;
  }
  .diet .container .diet-wrapper .diet-content .inline-list li::before {
    width: 6px;
    height: 6px;
  }
  .diet .container .diet-wrapper img {
    max-width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    background: url(../images/hero-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 685px;
    overflow: hidden;
  }
  .hero .container .section-title {
    font-size: 32px;
  }
  .hero .container .hero-text-wrap {
    gap: 12px;
  }
  .hero .container .hero-wrapper {
    flex-direction: column;
  }
  .hero .container .hero-wrapper .hero-content {
    padding: 16px;
    border-radius: 24px;
    max-width: 250px;
  }
  .hero .container .hero-wrapper .hero-content .inline-list {
    gap: 12px;
    font-size: 14px;
  }
  .hero .container .hero-wrapper .hero-content .inline-list li {
    gap: 10px;
  }
  .hero .container .hero-wrapper .hero-content .inline-list li::before {
    width: 6px;
    height: 6px;
  }
  .hero .container .hero-wrapper .hero-content .hero-content-text {
    font-size: 14px;
    margin-top: 16px;
  }
  .hero .container .hero-wrapper .hero-content1 {
    margin-top: 0px;
  }
  .hero .container .hero-wrapper .hero-content2 {
    margin-top: 0px;
  }
  .hero .container .hero-wrapper .hero-image {
    position: relative;
    width: 230px;
    height: 270px;
    flex-shrink: 0;
    order: 1;
  }
  .hero .container .hero-wrapper .hero-image img {
    position: absolute;
    width: 345px;
    bottom: -5px;
    object-fit: cover;
    left: -35%;
  }
  .why .container .why-wrapper {
    margin-bottom: 24px;
  }
  .why .container .why-wrapper .why-item {
    min-height: 590px;
    padding: 16px;
  }
  .why .container .why-wrapper .why-item .why-content {
    padding: 16px;
    border-radius: 24px;
    min-height: unset;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  .why .container .why-wrapper .why-item .why-content .why-item-title {
    font-size: 24px;
  }
  .why .container .why-wrapper .why-item .why-content .why-inner .inline-list {
    gap: 12px;
    margin-bottom: 20px;
  }
  .why .container .buttons-wraper {
    max-width: 450px;
    margin: 0 auto;
  }
  .why .container .buttons-wraper .main-button {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .diet .container .diet-wrapper .diet-content {
    max-width: unset;
    width: 100%;
  }
}
.technology {
  padding-top: 140px;
  padding-bottom: 60px;
}
.technology .section-title {
  margin-bottom: 40px;
}
.technology .technology-main-text {
  display: none;
  font-size: 16px;
  color: #B7B7B7;
  text-align: center;
  line-height: normal;
}
.technology .technology-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.technology .technology-list .technology-inner {
  display: flex;
  gap: 24px;
  width: 100%;
}
.technology .technology-list .technology-inner .technology-item {
  border-radius: 40px;
  background: #F8FCF7;
  min-height: 385px;
  padding: 30px 30px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.technology .technology-list .technology-inner .technology-item .technology-title {
  font-size: 24px;
  line-height: normal;
  color: #222F30;
  margin-bottom: 16px;
  text-align: center;
}
.technology .technology-list .technology-inner .technology-item .technology-text {
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
  text-align: center;
}
.technology .technology-list .technology-inner .technology-item img {
  position: absolute;
  bottom: -1px;
  transform: translateX(-50%);
  left: 50%;
  width: 325px;
}

@media only screen and (max-width: 992px) {
  .technology {
    padding-top: 120px;
    padding-bottom: 72px;
  }
  .technology .section-title {
    margin-bottom: 16px;
  }
  .technology .technology-main-text {
    display: block;
    margin-bottom: 32px;
  }
  .technology .technology-list {
    gap: 20px;
  }
  .technology .technology-list .technology-inner {
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
  }
  .technology .technology-list .technology-inner .technology-item {
    padding: 16px 16px 0;
  }
}
.products-section {
  padding-top: 140px;
  padding-bottom: 0;
  background: url(../images/products-bg1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.products-section .container {
  max-width: unset;
  padding: 0;
}
.products-section .container .section-title {
  max-width: 1380px;
  padding: 0 15px;
  margin: 0 auto 24px;
}
.products-section .container .products-text-wrap {
  max-width: 1380px;
  padding: 0 15px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products-section .container .products-text-wrap .products-section-main-text {
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
  text-align: center;
}
.products-section .container .products-swiper {
  margin-bottom: 40px;
}
.products-section .container .products-swiper .products-list {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
}
.products-section .container .products-swiper .products-list .products-item {
  border-radius: 35px;
  background: #F8FCF7;
  width: 322px;
  flex-shrink: 0;
  padding: 20px;
  transition: 0.3s;
  min-height: 410px;
  transform: scale(0.9);
}
.products-section .container .products-swiper .products-list .products-item h3 {
  font-size: 32px;
  color: #222F30;
  text-align: center;
  line-height: normal;
  margin-bottom: 30px;
}
.products-section .container .products-swiper .products-list .products-item img {
  height: 237px;
  object-fit: contain;
}
.products-section .container .products-swiper .products-list .products-item .products-active-image {
  object-fit: cover;
}
.products-section .container .products-swiper .products-list .swiper-slide-active {
  transform: scale(1);
}
.products-section .container .products-swiper .products-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(78, 164, 77, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}
.products-section .container .products-swiper .products-btn svg {
  stroke: #222F30;
}
.products-section .container .products-swiper .products-btn:hover {
  transition: 0.3s;
  background: #4EA44D;
}
.products-section .container .products-swiper .products-btn:hover svg {
  stroke: white;
}
.products-section .container .products-swiper .products-next {
  right: 35px;
}
.products-section .container .products-swiper .products-prev {
  left: 35px;
}
.products-section .container .products-swiper .swiper-pagination {
  display: none;
}
.products-section .container .prod-button {
  transition: 0.1s;
  margin: 0 auto 40px;
  display: block;
}

.sponsors-prod {
  padding: 40px 0 60px;
}

@media only screen and (max-width: 1920px) {
  .products-section {
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .products-section {
    padding-bottom: 120px;
  }
  .products-section .container .products-swiper .products-btn {
    display: none;
  }
}
@media only screen and (max-width: 567px) {
  .products-section .container .products-text-wrap {
    margin: 0 auto 32px;
  }
  .products-section .container .products-swiper {
    margin-bottom: 0px;
  }
  .products-section .container .products-swiper .products-list {
    margin-bottom: 32px;
  }
  .products-section .container .products-swiper .products-list .products-item {
    width: 275px;
    min-height: 410px;
    transform: scale(0.8);
  }
  .products-section .container .products-swiper .products-list .products-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .products-section .container .products-swiper .products-list .products-item .products-active-image {
    object-fit: cover;
  }
  .products-section .container .products-swiper .products-list .swiper-slide-active {
    transform: scale(1);
  }
  .products-section .container .products-swiper .swiper-pagination {
    display: block;
    position: static;
    max-width: 235px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(177, 183, 195, 0.2);
    overflow: hidden;
  }
  .products-section .container .products-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
    border-radius: 20px;
    background: #4EA44D;
  }
  .products-section .container .prod-button {
    margin: 32px auto 32px;
  }
}
.about {
  background: url(../images/about-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 685px;
  overflow: hidden;
  padding-top: 145px;
  padding-bottom: 20px;
  border-radius: 0 0 40px 40px;
}
.about .container .section-title {
  margin-bottom: 24px;
}
.about .container .about-text {
  max-width: 585px;
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  margin: 0 auto;
}

.practice {
  padding-top: 90px;
  padding-bottom: 60px;
}
.practice .container .section-title {
  max-width: 540px;
  margin: 0 auto 40px;
}
.practice .container .practice-grid {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 45px;
}
.practice .container .practice-grid .practice-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.practice .container .practice-grid .practice-grid-item img {
  width: 32px;
  display: block;
}
.practice .container .practice-grid .practice-grid-item p {
  font-size: 24px;
  color: #222F30;
  line-height: normal;
  text-align: center;
}
.practice .container .practice-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.practice .container .practice-text-wrapper .practice-text {
  color: #B7B7B7;
  font-size: 16px;
  line-height: normal;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .about {
    background: url(../images/about-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 685px;
    overflow: hidden;
    padding-top: 145px;
    padding-bottom: 20px;
    border-radius: 0 0 40px 40px;
  }
  .about .container .section-title {
    margin-bottom: 24px;
  }
  .about .container .about-text {
    max-width: 585px;
    color: #B7B7B7;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    margin: 0 auto;
  }
  .practice .container .section-title {
    max-width: 350px;
    margin: 0 auto 24px;
  }
  .practice .container .practice-grid {
    grid-template-columns: 1fr;
    grid-gap: 24px;
    max-width: 460px;
    margin: 0 auto 32px;
  }
  .practice .container .practice-grid .practice-grid-item {
    gap: 12px;
  }
  .practice .container .practice-grid .practice-grid-item p {
    font-size: 20px;
  }
  .practice .container .practice-text-wrapper {
    gap: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
