.section-youtube {
  position: relative;
  z-index: 3;
}
.section-youtube .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: white;
}
.section-youtube .video {
  width: 100%;
  height: 100%;
  background: grey;
}
.section-youtube .video img {
  display: block;
  width: 100%;
}
.section-youtube .video iframe {
  width: 100%;
  height: 100%;
}
.section-youtube__main {
  position: relative;
  height: 400px;
  width: 715px;
}
.section-youtube__list {
  width: 370px;
}
.section-youtube__list .item {
  display: flex;
  height: 85px;
  cursor: pointer;
}
.section-youtube__list .item:not(:last-child) {
  margin-bottom: 20px;
}
.section-youtube__list .item .video {
  width: 152px;
  min-width: 152px;
}
.section-youtube__list .item .video img {
  width: 100%;
}
.section-youtube__list .item .description {
  padding-left: 20px;
}
.section-youtube__list .item .description .title {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 4px;
}
.section-youtube__list .item .description .time {
  font-size: 12px;
  color: var(--color-gray-text);
}
.section-youtube__description {
  display: flex;
  justify-content: space-between;
  width: 715px;
  margin-top: 40px;
}
.section-youtube__description .info {
  display: flex;
}
.section-youtube__description .info__logo {
  width: 75px;
}
.section-youtube__description .info__text {
  padding-left: 20px;
}
.section-youtube__description .info__text .name {
  margin: 0;
  font-weight: 500;
}
.section-youtube__description .info__text .subscribers {
  margin: 0;
  color: var(--color-gray-text);
  font-size: 12px;
}
.section-youtube__description .subscribe {
  margin-left: auto;
}
.section-youtube__description .subscribe .button {
  display: inline-block;
  padding: 10px;
  background-color: red;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  border-radius: 2px;
}
@media screen and (max-width: 1270px) and (min-width: 768px) {
.section-youtube__main {
    width: 100%;
    height: 45vw;
}
.section-youtube__list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
}
.section-youtube__list .item {
    display: flex;
    flex-direction: column;
    width: calc(25% - 60px / 4);
    height: auto;
}
.section-youtube__list .item .video {
    width: 100%;
    min-width: auto;
    height: auto;
}
.section-youtube__list .item .description {
    padding-left: 0px;
    margin-top: 10px;
}
.section-youtube__list .item .description .title {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 4px;
}
.section-youtube__list .item .description .time {
    font-size: 12px;
    color: var(--color-gray-text);
}
.section-youtube__description {
    width: 100%;
}
}
@media screen and (max-width: 768px) {
.section-youtube__main {
    width: 100%;
    height: 45vw;
}
.section-youtube__list {
    margin-top: 20px;
    order: 2;
    width: 100%;
}
.section-youtube__list .item {
    width: 100%;
    max-width: 400px;
}
.section-youtube__description {
    width: 100%;
}
}
@media screen and (max-width: 550px) {
.section-youtube__description {
    align-items: flex-end;
    margin-bottom: 30px;
}
.section-youtube__description .info {
    display: block;
}
.section-youtube__description .info__logo {
    width: 75px;
    margin-bottom: 5px;
}
.section-youtube__description .info__text {
    padding-left: 0;
}
.section-youtube__description .subscribe .button {
    font-size: 11px;
}
}
@media screen and (max-width: 370px) {
.section-youtube__list .item {
    height: auto;
}
.section-youtube__list .item .video {
    width: 120px;
    min-width: 120px;
    height: 75px;
}
.section-youtube__list .item .description {
    margin-top: 3px;
    padding-left: 15px;
}
.section-youtube__list .item .description .title,
  .section-youtube__list .item .description .time {
    font-size: 12px;
    line-height: 1.45;
}
.section-youtube__description {
    display: block;
    margin-bottom: 10px;
}
.section-youtube__description .info {
    margin-bottom: 15px;
}
.section-youtube__description .subscribe {
    width: 150px;
    margin-left: 0;
}
.section-youtube__description .subscribe .button {
    font-size: 12px;
    text-align: center;
}
}

.news-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 30px;
}
.news-items__item .image {
  position: relative;
  min-height: 150px;
  margin-bottom: 27px;
}
.news-items__item .image img {
  width: 100%;
}
.news-items__item .image::after {
  content: '';
  position: absolute;
  height: 0px;
  width: 100%;
  background: var(--color-yellow);
  left: 0;
  bottom: 0;
  transition: var(--duration-fast) var(--ease-out-cubic);
}
.news-items__item .text time {
  display: block;
  color: var(--color-gray-text);
  font-size: 12px;
}
.news-items__item .text .project {
  font-size: 12px;
}
.news-items__item .text h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin: 7px 0;
}
.news-items__item .text p {
  margin: 0;
}
.news-items__item:hover .image::after {
  height: 17px;
  bottom: -8px;
}
@media screen and (max-width: 768px) {
.news-items__item .image::after {
    display: none;
}
}
@media screen and (max-width: 550px) {
.news-items {
    grid-template-columns: 1fr;
}
.news-items .image {
    margin-bottom: 20px;
}
}

.news-subscribe {
  position: relative;
  padding-top: 10px;
}
.news-subscribe__form {
  position: relative;
  display: flex;
}
.news-subscribe__form .email label {
  padding-left: 0;
  font-size: 12px;
  color: var(--color-black);
}
.news-subscribe__form .button {
  margin-left: 10px;
  min-width: 50px;
  min-height: 50px;
}
.news-subscribe__form._hide:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 120%;
  left: 0;
  top: -20%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
.news-subscribe .notification {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 35px;
}
.news-subscribe .subscribe {
  display: block;
  font-size: 12px;
  color: var(--color-gray-text);
  margin-top: 10px;
  margin-bottom: 35px;
}
.news-subscribe .terms label {
  font-size: 12px;
  color: var(--color-gray-text);
  font-weight: normal;
}
.news-subscribe .subscribe-confirm {
  font-size: 12px;
}
.news-subscribe .result p {
  font-size: 12px;
}
.news-subscribe .base-loader {
  display: flex;
  align-items: center;
}
.news-subscribe .base-loader svg {
  margin: auto;
}

.section-mainpage-news .body {
  display: flex;
  justify-content: space-between;
}
.section-mainpage-news__left {
  width: 715px;
}
.section-mainpage-news__left .news-link {
  display: inline-block;
  margin-top: 50px;
}
.section-mainpage-news__right {
  width: calc(100% - 780px);
}
.section-mainpage-news__right .news-items-small {
  display: block;
}
.section-mainpage-news__right .news-items-small:not(:first-child) {
  margin-top: 30px;
}
.section-mainpage-news__right .news-items-small time {
  display: block;
  color: var(--color-gray-text);
  font-size: 12px;
}
.section-mainpage-news__right .news-items-small h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin: 7px 0;
}
.section-mainpage-news__right .news-link {
  display: none;
}
.section-mainpage-news__right .news-subscribe {
  margin-top: 50px;
}
@media screen and (max-width: 1250px) {
.section-mainpage-news__left {
    width: 60%;
}
.section-mainpage-news__right {
    width: 35%;
}
}
@media screen and (max-width: 992px) {
.section-mainpage-news .body {
    display: block;
}
.section-mainpage-news__left {
    width: 100%;
}
.section-mainpage-news__left .news-link {
    display: none;
}
.section-mainpage-news__right {
    width: 100%;
    max-width: 450px;
    margin-top: 50px;
}
.section-mainpage-news__right .news-link {
    display: inline-block;
    margin-top: 40px;
}
.section-mainpage-news__right .news-subscribe {
    margin-top: 70px;
}
}
@media screen and (max-width: 600px) {
.section-mainpage-news__left .news-items {
    grid-template-columns: 1fr;
}
.section-mainpage-news__left .news-items__item:last-child {
    display: none;
}
}

.base-button {
  position: relative;
  padding: 2px 33px 0;
  min-height: 50px;
  background: var(--color-yellow);
  border: 2px solid var(--color-yellow);
  font-weight: 500;
  cursor: pointer;
}
.base-button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background: white;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0s;
}
.base-button._green {
  background: var(--color-green);
  border: 2px solid var(--color-green);
}
.base-button._red {
  background: var(--color-red);
  border: 2px solid var(--color-red);
}
.base-button._mouseover:before {
  height: 100%;
  opacity: 1;
}
.base-button._mouseleave:before {
  height: 0%;
  bottom: 100%;
  opacity: 1;
}
.base-button._nohover:before {
  display: none;
}
.base-button._invert {
  background: transparent;
}
.base-button._invert:before {
  background: var(--color-yellow);
}
.base-button._small {
  border-width: 1px;
  min-height: auto;
  padding: 10px 20px;
}
.base-button._icon {
  padding: 0;
  width: 50px;
}
.base-button._icon._text {
  display: flex;
  align-items: center;
  width: auto;
  padding: 0 33px;
}
.base-button._icon._text svg {
  margin-left: 10px;
}
.base-button._icon._text._reverse {
  flex-direction: row-reverse;
}
.base-button._icon._text._reverse svg {
  margin-left: 0;
  margin-right: 10px;
}
.base-button svg {
  position: relative;
  max-width: 20px;
  max-height: 20px;
  z-index: 2;
}
.base-button svg.ico-plane {
  margin-top: 3px;
  margin-right: 1px;
}
.base-button span {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 550px) {
.base-button {
    min-height: 40px;
    height: 40px;
    padding: 1px 15px 0;
}
.base-button._icon {
    width: 40px;
}
}

.homepage-hero[data-v-67801af7] {
  position: relative;
  padding-top: 30px;
  background-color: white;
}
.homepage-hero h1[data-v-67801af7] {
  max-width: 738px;
  margin-top: 0;
  font-weight: 600;
  font-size: 42px;
  line-height: 40px;
}
.homepage-hero .description[data-v-67801af7] {
  position: relative;
  max-width: 569px;
}
.homepage-hero .description[data-v-67801af7]::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 120px;
  height: 5px;
  background-color: #fcd404;
}
.homepage-hero .description[data-v-67801af7] p {
  padding-top: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}
.homepage-hero .buttons[data-v-67801af7] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}
.homepage-hero .buttons .base-button[data-v-67801af7] {
  width: 100%;
  height: 100%;
}
.homepage-hero .buttons .popup-button[data-v-67801af7],
.homepage-hero .buttons .base-button[data-v-67801af7] {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.homepage-hero .buttons a[data-v-67801af7],
.homepage-hero .buttons .popup-button[data-v-67801af7] {
  width: calc(50% - 5px);
  height: 50px;
}
.homepage-hero .slider-container[data-v-67801af7] {
  padding-top: 0;
  padding-right: 0;
}
.homepage-hero .content[data-v-67801af7],
.homepage-hero .slider[data-v-67801af7] {
  padding: 0 15px;
}
.homepage-hero .slider[data-v-67801af7] {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-overflow-scrolling: touch;
}
.homepage-hero .slider[data-v-67801af7] img,
.homepage-hero .slider video[data-v-67801af7] {
  pointer-events: none;
}
.homepage-hero .slider[data-v-67801af7]::-webkit-scrollbar {
  display: none;
}
.homepage-hero .slide[data-v-67801af7] {
  display: inline-block;
  width: 88.3%;
  min-width: 88.3%;
  aspect-ratio: 1.41860465;
}
.homepage-hero .slide[data-v-67801af7] img,
.homepage-hero .slide video[data-v-67801af7] {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
.homepage-hero[data-v-67801af7] {
    padding-top: 50px;
}
.homepage-hero h1[data-v-67801af7] {
    font-size: 50px;
    line-height: 56px;
}
.homepage-hero .description[data-v-67801af7] p {
    font-size: 20px;
}
.homepage-hero .slide[data-v-67801af7] {
    min-width: 500px;
    width: 500px;
}
.homepage-hero .content[data-v-67801af7],
  .homepage-hero .slider[data-v-67801af7] {
    padding: 0 40px;
}
}
@media screen and (min-width: 1024px) {
.homepage-hero .slide[data-v-67801af7] {
    min-width: 560px;
    width: 560px;
}
}
@media screen and (min-width: 1360px) {
.homepage-hero[data-v-67801af7] {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 40px;
    padding-top: 42px;
    padding-left: 55px;
}
.homepage-hero .content[data-v-67801af7] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.homepage-hero .description[data-v-67801af7] {
    max-width: 569px;
}
.homepage-hero .buttons[data-v-67801af7] {
    gap: 15px;
}
.homepage-hero .buttons a[data-v-67801af7],
  .homepage-hero .buttons .popup-button[data-v-67801af7] {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.homepage-hero .content[data-v-67801af7],
  .homepage-hero .slider[data-v-67801af7] {
    width: 100%;
    padding: 0;
    margin: 0;
}
.homepage-hero .slide[data-v-67801af7] {
    width: 680px;
    min-width: 680px;
    aspect-ratio: 1.41666667;
}
}
@media screen and (min-width: 1440px) {
.homepage-hero[data-v-67801af7] {
    padding-left: 90px;
    gap: 44px;
}
.homepage-hero h1[data-v-67801af7] {
    font-size: 55px;
    line-height: 55px;
}
.homepage-hero .description[data-v-67801af7] p {
    font-size: 22px;
    line-height: 28px;
}
}
@media screen and (min-width: 1600px) {
.homepage-hero[data-v-67801af7] {
    padding-top: 57px;
    padding-left: 140px;
}
.homepage-hero h1[data-v-67801af7] {
    font-size: 55px;
    line-height: 55px;
}
.homepage-hero .description[data-v-67801af7] p {
    font-size: 22px;
    line-height: 28px;
}
.homepage-hero .slide[data-v-67801af7] {
    width: 750px;
    min-width: 750px;
}
}
@media screen and (min-width: 1920px) {
.homepage-hero[data-v-67801af7] {
    overflow: clip;
    grid-template-columns: 738px auto;
    padding-left: calc((100vw - 1920px) / 2 + 200px);
}
.homepage-hero h1[data-v-67801af7] {
    font-size: 70px;
    line-height: 68px;
    margin-bottom: 40px;
}
.homepage-hero .description[data-v-67801af7] p {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 14px;
}
.homepage-hero .slide[data-v-67801af7] {
    width: calc((100vw - 1920px) * 0.3 + 850px);
    min-width: calc((100vw - 1920px) * 0.3 + 850px);
}
}

.home-history[data-v-71870caa] {
  position: relative;
  padding: 0 15px;
  max-width: 1920px;
  margin: 55px auto 0;
}
.home-history .wrapper[data-v-71870caa] {
  padding: 30px 0 50px;
  background-color: #fcd404;
  box-shadow: 0px -80px 55px 0px #00000008;
  border-radius: 23px;
}
.home-history .title[data-v-71870caa] {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  margin-top: 0;
}
.home-history .title[data-v-71870caa],
.home-history .items[data-v-71870caa] {
  padding: 0 20px;
}
.home-history .items[data-v-71870caa] {
  display: flex;
  gap: 70px;
  margin-top: 40px;
  overflow-x: auto;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.home-history .items[data-v-71870caa]::-webkit-scrollbar {
  display: none;
}
.home-history .item[data-v-71870caa] {
  flex: 1 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 180px;
}
.home-history .item[data-v-71870caa]::before {
  content: '';
  position: absolute;
  left: calc(66px + 16px);
  top: 33px;
  width: 148.5px;
  height: 1px;
  background-color: #262222;
}
.home-history .item[data-v-71870caa]:last-child::before {
  display: none;
}
.home-history .item-circle[data-v-71870caa] {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 6px;
  aspect-ratio: 1;
  border: 1px solid #262222;
  border-radius: 50%;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0;
}
.home-history .item-title-span[data-v-71870caa] {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
}
.home-history .line[data-v-71870caa] {
  display: none;
}
@media screen and (min-width: 768px) {
.home-history[data-v-71870caa] {
    padding: 0 40px;
}
.home-history .title[data-v-71870caa],
  .home-history .items[data-v-71870caa] {
    padding: 0 30px;
}
.home-history .item[data-v-71870caa] {
    min-width: 220px;
}
.home-history .item[data-v-71870caa]::before {
    left: calc(66px + 24px);
    width: 155px;
}
}
@media screen and (min-width: 1024px) {
.home-history .items[data-v-71870caa] {
    gap: 18px;
}
.home-history .item[data-v-71870caa] {
    width: 365px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}
.home-history .item[data-v-71870caa]::before {
    display: none;
}
.home-history .item[data-v-71870caa]:last-child {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.home-history .item:last-child .item-title-span[data-v-71870caa]::before {
    display: none;
}
.home-history .item-title[data-v-71870caa] {
    display: inline-block;
    flex: 0 0 auto;
    min-width: 170px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    white-space: normal;
    box-sizing: border-box;
}
.home-history .item-title-span[data-v-71870caa] {
    position: relative;
}
.home-history .item-title-span[data-v-71870caa]::before {
    content: '';
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    width: 300px;
    height: 1px;
    background-color: #262222;
}
}
@media screen and (min-width: 1360px) {
.home-history[data-v-71870caa] {
    margin-top: 70px;
    padding: 0 60px;
}
}
@media screen and (min-width: 1440px) {
.home-history[data-v-71870caa] {
    margin-top: 90px;
    padding: 0 90px;
}
.home-history .wrapper[data-v-71870caa] {
    padding: 40px 0 50px;
}
.home-history .title[data-v-71870caa],
  .home-history .items[data-v-71870caa] {
    padding: 0 45px;
}
.home-history .item-title-span[data-v-71870caa] {
    font-size: 22px;
    line-height: 28px;
}
}
@media screen and (min-width: 1600px) {
.home-history[data-v-71870caa] {
    margin-top: 110px;
    padding: 0 140px;
}
.home-history .wrapper[data-v-71870caa] {
    padding: 50px 0 70px;
}
.home-history .title[data-v-71870caa],
  .home-history .items[data-v-71870caa] {
    padding: 0 60px;
}
.home-history .items[data-v-71870caa] {
    margin-top: 66px;
}
.home-history .item[data-v-71870caa] {
    gap: 21px;
    width: 416px;
}
.home-history .title[data-v-71870caa] {
    font-size: 42px;
    line-height: 48px;
}
.home-history .item-title[data-v-71870caa] {
    min-width: 250px;
}
.home-history .item-title-span[data-v-71870caa] {
    font-size: 24px;
    line-height: 30px;
}
}
@media screen and (min-width: 1920px) {
.home-history[data-v-71870caa] {
    margin-top: 176px;
}
}

.home-projects-project[data-v-6e74a70e] {
  position: relative;
}
.home-projects-project img[data-v-6e74a70e] {
  aspect-ratio: 1.39583333;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-projects-project h3[data-v-6e74a70e] {
  margin: 0;
  padding: 0;
}
.home-projects-project .title[data-v-6e74a70e] {
  margin-top: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19.6px;
}
.home-projects-project .address[data-v-6e74a70e] {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 768px) {
.home-projects-project .title[data-v-6e74a70e] {
    margin-top: 7px;
}
}
@media screen and (min-width: 1600px) {
.home-projects-project img[data-v-6e74a70e] {
    aspect-ratio: 1.56086957;
}
}

.home-projects[data-v-30608e21] {
  position: relative;
  padding: 0 15px;
  max-width: 1920px;
  margin: 60px auto 0;
  background-color: transparent;
  z-index: 2;
}
.home-projects .title[data-v-30608e21] {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}
.home-projects .button-desktop[data-v-30608e21] {
  display: none;
}
.home-projects .large-text[data-v-30608e21] p {
  margin-top: 30px;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 30px;
}
.home-projects .text[data-v-30608e21] p {
  margin-top: 22px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
}
.home-projects .projects[data-v-30608e21] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
  margin-top: 30px;
}
.home-projects .button-mobile[data-v-30608e21] {
  margin-top: 41px;
  width: 100%;
  min-height: 50px;
}
@media screen and (min-width: 768px) {
.home-projects[data-v-30608e21] {
    padding: 0 40px;
}
.home-projects .projects[data-v-30608e21] {
    margin-top: 60px;
    gap: 30px 15px;
}
}
@media screen and (min-width: 1024px) {
.home-projects[data-v-30608e21] {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 30px;
}
.home-projects .aside[data-v-30608e21] {
    position: sticky;
    top: 150px;
    left: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.home-projects .button-desktop[data-v-30608e21] {
    display: block;
}
.home-projects .button-wrapper-mobile[data-v-30608e21] {
    display: none;
}
}
@media screen and (min-width: 1360px) {
.home-projects[data-v-30608e21] {
    margin-top: 70px;
    padding: 0 60px;
}
}
@media screen and (min-width: 1440px) {
.home-projects[data-v-30608e21] {
    margin-top: 90px;
    padding: 0 90px;
    gap: 45px;
}
}
@media screen and (min-width: 1600px) {
.home-projects[data-v-30608e21] {
    margin-top: 110px;
    padding: 0 140px;
    gap: 100px;
}
.home-projects .title[data-v-30608e21] {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 44px;
}
.home-projects .large-text[data-v-30608e21] p {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
}
.home-projects .projects[data-v-30608e21] {
    gap: 36px 15px;
}
}
@media screen and (min-width: 1920px) {
.home-projects[data-v-30608e21] {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
}
.home-projects .aside[data-v-30608e21] {
    padding-left: 60px;
    width: 700px;
}
.home-projects .content[data-v-30608e21] {
    padding-right: 60px;
}
.home-projects .title[data-v-30608e21] {
    font-size: 42px;
    line-height: 48px;
}
}

.home-statistics[data-v-69dc7846] {
  position: relative;
  margin-top: 59px;
  height: 983px;
  max-width: 100%;
  z-index: 1;
}
.home-statistics .orbit-image[data-v-69dc7846] {
  display: none;
}
.home-statistics .content[data-v-69dc7846] {
  padding: 0 15px;
}
.home-statistics .wrapper[data-v-69dc7846] {
  max-width: 1920px;
  margin: 0 auto;
}
.home-statistics .title[data-v-69dc7846] {
  position: relative;
  margin-top: 0;
  max-width: 569px;
  font-weight: 600;
  font-size: 42px;
  line-height: 40px;
  z-index: 5;
}
.home-statistics .description[data-v-69dc7846] {
  position: relative;
  max-width: 569px;
  padding-top: 10px;
  padding-bottom: 6px;
  z-index: 5;
}
.home-statistics .description[data-v-69dc7846] p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}
.home-statistics .description[data-v-69dc7846]::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 120px;
  height: 5px;
  background-color: #fcd404;
}
.home-statistics .item[data-v-69dc7846] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  container-type: inline-size;
}
.home-statistics .item .title[data-v-69dc7846] {
  width: 100%;
  max-width: 150px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.home-statistics .circle[data-v-69dc7846] {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  background-color: white;
  border: 1px solid #f8d629;
  border-radius: 50%;
  font-weight: 700;
  width: 100%;
}
.home-statistics .circle.filled[data-v-69dc7846] {
  background-color: #f8d629;
}
.home-statistics .orbits-wrapper[data-v-69dc7846] {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: calc((100vw - 375px + 30px) * 0.4);
  z-index: 1;
}
.home-statistics .main-item[data-v-69dc7846] {
  position: relative;
  width: 230px;
  container-type: inline-size;
  z-index: 5;
}
.home-statistics .main-item .circle[data-v-69dc7846] {
  width: 100%;
  font-weight: 700;
  font-size: 42.5cqw;
}
.home-statistics .main-item .title[data-v-69dc7846] {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.home-statistics .orbit[data-v-69dc7846] {
  position: absolute;
  top: calc(50% + 11px);
  left: calc(50% - 14px);
  translate: -50% -50%;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(2) {
  width: calc(516px + (100vw - 375px) * 0.1);
  aspect-ratio: 1;
  border: 1px solid #f8d629;
  border-radius: 50%;
  z-index: 3;
}
.home-statistics .orbit:nth-child(2) .item[data-v-69dc7846] {
  position: absolute;
  top: 90%;
  right: 18px;
  width: 150px;
  transform: translateY(-77px);
}
.home-statistics .orbit:nth-child(2) .circle[data-v-69dc7846] {
  font-size: 30cqw;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(3) {
  width: calc(710px + (100vw - 375px) * 0.25);
  aspect-ratio: 1;
  border: 1px solid #f8d629;
  border-radius: 50%;
  z-index: 2;
}
.home-statistics .orbit:nth-child(3) .item[data-v-69dc7846] {
  position: absolute;
  top: 100%;
  left: 40%;
  width: 118px;
  transform: translateY(-72px);
}
.home-statistics .orbit:nth-child(3) .circle[data-v-69dc7846] {
  font-size: 35cqw;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(4) {
  width: calc(976px + (100vw - 375px) * 0.25);
  aspect-ratio: 1;
  border: 1px solid #f8d629;
  border-radius: 50%;
  z-index: 1;
}
.home-statistics .orbit:nth-child(4) .item[data-v-69dc7846] {
  position: absolute;
  top: 100%;
  left: 61.5%;
  width: 93px;
  transform: translateY(-82px);
}
.home-statistics .orbit:nth-child(4) .circle[data-v-69dc7846] {
  font-size: 54cqw;
}
@media screen and (min-width: 768px) {
.home-statistics .content[data-v-69dc7846] {
    padding: 0 40px;
}
.home-statistics .title[data-v-69dc7846] {
    font-size: 50px;
    line-height: 56px;
}
.home-statistics .description[data-v-69dc7846] p {
    font-size: 20px;
}
}
@media screen and (min-width: 1024px) {
.home-statistics[data-v-69dc7846] {
    height: 1100px;
}
.home-statistics .main-item[data-v-69dc7846] {
    width: 300px;
}
.home-statistics .orbit:nth-child(2) .item[data-v-69dc7846] {
    width: 200px;
    top: 77%;
    right: -44px;
}
.home-statistics .orbit:nth-child(3) .item[data-v-69dc7846] {
    width: 160px;
    top: 100%;
    left: 20%;
    transform: translateY(-115px);
}
.home-statistics .orbit:nth-child(4) .item[data-v-69dc7846] {
    width: 140px;
}
}
@media screen and (min-width: 1360px) {
.home-statistics[data-v-69dc7846] {
    margin-top: 100px;
}
.home-statistics .orbits-wrapper[data-v-69dc7846] {
    top: -80px;
}
.home-statistics .content[data-v-69dc7846] {
    padding: 0 55px;
}
.home-statistics .main-item[data-v-69dc7846] {
    width: 350px;
}
}
@media screen and (min-width: 1440px) {
.home-statistics .content[data-v-69dc7846] {
    padding: 0 90px;
}
.home-statistics .title[data-v-69dc7846] {
    font-size: 55px;
    line-height: 55px;
}
.home-statistics .description[data-v-69dc7846] p {
    font-size: 22px;
    line-height: 28px;
}
}
@media screen and (min-width: 1600px) {
.home-statistics[data-v-69dc7846] {
    margin-top: 130px;
}
.home-statistics .content[data-v-69dc7846] {
    padding: 0 140px;
}
.home-statistics .title[data-v-69dc7846] {
    font-size: 55px;
    line-height: 55px;
}
.home-statistics .description[data-v-69dc7846] p {
    font-size: 22px;
    line-height: 28px;
}
.home-statistics .orbits-wrapper[data-v-69dc7846] {
    top: -80px;
    left: 300px;
}
.home-statistics .main-item[data-v-69dc7846] {
    width: 500px;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(2) {
    width: 1350px;
}
.home-statistics .orbit:nth-child(2) .item[data-v-69dc7846] {
    width: 300px;
    top: 27%;
    right: -6.5%;
}
.home-statistics .orbit:nth-child(2) .orbit-image[data-v-69dc7846] {
    position: absolute;
    top: 100%;
    left: 5%;
    display: block;
    width: 320px;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    translate: 0px -110%;
    overflow: hidden;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(3) {
    width: 875px;
}
.home-statistics .orbit:nth-child(3) .item[data-v-69dc7846] {
    width: 240px;
    top: 89%;
    left: 70%;
    transform: translateY(-55%);
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(4) {
    width: 1900px;
}
.home-statistics .orbit:nth-child(4) .item[data-v-69dc7846] {
    width: 180px;
    top: 72%;
    left: 90%;
}
}
@media screen and (min-width: 1920px) {
.home-statistics[data-v-69dc7846] {
    margin-top: 167px;
}
.home-statistics .content[data-v-69dc7846] {
    padding: 0 200px;
}
.home-statistics .content .title[data-v-69dc7846] {
    font-size: 70px;
    line-height: 68px;
    margin-bottom: 51px;
}
.home-statistics .description[data-v-69dc7846] {
    padding-bottom: 14px;
}
.home-statistics .description[data-v-69dc7846] p {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
}
.home-statistics .orbits-wrapper[data-v-69dc7846] {
    top: -184px;
    left: 480px;
}
.home-statistics .main-item[data-v-69dc7846] {
    width: 618px;
}
.home-statistics .main-item .circle[data-v-69dc7846] {
    font-size: 260px;
    font-weight: 700;
}
.home-statistics .item .title[data-v-69dc7846] {
    top: calc(100% + 14px);
    max-width: 200px;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}
.home-statistics .orbit[data-v-69dc7846] {
    top: 50%;
    left: 50%;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(2) {
    width: 1522px;
}
.home-statistics .orbit:nth-child(2) .item[data-v-69dc7846] {
    width: 382px;
    top: 24%;
    right: -9.5%;
}
.home-statistics .orbit:nth-child(2) .orbit-image[data-v-69dc7846] {
    top: 100%;
    left: -9.5%;
    width: 434px;
    height: 434px;
    translate: 0px -123%;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(3) {
    width: 1036px;
}
.home-statistics .orbit:nth-child(3) .item[data-v-69dc7846] {
    width: 300px;
    top: 95%;
    left: 66%;
}
.home-statistics .orbit[data-v-69dc7846]:nth-child(4) {
    width: 2014px;
}
.home-statistics .orbit:nth-child(4) .item[data-v-69dc7846] {
    width: 216px;
    top: 71%;
    left: 89%;
}
}

.section-contact-me[data-v-7970f2b0] {
  position: relative;
  z-index: 3;
}
.section-contact-me .wrapper[data-v-7970f2b0] {
  background-color: white;
  box-shadow: 0px -80px 55px 0px #00000008;
  padding-bottom: 0;
}
.section-contact-me h2[data-v-7970f2b0] {
  font-weight: 600;
  font-size: 42px;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 30px;
}
.section-contact-me .subtitle[data-v-7970f2b0] {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  border-top: 5px solid #fcd404;
  margin-top: 0;
  margin-bottom: 9px;
  padding-top: 4px;
}
.section-contact-me form[data-v-7970f2b0] {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 5px;
}
.section-contact-me form .button[data-v-7970f2b0] {
  width: 100%;
  min-height: 50px;
}
@media screen and (min-width: 768px) {
.section-contact-me[data-v-7970f2b0] {
    margin-top: 50px;
}
.section-contact-me form[data-v-7970f2b0] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.section-contact-me form .base-input[data-v-7970f2b0] {
    width: calc((100% - 15px) / 2);
}
}
@media screen and (min-width: 1024px) {
.section-contact-me[data-v-7970f2b0] {
    margin-top: 90px;
}
.section-contact-me .wrapper[data-v-7970f2b0] {
    padding-top: 30px;
}
.section-contact-me h2[data-v-7970f2b0] {
    margin-bottom: 30px;
}
.section-contact-me form[data-v-7970f2b0] {
    flex-wrap: nowrap;
}
.section-contact-me form .base-input[data-v-7970f2b0] {
    flex: 1 1 auto;
    width: auto;
}
.section-contact-me form .button[data-v-7970f2b0] {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 266px;
}
}
@media screen and (min-width: 1920px) {
.section-contact-me[data-v-7970f2b0] {
    margin-top: 190px;
}
.section-contact-me .wrapper[data-v-7970f2b0] {
    padding-top: 44px;
}
.section-contact-me h2[data-v-7970f2b0] {
    margin-bottom: 45px;
}
}

.page-home {
  min-height: 95vh;
  overflow: clip;
}
.page-home .base-loader {
  margin-top: 200px;
  height: calc(100% - 200px);
}
.page-home .section-mainpage-news {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
.page-home .section-mainpage-news {
    margin-top: 30px;
    margin-bottom: 30px;
}
}
@media screen and (min-width: 768px) {
.page-home .section-contact-me {
    margin-top: 50px;
}
}
@media screen and (min-width: 1024px) {
.page-home .section-contact-me {
    margin-top: 90px;
}
}
@media screen and (min-width: 1920px) {
.page-home .section-contact-me {
    margin-top: 190px;
}
}

