:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.a-anim {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-anim:nth-child(1) {
  animation-delay: 0s;
}
.a-anim:nth-child(2) {
  animation-delay: 0.2s;
}
.a-anim:nth-child(3) {
  animation-delay: 0.4s;
}

@media only screen and (min-width: 768px) {
  .a-icon-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 -80px;
  }
}
.a-icon-list__item {
  text-align: center;
  margin: 80px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-icon-list__item {
    margin: 80px 0 0 80px;
    flex: auto;
    width: calc(50% - 80px);
    max-width: calc(50% - 80px);
  }
}
@media only screen and (min-width: 1025px) {
  .a-icon-list__item {
    width: calc(33.3333333333% - 80px);
    max-width: calc(33.3333333333% - 80px);
  }
}
.a-icon-list__icon {
  background: #eef8fd;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.a-icon-list__title {
  font-size: 1.25rem;
  line-height: 2rem;
  margin: 12px 0 0 0;
}
.a-icon-list__text {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 12px 0 0 0;
}

.a-integration-scheme {
  display: grid;
  grid-template-columns: 1fr 80px;
  grid-template-areas: "base logo" "files logo" "business logo" "storage logo" "services logo" "odbc logo";
  grid-column-gap: 10px;
  grid-row-gap: 20px;
  margin: 40px 20px 0;
}
@media only screen and (min-width: 768px) {
  .a-integration-scheme {
    width: 100%;
    max-width: 1024px;
    margin: 60px auto 0;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-template-areas: ". files ." "base logo odbc" ". logo ." "business logo services" ". storage .";
    grid-row-gap: 20px;
    grid-column-gap: 40px;
  }
}
.a-integration-scheme__item {
  max-width: 190px;
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}
.a-integration-scheme__item:after {
  content: "";
  display: block;
  width: 40px;
  height: 14px;
  background: url("../images/etl/arrow-horizontal.svg");
  position: absolute;
  right: -25px;
  top: 48%;
}
@media only screen and (min-width: 768px) {
  .a-integration-scheme__item:after {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .a-integration-scheme__item {
    max-width: 100%;
  }
}
.a-integration-scheme__item_base {
  grid-area: base;
}
.a-integration-scheme__item_files {
  grid-area: files;
}
.a-integration-scheme__item_business {
  grid-area: business;
}
.a-integration-scheme__item_storage {
  grid-area: storage;
}
.a-integration-scheme__item_services {
  grid-area: services;
}
.a-integration-scheme__item_odbc {
  grid-area: odbc;
}
.a-integration-scheme__title {
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.00938rem;
}
@media only screen and (min-width: 768px) {
  .a-integration-scheme__title {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.a-integration-scheme__text {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 8px 0 0 0;
}
.a-integration-scheme__logo-wrap {
  grid-area: logo;
  background-color: #f3fbff;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .a-integration-scheme__logo-wrap {
    width: calc(100% + 40px);
    margin: -20px;
    background-image: url("../images/etl/arrows.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
  }
}
.a-integration-scheme__logo {
  width: 70px;
  height: 70px;
  margin: 76px auto 58px;
  position: sticky;
  top: calc(50% - 218px);
  background-image: url("../images/logo-short.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media only screen and (min-width: 768px) {
  .a-integration-scheme__logo {
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: url("../images/logo.svg");
    transform: scale(0.6);
    background-position: center;
  }
}

@media only screen and (min-width: 768px) {
  .a-section-header {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .a-section-header__col {
    flex: 1;
  }
}
.a-section-header__col + .a-section-header__col {
  margin: 40px auto 0;
}
@media only screen and (min-width: 768px) {
  .a-section-header__col + .a-section-header__col {
    margin: 0 0 0 60px;
  }
}
.a-section-header__image {
  display: block;
  max-width: 100%;
}
.a-section-header h2.a-title {
  text-align: left;
}
.a-section-header h2.a-title:after {
  margin-right: auto;
  margin-left: 0;
}
.a-section-header h3.a-title {
  margin: 24px 0 0 0;
}
.a-section-header .a-subtitle {
  text-align: left;
}
.a-section-header__icons {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}
.a-section-header__icon {
  flex: 0 0 50px;
  max-width: 50px;
  margin: 20px 0 0 20px;
}

.a-transformation .a-section-header__image {
  border: solid 1px #019ab8;
}
.a-transformation__items {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .a-transformation__items {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0 -40px;
  }
}
.a-transformation__item {
  margin: 40px 0 0 0;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.125rem;
  text-decoration: underline;
}
.a-transformation__item:hover {
  cursor: pointer;
  text-decoration: none;
}
.a-transformation__item:hover img {
  transition: all 0.2s;
  transform: scale(1.2);
}
@media only screen and (min-width: 768px) {
  .a-transformation__item {
    margin: 40px 0 0 40px;
    flex: auto;
    width: calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media only screen and (min-width: 1025px) {
  .a-transformation__item {
    width: calc(33.3333333333% - 40px);
    max-width: calc(33.3333333333% - 40px);
  }
}
.a-transformation__icon {
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  margin: 0 16px 0 0;
}
@media only screen and (min-width: 768px) {
  .a-transformation__icon {
    flex: 0 0 48px;
    max-width: 48px;
    height: 48px;
    margin: 0 24px 0 0;
  }
}

.a-loading__lists {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-loading__lists {
    margin: 40px 0 0 -20px;
    display: flex;
    flex-wrap: wrap;
  }
}
.a-loading__list {
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-loading__list {
    flex: auto;
    width: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 20px 0 0 20px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-loading__list {
    width: calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
.a-loading__list-item {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.a-loading__list-item + .a-loading__list-item {
  margin: 16px 0 0 0;
}
.a-loading__list-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.a-section {
  margin: 60px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-section {
    margin: 120px 0 0 0;
  }
}
.a-section_bg {
  padding: 40px 0 100px;
  background: #f3fbff;
}
@media only screen and (min-width: 768px) {
  .a-section_bg {
    padding: 60px 0 100px;
  }
}

.a-programming {
  margin: 40px 0 0 0;
}
.a-programming__block {
  padding: 36px;
  background: #f3fbff;
}
.a-programming h2.a-title {
  text-align: left;
  font-size: 2rem;
  line-height: 2.75rem;
}
.a-programming h2.a-title:after {
  display: none;
}
.a-programming__cols {
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-programming__cols {
    display: flex;
    align-items: center;
  }
}
.a-programming__text {
  font-size: 1.25rem;
  line-height: 2rem;
}
@media only screen and (min-width: 768px) {
  .a-programming__text {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.a-programming__logos {
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-programming__logos {
    display: block;
    margin: -12px 0 0 0;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media only screen and (min-width: 1025px) {
  .a-programming__logos {
    display: flex;
    align-items: center;
  }
}
.a-programming__logo {
  margin: 12px auto 0;
  display: block;
}
@media only screen and (min-width: 1025px) {
  .a-programming__logo {
    margin: 12px 0 0 28px;
    flex: auto;
    width: calc(33.3333333333% - 28px);
  }
}

.a-result .a-icon-list__item {
  margin: 60px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-result .a-icon-list__item {
    margin: 60px 0 0 60px;
    width: calc(33.3333333333% - 60px);
    max-width: calc(33.3333333333% - 60px);
  }
}
@media only screen and (min-width: 1025px) {
  .a-result .a-icon-list__item {
    width: calc(25% - 60px);
    max-width: calc(25% - 60px);
  }
}

.a-int-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 120px);
  grid-gap: 32px;
  justify-content: center;
  justify-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.a-int-list__wrapper {
  width: 100%;
  text-align: center;
}
.a-int-list__item img {
  max-width: 80px;
  transition: all 0.3s;
}
.a-int-list__item img:hover {
  scale: 1.2;
}