/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/blocks/about.scss ***!
  \******************************************************************************************************************************************************************/
:root {
  --theme-main-font: "Roboto Flex", sans-serif;
  --theme-second-font: "Roboto Flex", sans-serif;
}

.about {
  background-color: white;
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  max-width: 486px;
  width: 100%;
}
.about__content > h2 {
  font-weight: 800;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  color: #ffa022;
  margin-bottom: 24px;
}
.about__content > p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}
.about__content > p:not(:last-child) {
  margin-bottom: 16px;
}
.about__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__imgs img {
  position: relative;
  border-radius: 10px;
}
.about__imgs img:first-child {
  top: 30px;
  -ms-flex-item-align: end;
      align-self: end;
}
.about__imgs img:last-child {
  bottom: 30px;
  -ms-flex-item-align: start;
      align-self: start;
}

@media (max-width: 1024px) {
  .about__content {
    max-width: none;
  }
  .about__content > h2 {
    font-size: 28px;
  }
  .about__content > p:not(:last-child) {
    margin-bottom: 12px;
  }
  .about__imgs {
    gap: 24px;
  }
  .about__imgs img {
    width: 100%;
    height: auto;
    position: inherit;
  }
  .about__imgs img:first-child {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .about__imgs img:last-child {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
