html {
  box-sizing: border-box;
}

*,
*::after,
*::before,
*:after,
*:before {
  box-sizing: inherit;
}

ul,
ol,
button {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
button {
  margin: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background-color: transparent;
  outline: transparent;
  appearance: none;
  border-radius: 0;
}

a {
  text-decoration: none;
  color: inherit;
  outline: transparent;
}

button {
  padding: 0;
  cursor: pointer;
  user-select: none;
  appearance: none;
}

:root {
  --primary-color: #0d0f10;
  --secondary-color: #6c757d;
  --background-color: #ffffff;
  --background-secondary: #F6F7FC;
}

body {
  min-height: 100vh;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: var(--primary-color);
  background-color: var(--background-color);
  text-rendering: optimizeLegibility;
}

.wrapper {
  overflow-x: hidden;
}

.container {
  max-width: 1208px;
  padding: 0 16px;
  margin: 0 auto;
}

.section {
  padding: 140px 0;
}

.history {
  padding: 96px 0 112px;
}

.title {
  position: relative;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 60px;
  z-index: 0;
}

.second_title {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.4px;
  margin-bottom: 32px;
}

.second_title.history__title {
  text-align: center;
}

.button {
  font-weight: 600;
  line-height: 130%;
  color: #ffffff;
  padding: 5px 7px;
  transition: box-shadow 0.2s ease, color 0.3s ease, background-color 0.3s ease-out, outline 0.2s ease;
  border-radius: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.hello {
  padding: 88px 0 64px;
  background-color: var(--background-color);
}

.hello .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hello__inner {
  flex: 1;
  max-width: 600px;
  margin-top: 168px;
  position: relative;
}

.hello__image--arrow {
  position: absolute;
  bottom: -25px;
  left: 40%;
  height: 175px;
}

.hello__title {
  margin-bottom: 32px;
}

.hello__text {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-align: left;
  max-width: 537px;
}

.hello__image {
  flex-shrink: 0;
  max-width: 614px;
  height: auto;
  border-radius: 20px;
}

.about {
  padding: 96px 0 80px;
  background-color: var(--background-color);
}

.about__title {
  text-align: center;
  margin-bottom: 114px;
}

.about__text {
  display: none;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.about__image {
  height: 66px;
  width: auto;
}

.about__image--tours {
  order: 2;
}

.about__image--tat {
  order: 3;
}

.about__inner::before,
.about__inner::after,
.about__inner:before,
.about__inner:after {
  content: '';
  display: flex;
  align-items: center;
  font-size: 48px;
  color: #6c757d;
  font-weight: 300;
}

.about__inner::before {
  content: '+';
  order: 1;
  margin: 0 20px;
}

.about__inner::after {
  content: '=';
  order: 2;
  margin: 0 20px;
}

.stats {
  padding: 96px 0 80px;
  background-color: var(--background-secondary);
}

.stats__title {
  text-align: center;
  margin: 0 auto 32px;
}

.stats__text {
  color: var(--primary-color);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 1066px;
  margin: 0 auto;
  text-align: center;
}

.stats__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 72px 0 75px -70px;
  width: 1300px;
}

.stats__item {
  border-radius: 50px;
  text-align: center;
  transition: transform 0.3s ease;
  background-size: 105%;
}

.stats__item:not(:last-child) {
  margin-right: -20px;
}

.stats--down.stats__item:not(:last-child) {
  margin-right: 0;
}

.stats__item--blue,
.stats__item--red,
.stats__item--purple,
.stats__item--green {
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3px;
}

.stats__item--blue {
  background-color: rgba(138, 151, 255, 0.15);
  color: rgba(51, 71, 188, 1);
  padding: 40px 35px 29px 29px;
  width: 340px;
}

.stats__item--red {
  background-color: rgba(255, 138, 138, 0.15);
  color: rgba(228, 53, 78, 1);
  padding: 33px 21px 45px 47px;
  width: 340px;
}

.stats__item--purple {
  background-color: rgba(186, 138, 255, 0.15);
  color: rgba(100, 21, 172, 1);
  padding: 43px 24px 35px 44px;
  width: 400px;
}

.stats__item--green {
  background-color: #E7F3D3;
  color: rgba(72, 91, 39, 1);
  padding: 28px 28px 45px 40px;
  width: 340px;
}

.stats__text-down {
  display: none;
}

.stats__title-down {
  max-width: 940px;
  margin: 0 auto 91px;
}

.stats-down .stats__item {
  flex-basis: 264px;
  border-radius: 90px;
}

.stats__number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
}

.stats__number span {
  font-size: 32px;
  margin-left: -10px;
}

.stats__label {
  font-size: 17px;
  font-weight: 400;
}

.stats__period {
  text-align: center;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.stats__period-img {
  margin: 0 10px 0 0;
}

.stats__inner--dowm{
  gap: 32px;
}

.stats__item:not(:last-child).stats__item--down{
  margin-right: 0!important;
}

.stats__item--red-top-down {
  border-radius: 100px !important;
  background-color: #F9D7DC;
  max-width: 264px;
  transform: scale(1);
  padding: 36px 16px !important;
  position: relative;
  z-index: 1;
}

.stats__item--red-top-down-img {
  top: -100px;
  position: absolute;
  display: none;
}

.stats__item--blue-top-down-img {
  position: absolute;
}

.stats__item--purple-top-down-img {
  bottom: -80px;
  right: -50px;
  position: absolute;
}

.stats__item--green-top-down-img {
  top: -108px;
  right: -36px;
  position: absolute;
}

.stats__item--blue-top-down {
  background-color: #D5DBFF;
  max-width: 264px;
  transform: scale(1);
  padding: 36px 16px !important;
  position: relative;
  z-index: 1;
  margin-right: auto;
}

.stats__number {
  font-size: 64px;
}

.stats__item--purple-top-down {
  border-radius: 100px !important;
  max-width: 264px;
  background-color: #EBD5FF;
  transform: scale(1);
  padding: 36px 16px !important;
  position: relative;
  margin-right: auto;
}

.history .container {
  overflow-x: visible;
}

.history__top {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
}

.history__top-omg {
  width: 110px !important;
}

.history__top-text {
  color: rgba(13, 15, 16, 1);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.2px;
  max-width: 920px;
}

.history__list {
  margin-top: 56px;
  display: flex;
  margin-bottom: 56px;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.history__list:active {
  cursor: grabbing;
}

.history__item {
  flex: 0 0 278px;
  width: 278px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.history__item-image-border {
  margin-bottom: 32px;
}

.history__item-image {
  object-fit: contain;
  padding: 15px 25px;
  height: 112px;
  width: 175px;
  display: block;
}

.icon-about-history-1 {
  transform: translate(7%, 20%);
}
.icon-about-history-2 {
  transform: translate(18%, 20%);
}
.icon-about-history-3 {
  transform: translate(9%, 20%);
}
.icon-about-history-4 {
  transform: translate(10%, -3%);
}
.icon-about-history-5 {
  transform: translate(7%, 20%);
}
.icon-about-history-6 {
  transform: translate(9%, 25%);
}
.icon-about-history-7 {
  transform: translate(15%, 20%);
}
.icon-about-history-8 {
  transform: translate(17%, 20%);
}
.icon-about-history-9 {
  transform: translate(15%, 20%);
}
.icon-about-history-10 {
  transform: translate(7%, 20%);
}

.history__item-image-zsu {
  padding: 15px 25px 15px 15px;
}

.history__item-image-covid {
  padding: 0;
}

.history__item-image-com {
  padding: 25px;
}

.history__item-number {
  color: #0d85ff;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.3px;
  padding-bottom: 44px;
  border-bottom: 2px solid #FFD839;
}

.history__list > .history__item:last-child .history__item-number {
  border: 0;
}

.history__item-text {
  position: relative;
  padding-top: 44px;
  max-width: 217px;
  font-size: 17px;
}

.history__item-text::before,
.history__item-text:before {
  position: absolute;
  content: '';
  background-color: #FFD839;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  top: -12px;
  left: 0;
}

.history__actions{
  position: relative;
  max-width: 1208px;
  padding: 0 16px;
  margin: 0 auto;
}

.history__actions::before,
.history__actions:before{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-49%);  
  z-index: -2;
  width: 100%;
  height: 2px;
  background-color: #ccc;
}

.history__custom-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  will-change: transform;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.history__slider-track {
  width: 100%;
  height: 3px;
  background: #E5E5E5;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.history__slider-progress {
  height: 100%;
  border-radius: 12px;
  width: 0;
  transition: width 0.2s ease;
}

.history__slider-thumb {
  position: absolute;
  width: 70px;
  height: 36px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px 0 rgba(143, 147, 151, 0.16), 0 1px 4.900000095367432px 0 rgba(143, 147, 151, 0.21);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  cursor: grab;
  transition: all 0.2s ease;
  left: 0;
  transform: translateX(0);
}

.history__slider-thumb:hover {
  transform: translateX(0) scale(1.05);
  box-shadow: 0 2px 16px 0 rgba(143, 147, 151, 0.24), 0 2px 8px 0 rgba(143, 147, 151, 0.31);
}

.history__slider-thumb:active {
  cursor: grabbing;
  transform: translateX(0) scale(1.02);
}

.history__slider-thumb svg {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease;
}

.history__slider-thumb:hover svg {
  opacity: 0.8;
}
.history__top--down{
  margin-top: 222px;
}

.part {
  padding: 96px 0 148px;
  background-color: #fff;
}

.part__title {
  color: #0d0f10;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.4px;
  max-width: 830px;
  margin: 0 auto 32px;
  text-align: center;
}

.part__text {
  color: #0d0f10;
  font-size: 19px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
}

.part__inner {
  padding: 100px;
  display: flex;
  gap: 40px;
  position: relative;
}

.part__item--arrow-1 {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}

.part__item--arrow-2 {
  position: absolute;
  bottom: -30px;
  right: 60px;
  z-index: 1;
}

.part__item {
  position: absolute;
}

.part__item-box {
  max-width: 200px;
}

.part__item-link{
  display: flex;
  max-width: 465px;
  max-height: 164px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 16px;
  padding: 16px;
}

.part__item--1{
  top: 4%;
  left: 46%;
}

.part__item--2{
  bottom: 14%;
  right: 51%;
}

.part__item--3{
  bottom: 11%;
  left: 51%;
}

.part__item--4{
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.part__item-image {
   height: 170px;
   width: 170px;
   border-radius: 50%;
   object-fit: contain;
   object-position: center;
   background-color: #fff;
   padding: 10px;
   border: 10px solid #f6f7fd;
   transition: all 0.3s ease;
}

.part__item-image--big{
  height: 168px;
  width: 168px;
}

.part__item-title {
  color: #0d0f10;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-align: left;
  transition: color 0.3s ease;
}

.part__item-title--right{
  text-align: right;
}

.part__item-text {
  color: #0d0f10;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}

.part__item-text--right{
  text-align: right;
}

.icon-about-blue-arrow {
  background: url('../../../img/info/about/blue-3.svg') no-repeat center;
  width: 175px;
  height: 175px;
}
.icon-about-history-1 {
  background: url('../../../img/info/about/history-1.svg') no-repeat center / contain;
  width: 150px;
  height: 82px;
}
.icon-about-history-2 {
  background: url('../../../img/info/about/history-2.svg') no-repeat center / contain;
  width: 130px;
  height: 82px;
}
.icon-about-history-3 {
  background: url('../../../img/info/about/history-3.svg') no-repeat center / contain;
  width: 140px;
  height: 82px;
}
.icon-about-history-4 {
  background: url('../../../img/info/about/history-4.svg') no-repeat center / contain;
  width: 150px;
  height: 120px;
}
.icon-about-history-5 {
  background: url('../../../img/info/about/history-5.svg') no-repeat center / contain;
  width: 150px;
  height: 82px;
}
.icon-about-history-6 {
  background: url('../../../img/info/about/history-6.svg') no-repeat center / contain;
  width: 150px;
  height: 75px;
}
.icon-about-history-7 {
  background: url('../../../img/info/about/history-7.svg') no-repeat center / contain;
  width: 130px;
  height: 82px;
}
.icon-about-history-8 {
  background: url('../../../img/info/about/history-8.svg') no-repeat center / contain;
  width: 130px;
  height: 82px;
}
.icon-about-history-9 {
  background: url('../../../img/info/about/history-9.svg') no-repeat center / contain;
  width: 130px;
  height: 82px;
}
.icon-about-history-10 {
  background: url('../../../img/info/about/history-11.svg') no-repeat center / contain;
  width: 150px;
  height: 82px;
}
.icon-about-tours-v2 {
  background: url('../../../img/info/about/tours-v2.svg') no-repeat center / contain;
  width: 110px;
  height: 65px;
}
.icon-about-moitury {
  background: url('../../../img/info/about/moitury.svg') no-repeat center / 80% auto, #fff;;
  width: 168px;
  height: 168px;
}
.icon-about-tourscan {
  background: url('../../../img/info/about/tourscan.svg') no-repeat center / 80% auto, #fff;;
  width: 168px;
  height: 168px;
}
.icon-about-travelon {
  background: url('../../../img/info/about/travelon.svg') no-repeat center / 80% auto, #fff;;
  width: 168px;
  height: 168px;
}
.icon-about-tat-2 {
  background: url('../../../img/info/about/tat.svg') no-repeat center / 80% auto, #fff;;
  width: 168px;
  height: 168px;
}
.icon-about-arrow-red-figure {
  background: url('../../../img/info/about/red-2.svg') no-repeat center / contain;
  height: 100px;
  width: 37px;
  top: -40px;
  left: -40px;
  width: 90px !important;
  transform: scaleX(1);
  display: none;
}
.icon-about-arrow-blue-figure {
  background: url('../../../img/info/about/blue-1.svg') no-repeat center / contain;
  height: 100px;
  width: 37px;
  top: -80px;
  left: 0;
}
.icon-about-arrow-purple-figure {
  background: url('../../../img/info/about/purple-11.svg') no-repeat center / contain;
  height: 96px;
  width: 107px;
  bottom: -80px;
  z-index: 10;
}
.icon-about-arrow-green-figure {
  background: url('../../../img/info/about/green-1.svg') no-repeat center / 80% auto;
  height: 123px;
  width: 106px;
  z-index: 1;
  position: absolute;
  transform: scaleX(1);
  top: 86px;
  right: -36px;
}
.icon-about-border {
  background: url('../../../img/info/about/history-bg.svg') no-repeat center / cover;
  height: 112px;
  width: 175px;
}
.icon-about-part-bg {
  background: url('../../../img/info/about/part-bg.svg') no-repeat center / 500px;
  min-height: 472px;
}
.icon-about-arrow-1 {
  background: url('../../../img/info/about/part-decor-1.svg') no-repeat center / contain;
  height: 125px;
  width: 165px;
}
.icon-about-arrow-2 {
  background: url('../../../img/info/about/part-decor-2.svg') no-repeat center / contain;
  height: 130px;
  width: 178px;
}
.icon-about-purple-bg {
  background: transparent url('../../../img/info/about/purple.svg') no-repeat center;
}
.icon-about-green-bg {
  background: transparent url('../../../img/info/about/green.svg') no-repeat center;
}
.icon-about-blue-bg {
  background: transparent url('../../../img/info/about/blue.svg') no-repeat center;
}
.icon-about-red-bg {
  background: transparent url('../../../img/info/about/red.svg') no-repeat center;
}

@media (max-width: 1400px) {
  .stats__inner {
    width: unset;
    margin-left: unset;
  }
}

@media (max-width: 1200px) {
  .stats__inner {
    width: 725px;
    margin: 48px auto;
    flex-wrap: wrap;
  }

  .stats__item--green-top-down-img {
    top: -25px;
    right: -80px;
  }
}

@media (max-width: 1024px) {
  .hello__image--arrow {
    display: none;
  }
}

@media (max-width: 996px) {
  .about__inner {
    gap: 20px;
  }

  .hello {
    padding: 48px 0 20px;
  }

  .hello__inner, .hello__text {
    margin-top: unset;
    max-width: unset;
  }

  .hello__image {
    display: none;
  }

  .about {
    padding: 0 0 48px;
  }

  .about__title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: left;
    max-width: 100%;
    display: none;
  }

  .about__text,
  .hello__text {
    display: block;
    color: #0d0f10;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .about__inner {
    margin-bottom: 32px;
    gap: 20px;
    align-items: center;
  }

  .about__inner::before,
  .about__inner::after {
    font-size: 24px;
    margin: 10px 0;
  }

  .about__inner::before {
    order: 1;
  }

  .about__image {
    height: 40px !important;
    order: 0;
  }

  .about__image--tours {
    order: 2;
  }

  .about__inner::after {
    order: 3;
  }

  .about__image--tat {
    order: 4;
  }

  .stats {
    padding: 48px 0;
  }

  .history {
    padding: 48px 0;
  }

  .history__actions{
    display: none;
  }

  .history__top--down {
    margin-top: 96px;
  }
}

@media (max-width: 768px) {
  .hello {
    padding: 48px 0 20px;
  }

  .hello .container {
    flex-direction: column;
    text-align: left;
    gap: 0;
  }
  
  .part__item-title {
    font-size: 20px;
    line-height: 125%;
  }
  
  .part__item-text {
    font-size: 14px;
    line-height: 135%;
  }

  .hello__image {
    display: none;
  }

  .about {
    padding: 14px 0 48px;
  }

  .about__inner {
    margin-bottom: 46px;
  }

  .stats {
    padding: 48px 0;
    background-color: #f5f5f5;
  }

  .stats__title {
    display: none;
    color: #0d0f10;
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    text-align: left;
  }

  .stats__text {
    display: none;
    color: #0d0f10;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 32px;
  }

  .stats__text.stats__text-down,
  .stats__title.stats__title-down {
    display: block;
  }

  .stats__inner {
    flex-direction: column;
    gap: 20px;
    margin: 0 auto 32px;
    width: unset;
  }

  .stats__item {
    width: 100%;
    min-width: auto;
    padding: 53px 32px;
    border-radius: 40px;
    transform: scale(1);
    background-size: 55% !important;
  }

  .stats__item--red-top {
    margin-top: 0;
  }

  .stats__title-down {
    margin-bottom: 32px;
  }

  .stats__number {
    font-size: 56px;
    margin-bottom: 4px;
  }

  .stats__item--red-top-down-img {
    top: -40px;
    left: -40px;
    width: 90px !important;
  }

  .stats__item--blue-top-down-img {
    top: -100px;
    right: 0;
    left: auto;
    transform: scaleX(-1);
    width: 100px !important;
  }

  .stats__item--red-top-down-img {
    display: block;
  }

  .stats__text.stats__text-down {
    margin-bottom: 100px;
  }

  .stats__item--red-top-down {
    margin-bottom: 32px;
    z-index: 2;
  }

  .stats__item--purple-top-down {
    margin-bottom: 32px;
  }

  .stats__item--blue-top-down {
    margin-bottom: 32px;
  }

  .stats__item--purple-top-down-img {
    top: 150px;
    right: 235px;
    z-index: -3;
  }

  .stats__item--green-top-down-img {
    top: -250px;
    right: -40px;
    z-index: -2;
  }

  .stats-down .stats__item{
    flex-basis: auto;
    width: 264px;
  }

  .stats__item--green {
    padding: 36px 16px !important;
  }
  .icon-about-arrow-red-figure {
    height: 100px;
    width: 37px;
    top: -40px;
    left: -40px;
    width: 90px !important;
    transform: scaleX(1);
    display: block;
  }
  .icon-about-arrow-blue-figure {
    height: 100px;
    width: 37px;
  }
  .icon-about-arrow-purple-figure {
    height: 96px;
    width: 107px;
    top: 150px;
    right: 235px;
    bottom: -80px;
    z-index: 10;
  }
  .icon-about-arrow-green-figure {
    height: 123px;
    width: 106px;
    top: -250px;
    right: -40px;
    z-index: -2;
    transform: scaleX(1);
  }
  .history__top {
   flex-direction: column;
   align-items: flex-start;
   gap: 20px;
  }

  .history__custom-slider {
    height: 50px;
  }

  .history__slider-thumb {
    width: 80px;
    height: 40px;
    padding: 0 12px;
  }

  .history__slider-thumb svg {
    width: 18px;
    height: 18px;
  }
    
  .history__list {
      width: calc(100% + 100vw - 100%);
  }

  .part,
  .history{
    padding: 48px 0;
  }

  .part__title,
  .history__title{
    color: #0d0f10;
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 32px;
    text-align: left;
  }
  .second_title.history__title {
    text-align: left;
  }

  .part__text,
  .history__top-text{
    color: #0d0f10;
    font-size: 19px;
    font-weight: 600;
    text-align: left;
    line-height: 1.5;
  }

  .part__item-box,
  .part__inner::before,
  .part__inner::after,
  .part__item--arrow-2,
  .part__item--arrow-1 {
    display: none;
  }
}

@media (max-width: 636px) {
  .stats__item {
    background-size: 70% !important;
  }

  .part__item-image {
    height: 160px;
    width: 160px;
  }

  .part__item--1{
    left: 30%;
  }

  .part__item--2{
    bottom: 10%;
    right: 48%;
  }

  .part__item-4{
    bottom: 9%;
    left: 49%;
  }
}

@media (max-width: 600px) {
  .stats__inner {
    width: 350px;
  }
}

@media (max-width: 576px) {
  .stats__item:not(:last-child){
    margin-right: 0;
  }

  .stats__item {
    background-size: 75% !important;
  }

  .part__item--1 {
    left: 20%;
  }
}

@media (max-width: 475px) {
  .stats__item {
    background-size: 85% !important;
  }

  img {
    max-width: unset;
  }
}

@media (max-width: 375px) {
  .stats__item {
    background-size: 100% !important;
  }
  .stats__inner {
    gap: 0;
  }

  .stats__inner.stats__inner--dowm.stats__inner-down {
    gap: 20px;
  }

  .part__item--2 {
    left: -5%;
  }
  .about__inner {
    gap: 10px;
  }

  .about__image {
    height: 30px;
  }
  
  .part__inner{
    background-size: 350px !important;
    min-height: 400px !important;
  }

  .part__item-image {
    height: 148px !important;
    width: 148px !important;
  }

  .part__item--1 {
    top: 0;
    left: 20%;
  }
  .part__item--2 {
    bottom: 5%;
    left: 7%;
    width: 168px;
  }
  .part__item--3 {
    bottom: 7%;
    left: 45%;
  }
}
