/* common border radius */
/* disable text selection */
.hero-page {
  width: 100%;
  position: relative;
}
.hero-page.hp {
  padding: 4.2rem 0 14rem 0;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .hero-page.hp {
    padding: 3.2rem 0 14rem 0;
  }
}
@media screen and (max-width: 630px) {
  .hero-page.hp {
    padding: 3.2rem 0 8rem 0;
  }
}
.hero-page.hp .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 630px) {
  .hero-page.hp .container {
    position: static;
    transform: none;
    margin-top: 4rem;
  }
}
.hero-page.hp > img {
  max-width: 56%;
}
.hero-page.hp > img:nth-child(1) {
  display: unset;
}
@media screen and (max-width: 630px) {
  .hero-page.hp > img:nth-child(1) {
    display: none;
  }
}
.hero-page.hp > img:nth-child(2) {
  display: none;
}
@media screen and (max-width: 630px) {
  .hero-page.hp > img:nth-child(2) {
    display: none;
  }
}
@media only screen and (min-width: 2000px) {
  .hero-page.hp > img:nth-child(1) {
    display: none;
  }
  .hero-page.hp > img:nth-child(2) {
    display: unset;
    max-width: 70rem;
  }
}
@media screen and (max-width: 630px) {
  .hero-page.hp > img {
    max-width: 70%;
  }
}
@media only screen and (min-width: 2000px) {
  .hero-page.hp > img {
    max-width: 560px;
    left: 100%;
    /* position: absolute; */
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
    /* margin-right: 500px; */
    position: relative;
    left: -25%;
  }
}
.hero-page .link {
  margin-top: 2.4rem;
}

.hero-content-left {
  max-width: 46rem;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .hero-content-left {
    max-width: 36rem;
  }
}
@media screen and (max-width: 630px) {
  .hero-content-left {
    text-align: center;
    max-width: 100%;
  }
  .hero-content-left .tag {
    margin: 0 auto;
  }
  .hero-content-left .link {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content-left h1 {
  margin-top: 0.8rem;
}

.certificate {
  margin-top: 8rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .certificate {
    margin-top: 4rem;
  }
}
.certificate .smaller {
  color: #878D96;
}

.certificate-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 0.8rem;
}
@media screen and (max-width: 630px) {
  .certificate-logos {
    justify-content: center;
  }
}
.certificate-logos img, .certificate-logos svg {
  max-width: 11rem;
  max-height: 6.5rem;
  width: auto;
  height: auto;
}

.section.section--prinosy {
  padding-top: 0;
}
.section.section--prinosy .row {
  gap: 1.6rem;
}
.section.section--prinosy .prinos-col-1 {
  flex: 0 0 27.2rem;
}
@media screen and (max-width: 630px) {
  .section.section--prinosy .prinos-col-1 {
    flex: 0 0 100%;
    text-align: center;
  }
}
.section.section--prinosy .prinos-col-2 {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .section.section--prinosy .prinos-col-2 {
    flex: 0 0 100%;
    margin-top: 1.6rem;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 630px) {
  .section.section--prinosy .prinos-col-2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .section.section--prinosy .prinos-col-2 {
    grid-template-columns: 1fr;
  }
}

.prinos-box {
  padding: 2.4rem;
  border-radius: 4px;
  background: var(--white);
}
@media screen and (max-width: 1100px) {
  .prinos-box {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 630px) {
  .prinos-box {
    grid-column: span 2;
  }
  .prinos-box:nth-of-type(3) {
    grid-column: 2/4;
  }
}
@media screen and (max-width: 480px) {
  .prinos-box {
    grid-column: auto;
  }
  .prinos-box:nth-of-type(3) {
    grid-column: auto;
  }
}
.prinos-box .icon {
  display: flex;
  align-items: center;
  justify-content: ce;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1100px) {
  .prinos-box .icon {
    margin-bottom: 2rem;
  }
}
.prinos-box .icon svg, .prinos-box .icon img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
.prinos-box .content {
  width: 100%;
}
.prinos-box .content .title {
  margin-bottom: 1.6rem;
}
.prinos-box .content .description {
  color: #878D96;
}

.section.section--video-inside {
  width: 100%;
  margin: 8rem 0;
  padding: 0;
  position: relative;
  background-color: black;
  background-image: url("../../images/section-video-bg.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .section.section--video-inside {
    margin: 5rem 0;
  }
}
.section.section--video-inside .container {
  display: flex;
}
@media screen and (max-width: 740px) {
  .section.section--video-inside .container {
    flex-wrap: wrap;
  }
}
.section.section--video-inside .left-col {
  flex: 0 0 42%;
  width: 42%;
  padding: 5rem 0 7rem 0;
}
@media screen and (max-width: 740px) {
  .section.section--video-inside .left-col {
    flex: 0 0 100%;
    width: 100%;
    padding: 5rem 0 3.5rem 0;
    text-align: center;
  }
}
.section.section--video-inside .left-col .small-title {
  color: var(--gray300, #C1C7CD);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section.section--video-inside .left-col h3 {
  max-width: 37rem;
  margin-top: 1.6rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 740px) {
  .section.section--video-inside .left-col h3 {
    margin-left: auto;
    margin-right: auto;
  }
}
.section.section--video-inside .right-col {
  position: relative;
  flex: 0 0 58%;
  width: 58%;
}
@media screen and (max-width: 740px) {
  .section.section--video-inside .right-col {
    flex: 0 0 100%;
    width: 100%;
    padding-bottom: 5rem;
  }
}
.section.section--video-inside .youtube-iframe-wrapper {
  position: absolute;
  right: 0;
  top: -4rem;
  bottom: -4rem;
  border-radius: 0.8rem;
  overflow: hidden;
  font-size: 0;
  aspect-ratio: 16/9;
  width: auto;
}
.section.section--video-inside .youtube-iframe-wrapper:hover {
  cursor: pointer;
}
@media screen and (max-width: 1030px) {
  .section.section--video-inside .youtube-iframe-wrapper {
    top: -1rem;
    bottom: -1rem;
  }
}
@media screen and (max-width: 900px) {
  .section.section--video-inside .youtube-iframe-wrapper {
    top: 3rem;
    bottom: 3rem;
  }
}
@media screen and (max-width: 740px) {
  .section.section--video-inside .youtube-iframe-wrapper {
    position: relative;
    top: auto;
    bottom: auto;
    width: 100%;
  }
}
.section.section--video-inside .youtube-iframe-wrapper .play-btn {
  color: var(--red);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5.6rem;
  transition: all 0.3s ease;
}
.section.section--video-inside .youtube-iframe-wrapper .play-btn:hover {
  color: var(--white);
}
.section.section--video-inside .youtube-iframe-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.categories-tags .category-tag {
  padding-right: 1.6rem;
}
.categories-tags .category-tag:after, .categories-tags .category-tag:before {
  display: none;
}

.section--news .categories-tags {
  margin-bottom: 4.4rem;
}
.section--news .articles-slider {
  width: 100%;
}
.section--news .articles-slider .slick-list {
  padding: 0 5% 0 0 !important;
}
.section--news .articles-slider .slick-track {
  display: flex !important;
}
.section--news .articles-slider .slick-slide {
  height: inherit !important;
}
.section--news .articles-slider .slick-slide .aktuality-box {
  height: 100%;
  background: white;
  border-radius: 0 0 0.8rem 0.8rem;
}
.section--news .articles-slider .slick-arrow {
  background-color: var(--red);
  background-image: url("../../images/slick-arrow.svg");
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  font-size: 0;
  transition: all 0.3s ease;
}
.section--news .articles-slider .slick-arrow:hover {
  cursor: pointer;
  background-color: var(--black);
}
.section--news .articles-slider .slick-arrow.slick-next {
  left: -6.4rem;
}
@media screen and (max-width: 1300px) {
  .section--news .articles-slider .slick-arrow.slick-next {
    left: -4rem;
  }
}
@media screen and (max-width: 1245px) {
  .section--news .articles-slider .slick-arrow.slick-next {
    display: none !important;
  }
}
.section--news .articles-slider .slick-arrow.slick-prev {
  right: -6.4rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 1300px) {
  .section--news .articles-slider .slick-arrow.slick-prev {
    left: -4rem;
  }
}
@media screen and (max-width: 1245px) {
  .section--news .articles-slider .slick-arrow.slick-prev {
    display: none !important;
  }
}
.section--news .articles-slider .slick-slide {
  padding-right: 1.6rem;
  background: transparent;
}
@media screen and (max-width: 1000px) {
  .section--news .articles-slider .slick-slide {
    padding-right: 0.8rem;
  }
}
.section--news .articles-slider .slick-slide img {
  width: 100%;
}
.section--news .articles-slider .post-item .image-box {
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
}
.section--news .articles-slider .post-item .aktuality-box-content {
  border-radius: 0 0 0.8rem 0.8rem;
}/*# sourceMappingURL=home.css.map */