#chart-container {
  position: relative;
  overflow: hidden;
  background-color: #f6f6f6;
  min-height: 744px;
}
.graphics__wrapper {
  padding: 120px 0;
}
@media only screen and (max-width: 1200px) {
  .graphics__wrapper {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 768px) {
  .graphics__wrapper {
    padding: 45px 0;
  }
}
.section-graphics--title {
  max-width: 850px;
  margin: 0 0 80px;
  text-align: left;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: #27383f;
}
@media only screen and (max-width: 1200px) {
  .section-graphics--title {
    margin: 0 0 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-graphics--title {
    font-size: 54px;
    margin: 0 0 35px;
  }
}
@media only screen and (max-width: 575px) {
  .section-graphics--title {
    font-size: 36px;
  }
}
.graphics__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.graphics__content-description {
  width: 50%;
  position: relative;
  min-height: 744px;
}
@media only screen and (max-width: 1200px) {
  .graphics__content-description {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .graphics__content-description {
    min-height: 600px;
  }
}

.graphics__content-description--icon {
  display: block;
  width: 48px !important;
  height: auto !important;
  margin-bottom: 16px;
}
.graphics__content-description--label {
  width: max-content;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  color: inherit;
  padding: 9px 16px 7px;
  background-color: #27383f;
  display: inline-block;
  border-radius: 80px;
}
.graphics__content-graphics {
  width: 50%;
}
@media only screen and (max-width: 1200px) {
  .graphics__content-graphics {
    width: 100%;
  }
}
.graphics__content-description--item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--color-blue);
  padding: 60px 120px;
  color: #fff;
  clip-path: inset(0 0 100% 0);
  transition: 0.3s linear;
}
@media only screen and (max-width: 1400px) {
  .graphics__content-description--item {
    padding: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .graphics__content-description--item {
    padding: 35px 25px;
  }
}
.graphics__content-description--item:first-child {
  clip-path: inset(0 0 0 0);
}
.graphics__content-description--info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0 35px;
}
@media only screen and (max-width: 575px) {
  .graphics__content-description--info {
    margin: 30px 0 25px;
  }
}
.graphics__content-description--info-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  .graphics__content-description--info-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 575px) {
  .graphics__content-description--info-title {
    font-size: 32px;
  }
}
.graphics__content-description--info-description {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #27383f;
}
.graphics__content-description--info-item {
  display: flex;
  flex-direction: column;
}
.graphics__content-description--title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .graphics__content-description--title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .graphics__content-description--title {
    font-size: 28px;
  }
}
.graphics__content-description--link {
  display: flex;
  align-items: center;
  width: max-content;
  margin-top: auto;
}
.link-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-yellow-second);
  transition: 0.3s linear;
}
.graphics__content-description--link .link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: currentColor;
}
.graphics__content-description--link:hover .link-icon-arrow,
.graphics__content-description--link:focus .link-icon-arrow {
  background-color: #27383f;
}

.graphics__content-description--link:hover .link-icon-arrow path,
.graphics__content-description--link:focus .link-icon-arrow path {
  stroke: #fff;
}
