.section__banner .banner__content .banner__content--text span {
  display: block;
  color: var(--third-color);
  white-space: pre-line;
}

.section__desc {
  padding: 120px 0;
}

.desc__subtitle {
  display: block;
  font-size: 25px;
  line-height: 45px;
  font-weight: 500;
  color: var(--third-color);
}

.desc__content {
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: var(--text-color);
}

.section__offer {
  padding: 120px 0;
  position: relative;
}

.section__offer video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section__offer .offer__title {
  font-size: 22px;
  line-height: 37px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 80px;
}

.section__offer .offer__item {
  text-align: center;
}

.section__offer .offer__item--img img {
  height: 72px;
  width: auto;
}

.section__offer .offer__item--title {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  max-width: 65%;
  margin: auto;
  margin-top: 25px;
  padding-top: 25px;
  position: relative;
}

.section__offer .offer__item--title:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 20%;
  background-color: #b4e3e5;
}

.section__training {
  padding: 120px 0;
}

.section__training .training__title {
  font-size: 22px;
  line-height: 45px;
  color: var(--third-color);
  font-weight: 500;
  max-width: 90%;
  margin: auto;
  padding-bottom: 80px;
}

.section__training .training__item {
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0px 8px 10px #00000029;
  background-color: #f4f4f4;
  padding: 50px 0;
  height: 100%;
  transition: all 0.3s linear;
}

.section__training .training__item:hover {
  transform: translateY(-30px);
  background-color: #00749b;
  transition: all 0.3s linear;
}

.section__training .training__item .img-light,
.section__training .training__item:hover .img-blue {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.section__training .training__item:hover .img-light,
.section__training .training__item .img-blue {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}

.training__item--img {
  height: 70px;
}

.section__training .training__item--img img {
  height: 70px;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.section__training .training__item--title {
  padding: 30px 16px 0;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  color: #00a5b4;
  text-align: center;
  transition: all 0.3s linear;
}

.section__training .training__item:hover .training__item--title {
  color: #fff;
  transition: all 0.3s linear;
}

@media screen and (max-width: 1200px) {
  .section__desc {
    padding: 80px 0;
  }

  .section__training {
    padding: 80px 0 120px;
  }
}

@media screen and (max-width: 991px) {
  .desc__subtitle {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 38px;
  }
}

@media screen and (max-width: 756px) {

  .section__desc,
  .section__offer,
  .section__training {
    padding: 60px 0;
  }

  .section__training .training__title,
  .section__desc .desc__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 34px;
  }

  .banner .section__banner .banner__content--text span {
    font-size: 30px;
  }

  .desc__content {
    font-size: 14px;
  }

  .section__desc {
    padding-bottom: 30px;
  }

  .section__offer .offer__title {
    padding-bottom: 30px;
  }

  .section__offer .offer__item--title {
    max-width: 100%;
  }

  .section__training .training__title {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 576px) {
  .banner .section__banner .banner__content--text span {
    font-size: 22px;
    line-height: 28px;
  }

  .section__offer .offer__item--title {
    font-size: 20px;
  }
}

.section__banner .container {
  height: 120% !important;
}